/**
  Created with IntelliJ IDEA 2017.2.3.
  author: LXF
  DateTime: 2021/9/16 14:55
  updateTime: 2021/9/16 14:55
  Description: 
 */
@charset "utf-8";
.contactWechat,.contactWechat-shade,.contactWechat-layer{
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.contactWechat{
    position: fixed;
    font-size: 15px;
    border-radius: 40px;
    line-height: 40px;
    color: #fff;
    z-index: 1300;
}
.contactWechat-shade{
    background-color: rgb(0, 0, 0);
    opacity: 0.4;
    z-index: 10;
}
.contactWechat-shade,.contactWechat-layer{
    position: absolute;
}
.contactWechat-layer{
    width: 200px;
    height: 260px;
    z-index: 12;
    margin: auto;
    z-index: 20;
    transition: transform 0.3s;
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
}
.isMobile .contactWechat-layer{
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -300px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -300px, 0);
}
.contactWechat-layer img{
    background-color: #ffffff;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 8px 4px;
    padding: 5px;
    width: 180px;
    margin: 0 auto 10px;
    border-radius: 5px;
}
.contactWechat-layer p{
    border-radius: 20px;
    background-color: #2f2f2f;
}
.contactWechat-layer.active{
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
}