body {
    position: relative;
}

aside {
    opacity: 0;
    position: fixed;
    z-index: 1000;
    bottom: -1000px;
    right: -1000px;
    -webkit-transition: all ease-in-out 1s;
    transition: all ease-in-out 1s;
}

aside > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

aside > ul > li {
    width: 90px;
    text-align: center;
    border-radius: 9px;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: bold;
}

aside > ul > li.online {
    height: 122px;
    background: #297bff;
}

aside > ul > li.online a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

aside > ul > li.online .img {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

aside > ul > li.online .img i {
    font-size: 20px;
    color: #297bff;
}

aside > ul > li.online .text {
    color: #ffffff;
    margin-top: 4px;
    text-align: center;
}

aside > ul > li.nomal {
    height: 64px;
    background: #ffffff;
    border: 1px solid #297bff;
}

aside > ul > li.nomal .img {
    color: #297bff;
}

aside > ul > li.nomal .img i {
    font-size: 20px;
}

aside > ul > li.nomal .text {
    color: #333333;
    margin-top: 4px;
}

aside > ul > li.top {
    height: 36px;
    /* background: -webkit-gradient(linear, left bottom, left top, color-stop(68%, #297bff), to(#5495ff));
    background: linear-gradient(360deg, #297bff 68%, #5495ff 100%); */
    /* color: #ffffff; */
    background-color: #fff;
}

aside > ul > li.top .iconfont{
    color: #297bff;
}

aside > ul > li.old-site {
    height: 36px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(68%, #297bff), to(#5495ff));
    background: linear-gradient(360deg, #297bff 68%, #5495ff 100%);
}

aside > ul > li.old-site a {
    font-size: 12px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
}

aside > ul > li + li {
    margin-top: 10px;
}

aside > ul > li.tel {
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

aside > ul > li.tel .img {
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
}

aside > ul > li.tel .text {
    /* -webkit-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s; */
}

aside > ul > li.tel .text .number {
    width: 0;
    height: 0;
    overflow: hidden;
}

aside > ul > li.tel:hover {
    width: 260px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(68%, #297bff), to(#5495ff));
    background: linear-gradient(360deg, #297bff 68%, #5495ff 100%);
}

aside > ul > li.tel:hover .img {
    margin: 0 16px;
    color: #fff;
}

aside > ul > li.tel:hover .text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: #fff;
}

aside > ul > li.tel:hover .text .number {
    width: 100%;
    height: 16px;
    overflow: hidden;
    height: 30px;
    font-size: 20px;
}

aside > .hover-banner {
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    position: absolute;
    right: 64px;
    width: 117px;
    height: 134px;
    padding: 12px;
    background: #fff;
    -webkit-transform: scale(0);
    transform: scale(0);
}

aside > .hover-banner > .title {
    text-align: center;
    font-size: 12px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: bold;
    color: #333333;
}

aside > .hover-banner > img {
    width: 86px;
    height: 86px;
    margin-top: 12px;
}

aside > .hover-banner.hover {
    -webkit-transform: scale(1);
    transform: scale(1);
    right: 74px;
}

aside > .hover-banner.chat-img {
    top: 205px;
}

aside > .hover-banner.chat-img.hover {
    top: 180px;
}

aside > .hover-banner.official-img {
    top: 270px;
}

aside > .hover-banner.chat-img.hover {
    top: 230px;
}

aside > .leaving-banner {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10000;
}

aside > .leaving-banner > .mask {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

aside > .leaving-banner .form {
    width: 726px;
    height: 413px;
    background: #ffffff;
    padding: 60px 60px 40px 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

aside > .leaving-banner .form > .form-item {
    line-height: 28px;
    width: 50%;
    margin-bottom: 37px;
    padding-left: 24px;
    padding-bottom: 8px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

aside > .leaving-banner .form > .form-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 24px;
    bottom: 0;
    border-bottom: 1px solid #eeeeee;
}

aside > .leaving-banner .form > .form-item label {
    font-size: 16px;
    font-family: PingFangSC, PingFangSC-Regular;
    text-align: center;
    color: #333333;
    /* width: 50px; */
}

aside > .leaving-banner .form > .form-item input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    font-size: 14px;
    padding-left: 16px;
    color: #b5b5b5;
}
/* 
aside > .leaving-banner .form .form-item.phone label {
  width: 74px;
} */

aside > .leaving-banner .form > .form-item.long {
    width: 100%;
}

aside > .leaving-banner .form > .submit {
    width: 100%;
    text-align: center;
}

aside > .leaving-banner .form > .submit > span {
    padding: 10px 19px;
    background: #297bff;
    font-family: PingFangSC, PingFangSC-Regular;
    color: #ffffff;
    cursor: pointer;
}

aside > .leaving-banner.hover {
    -webkit-transform: scale(1);
    transform: scale(1);
}

aside.show {
    opacity: 1;
    bottom: 25px;
    right: 42px;
}
/*# sourceMappingURL=aside.css.map */

/* 兼容H5 */
@media screen and (max-device-width: 480px) {
    aside > .leaving-banner .form {
        width: 80%;
        height: auto;
        padding: 20px 15px 30px;
    }
    aside > .leaving-banner .form > .form-item {
        margin-bottom: 20px;
        padding-left: 15px;

        width: 100%;
        display: block;
    }
    aside > .leaving-banner .form > .form-item label {
        text-align: left;
        width: auto !important;
        min-width: 75px;
    }
    aside > .leaving-banner .form > .submit {
        margin-top: 10px;
    }
    aside > .leaving-banner .form > .submit > span {
        padding: 8px 19px;
        display: inline-block;
    }
}

aside > .complain-banner {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10000;
}

aside > .complain-banner > .mask {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

aside > .complain-banner .form {
    width: 726px;
    height: 413px;
    background: #ffffff;
    padding: 60px 60px 40px 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

aside > .complain-banner .form > .form-item {
    line-height: 28px;
    width: 50%;
    margin-bottom: 37px;
    padding-left: 24px;
    padding-bottom: 8px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

aside > .complain-banner .form > .form-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 24px;
    bottom: 0;
    border-bottom: 1px solid #eeeeee;
}

aside > .complain-banner .form > .form-item label {
    font-size: 16px;
    font-family: PingFangSC, PingFangSC-Regular;
    text-align: center;
    color: #333333;
    /* width: 50px; */
}

aside > .complain-banner .form > .form-item input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    font-size: 14px;
    padding-left: 16px;
    color: #b5b5b5;
}
/* 
aside > .complain-banner .form .form-item.phone label {
  width: 74px;
} */

aside > .complain-banner .form > .form-item.long {
    width: 100%;
}

aside > .complain-banner .form > .submit {
    width: 100%;
    text-align: center;
}

aside > .complain-banner .form > .submit > span {
    padding: 10px 19px;
    background: #297bff;
    font-family: PingFangSC, PingFangSC-Regular;
    color: #ffffff;
    cursor: pointer;
}

aside > .complain-banner.hover {
    -webkit-transform: scale(1);
    transform: scale(1);
}
aside > .faq-banner.hover {
    -webkit-transform: scale(1);
    transform: scale(1);
}

aside.show {
    opacity: 1;
    bottom: 25px;
    right: 42px;
}

.faq-banner{
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10000;
}

.faq-banner .mask{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.faq-banner .faq-tank{
    width: 60%;
    margin: auto;
    height: 660px;
    overflow-y: auto;
    border-radius: 10px;
    background: #ffffff;
    padding: 60px 60px 40px 60px;
    position: fixed;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}

.faq-banner .faq-tank .del{
    position: absolute;
    top: 20px;
    right: 20px;
}

.faq-banner .faq-tank .del img{
    width: 20px;
    height: 20px;
}

.faq-banner .faq-tank .wz-cont{
    padding-bottom: 20px;
}

.faq-banner .faq-tank .wz-cont h4{
    font-size: 18px;
    color: #333333;
    padding-bottom: 15px;
}

.faq-banner .faq-tank .wz-cont p{
    font-size: 14px;
    color: #333333;
}
/*# sourceMappingURL=aside.css.map */

/* 兼容H5 */
@media screen and (max-device-width: 480px) {
    aside > .complain-banner .form {
        width: 80%;
        height: auto;
        padding: 20px 15px 30px;
    }
    aside > .complain-banner .form > .form-item {
        margin-bottom: 20px;
        padding-left: 15px;

        width: 100%;
        display: block;
    }
    aside > .complain-banner .form > .form-item label {
        text-align: left;
        width: auto !important;
        min-width: 75px;
    }
    aside > .complain-banner .form > .submit {
        margin-top: 10px;
    }
    aside > .complain-banner .form > .submit > span {
        padding: 8px 19px;
        display: inline-block;
    }
}

.phone {
    border: 1px solid #fff;
    font-size: 12px;
    color: #fff;
    padding: 0px 8px;
    border-radius: 3px;
    height: 26px !important;
    line-height: 26px;
    margin-right: 10px;
}

.patop0 {
    padding-top: 0 !important;
}

p,
h4,
h1,
h2,
h3,
h5,
ul,
li {
    padding: 0px;
    margin: 0px;
}

.mhei-none{
    max-height: initial !important;
}

.img-ul{
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    width: 100%;
}
.img-ul li{
    width: 25%;
}

.img-ul li .li-box{
    margin: 0px 10px 20px;
}

.img-ul li .li-box img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.dz-ul .dz-li{
    padding-bottom: 30px;
}

.dz-ul .dz-li h4{
    font-size: 14px;
    color: #fff;
    /* font-weight: normal; */
    padding-bottom: 15px;
}

.dz-ul .dz-li p{
    font-size: 12px;
    color: #fff;
    opacity: 0.6;
}