
* {
    margin: 0;
    padding: 0;
    border: 0
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: Microsoft YaHei, Roboto, Heiti SC, STHeiTi, Arial, sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/bg1.jpg);
    background-size: cover;
    background-attachment: fixed;
}

ul li {
    list-style: none
}

a, span, label {
    display: inline-block;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
    color: #333;
    text-decoration: none;
}

.cf:after {
    content: '';
    display: block;
    height: 0;
    clear: both
}

.cf {
    *zoom: 1
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}

input:-webkit-autofill {
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

::-webkit-scrollbar-track-piece {
    background: transparent;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: #E0E0E0;
    border-radius: 20px;
    height: 30px;
}

.bg2 {
    background-image: url(../images/bg2.jpg)
}

.bg3 {
    background-image: url(../images/bg3.jpg)
}

.bg4 {
    background-image: url(../images/bg4.jpg)
}

.bg5 {
    background-image: url(../images/bg5.jpg)
}

header {
    padding: 60px;
    position: relative;
    z-index: 5;
}

header .logo {
    width: 200px;
    height: 70px;
    display: inline-block;
    background: url(../images/logo.png) left center no-repeat;
    background-size: auto 100%;
}

header .info {
    float: right;
    position: relative;
    z-index: 3;
}

header .info a {
    font-size: 16px;
    color: #fff;
    padding: 10px 8px;
    position: relative;
    margin-left: 30px;
    float: left;
}

header .info a:after, header .menu a:after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
    background: #56b3ff;
    background: -webkit-gradient(linear, left top, right top, from(#56b3ff), to(#9158ff));
    background: linear-gradient(to right, #56b3ff 0%, #9158ff 100%);
}

header .info a:hover:after, header .menu a:hover:after {
    width: 100%;
}

header .info .btnNav {
    width: 40px;
    height: 40px;
    padding: 0;
    margin-left: 70px;
    background: url(../images/ic_menu.png) center no-repeat;
}

header .menu {
    position: fixed;
    z-index: 2;
    top: 0;
    right: -200px;
    bottom: 0;
    padding: 140px 45px 0 45px;
    background: rgba(0, 0, 0, .8);
    -webkit-transition: all .3s;
    transition: all .3s;
}

header .show {
    right: 0;
}

header .menu a {
    display: block;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}

header .menu a.active:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 3px;
    border-radius: 100%;
    background: #56b3ff;
    background: -webkit-gradient(linear, left top, right top, from(#56b3ff), to(#9158ff));
    background: linear-gradient(to right, #56b3ff 0%, #9158ff 100%);
}

/* 底部导航*/
footer {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    border-top: 1px solid rgba(255, 255, 255, .3);
}

footer nav {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
}

footer nav a {
    width: 140px;
    height: 45px;
    padding-top: 75px;
    text-align: center;
    display: inline-block;
    margin-right: 120px;
    color: #fff;
    font-size: 18px;
    opacity: .4;
    border-top: 1px solid transparent;
    margin-top: -1px;
    background-repeat: no-repeat;
    background-position: center 25px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

footer nav a:last-child {
    margin-right: 0;
}

footer nav a:nth-child(1) {
    background-image: url(../images/ic_home.png);
}

footer nav a:nth-child(2) {
    background-position-y: 28px;
    background-image: url(../images/ic_ad.png);
}

footer nav a:nth-child(3) {
    background-position-y: 28px;
    background-image: url(../images/ic_notice.png);
}

footer nav a:nth-child(4) {
    background-image: url(../images/ic_service.png);
}

footer nav a:nth-child(5) {
    background-image: url(../images/ic_message.png);
}

footer nav a.active {
    opacity: 1;
    border-color: #fff;
}

footer nav a:hover {
    opacity: 1;
}

/* 半透明遮罩*/
.halfBg {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    background: -webkit-gradient(linear, left top, right top, color-stop(60%, rgba(0, 0, 0, .6)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to right, rgba(0, 0, 0, .6) 60%, rgba(0, 0, 0, 0) 100%)
}

/* 内容区域*/
.conWrap {
    position: absolute;
    z-index: 3;
    top: 140px;
    bottom: 150px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1480px;
}

.txt1 {
    width: 859px;
    height: auto;
    margin: 8% auto 0 auto;
    content: url(../images/txt1.png);
    -webkit-animation: fadeInDown 1s;
    animation: fadeInDown 1s;
}

.txt2 {
    width: 1000px;
    height: auto;
    margin: 0 auto;
    content: url(../images/txt2.png);
    -webkit-animation: zoomIn 1.2s forwards;
    animation: zoomIn 1.2s forwards;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

/* 广告页面*/
.swiper-button-next, .swiper-button-prev {
    background-size: auto 35px;
}

.conL, .conR {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.conL {
    width: 480px;
    height: 400px;
    left: 0;
}

.conL p {
    width: 100%;
    height: auto;
    padding-bottom: 150px;
    background: url(../images/line.png) 48px bottom no-repeat;
}

.conL .txt3 {
    content: url(../images/txt3.png);
}

.conL .txt4 {
    content: url(../images/txt4.png);
}

.conL .txt5 {
    content: url(../images/txt5.png);
}

.conL .txt6 {
    content: url(../images/txt6.png);
}

.conL .txt7 {
    content: url(../images/txt7.png);
}

.conL .btnJoin {
    padding: 15px 50px;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 20px;
    color: #fff;
    margin-top: 40px;
    -webkit-transition: all .3s;
    transition: all .3s;
    background: transparent;
}

.conL .btnJoin:hover {
    border-color: #56b3ff;
    background: #56b3ff;
    background: -webkit-gradient(linear, left top, right top, from(#56b3ff), to(#9158ff));
    background: linear-gradient(to right, #56b3ff 0%, #9158ff 100%);
}

.conR {
    width: 900px;
    height: 580px;
    right: 0;
    background: #fff;
    border-radius: 20px;
    overflow-x: hidden;
    overflow-y: auto;
}

.adCon .pic {
    margin: 8px 0 0 20px;
}

.adCon .info {
    float: right;
    width: 380px;
    margin: 130px 120px 0 0;
}

.adCon .info h3 {
    font-size: 34px;
    text-align: center;
    padding: 30px 0;
    font-weight: normal;
}

.adCon .info p {
    font-size: 16px;
    color: #666;
    position: relative;
    line-height: 24px;
    margin-bottom: 20px;
    padding-left: 90px;
}

.adCon .info p label {
    position: absolute;
    left: 0;
    top: 0;
}

/* 联盟公告*/
.comTit {
    margin: 20px 40px;
    border-bottom: 1px solid #e2e2e2;
}

.comTit h3 {
    font-size: 24px;
    line-height: 50px;
    position: relative;
    display: inline-block;
    font-weight: normal;
}

.comTit h3:after {
    content: '';
    width: 50%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 5px;
    background: #56b3ff;
    background: -webkit-gradient(linear, left top, right top, from(#56b3ff), to(#9158ff));
    background: linear-gradient(to right, #56b3ff 0%, #9158ff 100%);
}

.newsCon .pager {
    float: right;
}

.newsCon .pager a {
    padding: 25px 15px;
    background: url(../images/arrows.png) no-repeat;
}

.newsCon .pager a:hover {
    background-position-y: -50px;
}

.newsCon .pager .prev {
    background-position-x: -10px;
}

.newsCon .pager .next {
    background-position-x: -60px;
}

.newsCon .list {
    margin: 30px 40px 0 40px;
    height: 440px;
    overflow-x: hidden;
    overflow-y: auto;
}

.newsCon .list ul li {
    float: left;
    position: relative;
    padding-left: 80px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.newsCon .list ul li .timer {
    padding: 10px;
    background: #e2e2e2;
    color: #999;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
}

.newsCon .list ul li .timer em {
    display: block;
    font-style: normal;
    font-size: 16px;
    color: #333;
}

.newsCon .list ul li a, .newsCon .list ul li p {
    float: left;
    width: 100%;
    color: #999;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newsCon .list ul li a {
    font-size: 16px;
    color: #333;
}

.newsCon .list ul li a:hover {
    color: #00a0e9;
}

/* 公告详情*/
.newsDetailCon {
    margin: 0 40px;
}

.newsDetailCon .tit {
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
    padding: 30px 0;
}

.newsDetailCon .tit h1 {
    font-size: 20px;
    font-weight: normal;
    color: #333;
    line-height: 40px;
}

.newsDetailCon .tit span {
    display: block;
    color: #999;
}

.newsDetailCon .con {
    height: 280px;
    margin: 30px 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.newsDetailCon .con p {
    line-height: 26px;
}

.newsDetailCon .page {
    padding: 20px 0;
    position: relative;
    border-top: 1px solid #e5e5e5;
}

.newsDetailCon .page .prev,
.newsDetailCon .page .next {
    width: 100%;
    line-height: 30px;
    overflow: hidden;
    color: #333;
}

.newsDetailCon .page a {
    color: #666;
}

.newsDetailCon .page .prev a:hover,
.newsDetailCon .page .next a:hover {
    color: #00a0e9;
}

/* 联系我们*/
.serCon .kfList {
    margin: 30px 40px;
}

.serCon .kfList a {
    display: inline-block;
    width: 130px;
    height: 40px;
    line-height: 40px;
    padding: 0 10px 0 40px;
    overflow: hidden;
    background: #e2e2e2;
    border-radius: 40px;
    margin-right: 27px;
    margin-bottom: 20px;
    -webkit-transition: all .3s;
    transition: all .3s;
    position: relative;
}

.serCon .kfList a:before {
    content: '';
    position: absolute;
    left: 12px;
    top: 10px;
    padding: 10px;
    -webkit-transition: all .3s;
    transition: all .3s;
    background: url(../images/ic_tg.png) center no-repeat;
    background-size: auto 20px;
}

.serCon .kfList a:nth-child(4n) {
    margin-right: 0;
}

.serCon .kfList a:hover {
    color: #fff;
    background: #56b3ff;
    background: -webkit-gradient(linear, left top, right top, from(#56b3ff), to(#9158ff));
    background: linear-gradient(to right, #56b3ff 0%, #9158ff 100%);
}

.serCon .kfList a:hover:before {
    background: url(../images/ic_tg2.png) center no-repeat;
}

/* 用户留言*/
.msgFrm {
    margin: 30px 40px;
}

.msgFrm input, .msgFrm textarea {
    border: 1px solid #e2e2e2;
    border-radius: 5px;
}

.msgFrm input {
    padding: 5px;
    line-height: 30px;
    margin-right: 20px;
}

.msgFrm textarea {
    width: 100%;
    height: 120px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    margin: 20px 0;
    resize: none;
}

.coptList {
    margin: 30px 40px 0 40px;
}

.coptList a {
    width: 150px;
    height: 60px;
    margin-right: 15px;
    display: block;
    float: left;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    overflow: hidden;
}

.coptList a:nth-child(5n) {
    margin-right: 0;
}

.coptList a:hover {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(202, 202, 202, 0.5);
    box-shadow: 0px 10px 20px 0px rgba(202, 202, 202, 0.5);
}

.btnSub {
    width: 150px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border: 0;
    border-radius: 40px !important;
    cursor: pointer;
    letter-spacing: 10px;
    -webkit-transition: all .3s;
    transition: all .3s;
    background: #56b3ff;
    background: -webkit-gradient(linear, left top, right top, from(#56b3ff), to(#9158ff));
    background: linear-gradient(to right, #56b3ff 0%, #9158ff 100%);
}

.btnSub:hover {
    background: #8dccff;
    background: -webkit-gradient(linear, left top, right top, from(#8dccff), to(#a172fd));
    background: linear-gradient(to right, #8dccff 0%, #a172fd 100%);
}

/* 消息提示*/
.toast {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    padding: 4px 8px;
    z-index: 9999;
}

/* 登录弹窗*/
.pop {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.pop .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 100;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    background: rgba(0, 0, 0, .6);
    -webkit-animation: show .8s forwards;
    animation: show .8s forwards;
}

@-webkit-keyframes show {
    100% {
        opacity: 1;
    }
}

@keyframes show {
    100% {
        opacity: 1;
    }
}

.pop .con {
    width: 500px;
    height: 390px;
    position: absolute;
    z-index: 105;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: height .6s;
    transition: height .6s;
    overflow: hidden;
}

.pop .front, .pop .back {
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 0 50px;
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: ease-in-out 600ms;
    transition: ease-in-out 600ms;
    border-radius: 10px;
}

.pop .back {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.pop .showReg {
    height: 750px;
}

.pop .showReg .front {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.pop .showReg .back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.pop .con dl dt {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 90px;
    position: relative;
}

.pop .con dl dt .js_closePop {
    position: absolute;
    top: 50%;
    right: 0;
    padding: 15px;
    transform: translateY(-50%);
    background: url(../images/ic_close.png) center no-repeat;
    background-size: auto 80%;
}

.pop .con dl dd {
    width: 100%;
    margin-bottom: 24px;
}

.pop .con dl dd a {
    font-weight: bold;
    color: #00a0e9;
}

.pop .con dl dd .js_abSer {
    display: none;
}

.pop .con dl .big {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(136, 102, 255, 0.4);
    box-shadow: 0px 10px 20px 0px rgba(136, 102, 255, 0.4);
}

.pop .con dl .change {
    text-align: center;
}

.pop .con dl .change a {
    color: #00a0e9;
    font-weight: normal;
}

.pop .con .frmInp {
    width: 100%;
    height: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px 10px 8px 50px;
    border-radius: 5px;
    background-color: #f5f5f5;
    background-repeat: no-repeat;
    background-position-x: 15px;
    background-position-y: center;
}

.front dl dd.tips {
    color: red;
    line-height: 35px;
    margin-bottom: 0;
}

/* 表单图标*/
.icoName {
    background-image: url(../images/ic_frm_user.png);
}

.icoPwd {
    background-image: url(../images/ic_frm_pwd.png);
}

.icoEmail {
    background-image: url(../images/ic_frm_email.png);
}

.icoSite {
    background-image: url(../images/ic_frm_site.png);
}

.icoQq {
    background-image: url(../images/ic_frm_qq.png);
}

.icoMobile {
    background-image: url(../images/ic_frm_mobile.png);
}

.pop .con .frmCode {
    padding: 8px 20px;
    width: 240px;
}

.pop .con .frmCodeImg {
    float: right;
}

.pop .con .frmCodeImg img {
    margin-top: 0px;
    height: 40px;
}

.pop .con .tab input {
    width: 0;
    height: 0;
    position: absolute;
}

.pop .con .tab label {
    font-size: 16px;
    position: relative;
    margin-right: 20px;
    padding-bottom: 8px;
    color: #999;
    cursor: pointer;
}

.pop .con .tab input:checked + label {
    color: #333;
}

.pop .con .tab input:checked + label:after {
    content: '';
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
    background: #56b3ff;
    background: -webkit-gradient(linear, left top, right top, from(#56b3ff), to(#9158ff));
    background: linear-gradient(to right, #56b3ff 0%, #9158ff 100%);
}

/* 网站协议*/
.acceptBg {
    background: #f0f0f0;
    height: 100%;
    overflow: auto;
}

.acceptLayout {
    width: 930px;
    margin: 15px auto;
    padding: 20px 25px;
    background: #fff;
    -webkit-box-shadow: 2px 2px 5px #ccc;
    box-shadow: 2px 2px 5px #ccc;
}

.acceptLayout h2 {
    font-size: 16px;
    padding: 15px 0;
    border-bottom: 1px #cfcfcf solid;
    margin-bottom: 20px;
}

.acceptLayout p {
    line-height: 24px;
    margin-bottom: 10px;
}

.acceptLayout .p_l {
    padding-left: 2em;
}

.acceptLayout strong {
    display: block;
    margin: 40px 0 20px 0;
}

/* 自适应*/
@media (max-width: 1600px) {
    header {
        padding: 40px;
    }

    footer {
        height: 100px;
    }

    footer nav a {
        padding-top: 70px;
        font-size: 16px;
        height: 30px;
    }

    .txt1 {
        width: 580px;
        margin: 12% auto 0 auto;
    }

    .txt2 {
        width: 900px;
    }

    .conWrap {
        width: 1200px;
        top: 120px;
    }

    .conL {
        width: 360px;
        height: 330px;
    }

    .conL p {
        padding-bottom: 120px;
        background-size: auto 90px;
    }

    .conL .btnJoin {
        padding: 10px 40px;
    }

    .conR {
        width: 680px;
        height: 430px;
    }

    .adCon .pic {
        width: 255px;
    }

    .adCon .info {
        width: 320px;
        margin: 85px 60px 0 0;
    }

    .adCon .info h3 {
        font-size: 28px;
        padding: 20px 0;
    }

    .adCon .info p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .comTit {
        margin: 15px 30px;
    }

    .comTit h3 {
        font-size: 20px;
    }

    .newsCon .list {
        margin: 20px 30px 0 30px;
        height: 330px;
    }

    .newsDetailCon {
        margin: 0 30px;
    }

    .newsDetailCon .tit {
        padding: 20px 0;
    }

    .newsDetailCon .con {
        height: 185px;
        margin: 20px 0;
    }

    .serCon .kfList, .msgFrm {
        margin: 20px 30px;
    }

    .serCon .kfList a {
        font-size: 12px;
        width: 110px;
        padding: 0 5px 0 30px;
        margin-right: 7px;
        margin-bottom: 10px;
    }

    .serCon .kfList a:before {
        left: 7px;
        background-size: auto 20px;
    }

    .msgFrm input {
        line-height: 25px;
    }

    .msgFrm textarea {
        height: 75px;
        margin: 15px 0;
    }

    .coptList {
        margin: 20px 30px;
    }

    .coptList a {
        width: 108px;
        height: 45px;
    }

    .coptList a img {
        width: 100%;
    }

    .pop .con {
        width: 440px;
        height: 380px;
    }

    .pop .showReg {
        height: 640px;
    }

    .pop .front, .pop .back {
        padding: 0 40px;
    }

    .pop .con .frmInp {
        height: 40px;
    }

    .pop .con .frmCode {
        width: 200px;
    }

    .pop .con .frmCodeImg img {
        margin-top: 0;
    }

    .pop .con dl dt {
        line-height: 80px;
        font-size: 20px;
    }

    .pop .con dl dd {
        margin-bottom: 20px;
    }

    .pop .con dl .big {
        width: 100%;
        height: 45px;
        line-height: 45px;
        font-size: 18px;
    }

    .pop .con .tab label {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    header {
        padding: 30px;
    }

    header .menu {
        padding: 100px 25px 0 25px;
    }

    header .menu a {
        font-size: 14px;
        margin-bottom: 20px;
    }

    footer {
        height: 80px;
    }

    footer nav {
        max-width: 860px;
    }

    footer nav a {
        width: 120px;
        margin-right: 60px;
        padding-top: 50px;
        font-size: 14px;
        height: 30px;
        background-position: center 15px;
        background-size: auto 25px;
    }

    footer nav a:nth-child(2), footer nav a:nth-child(3) {
        background-position-y: 18px;
    }

    .txt1 {
        width: 460px;
        margin: 10% auto 0 auto;
    }

    .txt2 {
        width: 800px;
    }

    .conWrap {
        width: 900px;
        top: 120px;
        bottom: 120px;
    }

    .conL {
        width: 300px;
        height: 280px;
    }

    .conL p {
        padding-bottom: 100px;
        background-size: auto 80px;
    }

    .conL .btnJoin {
        padding: 10px 40px;
    }

    .conR {
        width: 560px;
        height: 360px;
        border-radius: 8px;
    }

    .adCon .pic {
        width: 215px;
    }

    .adCon .info {
        width: 280px;
        margin: 60px 40px 0 0;
    }

    .adCon .info h3 {
        font-size: 20px;
        padding: 20px 0;
    }

    .adCon .info p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .comTit {
        margin: 10px 20px;
    }

    .comTit h3 {
        font-size: 16px;
        line-height: 40px;
    }

    .newsCon .list {
        margin: 20px 20px 0 20px;
        height: 270px;
    }

    .newsCon .list ul li {
        padding-left: 70px;
        margin-bottom: 15px;
    }

    .newsCon .list ul li a, .newsCon .list ul li p {
        line-height: 24px;
        font-size: 14px;
    }

    .newsCon .list ul li .timer {
        font-size: 12px;
        padding: 8px;
    }

    .newsCon .list ul li .timer em {
        font-size: 14px;
    }

    .newsDetailCon {
        margin: 0 20px;
    }

    .newsDetailCon .tit {
        padding: 10px 0;
    }

    .newsDetailCon .tit h1 {
        font-size: 18px;
    }

    .newsDetailCon .con {
        height: 190px;
        margin: 10px 0;
    }

    .newsDetailCon .page {
        padding: 10px 0;
    }

    .newsDetailCon .page .prev, .newsDetailCon .page .next {
        line-height: 24px;
    }

    .serCon .kfList, .msgFrm {
        margin: 10px 20px;
    }

    .serCon .kfList a {
        height: 30px;
        line-height: 30px;
    }

    .serCon .kfList a:before {
        top: 5px;
    }

    .serCon .kfList a, .serCon .kfList a:nth-child(4n) {
        margin-right: 25px;
    }

    .serCon .kfList a:nth-child(3n) {
        margin-right: 0;
    }

    .coptList {
        margin: 20px 20px;
    }

    .coptList a {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    html, body {
        height: auto;
        overflow-y: auto;
    }

    header {
        width: 100%;
        padding: 15px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    header .logo {
        width: 180px;
        height: 30px;
    }

    header .info a {
        font-size: 14px;
        padding: 5px 6px;
    }

    footer {
        position: fixed;
        height: 70px;
        background: rgba(0, 0, 0, .6);
    }

    footer nav {
        max-width: 100%;
    }

    footer nav a {
        width: 18.4%;
        margin-right: 2%;
        float: left;
        padding-top: 43px;
        font-size: 12px;
        height: 25px;
        background-position: center 12px;
        background-size: auto 20px;
    }

    footer nav a:nth-child(2), footer nav a:nth-child(3) {
        background-position-y: 12px;
    }

    .btnNav, .conL, .halfBg {
        display: none;
    }

    .conWrap {
        position: relative;
        top: 0;
        bottom: 0;
        left: 0;
        -webkit-transform: none;
        transform: none;
        width: 100%;
    }

    .txt1 {
        width: 60%;
        margin: 200px auto 0 auto;
    }

    .txt2 {
        width: 80%;
    }

    .conR {
        position: relative;
        top: 0;
        -webkit-transform: none;
        transform: none;
        margin: 20px 4% 100px 4%;
        width: 92%;
        height: auto;
        background: rgba(255, 255, 255, .9);
    }

    .adCon {
        text-align: center;
    }

    .adCon .pic {
        width: 150px;
        margin-left: -30px;
    }

    .adCon .info {
        width: 90%;
        margin: 10px 5%;
    }

    .adCon .info h3 {
        font-size: 16px;
        padding-top: 0;
    }

    .adCon .info p {
        font-size: 12px;
        line-height: 20px;
        text-align: left;
    }

    .swiper-button-next, .swiper-button-prev {
        background-size: auto 25px;
    }

    .comTit {
        border-color: #ccc;
    }

    .newsCon .list ul li .timer {
        background: rgb(253, 253, 253);
    }

    .newsCon .list, .newsDetailCon .con {
        height: auto;
    }

    .serCon .kfList a, .serCon .kfList a:nth-child(4n), .serCon .kfList a:nth-child(3n) {
        margin-right: 10px;
        background: #fff;
    }

    .serCon .kfList a:nth-child(2n) {
        margin-right: 0;
    }

    .coptList a {
        width: 90px;
        height: 36px;;
        margin-right: 9px;
    }

    .msgFrm input {
        margin-bottom: 10px;
    }

    .msgFrm textarea {
        margin-top: 0;
    }

    .btnSub {
        width: 120px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }

    .pop .con {
        width: 92%;
        height: 325px;
    }

    .pop .showReg {
        height: 560px;
    }

    .pop .front, .pop .back {
        padding: 0 20px;
    }

    .pop .con .frmInp {
        padding: 5px 10px 5px 50px;
    }

    .pop .con .frmCode {
        width: 130px;
        padding: 8px 20px;
    }

    .pop .con .frmCodeImg img {
        margin-top: 0;
        height: 40px;
    }

    .pop .con dl dd {
        margin-bottom: 15px;
        font-size: 12px;
    }

    .pop .con dl dt {
        line-height: 60px;
        font-size: 16px;
        font-weight: normal;
    }

    .pop .con dl .big {
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
}