html,
body {
    height: 100%;
}

#main {
    overflow: hidden;
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.71, -0.01, 0.06, 0.99);
    -webkit-transition: opacity 2s cubic-bezier(0.71, -0.01, 0.06, 0.99);
    -moz-transition: opacity 2s cubic-bezier(0.71, -0.01, 0.06, 0.99);
    -o-transition: opacity 2s cubic-bezier(0.71, -0.01, 0.06, 0.99);
    -ms-transition: opacity 2s cubic-bezier(0.71, -0.01, 0.06, 0.99);
    
}




.load {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    z-index: 999999;
    overflow: hidden;
    transition: width 1s cubic-bezier(0.71, -0.01, 0.06, 0.99);
    -webkit-transition: width 1s cubic-bezier(0.71, -0.01, 0.06, 0.99);
    -moz-transition: width 1s cubic-bezier(0.71, -0.01, 0.06, 0.99);
    -o-transition: width 1s cubic-bezier(0.71, -0.01, 0.06, 0.99);
    -ms-transition: width 1s cubic-bezier(0.71, -0.01, 0.06, 0.99);
}

.loadcontent {
    width: 100%;
    height: 100%;
    position: relative;
}

.loadlogo {
    width: 800px;
    position: absolute;
    left: 52%;
    top: 45%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#content {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
}

#content.login {
    left: -320px;
}

#content,
#header {
    -o-transition-duration: .6s;
    -ms-transition-duration: .6s;
    -moz-transition-duration: .6s;
    -webkit-transition-duration: .6s;
    transition-duration: .6s;
}




#header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

#header.login {
    margin-left: -320px;
}

#header .bg {
    position: absolute;
    top: -84px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 83px;
    background-color: #fff;
    -o-transition-duration: .5s;
    -ms-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    border: 1px solid #e1ecfb;
}

#header .logo,
#header .icon,
#header .button {
    height: 70px;
}

#header .logo {
    position: absolute;
    top: 9px;
    left: 1.7%;
    z-index: 2;
    width: 182px;
    height: 52px;
    background: url(../image/logo.png) no-repeat top center;
    -o-transition-duration: .5s;
    -ms-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

#header .icon {
    position: absolute;
    top: 26px;
    right: 232px;
    width: 28px;
    height: 18px;
    display: block;
    background: url(../image/header_icon1.png) no-repeat center center;
}

#header .icon:hover {
    background-image: url(../image/header_icon2.png);
}

#header .button {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 190px;
    height: 70px;
    font-size: 14px;
    color: #fff;
    line-height: 70px;
    background-color: #3ae98d;
    cursor: pointer;
    -o-transition-duration: .5s;
    -ms-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

#header .button:hover {
    background-color: #29db7e;
}

#header .nav {
    position: absolute;
    top: -84px;
    right: 200px;
    z-index: 1;
    line-height: 84px;
    font-size: 0;
    -o-transition-duration: .5s;
    -ms-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

#header .nav a {
    display: inline-block;
    font-size: 14px;
    color: #8d8d8d;
    margin-right: 40px;
}

#header .nav a:hover,
#header .nav a.cur {
    color: #323232;
}

#header.scroll .logo {
    top: 20px;
    width: 152px;
    height: 44px;
    background-image: url(../image/logo_s.png);
}

#header.scroll .bg,
#header.scroll .nav {
    top: 0;
}

#header.scroll .button {
    height: 84px;
    line-height: 84px;
}

@media screen and (max-width: 1024px) {
    #header .icon {
        right: 210px;
    }
    #header .icon:hover {
        background-image: url(../image/header_icon1.png);
    }
    #header .nav a:hover {
        color: #8d8d8d;
    }
    #header .nav a.cur:hover {
        color: #323232;
    }
    #header .button {
        width: 180px;
    }
    #header .button:hover {
        background-color: #3ae98d;
    }
    #header .nav {
        right: 190px;
    }
    #header .nav a {
        margin-right: 35px;
    }
}

@media screen and (max-width: 800px) {
    #header .icon {
        right: 188px;
    }
    #header .button {
        width: 164px;
    }
    #header .nav {
        right: 175px;
    }
    #header .nav a {
        margin-right: 30px;
    }
}

@media screen and (max-width: 736px) {
    #header {
        height: 70px;
        overflow: hidden;
        background-color: #fff;
        border: 1px solid #e1ecfb;
    }
    #header .bg {
        display: none;
    }
    #header .logo,
    #header.scroll .logo {
        top: 16px;
        width: 39px;
        height: 38px;
        background-image: url(../image/m_logo.png);
    }
    #header .icon {
        right: 178px;
    }
    #header .button,
    #header.scroll .button {
        width: 156px;
        height: 70px;
        line-height: 70px;
    }
    #header .nav {
        display: none;
    }
}

@media screen and (max-width: 667px) {
    #header {
        height: 68px;
    }
    #header .icon {
        right: 160px;
        top: 25px;
    }
    #header .button,
    #header.scroll .button {
        width: 140px;
        height: 68px;
        line-height: 68px;
    }
}

@media screen and (max-width: 568px) {
    #header {
        height: 66px;
    }
    #header .icon {
        right: 150px;
        top: 25px;
    }
    #header .button,
    #header.scroll .button {
        width: 130px;
        height: 66px;
        line-height: 66px;
    }
}

@media screen and (max-width: 414px) {
    #header {
        height: 64px;
    }
    #header .icon {
        right: 140px;
        top: 24px;
    }
    #header .button,
    #header.scroll .button {
        width: 120px;
        height: 64px;
        line-height: 64px;
    }
}

@media screen and (max-width: 360px) {
    #header {
        height: 62px;
    }
    #header .icon {
        right: 130px;
        top: 23px;
    }
    #header .button,
    #header.scroll .button {
        width: 110px;
        height: 62px;
        line-height: 62px;
    }
}

@media screen and (max-width: 320px) {
    #header {
        height: 60px;
    }
    #header .icon {
        right: 120px;
        top: 22px;
    }
    #header .button,
    #header.scroll .button {
        width: 100px;
        height: 60px;
        line-height: 60px;
    }
}




#footer .container {
    width: 92%;
    margin: 0 auto;
    display: table;
    padding: 56px 0;
    font-size: 14px;
    line-height: 50px;
    position: relative;
}

#footer .container .company {
    width: 273px;
    float: right;
    font-size: 22px;
    color: #857e7e;
    letter-spacing: 10px;
    font-weight: bold;
}

#footer .container .company .name {
    padding-left: 10px;
    border-bottom: 1px solid #dedede;
}

#footer .container .company .icon {
    margin-top: 16px;
    position: relative;
}

#footer .container .company .icon span {
    width: 21px;
    height: 16px;
    display: block;
    background-image: url(../image/footer_weixin1.jpg);
    cursor: pointer;
}

#footer .container .company .icon div {
    width: 290px;
    height: 308px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    margin: -313px -49px 0 0;
    background-image: url(../image/2wm.png);
    display: none;
}

#footer .container .company .icon span:hover {
    background-image: url(../image/footer_weixin2.jpg);
}

#footer .container .copyright {
    width: 42%;
}

#footer .container .copyright,
#footer .container .copyright a {
    color: #484848;
}

#footer .container .copyright a:hover {
    color: #797979;
}

#footer .container .company li,
#footer .container .copyright li {
    width: 100%;
    float: left;
}

#footer .container .copyright li a {
    display: inline-block;
    margin: 0 15px;
}

#footer .container .reback {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 68px;
    margin: -35px 0 0 -35px;
    border: 1px solid #dbe0df;
    background: url(../image/footer_back1.jpg) no-repeat center center;
    cursor: pointer;
}

#footer .container .reback:hover {
    border-color: #3ae98d;
    background-image: url(../image/footer_back2.jpg);
}

@media screen and (max-width: 1024px) {
    #footer .container .company .icon {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    #footer .container .copyright li:last-child {
        display: none;
    }
    #footer .container .copyright li span {
        width: 100%;
        float: left;
    }
}

@media screen and (max-width: 736px) {
    #footer .container {
        padding: 48px 0 50px;
    }
    #footer .container .company {
        float: left;
        margin-bottom: 15px;
    }
    #footer .container .copyright {
        width: 100%;
    }
    #footer .container .copyright li:last-child {
        display: inline;
    }
    #footer .container .reback,
    #footer .container .copyright li:last-child {
        display: none;
    }
}

@media screen and (max-width: 667px) {
    #footer .container {
        padding: 42px 0 44px;
        line-height: 45px;
    }
}

@media screen and (max-width: 568px) {
    #footer .container {
        padding: 38px 0 39px;
        line-height: 40px;
    }
}

@media screen and (max-width: 414px) {
    #footer .container {
        padding: 36px 0;
        line-height: 37px;
    }
}

@media screen and (max-width: 375px) {
    #footer .container {
        padding: 35px 0;
        line-height: 36px;
    }
}

@media screen and (max-width: 320px) {
    #footer .container {
        padding: 32px 0;
        line-height: 32px;
    }
}







.blue_bg,
#navigation {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.blue_bg {
    z-index: 200;
    height: 100%;
    position: fixed;
}

.bg_slices {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: background .3s;
}

.bg_slices_h {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.bg_slice {
    width: 8.333333333333333%;
    height: 100%;
    position: relative;
    float: left;
}

.bg_slice_0 {
    background: -moz-linear-gradient(40deg, #332874 0%, #332874 40%, #2e2468 50%, #2e2468 100%);
    
    background: -webkit-linear-gradient(40deg, #332874 0%, #332874 40%, #2e2468 50%, #2e2468 100%);
    
    background: linear-gradient(140deg, #332874 0%, #332874 40%, #2e2468 50%, #2e2468 100%);
    
}

.bg_slice_1 {
    background: -moz-linear-gradient(40deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
    background: -webkit-linear-gradient(40deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
    background: linear-gradient(140deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
}

.bg_slice_2 {
    background: -moz-linear-gradient(40deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
    background: -webkit-linear-gradient(40deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
    background: linear-gradient(140deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
}

.bg_slice_3 {
    background: -moz-linear-gradient(80deg, #332874 0%, #332874 50%, #2e2468 70%, #2e2468 100%);
    
    background: -webkit-linear-gradient(80deg, #332874 0%, #332874 50%, #2e2468 70%, #2e2468 100%);
    
    background: linear-gradient(100deg, #332874 0%, #332874 50%, #2e2468 70%, #2e2468 100%);
    
}

.bg_slice_4 {
    background: -moz-linear-gradient(-140deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
    background: -webkit-linear-gradient(-140deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
    background: linear-gradient(320deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
}

.bg_slice_5 {
    background: -moz-linear-gradient(-140deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
    background: -webkit-linear-gradient(-140deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
    background: linear-gradient(320deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
}

.bg_slice_6 {
    background: -moz-linear-gradient(-140deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
    background: -webkit-linear-gradient(-140deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
    background: linear-gradient(320deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
}

.bg_slice_7 {
    background: -moz-linear-gradient(40deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
    background: -webkit-linear-gradient(40deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
    background: linear-gradient(140deg, #332874 0%, #332874 70%, #2e2468 80%, #2e2468 100%);
    
}

.bg_slice_8 {
    background: -moz-linear-gradient(150deg, #332874 0%, #332874 40%, #2e2468 50%, #2e2468 100%);
    
    background: -webkit-linear-gradient(150deg, #332874 0%, #332874 40%, #2e2468 50%, #2e2468 100%);
    
    background: linear-gradient(30deg, #332874 0%, #332874 40%, #2e2468 50%, #2e2468 100%);
    
}

.bg_slice_9 {
    background: -moz-linear-gradient(150deg, #332874 0%, #332874 60%, #2e2468 70%, #2e2468 100%);
    
    background: -webkit-linear-gradient(150deg, #332874 0%, #332874 60%, #2e2468 70%, #2e2468 100%);
    
    background: linear-gradient(30deg, #332874 0%, #332874 60%, #2e2468 70%, #2e2468 100%);
    
}

.bg_slice_10 {
    background: -moz-linear-gradient(150deg, #332874 0%, #332874 60%, #2e2468 70%, #2e2468 100%);
    
    background: -webkit-linear-gradient(150deg, #332874 0%, #332874 60%, #2e2468 70%, #2e2468 100%);
    
    background: linear-gradient(30deg, #332874 0%, #332874 60%, #2e2468 70%, #2e2468 100%);
    
}

.bg_slice_11 {
    background: -moz-linear-gradient(140deg, #332874 0%, #332874 60%, #2e2468 70%, #2e2468 100%);
    
    background: -webkit-linear-gradient(140deg, #332874 0%, #332874 60%, #2e2468 70%, #2e2468 100%);
    
    background: linear-gradient(40deg, #332874 0%, #332874 60%, #2e2468 70%, #2e2468 100%);
    
}

#navigation {
    z-index: 201;
}

#navigation .header {
    width: 94%;
    height: 52px;
    display: block;
    margin: 4.5% auto 0;
}

#navigation .header a {
    width: 182px;
    height: 52px;
    display: block;
    background: url(../image/logo.png) no-repeat top center;
}

#navigation .header div {
    margin-top: 18.5px;
    width: 17px;
    height: 17px;
    padding-right: 60px;
    font-size: 14px;
    color: #fff;
    line-height: 17px;
    background: url(../image/close_1.png) no-repeat center right;
    cursor: pointer;
}

#navigation .header div:hover {
    color: #3ae98d;
    background-image: url(../image/close_2.png);
}

#navigation ul {
    width: 479px;
    margin: 8% auto 0;
    display: table;
}

#navigation li {
    width: 100%;
    float: left;
    margin: 7px 0;
}

#navigation li a {
    width: 100%;
    height: 46px;
    display: block;
    font-size: 18px;
    line-height: 46px;
    color: #66ffaf;
    position: relative;
}

#navigation li a:hover span,
#navigation li a.cur span {
    width: 100%;
    height: 100%;
}

#navigation li a img {
    height: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -23px;
}

#navigation .qrcode {
    text-align: center;
    margin-top: 4%;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

#navigation .qrcode p {
    color: #3ae98d;
    font-size: 18px;
    margin-top: 43px;
    position: relative;
    top: 200px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.block_title {
    position: relative;
    width: 100%;
    margin: auto;
    display: inline-block;
}

.block_title .lines {
    width: 2px;
    height: 2px;
    position: absolute;
}

.block_title .lines span {
    display: block;
    background: #fff;
    position: absolute;
}

.block_title .lines.line_lt {
    left: 0;
    top: 0;
    width: 50%;
}

.block_title .lines.line_l {
    left: 0px;
    top: 0;
    height: 100%;
}

.block_title .lines.line_lb {
    left: 0;
    bottom: 0;
    width: 35.5%;
}

.block_title .lines.line_rt {
    right: 0;
    top: 0;
    width: 21%;
}

.block_title .lines.line_r {
    right: 0px;
    top: 0;
    height: 100%;
}

.block_title .lines.line_rb {
    right: 0;
    bottom: 0;
    width: 50%;
}

.block_title .lines.line_lt span,
.block_title .lines.line_rt span {
    left: 0;
    height: 100%;
}

.block_title .lines.line_l span {
    bottom: 0;
    width: 100%;
}

.block_title .lines.line_r span {
    top: 0;
    width: 100%;
}

.block_title .lines.line_rb span,
.block_title .lines.line_lb span {
    right: 0;
    height: 100%;
}

.line_lt span,
.line_rt span,
.line_r span,
.line_rb span,
.line_lb span,
.line_l span {
    width: 0;
    height: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.line_rt span {
    transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
}

.line_r span {
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
}

.line_rb span {
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
}

.line_lb span {
    transition-delay: 0.4s;
    -webkit-transition-delay: 0.4s;
    -ms-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
}

.line_l span {
    transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    -ms-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
}

@media screen and (max-width: 1024px) {
    #navigation .header div:hover {
        color: #fff;
        background-image: url(../image/close_1.png);
    }
    #navigation li a:hover {
        font-size: 18px;
        background-image: none;
    }
    #navigation li a.cur:hover {
        font-size: 18px;
    }
    #navigation li a:hover .lines span {
        display: none;
    }
    #navigation li a.cur .lines span {
        display: block;
    }
}

@media screen and (max-width: 800px) {
    #navigation ul {
        padding-bottom: 4.5%;
    }
}

@media screen and (max-width: 736px) {
    #navigation .header {
        height: 38px;
    }
    #navigation .header a {
        width: 39px;
        height: 38px;
        background-image: url(../image/m_logo.png);
    }
    #navigation .header div {
        margin-top: 11.5px;
    }
}

@media screen and (max-width: 480px) {
    #navigation ul {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 414px) {
    
    #navigation .header {
        margin-top: 10%;
    }
    #navigation ul {
        width: 290px;
        margin-top: 20%;
    }
    #navigation li a.cur,
    #navigation li a.cur:hover {
        
    }
}




.black_bg,
#pro_login {
    width: 100%;
    
    overflow: hidden;
    position: absolute;
    top: 0;
    display: none;
}

.black_bg {
    left: 0;
    z-index: 200;
    background-color: #000;
    filter: alpha(opacity=60);
    -webkit-opacity: .6;
    -moz-opacity: .6;
    -ms-opacity: .6;
    -o-opacity: .6;
    opacity: .6;
}

#pro_login {
    right: 0;
    z-index: 201;
    width: 320px;
    background-color: #332874;
}

#pro_login,
#pro_login a {
    font-size: 14px;
    color: #fff;
}

#pro_login div {
    width: 100%;
    height: 70px;
    line-height: 70px;
    display: block;
    border-bottom: 1px solid #3c327a;
    cursor: pointer;
}

#pro_login div span {
    margin-right: 10%;
    background: url(../image/close_1.png) no-repeat center right;
    padding-right: 30px;
}

#pro_login div:hover span {
    color: #3ae98d;
    background-image: url(../image/close_2.png);
}

#pro_login ul {
    width: 100%;
    display: table;
}

#pro_login li {
    width: 100%;
    float: left;
}

#pro_login li a {
    width: 80%;
    height: 72px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    word-break: break-all;
    text-overflow: ellipsis;
    line-height: 72px;
    padding: 0 10%;
    border-bottom: 1px solid #3c327a;
}

#pro_login li a:hover {
    background-color: #392f78;
}

@media screen and (max-width: 1024px) {
    #pro_login div:hover span {
        color: #fff;
        background-image: url(../image/close_1.png);
    }
    #pro_login li a:hover {
        background-color: transparent;
    }
}

@media screen and (max-width: 667px) {
    #pro_login div {
        height: 69px;
    }
}

@media screen and (max-width: 568px) {
    #pro_login div {
        height: 67px;
    }
}

@media screen and (max-width: 414px) {
    #pro_login div {
        height: 65px;
    }
}

@media screen and (max-width: 360px) {
    #pro_login div {
        height: 63px;
    }
}

@media screen and (max-width: 320px) {
    #pro_login div {
        height: 61px;
    }
}