@charset "utf-8";
/* CSS Document */

html,
body{
    height: 100%;
}
html{
    font-size: 100px;
}
body{
    background: #fff;
    font-weight: normal;
    font-family: Microsoft YaHei,'华文细黑',Helvetica Neue,Helvetica,Tahoma,Arial,Times New Roman,Verdana CenturyGothic,Pingfang SC,Hiragino Sans GB,Hiragino Sans GB W3,Microsoft YaHei UI,WenQuanYi Micro Hei,sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #515151;
    overflow-x: hidden;
}
main{
    display: block;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
input,
select,
button,
textarea{
    font-size: 100%;
    font-family: inherit;
    outline: 0;
    background: none;
    border: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
    color: #ccc;
}
img{
    border: 0;
    -ms-interpolation-mode: bicubic;
    image-rendering: optimizeQuality;
    max-width: 100%;
}
a{
    color: #555;
    text-decoration: none;
    -webkit-transition: color .3s ease;
    -moz-transition: color .3s ease;
    -ms-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
}
a:hover{
    color: #006ed6;
}
a:focus{
    outline: none;
}
ul,
li{
    list-style:none;
}
table{
    width: 100%;
    border-collapse: collapse;
}


/*public css*/
.cf{
    *zoom: 1;
}
.cf:after{
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
    content: ".";
}
.tl{
    text-align: left !important;
}
.tc{
    text-align: center !important;
}
.tr{
    text-align: right !important;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
.vt{
    vertical-align: top !important;
}
.flex{
    display: flex;
}
.fixe{
    position: fixed;
}
.none{
    display: none !important;
}
.relative{
    position: relative;
}
.ellipsis{
    display: inline-block;
    max-width: 100%;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nowrap{
    white-space: nowrap;
}
.table{
    display: table;
    width: 100%;
}
.tr-box{
    display: table-row;
}
.td-box{
    display: table-cell;
}
.container{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}
.inline-block{
    display: inline-block;
}
.va-middle{
    position: relative;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}
.whole-pic {
    text-align: center;
}
.whole-pic > span {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.whole-pic > img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}
.wow-list > *,
.wow {
    opacity: 0;
}
.ovh {
    overflow: hidden !important;
}


#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 80px;
    background: #fff;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.05);
    font-size: 13px;
    color: #555;
    -webkit-transform: translateZ(0);
    transition: height ease .3s;
    -webkit-transition: height ease .3s;	
}
#header .container {
    height: 100%;
}
/***logo***/
#header .logo {
    position: absolute;
    top: 15px;
    left: 10px;
    width: 340px;
    height: 50px;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
#header .logo img {
    display: block;
    width: auto;
    height: 100%;
}
/***mobile-nav-btn***/
#header .mobile-nav-btn {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 50px;
    height: 50px;
}
#header .mobile-nav-btn:before,
#header .mobile-nav-btn:after,
#header .mobile-nav-btn span {
    position: absolute;
    left: 10px;
    top: 50%;
    z-index: 2;
    width: 30px;
    height: 3px;
    background: #006ed6;
    border-radius: 1px;
    content: '';
    transition: all .6s cubic-bezier(.445, .145, .355, 1);
    -webkit-transition: all .6s cubic-bezier(.445, .145, .355, 1);
}
#header .mobile-nav-btn:before {
    margin-top: -12px;
}
#header .mobile-nav-btn:after {
    margin-top: 8px;
}
#header .mobile-nav-btn span {
    margin-top: -2px;
}
#header .mobile-nav-btn i {
    position: absolute;
    right: 50px;
    top: 13px;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    color: #444;
    font-weight: 700;
    white-space: nowrap;
}
#header.active .mobile-nav-btn span {
    opacity: 0;
}
#header.active .mobile-nav-btn:before{
    margin-top: -3px;
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
}
#header.active .mobile-nav-btn:after{
    margin-top: -3px;
    transform: rotate(-225deg);
    -webkit-transform: rotate(-225deg);
}
/***aside-box***/
#header .aside-box {
    position: relative;
    height: 100%;
    padding-left: 8px;
    border-left: 1px solid #e4e4e4;
    background: #fff;
}
#header .aside-box .item-box {
    float: left;
    height: 100%;
}
#header .aside-box .item-box .item-btn {
    display: table;
    height: 100%;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}
#header .aside-box .item-box .item-btn i {
    display: table-cell;
    padding: 0 8px;
    vertical-align: middle;
    font-weight: 700;
    font-style: normal;
    cursor: pointer;
}
#header .aside-box .item-box .item-list {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -2;
    -webkit-transition: transform .3s ease;
    transition: transform .3s ease;
}
#header .aside-box .item-box:hover .item-btn {
    color: #006ed6;
}
#header .aside-box .item-box:hover .item-list {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
#header.ie .aside-box .item-box:hover .item-list {
    top: 100%;
}

#header .aside-box .search-box .btn {
    display: table;
    height: 100%;
}
#header .aside-box .search-box .btn .td-box {
    padding: 0 8px;
    vertical-align: middle;
}
#header .aside-box .search-box .btn i {
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}
#header .aside-box .search-box .btn i:hover {
    color: #006ed6;
}
#header .aside-box .search-box input {
    width: 250px;
    height: 60px;
    padding: 0 15px;
    background: #fff;
    border: 8px solid #4b494e;
    font-size: 12px;
}
#header .aside-box .web-box .list {
    height: 60px;
    padding: 20px 15px;
    background: #4c4a4f;
    white-space: nowrap;
}
#header .aside-box .web-box .list a {
    margin: 0 13px;
    font-size: 12px;
    font-weight: 700;
    color: #d2ced5;
}
#header .aside-box .web-box .list a:hover,
#header .aside-box .web-box .list a.active {
    color: #006ed6;
}
#header .aside-box .link-box .btn i {
    padding-right: 0;
}
#header .aside-box .link-box .btn i:after {
    margin-left: 5px;
    font-size: 12px;
    font-weight: 400;
    font-family: 'iconfont';
    content: '\e606';
}
#header .aside-box .link-box .list {
    left: 0;
    padding: 15px 20px;
    background: #4c4a4f;
}
#header .aside-box .link-box .list li {
    padding: 2px 0;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#header .aside-box .link-box .list li a {
    font-size: 12px;
    color: #d2ced5;
    line-height: 20px;
}
#header .aside-box .link-box .list li a:hover {
    color: #006ed6;
}
/***nav***/
#header .nav {
    float: right;
    height: 100%;
    padding-right: 25px;
    background: #fff;
}
#header .nav .nav-container {
    height: 100%;
}
#header .nav dl {
    float: left;
    height: 100%;
}
#header .nav dt {
    position: relative;
    height: 100%;
}
#header .nav dt:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #006ed6;
    content: '';
    -webkit-transition: height .3s ease;
    transition: height .3s ease;
}
#header .nav dt a {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 0 15px;
    font-weight: 700;
    color: #555;
    vertical-align: middle;
    line-height: 80px;
    transition: color .3s ease, line-height .3s ease;
}
#header .nav dd {
    position: absolute;
    top: 100%;
    width: 1920px;
    overflow: hidden;
    -webkit-transition: height .3s ease;
    transition: height .3s ease;
}
#header .nav dd .list {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 18px 0 18px 65px;
    background: #4c4a4f;
    overflow: hidden;
}
#header .nav dl.active dt:before,
#header .nav dl:hover dt:before {
    height: 100%;
}
#header .nav dl.active dt a,
#header .nav dl:hover dt a {
    color: #fff;
}
#header .nav dd a {
    float: left;
    margin: 0 15px;
    line-height: 24px;
    color: #d2ced5;
    font-weight: 700;
}
#header .nav dd a.active,
#header .nav dd a:hover {
    color: #006ed6;
}
/***mobile-show***/
#header .nav .mobile-show {
    display: none;
}
#header .nav .mobile-show .tel {
    display: block;
    width: 70%;
    max-width: 500px;
    margin: 40px auto 0;
    font-size: 18px;
    line-height: 45px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    background-color: #006ed6;
}
#header .nav .mobile-show .author {
    padding: 20px 0;
    font-size: 14px;
    line-height: 1;
    color: #999;
    text-align: center;
    font-family: '黑体';
}
#header .nav .mobile-show .author a {
    color: #d3d3d3;
}

#header.mini {
    height: 60px;
}
#header.mini .logo {
    top: 10px;
    height: 40px;
}
#header.mini .nav dt a {
    line-height: 60px;
}


#main {
    padding-top: 80px;
}


#footer {
    border-top: 2px solid #eaeaea;
    font-weight: 700;
}
#footer a {
    color: #2e2e57;
}
#footer a:hover {
    color: #006ed6;
}
#footer .right-box {
    width: 345px;
    border-left: 1px solid #f2f2f2;
}
#footer .top-box {
    border-bottom: 1px solid #f2f2f2;
    font-size: 13px;
    color: #2e2e57;
    line-height: 24px;
}
#footer .top-box .td-box {
    padding: 20px 0;
}
#footer .top-box .right-box {
    position: relative;
    background: #f2f2f2;
    text-align: center;
}
#footer .top-box .right-box:before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #006ed6;
    content: '';
}
#footer .top-box .right-box a {
    margin: 0 7px;
}
#footer .bottom-box {
    font-size: 12px;
    color: #555;
}
#footer .bottom-box a {
    color: #555;
}
#footer .bottom-box .right-box {
    padding: 10px 20px;
}


#shares {
    width: 40px;
    position: fixed;
    right: 10px;
    bottom: 130px;
    z-index: 9;
}
#shares a {
    display: block;
    height: 40px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    color: #999;
    font-size: 16px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
#shares a:not(:first-child) {
    border-top: none;
}
#shares a i {
    display: block;
}
#shares a i:before {
    font-size: 24px;
    line-height: 40px;
    transition: all 0s;
}
#shares a#top {
    opacity: 0;
    border: none;
    background: #333;
    transform: translate3d(0, 100%, 0);
    color: #fff;
    visibility: hidden;
}
#shares a#top.show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    visibility: visible;
}
#shares a:hover {
    background: #555;
    color: #fff;
}
#shares a#top:hover {
    background: rgba(0, 0, 0, .9);
}
#shares #top .iconfont:before {
    font-size: 16px;
}


#online_lx {
    width: 192px;
    height: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 9px rgba(4,0,0,.17);
    box-shadow: 0 5px 9px rgba(4,0,0,.17);
    position: fixed;
    bottom: 240px;
    right: 10px;
    margin-right: -10px;
    z-index: 99999;
    right: -192px;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
#online_lx dt {
    padding: 20px;
    line-height: 16px;
    background: #333;
    color: #fff;
    font-size: 14px;
}
#online_lx dt i {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
#online_lx dt i:before {
    display: inline-block;
    width: 14px;
    height: 14px;
}
#online_lx dt i:hover {
    transform: rotate(90deg);
}
#online_lx .list a {
    padding: 12px 25px;
    line-height: 18px;
    background: #f5f5f5;
    color: #353434;
    display: block;
    border-bottom: #fff 1px solid;
    transition: all ease-out .3s;
    font-size: 12px;
    white-space: nowrap;
}
#online_lx .list a i {
    color: #504f4f;
    vertical-align: middle;
    margin-right: 18px;
    transition: all ease-out .3s;
}
#online_lx .list a i:before {
    font-size: 22px;
    transition: all 0s;
}
#online_lx .list a:hover {
    padding: 18px 25px;
    background: #565656;
    color: #fff;
}
#online_lx .list a:hover i {
    color: #d2d2d2;
}
#online_lx .bottom-box {
    padding: 20px 20px;
}
#online_lx .bottom-box div {
    color: #898989;
    line-height: 14px;
    height: 14px;
    margin-bottom: 10px;
}
#online_lx .bottom-box div i {
    margin-right: 20px;
    margin-left: 8px;
    vertical-align: middle;
}
#online_lx .bottom-box div i:before {
    font-size: 18px;
	color: #504f4f;
}
#online_lx .bottom-box p {
    line-height: 22px;
    color: #504f4f;
    font-family: Times New Roman,Microsoft YaHei,'华文细黑';
    font-weight: bold;
    font-size: 22px;
	text-align:center;
}

#fixed_weixin {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    width: 100%;
    height: 100%;
}
#fixed_weixin.show {
    display: block;
}
#fixed_weixin .bg {
    height: 100%;
    background: rgba(0, 0, 0, .6);
}
#fixed_weixin .fixed-container {
    width: 260px;
    height: auto;
    padding: 20px 20px 0 20px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -110px;
    margin-top: -140px;
}
#fixed_weixin .fixed-container img {
    display: block;
    width: 220px;
    height: 220px;
}
#fixed_weixin .fixed-container p {
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #000;
}


#online {
    position: fixed;
    bottom: 25px;
    left: 15%;
    z-index: 8;
    display: flex;
    width: 70%;
    height: 40px;
    border-radius: 20px;
    background: rgba(243, 243, 243, .9);
    visibility: hidden;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}
#online a {
    box-sizing: border-box;
    float: left;
    flex: 1;
    width: 33.3%;
    height: 100%;
    color: #333;
    text-align: center;
    line-height: 40px;
}
#online a:before {
    font-size: 28px;
    transition: all 0s;
}
#online a.fa-home {
    font-size: 25px;
}
#online a:not(:last-child) {
    border-right: 1px solid #fff;
}


#video-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    overflow: hidden;
    visibility: hidden;
}
#video-container .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
}
#video-container .switch-btn {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background: #fbfbfb;
    font-size: 26px;
    line-height: 50px;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease;
}
#video-container .switch-btn:hover {
    background-color: rgba(248, 248, 248, 1);
}
#video-container .switch-btn.disabled {
    background-color: rgba(255, 255, 255, .3) !important;
    color: #555 !important;
    cursor: auto;
}
#video-container .prev-btn {
    left: 0;
}
#video-container .next-btn {
    right: 0;
}
#video-container .modal-body {
    display: table;
    width: 100%;
    height: 100%;
}
#video-container .modal-body .td-box {
    display: table-cell;
    padding: 20px 60px;
    vertical-align: middle;
}
#video-container .modal-body .content-box {
    position: relative;
    z-index: 2;
    top: -100px;
    max-width: 980px;
    margin: auto;
    padding: 10px;
    background: #fff;
    opacity: 0;
    transition: all .36s ease;
}
#video-container .video-box video {
    width: 100%;
}
#video-container .info-box {
    height: 30px;
    padding-top: 2px;
    line-height: 30px;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#video-container.in {
    visibility: visible;
}
#video-container.in .bg {
    background: rgba(0, 0, 0, .6);
}
#video-container.in .switch-btn {
    opacity: 1;
}
#video-container.in .modal-body .content-box {
    opacity: 1;
    top: 0;
}


@media screen and (max-width: 1200px) {
    #header .aside-box {
        display: none;
    }
    #header .nav {
        padding-right: 60px;
	}
}

@media screen and (min-width: 981px) {
    #header .nav dd {
        height: 0 !important;
    }
    #header .nav .only dd {
        display: none;
    }
    #header .nav dl:hover dd {
        height: 60px !important;
    }
}
@media screen and (max-width: 980px) {
    #main {
        padding-top: 50px;
    }
    #header {
        height: 50px !important;
    }
    #header .mobile-nav-btn {
        display: block;
    }
    #header .logo {
        top: 10px !important;
        height: 30px !important;
    }
    #header .nav {
        box-sizing: border-box;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 0;
        padding: 0;
        background: #fafafa;
        overflow-x: hidden;
        overflow-y: auto;
        transition: all .3s ease-in-out 0s;
        -webkit-overflow-scrolling: touch;
    }
    #header .nav:before {
        display: block;
        height: 57px;
        content: '';
    }
    #header .nav .nav-container {
        height: auto;
    }
    #header .nav dl {
        float: none;
        height: auto;
    }
    #header .nav dl.has-sub dt:before {
        display: block !important;
        z-index: 2;
        height: 100% !important;
        background: none;
        cursor: pointer;
    }
    #header .nav dl.has-sub dt a:after {
        position: relative;
        float: right;
        margin-left: 5px;
        font-family: 'iconfont';
        font-size: 20px !important;
        transition: transform .36s ease-out 0s;
        -webkit-transition: -webkit-transform .36s ease-out 0s;
        content: '\e603' !important;
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    #header .nav dt {
        display: block;
    }
    #header .nav dt:before {
        display: none;
    }
    #header .nav dt a {
        display: block;
        box-sizing: border-box;
        height: 50px;
        padding: 0 35px;
        border-bottom: 1px solid #eaeaea;
        font-size: 16px;
        line-height: 50px;
        color: #666 !important;
        font-weight: 400;
        transition: all .3s;
    }
    #header .nav dd {
        position: relative;
        top: 0;
        width: 100%;
        height: 0;
    }
    #header .nav dd .list {
        position: relative;
        height: auto;
        padding: 0;
        background: none;
    }
    #header .nav dd a {
        position: relative;
        float: none;
        display: block;
        height: 45px;
        margin: 0;
        padding: 0 35px 0 60px;
        border-bottom: 1px solid #eaeaea;
        color: #666;
        font-size: 16px;
        line-height: 45px;
        font-weight: 400;
    }
    #header .nav dd a:before {
        position: absolute;
        left: 60px;
        top: 50%;
        width: 6px;
        height: 6px;
        margin-top: -3px;
        margin-left: -13px;
        border-radius: 50%;
        background: #666;
        content: '';
    }
    #header.active,
    #header.active .nav {
        height: 100% !important;
    }
    #header .nav dl.mobile-on dt a{
        background: #006ed6;
        color: #fff !important;
    }
    #header .nav dl.mobile-on dt a:after {
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
    }
    #header .nav dd .active {
        background: #e9e9e9;
    }
    #header .nav dd .active:before {
        background: #006ed6;
    }
    #header .nav .mobile-show {
        display: block;
    }

    #footer .contact-us {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    #shares,
    #online_lx {
        display: none;
    }

    #footer .top-box {
        display: none;
    }
    #footer .bottom-box {
        height: 44px;
        background: #333;
        overflow: hidden;
    }
    #footer .bottom-box .right-box {
        width: 100%;
        padding: 0;
        border: none;
        font-size: 13px;
        line-height: 44px;
        color: #fff;
        font-weight: 400;
    }
    #footer .bottom-box a {
        color: #fff;
    }
}

@media screen and (max-width: 540px) {
    #online {
        visibility: visible;
    }
    #video-container .switch-btn {
        display: none;
    }
    #video-container .modal-body .td-box {
        padding: 10px;
    }
}