/*初始化*/
* {
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, input {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font: 20px/1.5 Arial, Helvetica, sans-self, "Microsoft YaHei";
}

img {
    border: 0;
    vertical-align: top;
}

li {
    list-style: none;
}

i, em {
    font-style: normal;
}

a {
    text-decoration: none;
}

a, input, select, textarea {
    outline: none;
}

input {
    font-size: 14px;
}

input, select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 100px #fff inset;
}

/*font*/
/*@font-face {
    font-family: 'comfont';
    src: url('font_324814_0nzgsyyktp722o6r.eot');
    src: url('font_324814_0nzgsyyktp722o6r.eot?#iefix') format('embedded-opentype'),
    url('font_324814_0nzgsyyktp722o6r.woff') format('woff'),
    url('font_324814_0nzgsyyktp722o6r.ttf') format('truetype'),
    url('font_324814_0nzgsyyktp722o6r.svg#iconfont') format('svg');
}

[class^="icod-"],.icon-share {font-family: 'comfont';}
.icod-user:before{content:"\e610";}
.icod-lock:before{content:"\e60a";}
.icod-yzm:before{content:"\e611";}
.icod-subyzm:before{content:"\e60f";}
.icod-mobile:before{content:"\e658";}
.icod-wechat:before{content:"\e69e";}
.icod-sina:before{content:"\e609";}
.icod-qq:before{content:"\e607";}
.icod-load:before{content:"\e62d";}
.icon-share:before{content:"\ec4c";}*/

/*清除浮动*/
.cf:before, .cf:after {content: "";display: table;}
.cf:after {clear: both;}

/*button*/
.btn {
    display: inline-block;
    font-size: 14px;
    padding: 8px 12px;
    color: #1381f1;
    border: 1px solid currentColor;
    white-space: nowrap;
    -o-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.r0{
    -o-border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.r3 {
    -o-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
.r5 {
    -o-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.r10 {
    -o-border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.r50 {
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.t50 {
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.unselect {
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

/*容器*/
.flex {
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
}

/*从上到下显示*/
.flex-v {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

/*从右到左*/
.flex-end {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/*x轴两端对齐*/
.flex-x-between {
    -webkit-box-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

/*居中*/
.flex-x-center {
    -webkit-box-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}

/*右对齐*/
.flex-x-end {
    -webkit-box-pack: end;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

/*允许换行*/
.flex-wrap {
    -moz-box-lines: multiple;
    -webkit-box-lines: multiple;
    box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*====子元素====*/
.flex-list {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

/*mask*/
.mask {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .8);
}

.mask > div {
    position: absolute;
    z-index: 10000;
    background: #fff;
    width:80%;
    left: 50%;
    top: 50%;
    -o-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
}

/*login*/
.login-mode ol li div, .login-mode ol li i {
    -webkit-transition: all .2s;
    transition: all .2s;
}

.login-box > div {
    font-size: 14px;
    text-align: center;
    color: #3997EE;
    max-width:15rem;
    padding-bottom: 10px;
    -webkit-animation: fadeInDown .3s linear;
    animation: fadeInDown .3s linear;
}

.login-box > div > div {
    width: 84%;
    margin: 0 auto;
}

.login-box fieldset {
    border: 0;
    border-top: 1px solid currentColor;
    margin: 30px 0 8px 0;
    line-height: 1;
}

.login-box fieldset legend {
    padding: 0 5px;
}

.login-head {
    position: relative;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    margin-bottom: 20px !important;
    line-height: 40px;
    font-size: 20px;
    width: 86% !important;
    color: #333;
}

.login-head img {
    width: 40px;
    height: 40px;
}

.login-box .login-hide {
    display: none !important;
}

.login-body > div > div {
    margin-top: 8px;
    border: 1px solid #eee;
    position: relative;
}

.login-body > div > div i {
    color: currentColor;
    padding: 8px;
    background: #eee;
}

.login-body > div > div em {
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
    margin: auto 0;
    position: absolute;
    right: 35px;
    top: 50%;
    margin-top: -7px;
    line-height: 1;
}

.login-body > div > div input {
    border: none;
    padding-left: 5px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.login-body > div > div img {
    -webkit-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.login-body > div a {
    color: currentColor;
}

.login-body > div > div a {
    width: 79px;
    height: 37px;
    line-height: 37px;
}

.login-body > div > div a.active {
    cursor: not-allowed;
    color: #bbb;
    font-size: 12px;
}

.login-body > div > div.code input {
    width: 141px;
    border-right: 1px solid #eee;
}

.login-body > div > div.active {
    border: 1px solid currentColor;
}

.login-body > div > div, .login-body > .btn {
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.login-body > .btn {
    width: 100%;
    background: #3997EE;
    color: #fff;
    margin-top: 20px;
    font-size: 16px;
}

.login-body p {
    margin: 15px 0 0 0;
    cursor: pointer;
}

.login-body > div.flex {
    margin-top: 16px;
}

.login-mode ol li {
    display: none;
    cursor: pointer;
    line-height: 1;
}

.login-mode ol li.list-show {
    display: block;
}

.login-mode ol li div {
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    color: #00D20D;
    margin: 0 auto;
    line-height: 38px;
}

.login-mode ol li i {
    font-size: 30px;
}

.login-mode ol li.qq div {
    color: #4EA9EF;
}

.login-mode ol li.sina div {
    color: #D43039;
}

.login-mode ol li.mobile div {
    color: #47E8C9;
    line-height: 40px;
}
.login-mode ol.active li div {
    border: 0;
    line-height: 1;
    height: 30px;
}

.login-mode ol.active li i {
    font-size: 25px;
}
.login-mode>ol{
    margin-bottom: 20px;
}
.login-mode > a {
    display: block;
    color: #9FABB7;
    text-decoration: underline;
}

/*focus*/
.focus > div {
    background: transparent;
    max-width:300px;
    text-align: center;
    -webkit-animation: fadeInDown .3s linear;
    animation: fadeInDown .3s linear;
}

.focus > div > div:nth-child(1) {
    height: 60px;
    background: #0aa2ff;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

.focus > div > div:nth-child(1) img {
    height: 100%;
}

.focus > div > div:nth-child(2) {
    background: #f0f0f6;
    overflow: hidden;
    padding: 25px 0;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

.focus > div > div:nth-child(2) h1 {
    font-size: 18px;
    line-height: 1;
}

.focus > div > div:nth-child(2) img {
    width: 160px;
    padding: 20px 0;
}

.focus > div > div:nth-child(2) span {
    display: block;
    color: #666;
    font-size: 14px;
}

/*dialog*/
.dialog-box > div {
    max-width:300px;
    -webkit-animation: fadeInDown .3s linear;
    animation: fadeInDown .3s linear;
}

.dialog-box > div > div {
    text-align: center;
    font-size: 16px;
}

.dialog-box > div > div:nth-child(1) {
    padding: 20px 0 14px 0;
}

.dialog-box > div > div:nth-child(2) {
    padding: 0 20px;
    color: #888;
    max-height:120px;
    overflow-y: auto;
}

.dialog-box > div > div:nth-child(2) span {
    color: #00A3FF;
    font-weight: bold;
}

.dialog-box > div > div:nth-child(3) {
    margin-top: 20px;
    border-top: 1px solid #d5d5d5;
}

.dialog-box > div > div:nth-child(3) > a {
    color: #00A3FF;
    text-decoration: none;
    padding: 10px 0;
}
.dialog-box > div > div:nth-child(3) > a.cancel_sub {
    color:#808080;
}
.dialog-box > div > div:nth-child(3) > a.ok {
    border-left: 1px solid #d5d5d5;
}

.loading {
    text-align: center;
}

.loading > div {
    background: transparent;
    margin: 0;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loading > div > div {
    background: #fff;
    width: 4px;
    height: 35px;
    border-radius: 2px;
    margin: 2px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: inline-block;
    -moz-animation: loading 0.9s 0s infinite cubic-bezier(.11, .49, .38, .78);
    -webkit-animation: loading 0.9s 0s infinite cubic-bezier(.11, .49, .38, .78);
    animation: loading 0.9s 0s infinite cubic-bezier(.11, .49, .38, .78);
}

.loading > div > div:nth-child(2), .loading > div > div:nth-child(4) {
    -webkit-animation-delay: 0.25s !important;
    animation-delay: 0.25s !important;
}

.loading > div > div:nth-child(1), .loading > div > div:nth-child(5) {
    -webkit-animation-delay: 0.5s !important;
    animation-delay: 0.5s !important;
}

.share-square>div{top:5px;margin:0;background:transparent;width:100%;right:0;}
.share-square img{position:absolute;right:27px;width:50px;}
.share-square img:nth-child(1){width:26px;top:20px;z-index:1;-webkit-animation:share-bounce .2s linear infinite alternate;animation:share-bounce .2s linear infinite alternate;}
.share-square img:nth-child(2){right:35px;z-index:2;}
.share-square span{position:absolute;right:5px;top:68px;color:#fff;font-size:14px;}
.share-square span i{font-size:16px;line-height:1;position:relative;top:-1px;}

/*animation*/
@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        top:40%;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        top:40%;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        top:40%;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes share-bounce{0%{} 50%{top:8px;} 100%{top:22px;} }
@keyframes share-bounce{ 0%{} 50%{top:8px;} 100%{top:22px;} }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

/*loading*/
@-webkit-keyframes loading {
    0% {
        -webkit-transform: scaley(1);
        transform: scaley(1);
    }
    80% {
        -webkit-transform: scaley(0.3);
        transform: scaley(0.3);
    }
    90% {
        -webkit-transform: scaley(1);
        transform: scaley(1);
    }
}

@keyframes loading {
    0% {
        -webkit-transform: scaley(1);
        transform: scaley(1);
    }
    80% {
        -webkit-transform: scaley(0.3);
        transform: scaley(0.3);
    }
    90% {
        -webkit-transform: scaley(1);
        transform: scaley(1);
    }
}






.pc-banner {
    background: url(images/top_main_bg01.jpg) no-repeat center top/100% auto;
    width: 100%;
    float: left;
}

@media screen and (max-width: 668px) {
    .pc-banner {
        background-size: auto 100%;
    }
}

.swiper-container {
    width: 100%;
}

/*@media screen and (max-width: 668px) {
    .swiper-container {
        margin: 20px 0 15px;
    }
}*/

.swiper-slide {
    -webkit-transition: transform 1.0s;
    -moz-transition: transform 1.0s;
    -ms-transition: transform 1.0s;
    -o-transition: transform 1.0s;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
}

@media screen and (max-width: 668px) {
    .swiper-slide {
        -webkit-transform: scale(0.97);
        transform: scale(0.97);
    }
}

.swiper-slide-active,.swiper-slide-duplicate-active {
    -webkit-transform: scale(1);
    transform: scale(1);
}

@media screen and (max-width: 668px) {
    .swiper-slide-active,.swiper-slide-duplicate-active {
        -webkit-transform: scale(0.97);
        transform: scale(0.97);
    }
}

.none-effect {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

.swiper-slide a {
    background: #fff;
    padding:10px;
    display: block;
    border-radius: 14px;
}

@media screen and (min-width: 668px) {
    .swiper-slide a:after {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        box-sizing: border-box;
        border: 10px solid #fff;
        content: "";
        width: 100%;
        height: 100%;
       /* background: url(images/top_slick_cover_bg01.png) 0 0 repeat;*/
        border-radius: 20px;
    }
}

.swiper-slide-active a:after {
    background: none;
}

@media screen and (max-width: 668px) {
    .swiper-slide a {
        padding: 5px;
        border-radius: 7px;
    }
}

.swiper-slide img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

@media screen and (max-width: 668px) {
    .swiper-slide img {
        border-radius: 7px;
    }
}

.swiper-pagination {
    position: relative;
    margin-bottom: 30px;
}

.swiper-pagination-bullet {
    background: #00a0e9;
    margin-left: 4px;
    margin-right: 4px;
    width: 17px;
    height: 17px;
    opacity: 1;
    margin-bottom: 4px;
}

.swiper-pagination-bullet-active {
    width: 13px;
    height: 13px;
    background: #FFF;
    border: 6px solid #00a0e9;
    margin-bottom: 0;
}

@media screen and (max-width: 668px) {
    
    .swiper-pagination {
        position: relative;
        margin-bottom: 20px;
    }

    .swiper-pagination-bullet {
        background: #00a0e9;
        margin-left: 2px;
        margin-right: 2px;
        width: 8px;
        height: 8px;
        margin-bottom: 2px;
    }

    .swiper-pagination-bullet-active {
        width: 6px;
        height: 6px;
        background: #FFF;
        border: 3px solid #00a0e9;
        margin-bottom: 0;
    }
}



@media screen and (max-width: 668px) {
    .button {
        width: 70%;
        bottom: 22px;
    }
}





@media screen and (max-width: 668px) {
    .button div {
        width: 28px;
        height: 28px;
    }
}   
