* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
}

a {
    text-decoration: none;
}

.t-bg-2 {
    width: 100%;
    height: 60px;
    /*background: #2698ff;*/
}

.container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.content {
    padding-top: 10%;
    padding-bottom: 20px;
}

.template-common .template-btn-wrap {
    text-align: center;
    margin-bottom: 5px;
}

.template-common .template-btn {
    color: #fff;
    background-color: #999999;
    padding: 10px 30px;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
    width: 80%;
}

.template-common h1 {
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

.wxTip {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    /*height: "winHeight";*/
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    float: left;
}

.wxTip div p {
    text-align: right;
    width: 85%;
    margin-top: 10%;
    color: #fff;
}

.wxTip div {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-left: 4%;
    padding-right: 4%;
}

.wxTip div img {
    text-align: left;
    width: 40%;
    height: 40%;
    margin-top: 7%;
    padding-left: 4%;
    padding-right: 4%;
}

.template-common .t-icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.template-common .t-icon1 {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    margin-left: 4%; /* 往左偏移一点 */
}


.template-2 .content {
    margin-top: -100px;
}

.template-common .t-icon img {
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.template-common .t-name {
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 15px;
}

.template-common .t-name .tit {
    font-size: 20px;
    margin-bottom: 5px;
    margin-top: 10px;
}
.customer-service {
    width: 70px;
    height: 70px;
    position: fixed;
    z-index: 10;
    top: 5%;
    right: 5px;
    border-radius: 50%;
}

.customer-service .btn {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.customer-service .pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.customer-service .line {
    width: 100%;
    height: 100%;
    /*border: 3px solid palevioletred;*/
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    animation: emit 1s infinite;
}

@keyframes emit {
    0% {
    }
    100% {
        border-width: 1px;
        opacity: 0;
        transform: scale(1.5);
    }
}
* {
    box-sizing: border-box;
}

body {
    font-size: 14px;
    font-family: -apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
    margin: 0px;
    padding: 0px;
}

a {
    text-decoration:none;
}

.wrap{
    max-width: 750px;
    margin:0px auto;
    text-align:center;
    padding:40px 20px 46px 20px;
}

.wrap .logo {
    margin-bottom:30px;
}

.wrap .logo img{
    width:100px;
    border-radius:15px;
}

.wrap .panel{
    width:100%;
    margin-top:20px;
    border-radius:10px;
    display: flex;
    color:#fff;
    font-size:18px;
    align-items:center;
    padding:10px 15px;
    box-sizing: border-box;
}

.wrap .panel:active{
    opacity: .9;
}

.wrap .panel .text{
    flex: 1;
}

.wrap .panel.p1{
    background: rgb(26,26,26);
}

.wrap .panel.p2{
    background: rgb(0,181,87);
}

.wrap .panel.p3{
    background: rgb(49,115,241);
}

.wrap .lang{
    margin-top:30px;
    font-size:15px;
}

.wrap .lang a{
    margin:10px;
    color: rgb(81,81,81);
    text-decoration: none;
    vertical-align:middle;
}

.app-intro {
    text-align: left;
}

/* --------------折叠广告css-----------------  */

article {
    margin-top: -1px;
    max-width: 100%;
    max-height: 300px;
    overflow-y: hidden;
    transition: max-height 1s linear;
    border: 1px solid #d3d3d3; /* 更改为浅灰色 */
    /*border-radius: 5px;*/
}

/* 单击按钮时添加此类 */
article.extended {
    max-height: 0;
}

.img1 {
    border: 1px solid #d3d3d3; /* 更改为浅灰色 */
    border-radius: 5px;
    width: 30px; /* 图片宽度 */
    height: auto; /* 自动高度 */
    cursor: pointer; /* 鼠标悬停时显示手型 */
}

