html,body,div,ul,li,a,p,h1,h2,h3 {
    margin: 0;
    padding: 0;
    color: #666;
}
html,body {
    height: 100%;
    width: 100%;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    color: #747474;
    font-family: "Microsoft YaHei";
}
ul,li {
    list-style: none;
}
img {
    border:none;
}
a:link, a:visited {
    text-decoration: none;
    color: #333;
}
::-webkit-scrollbar {
  width: 6px;
  height: 8px;
}
::-webkit-scrollbar-track-piece {
  background: transparent;
  background: #deebf5
}
::-webkit-scrollbar-thumb {
  background: #a6cfef;
  border-radius: 3px;
  border: 1px solid #94c7ee;
}
.tip {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #f7ba2a;
    transition: .5s;
    z-index: 100;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    overflow: hidden;
    height: 0;
}
.tip img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
.showTip {
    height: 50px;
}
.closeTip {
    position: absolute;
    right: 10px;
    top: 0px;
    cursor: pointer;
    font-size: 10px;
    color: #fff;
}
.header{
    position: absolute;
    top: 0;
    width: 100%;
    height: 90px;
    background: #fefefe;
    overflow: hidden;
    z-index: 10;
    opacity: 0.9;
    transition: 0.5s;
    transform-origin: 0 0;
    transform: translate(0, 30px);
}
.header.sub{
    height: 45px;
    opacity: 0.7;
    transform: translate(0, 0);
}
.header.sub:hover{
    opacity: 0.9
}
.header .logo{
    transform-origin: 0 0;
    transform: scale(0.3);
    position: absolute;
    top: 8px;
    left: 50px;
    transition: 0.5s;
    cursor: pointer;
}
.sub .logo{
    transform: scale(0.15);
}
.header .logo-c{
    position: absolute;
    width: 73px;
    height: 34px;
    background: url(./images/logo-c.png) no-repeat;
    opacity: 0.8;
    top: 26px;
    left: 130px;
    cursor: pointer;
    transition: 0.5s;
    transform-origin: 0 0;
}
.sub .logo-c{
    transform: scale(0.5) translate(-95px, -16px);
}
.logo {
    width: 180px;
    height: 180px;
    position: relative;
    perspective: 200px;
    transform-style: preserve-3d;
}
.logo>div{
    opacity: 0;
}
.logo .body {
    width: 140px;
    height: 120px;
    position: absolute;
    top: 50px;
    left: 10px;
    background: url(./images/logo.png) 0 -142px no-repeat;
    overflow: hidden;
    z-index: 2;
    animation: bodyenter 0.5s ease-out forwards;
}
.logo .back {
    width: 103px;
    height: 120px;
    position: absolute;
    top: 50px;
    left: 10px;
    background: url(./images/logo.png) 0 0 no-repeat;
    overflow: hidden;
    z-index: 3;
    animation: backenter 0.5s 0.4s linear forwards;
    transform-origin: 0 100%;
}
.logo .face {
    width: 90px;
    height: 60px;
    position: absolute;
    left: 77px;
    top: 50px;
    background: url(./images/logo.png) -165px 0 no-repeat;
    z-index: 1;
    animation: faceenter 0.5s 1s linear forwards;
    transform-origin: 0 center;
}
.logo .ear {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 57px;
    top: 46px;
    background: url(./images/logo.png) -165px -78px no-repeat;
    z-index: 1;
    backface-visibility: hidden;
    animation: earenter 1s 1.8s linear forwards;
    transform-origin: right center;
}
.logo .horn-1{
    width: 65px;
    height: 42px;
    position: absolute;
    left: 66px;
    top: 13px;
    background: url(./images/logo.png) -296px 0px no-repeat;
    z-index: 1;
    animation: hornenter 0.3s 1.4s 1 linear forwards;
    transform-origin: center bottom;
}
.logo .horn-2{
    width: 50px;
    height: 38px;
    position: absolute;
    left: 97px;
    top: 20px;
    background: url(./images/logo.png) -402px 0px no-repeat;
    z-index: 1;
    animation: hornenter 0.3s 1.6s 1 linear forwards;
    transform-origin: center bottom;
}

@keyframes bodyenter {
    0% {
        opacity: 1;
        transform: translate(0, 100px)
    }
    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}
@keyframes backenter {
    0% {
        opacity: 1;
        transform: scale(0)
    }
    100% {
        opacity: 1;
        transform: scale(1)
    }
}
@keyframes faceenter {
    0% {
        opacity: 1;
        transform: rotateY(90deg)
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg)
    }
}
@keyframes earenter {
    0% {
        opacity: 1;
        transform: rotateY(-90deg);
    }
    72% {
        opacity: 1;
        transform: rotateY(0deg);
    }
    79% {
        opacity: 1;
        transform: rotateY(-70deg);
    }
    85% {
        opacity: 1;
        transform: rotateY(0deg);
    }
    90% {
        opacity: 1;
        transform: rotateY(-50deg);
    }
    94% {
        opacity: 1;
        transform: rotateY(0deg);
    }
    97% {
        opacity: 1;
        transform: rotateY(-30deg);
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}
@keyframes hornenter {
    0% {
        opacity: 0;
        transform: scale(2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fs {
    width: 100%;
    height: calc(100% - 60px);
    padding: 120px 30px 30px;
    box-sizing: border-box;
    margin: 0 auto;
    background:#3ea564 url(./images/loginbg.png) left bottom no-repeat;
    position: relative;
    perspective: 500px;
    overflow: hidden;
}
.loginform {
    width: 480px;
    padding: 40px 0 20px;
    min-height: 240px;
    border-radius: 10px;
    margin: 3% auto 0;
    background: rgba(0, 0, 0, 0.2);
    transition: 1s;
    position: relative;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.qrform{
    width: 480px;
    padding: 20px 0 20px;
    min-height: 280px;
    border-radius: 5px;
    margin: 3% 0 0 -240px;
    left: 50%;
    top: 120px;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    -webkit-transform: rotateY(180deg);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.loginline{
    width: 360px;
    height: 45px;
    /*background: #fff;
    border-radius: 5px;*/
    margin: 12px auto 0;
    line-height: 45px;
}
#codeLine{
    width: 238px;
    margin: 15px 0 0 60px;
    position: relative;
}
#codeLine img{
    position: absolute;
    width: 112px;
    top: 1px;
    right: -120px;
    border-radius: 2px;
}
.msgline{
    width: 360px;
    margin: 10px auto 0;
    line-height: 14px;
    font-size: 14px;
    color: #ccc;
}
.loginline.submit{
    font-size: 16px;
    background: #18b693;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 2px;
}
.loginline.submit:hover {
    background: #3cbf86;
}
.descline{
    width: 360px;
    color: #fff;
    font-size: 12px;
    margin: 20px auto 0;
    position: relative;
}
.loginline input{
    border: none;
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: 14px;
    background: #fff;
    outline: none;
    padding: 15px 16px;
    box-sizing: border-box;
    letter-spacing: 1px;
    border-radius: 2px;
    color: #999;
    cursor: text;
}
.username, .password{
    cursor: text;
}
.codeimg{

}
.loginline input:-webkit-autofill{
    box-shadow: inset 50px 50px #fff;
}
.descline a:link, .descline a:visited{
    color: #fff;
}
.descline .right{
    position: absolute;
    right: 0;
}
.descline a:nth-child(1):hover {
    color: rgba(255, 255, 255, .4);
}
.qrcodeicon{
    content: '';
    margin: 0;
    width: 14px;
    height: 14px;
    border: 1px solid #fff;
    margin: -3px 0 0 10px;
    display: inline-block;
    vertical-align: middle;
    background: #fff url(./images/qr.png) center/contain no-repeat;
    position: relative;
}
.hidden {
    display: none;
}

.loginFooter {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    height: 60px;
}
.loginFooter p {
    text-align: center;
    line-height: 60px;
    color: #b2b2b2;
    font-size: 12px;
    font-family: "ArialMT";
}
.qrdesc{
    margin: 0 0 0 115px;
    color: #fff;
    background: url(./images/scan.png) left center no-repeat;
    padding: 0 0 0 50px;
    line-height: 31px;
    height: 31px;
}
.qrcode{
    position: absolute;
    top: 70px;
    left: 140px;
    text-align: center;
    width: 200px;
    height: 200px;
}
.qrcodeShade {
    position: absolute;
    left: 80px;
    top: 80px;
    width: 40px;
    height: 40px;
    background: url(./images/shade.png) no-repeat;
    background-size: contain;
}
#qrimg{
    cursor: pointer;
}
.qrcodecover{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5) url(./images/success.png) 64px 50px no-repeat;
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 320px;
}
.backpw{
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    position: absolute;
    top: 280px;
    left: 268px;
}
/*...................................................*/
.navbg{
    width:100%;
    height:120px;
    background:url('./images/nav-bottom.png') no-repeat center;
    background-size: cover;
    margin-bottom:45px;
}

.content .product-msg{
    margin-left: 220px;
}

.msg-item .msg-kind{
    margin-bottom:69px;
}

.msg-item .msg-kind:last-child{
    margin-bottom:0;
}

.msg-item li p{
    width:100%;
    height:42px;
    font-size: 16px;
}

.msg-item #product1 ul{
    display:flex;
}
.msg-item #product1 ul li{
    flex-grow:1;
    /*max-height:260px;*/
    border: 1px solid #e5e5e5;
}
.msg-item #product1 .describe span{
    line-height:32px;
}

.msg-item #product1 .describe i{
    display:block;
    width:20px;
    height:2px;
    margin:10px 0 5px 0;
    background:#d6dae3
}

/*.msg-item #product1 .describe span:nth-of-type(2){
    color:#acacac;
}*/
.msg-item{
    padding: 0 0 100px 0;
}
#product2 .msg-box .msg-title{
    /*width:610px;*/
    line-height:28px;
}

#product3 .msg-box .msg-title{
    /*width:660px;*/
    line-height:28px;
}

#product4 .msg-box .msg-title{
    /*width:590px;*/
    line-height:28px;
}

.box-item {
    display:flex;
}

#product2 .msg-box .box-item li{
    margin:24px 0 52px 0;
    flex-grow:1;
}

.msg-box .box-item .text-core{
    width: 100%;
    height:173px;
    margin:0 auto;
    background:url('./images/bubble.png') no-repeat center;
    text-align:center;
    line-height:160px;
    color:#677492;
    font-size:23px;
    font-weight:bold;
    margin-bottom:10px;
}

.msg-box .box-item .text-content{
    position:relative;
    width:156px;
    height:80px;
    margin:0 auto;
    background:#8e9eb3;
    text-align:center;
}


.msg-box .box-item .text-content p{
    position:absolute;
    left:50%;
    top:50%;
    margin-left:-78px;
    margin-top:-21px;
    display:inline-block;
    font-weight:bold;
    color:white;
}

.msg-box .box-item .text-content .special{
    line-height:42px;
}


/*.box-item .product-img{
    width:126px;
    height:126px;
    margin:0 auto;
}*/
.box-item .core-content p{
    height:18px;
    text-align:center;
    color:#677492;
    font-size:18px;
}
.msg-item #product3 ul{
    margin-top:13px;
}
.msg-item #product4 ul{
    margin:27px 0px 43px 0px;
    display:flex;
}
.msg-item #product4 ul li{
    flex-grow:1;
    border: 1px solid #e5e5e5;
}
.msg-item #product4 .describe span{
    font-size:14px;
    line-height:24px;
}

.menu-item a.active{
    color: #85b2e3;
    font-size: 18px;
}

.footer{
    width:100%;
    height:60px;
    border-top:1px solid #d6dae3;
}

.footer p{
    margin-top:27px;
    text-align:center;
    color: #b2b2b2;
    font-size: 12px;
    font-family: "ArialMT";
}

.msg-footer{
    line-height:28px;
    font-size: 16px;
}


/*...........................................................*/
#list {
    width: 100%;
    margin: 0 auto;
    table-layout: fixed;
}
#list th, #list td
{
    text-align:left;
    height:40px;
    border:1px solid #e5e5e5;
    box-sizing: border-box;
    text-indent: 5px;
}
#list th{
    text-align: center;
    color: #fff;
}
#list th, #list td{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#list .table-title th{
    background:#8e9eb3;
    border:1px solid #8e9eb3;
    font-weight:normal;
}
#list .center{
    text-align: center;
}

.msg-kind li {
    flex: 1;
    margin-right: 30px;
}
.msg-type li {
    flex: 1;
    margin-right: 0;
}
.msg-kind li .title {
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    background: #8e9eb3;
    line-height: 50px;
    text-indent: 20px;
    font-weight: bold;
}
.msg-item li .describe{
    /*border:1px solid #e5e5e5;*/
    width: 100%;
    box-sizing: border-box;
    padding:15px 15px 15px 20px;
    border-top:none;
    /*max-height: 240px;*/
}
#product4 .describe span{
    display: inline-block;
    min-height: 92px;
}

.box-item .product-img{
    width: 100%;
    height: auto;
    text-align: center;
}
.down {
    position: relative;
}
.download{
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 15px;
    /*width: 82px;
    height: 34px;*/
    background: #8e9eb3;
    border-radius: 2px;
    font-size: 14px;
    color: #fff;
    line-height: 34px;
    text-align: center;
}
.download:link,.download:visited{
    color: #fff;
}
