@charset "UTF-8";
*, button {
    padding: 0;
    margin: 0;
    font-family: "Microsoft YaHei";
}
html {-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
a{
    border:none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color:transparent;
    outline:none;
}
html, body {
    height: 100%;
}
#wrap {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}
/*头部*/
.topBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 0;
    background: #fff;
}
.top-bar {
    padding: 0 30px;
}
.navBtn {
    width: 38px;
    height: 41px;
    background: url(../images/m/nav-btn.png) no-repeat;
}
.navClose {
    width: 38px;
    height: 34px;
    background: url(../images/m/nav-close.png) no-repeat;
    margin-top: 4px;
}
/*导航列表*/
.navList {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    max-width: 720px;
    margin: auto;
    height: 100%;
    background: rgba(255, 255, 255, .95);
    display: none;
}
.navListUl {
    margin-top: 89px;
}
.listNav {
    width: 100%;
    line-height: 59px;
    padding: 30px 0 16px;
    font-size: 26px;
    text-align: center;
    border-bottom: 1px dashed #ababab;
}
.listNav a {
    color: #2a2a2a;
}
.listNav .icon {
    display: inline-block;
    width: 59px;
    height: 59px;
    background: url(../images/m/nav-icon.png);
    vertical-align: middle;
    margin-right: 22px;
}
.listNav:nth-of-type(1) .icon {background-position-y: 0;}
.listNav:nth-of-type(2) .icon {background-position-y: -99px;}
.listNav:nth-of-type(3) .icon {background-position-y: -199px;}
.listNav:nth-of-type(4) .icon {background-position-y: -298px;}
.listNav:nth-of-type(5) .icon {background-position-y: -397px;}
.listNav:nth-of-type(6) .icon {background-position-y: -497px;}
.listNav:nth-of-type(7) .icon {background-position-y: -596px;}
.listNav:nth-of-type(8) .icon {background-position-y: -696px;}
.nav-show {
    -webkit-animation: bounceInDown .5s 0s ease-in-out both;
    -moz-animation: bounceInDown .5s 0s ease-in-out both;
    -ms-animation: bounceInDown .5s 0s ease-in-out both;
    animation: bounceInDown .5s 0s ease-in-out both;
}
.nav-hide {
    -webkit-animation: fadeOutUp .5s 0s ease-in-out both;
    -moz-animation: fadeOutUp .5s 0s ease-in-out both;
    -ms-animation: fadeOutUp .5s 0s ease-in-out both;
    animation: fadeOutUp .5s 0s ease-in-out both;
}

/*底部区域*/
.contain-bottom {
    width: 100%;
    padding: 55px 0;
    background: #2d2d2d;
}
.list {
    width: 660px;
    margin: 0 auto;
}
.bottomLi {
    line-height: 60px;
    border: 3px solid #676767;
    margin-top: 27px;
    font-size: 28px;
    color: #8f8f8f;
    text-indent: 30px;
}
.bottomLi:first-child {
    margin-top: 0;
}
.bottomLi .txt {
    width: 90%;
}
.bottomLi .icon {
    width: 10%;
    height: 60px;
    background: url(../images/m/down-arrow.png) no-repeat center;
}
.bottomLi .rightIcon {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.subListBottom {
    float: left;
    width: 100%;
    border-top: 3px solid #676767;
}
.subListBottom li {
    font-size: 26px;
}
.subBottomLi a {
    display: block;
    width: 100%;
    height: 100%;
    color: #8f8f8f;
}
.subBottomLi a:active, .subBottomLi a:hover {color: #5db04f; text-decoration: none;}
.subBottomLi a:active > span, .subBottomLi a:hover > span {
    display: inline-block;
    margin-left: 24px;
    width: 10px;
    height: 20px;
    background: url(../images/m/right-arrow.png) no-repeat;
}
/*版权区域*/
.footer {
    width: 100%;
    padding: 35px 0 32px;
    background: #0c0c0c;
    color: #7b7b7b;
    text-align: center;
    font-size: 17px;
    line-height: 35px;
}
/*返回样式*/
.back {
    margin-top: 89px;
    line-height: 89px;
    color: #fff;
    background: #32b41c;
    font-size: 35px;
    font-weight: bold;
}
.back a {
    width: 49px;
    height: 89px;
    background: url(../images/m/back-btn.png) no-repeat 0 50%;
}
.line {
    width: 100%;
    height: 1px;
    background: #d0cecf;
}

/*动画样式*/
@-webkit-keyframes bounceInDown {
    0%,60%,75%,90%,100% {
        -webkit-transition-timing-function: cubic-bezier(0.215,.61,.355,1)
    }

    0% {
        opacity: .01;
        filter: alpha(opacity=1);
        -webkit-transform: translate3d(0,-16rem,0)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translate3d(0,15px,0)
    }

    75% {
        -webkit-transform: translate3d(0,-8px,0)
    }

    90% {
        -webkit-transform: translate3d(0,4px,0)
    }

    100% {
        -webkit-transform: none
    }
}
@-moz-keyframes bounceInDown {
    0%,60%,75%,90%,100% {
        -moz-transition-timing-function: cubic-bezier(0.215,.61,.355,1)
    }

    0% {
        opacity: .01;
        filter: alpha(opacity=1);
        -moz-transform: translate3d(0,-16rem,0)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translate3d(0,15px,0)
    }

    75% {
        -moz-transform: translate3d(0,-8px,0)
    }

    90% {
        -moz-transform: translate3d(0,4px,0)
    }

    100% {
        -moz-transform: none
    }
}
@-o-keyframes bounceInDown {
    0%,60%,75%,90%,100% {
        -o-transition-timing-function: cubic-bezier(0.215,.61,.355,1)
    }

    0% {
        opacity: .01;
        filter: alpha(opacity=1);
        -o-transform: translate3d(0,-16rem,0)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translate3d(0,15px,0)
    }

    75% {
        -o-transform: translate3d(0,-8px,0)
    }

    90% {
        -o-transform: translate3d(0,4px,0)
    }

    100% {
        -o-transform: none
    }
}
@-ms-keyframes bounceInDown {
    0%,60%,75%,90%,100% {
        -ms-transition-timing-function: cubic-bezier(0.215,.61,.355,1)
    }

    0% {
        opacity: .01;
        filter: alpha(opacity=1);
        -ms-transform: translate3d(0,-16rem,0)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -ms-transform: translate3d(0,15px,0)
    }

    75% {
        -ms-transform: translate3d(0,-8px,0)
    }

    90% {
        -ms-transform: translate3d(0,4px,0)
    }

    100% {
        -ms-transform: none
    }
}
@keyframes bounceInDown {
    0%,60%,75%,90%,100% {
        transition-timing-function: cubic-bezier(0.215,.61,.355,1)
    }

    0% {
        opacity: .01;
        filter: alpha(opacity=1);
        transform: translate3d(0,-16rem,0)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translate3d(0,15px,0)
    }

    75% {
        transform: translate3d(0,-8px,0)
    }

    90% {
        transform: translate3d(0,4px,0)
    }

    100% {
        transform: none
    }
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translate3d(0,-100%,0)
    }
}
@-moz-keyframes fadeOutUp {
    0% {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translate3d(0,-100%,0)
    }
}
@-o-keyframes fadeOutUp {
    0% {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translate3d(0,-100%,0)
    }
}
@-ms-keyframes fadeOutUp {
    0% {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -ms-transform: translate3d(0,-100%,0)
    }
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translate3d(0,-100%,0)
    }
}

@-webkit-keyframes downUp {
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(15px);
    }
}
@-moz-keyframes downUp {
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(15px);
    }
}
@-o-keyframes downUp {
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(15px);
    }
}
@keyframes downUp {
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(15px);
    }
}