/* flex布局兼容 START */
.flex {
    /* 设置为flex盒子 */
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex_column {
    /* 垂直排列 */
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.flex_wrap {
    /* 允许换行 */
    -webkit-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex_row_center {
    /* 水平方向上居中 */
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}

.flex_row_start {
    /* 水平方向上居左 */
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
}

.flex_row_end {
    /* 水平方向上居右 */
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
}

.flex_row_justify {
    /* 水平方向上等间距排列 */
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}

.flex_column_center {
    /* 垂直方向上居中 */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}

.flex_column_start {
    /* 垂直方向上居上 */
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
}

.flex_column_end {
    /* 垂直方向上居下 */
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
}

.flex1 {
    /* 占据1份大小 */
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex .flex1 > a{
    font-weight: bold;
}

.flex_rank_1 {
    /* 排列等级 */
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
}

.flex_rank_2 {
    /* 排列等级 */
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
}

/* flex END */



/* 居中 */
.center {
    width: 1200px;
    margin: 0 auto;
}


/* 清除浮动 */
.clear_float::after {
    content: ' ';
    display: block;
    clear: both;
}


/* 浮动 */
.float_left {
    float: left;
}
.float_right {
    float: right;
}


/* 过度 */
.transition {
    -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
    -o-transition: all 0.5s;
	transition: all 0.5s;
}


/* 文本溢出隐藏 */
.one_row_text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.two_row_text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.iconfont {
    font-size: inherit;
    color: inherit;
    display: inline-block;
}



/* 背景图 */
.background_img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}




/* 分页 */
.paging {
    position: relative;
    height: 35px;
    margin-top: 30px;
}
.paging a {
    font-size: 14px;
    color: #666;
    box-sizing: border-box;
    margin: 0 5px;
    line-height: 35px;
    text-align: center;
    height: 35px;
    background: #fff;
    border: solid 1px #eaeaea;
}
.paging .page {
    width: 36px;
}
.paging .prevPage,
.paging .nextPage {
    width: 65px;
}
.paging .firstPage,
.paging .lastPage {
    width: 45px;
}
.paging a.active,
.paging a:not(.noPage):hover {
    background: #006bb8;
    color: #fff;
}
.paging .noPage {
    color: #999;
    cursor: default;
    background: #f4f4f4;
}





/* 图片居中 */
.picture_container {
    position: relative;
    overflow: hidden;
    background: #f4f4f4;
}
.picture_container.png {
    background: none;
}
.picture_container img {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
    -o-transition: all 0.5s;
	transition: all 0.5s;
}



/* 点击加载更多 */
.loadData {
    text-align: center;
}
.loadData a {
    position: relative;
    width: 332px;
	height: 40px;
	background: #f1f5f7;
    font-size: 16px;
	letter-spacing: 1px;
	color: #61778e;
    display: none;
    line-height: 40px;
    margin: 0 auto;
}
.loadData .loading {
    background: #426ba1;
    color: #eee;
}
.loadData .loading span {
    display: inline-block;
    font-size: 20px;
    margin-left: 5px;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    -webkit-animation: loading_move 1s infinite;
    animation: loading_move 1s infinite linear;
}
@-webkit-keyframes loading_move {
    0% {
        -webkit-transform: translateY(2px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(2px) rotate(360deg);
    }
}
@keyframes loading_move {
    0% {
        transform: translateY(2px) rotate(0deg);
    }
    100% {
        transform: translateY(2px) rotate(360deg);
    }
}
.loadData .loadEnd {
    background: #eee;
    color: #999;
}
.loadData .active {
    display: block;
}
.loadData .loadStart:active {
    background: #426ba1;
    color: #fff;
}





/* header START */
body {
    padding-top: 70px;
}
body.index_body {
    padding-top: 0;
}
.header {
    background: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 1920px;
    margin: 0 auto;
    z-index: 1000;
    border-top: 2px solid #01a7e1;
}
.header.fixed {
    box-shadow: 0 5px 15px rgba(50,50,50,0.1);
    background: #fff;
}
.header .logo {
    height: 50px;
}
.header .nav {
    line-height: 66px;
    font-size: 14px;
    color: #333333;
    padding: 0 75px;
    /* font-family: Verdana; */
    
}
.header .nav>li {
    position: relative;
}
.header .nav>li>a {
    padding: 0 7px;
    white-space: nowrap;
    border-bottom: 2px solid rgba(0,0,0,0);
    font-weight: bold;
}
.header .nav ul {
    display: none;
    text-align: center;
    position: absolute;
    line-height: 46px;
    top: 68px;
    left: 50%;
    /* margin: 0 auto; */
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    white-space: nowrap;
}
.header .nav ul a {
    background: rgba(0,107,184,0.9);
    font-size: 14px;
    padding: 0 10px;
    color: #fff;
}
.header .nav ul a:hover {
    background: rgba(0,107,184,1);
}
.header .nav ul .active a {
    font-weight: bold;
}
.header .nav>li>a:hover,
.header .nav>.active>a {
    color: #006bb8;
}
.header .nav>.active>a {
    border-color: #006bb8;
}
.header .header_info_top {
    color: #afafaf;
}
.header .header_info_top .picture_icon {
    font-size: 32px;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    margin-right: 10px;
}
.header .header_info_top .explain_title {
    font-size: 12px;
}
.header .header_info_top .explain_content {
    font-size: 14px;
	font-weight: bold;
	color: #e5182b;
}
.header .header_info_bottom {
    margin-top: -8px;
}
.header .header_info_bottom .language {
    font-size: 12px;
    color: #888;
    margin-right: 12px;
}
.header .header_info_bottom .language span {
    width: 1px;
    height: 12px;
    background: #888;
    margin: 0 7px;
}
.header .header_info_bottom .language a:hover,
.header .header_info_bottom .language .active {
    color: #01a7e1;
}
.header .header_info_bottom .search {
    font-size: 16px;
    color: #a5a5a5;
}
.header .header_info_bottom .search:hover {
    color: #006bb8;
}
.search_container {
    max-width: 1920px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0px;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    padding: 15px 0;
    border-top: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(50,50,50,0.1);
    opacity: 0;
    z-index: 999;
}
.search_container.active {
    top: 70px;
    opacity: 1;
}
.search_container label {
    height: 32px;
    width: 1200px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 44px;
}
.search_container input {
    border: 1px solid #006bb8;
    border-radius: 44px;
    width: 100%;
    padding: 0 15px;
    padding-right: 60px;
    color: #666;
    font-size: 12px;
}
.search_container input::-webkit-placeholder,
.search_container input::placeholder {
    color: #999;
}
.search_container button {
    position: absolute;
    font-size: 18px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    color: #fff;
    cursor: pointer;
    background: #006bb8;
    width: 46px;
    border-radius: 0 44px 44px 0;
}
.search_container button:hover,
.search_container button:active {
    opacity: 0.8;
}

.header .nav_menu .open_control,
.header .m_search {
    width: 46px;
    font-size: 18px;
    color: #888;
    border: 1px solid #888;
    border-radius: 5px;
    text-align: center;
    padding: 2px 0;
}
.header .m_search {
    display: none;
}
.header .nav_menu .open_control:active,
.header .m_search:active {
    background: #006bb8;
    color: #fff;
}
.header .nav_menu .open_control .iconfont,
.header .m_search .iconfont {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.nav_menu {
    display: none;
}
.menu_nav {
    position: fixed;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0px;
    opacity: 0;
    overflow: hidden;
    z-index: 100000;
}
.menu_nav .menu_nav_container {
    background: rgba(0,107,184,1);
    font-size: 14px;
    color: #fff;
    overflow-y: auto;
    padding: 15px 0;
}
.menu_nav .menu_nav_container>li:not(:first-child) {
    border-top: 1px solid rgba(255,255,255,0.1);
}
.menu_nav .menu_nav_container>.active>a {
    background: rgba(255,255,255,0.2);
}
.menu_nav .menu_nav_container>.active>a::after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border: 8px solid rgba(255,255,255,0);
    border-right-color: #c8dae9;
    right: 0;
    top: 50%;
    margin-top: -8px;
}
.menu_nav .menu_nav_container a {
    line-height: 40px;
    padding-left: 15px;
    position: relative;
}
.menu_nav .menu_nav_container a:active {
    background: rgba(255,255,255,0.2);
}
.menu_nav .menu_nav_container li ul {
    display: none;
    background: rgba(255,255,255,0.1);
}
.menu_nav .menu_nav_container .language {
    padding-left: 15px;
    padding-top: 15px;
}
.menu_nav .menu_nav_container .language a{
    display: inline-block;
    background: #fff;
    color: #006bb8;
    padding: 0 15px;
    border-radius: 5px;
    line-height: 32px;
    font-size: 12px;
    /* width: 80px; */
    white-space: nowrap;
    text-align: center;
}
.menu_nav .close {
    width: 70px;
    background: rgba(0,0,0,0.5);
    line-height: 200px;
    font-size: 36px;
    text-align: center;
    color: #fff;
    border-left: 3px solid #c8dae9;
}
/* header END */


/* footer START */
.footer .footer_top {
    background-image: url(../images/public/footer_bg.jpg);
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    padding-top: 25px;
    padding-bottom: 15px;
}
.footer .footer_top li>a:hover {
    color: #006bb8;
}
.footer .footer_nav>li:not(:last-child) {
    margin-right: 120px;
}
.footer .footer_nav>li>a,
.footer .footer_nav>li>span {
    font-size: 16px;
    color: #ffffff;
    line-height: 22px;
}
.footer .footer_nav ul {
    line-height: 22px;
    margin-top: 5px;
}
.footer .footer_nav ul li a {
    white-space: nowrap;
}
.footer .share {
    margin-top: 10px;
}
.footer .share a {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(94, 94, 94, 1);
    text-align: center;
    line-height: 24px;
    color: #fff;
    padding: 0;
    margin: 0;
    float: none;
    font-size: 14px;
    text-indent: 0;
}
.footer .share a:hover {
    background: #e50015;
}
.footer .share a:not(:last-child) {
    margin-right: 12px;
}
.footer .footer_top_right .wechat_code .picture_container {
    width: 100px;
    height: 100px;
    background: #ffffff;
	border-radius: 12px;
}
.footer .footer_top_right .wechat_code .picture_container img {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}
.footer .footer_top_right .wechat_code .explain_content {
    font-size: 12px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    margin-top: 3px;
}
.footer .footer_top_right .footer_authen {
    margin-top: 10px;
}
.footer .footer_top_right .footer_authen a {
    opacity: 0.7;
}
.footer .footer_top_right .footer_authen a:hover {
    opacity: 1;
}
.footer .footer_top_right .footer_authen a:not(:last-child) {
    margin-right: 20px;
}

.footer .footer_bottom {
    background: #333333;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    padding: 12px 0;
}
.footer .footer_bottom a {
    display: inline;
}
.footer .footer_bottom a:hover {
    color: #006bb8;
}
.footer .footer_bottom .footer_record {
    margin-left: 18px;
}
/* footer END */


/* 分享 微信 */
.bd_weixin_popup {
    width: 250px !important;
    height: 310px !important;
}
.bd_weixin_popup .bd_weixin_popup_main {
    padding: 15px 0 12px!important;
}

/* banner START */
.banner {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 300px;
}
.banner .p_banner {
    position: absolute;
    left: 50%;
    top: 0;
    max-width: none;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.banner .m_banner {
    display: none;
}
/* banner END */



/* title */
.title {
    text-align: center;
}
.title h2 {
    font-size: 36px;
	font-weight: bold;
	line-height: 36px;
	color: #343434;
}
.title .title_desc {
    font-size: 16px;
    color: #666666;
    margin: 12px 0 15px;

}
.title .title_wave {
    margin: 0 auto;
    width: 30px;
    height: 8px;
    background-image: url(../images/public/title_wave.png);
}


/* son_title */
.son_title h2 {
    font-size: 36px;
	font-weight: bold;
	line-height: 36px;
	color: #424242;
}
.son_title .line {
    position: relative;
    height: 1px;
    background: #eeeeee;
    margin-top: 30px;
}
.son_title .line .son_line {
    position: absolute;
    width: 148px;
	height: 3px;
    background: #006bb8;
    left: 0;
    top: -1px;
}



/* crumbs */
.crumbs .center {
    font-size: 14px;
    color: #888888;
    line-height: 20px;
    height: 50px;
    background: #fff;
	box-shadow: 3px 4px 40px 0px rgba(8, 1, 3, 0.03);
}
.crumbs .iconfont {
    font-family: '宋体' !important;
    margin: 0 5px;
    font-size: 12px;
    font-weight: bold;
    opacity: 0.7;
}
.crumbs a:not(:last-child):hover {
    color: #006bb8;
}
.crumbs a:last-child {
    cursor: text;
    margin-right: 10px;
}


/* nav_container */
.nav_container {
    margin: 55px 0 60px;
}
.nav_container .swiper-container {
    background: #f9f9f9;
    height: 82px;
    padding-bottom: 8px;
}
.nav_container .swiper-slide {
    width: auto;
    text-align: center;
    line-height: 74px;
    font-size: 18px;
    color: #555555;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.nav_container .swiper-slide > a {
    font-weight:bold;
}

.nav_container .swiper-slide a {
    padding: 0 20px;
}

.nav_container .swiper-slide.active,
.nav_container .swiper-slide:hover {
    background: #006bb8;
    color: #fff;
}
.nav_container .swiper-slide.active::after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border: 8px solid rgba(0,0,0,0);
    border-top-color: #006bb8;
    bottom: -16px;
    left: 50%;
    margin-left: -8px;
    z-index: 10;
}
.nav_container .line {
    position: absolute;
    background: #fff;
    width: 100%;
    height: 8px;
}




/* go_top */
.go_top {
    position: fixed;
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    background: #999;
    border-radius: 50%;
    right: 50px;
    bottom: 10%;
    text-align: center;
    font-size: 32px;
    z-index: 999;
    cursor: pointer;
    display: none;
    opacity: 0.8;
}
.go_top:hover {
    background: #006bb8;
    opacity: 1;
}


/* son_main_container */
.son_main_container {
    padding: 30px 0 60px;
}




/* consult */
.consult {
    position: fixed;
    right: 15px;
    top: 40%;
    width: 190px;
    z-index: 100;
    -webkit-animation: consult_move 2s 5s forwards;
    animation: consult_move 2s 5s forwards;
    opacity: 0;
}
@keyframes consult_move {
    0% {
        top: 0;
    }
    100% {
        top: 40%;
        opacity: 1;
    }
}
.consult .consult_top {
    height: 150px;
    background-image: url(../images/public/consult_bg.jpg);

}
.consult .consult_title {
    text-align: right;
    color: #fff;
    padding-right: 24px;
    text-shadow: 1px 2px 0px rgba(0,0,0,0.7);
}
.consult .consult_title h1 {
    font-size: 24px;
}
.consult .consult_title span {
    display: block;
    font-size: 12px;
    transform: scale(0.75);
    transform-origin: right center;
}
.consult .consult_bottom {
    border: 1px solid #5882ed;
    border-top: none;
    background: #fff;
    padding-top: 10px;
}
.consult .consult_bottom .item {
    width: 90%;
    background: #cbdaff;
    margin: 0 auto;
    margin-bottom: 10px;
    height: 32px;
    line-height: 30px;
    border: 1px solid #5178dd;
    border-radius: 32px;
    font-size: 14px;
    color: #5178dd;
}
.consult .consult_bottom .item .iconfont {
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: #5882ed;
    color: #fff;
    text-align: center;
    position: relative;
    left: -1px;
    top: -1px;
    border-radius: 50%;
    margin-right: 5px;
}





/* 响应 */
@media screen and (max-width: 1199px) {
    .center,
    .search_container .center {
        width: 100%;
        padding: 0 15px;
    }
    .header .nav {
        padding: 0 40px;
    }
    .header .nav>li>a {
        padding: 0 5px;
    }
    .search_container button {
        right: 15px;
    }

    .banner {
        width: 100%;
    }

    .nav_container .swiper-container {
        width: 100%;
        padding: 0;
        padding-bottom: 8px;
    }
}
@media screen and (max-width: 1024px) {
    body {
        padding-top: 72px;
    }
    body.index_body {
        padding-top: 72px;
    }
    .header {
        padding: 12px 0;
    }
    .header .logo {
        height: 46px;
    }
    .header .nav,
    .header .header_info {
        display: none;
    }
    .header .nav_menu,
    .header .m_search {
        display: block;
    }
    .search_container.active {
        top: 72px;
    }
    .footer .footer_top {
        display: none;
    }
    .footer .footer_bottom {
        text-align: center;
    }
    .footer .footer_bottom .center {
        display: block;
    }
    .footer .footer_bottom a:active {
        color: #006bb8;
    }
    .footer .footer_bottom .footer_record {
        margin-left: 15px;
    }

    .crumbs {
        display: none;
    }

    .nav_container {
        margin: 0 0 30px;
        padding: 0;
    }
    .nav_container .swiper-container {
        width: 100%;
        height: 60px;
        padding: 0;
    }
    .nav_container .swiper-slide {
        line-height: 60px;
    }
    .nav_container .swiper-slide:hover {
        background: none;
        color: #555555;
    }
    .nav_container .swiper-slide:active {
        background: #006bb8;
        color: #fff;
    }

    .son_title h2 {
        font-size: 26px;
        line-height: 26px;
    }
    .son_title .line {
        margin-top: 15px;
    }

    /* son_main_container */
    .son_main_container {
        padding: 20px 0 40px;
    }

    .loadData {
        display: block;
    }
    .paging {
        display: none;
    }

}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 750px) {
    .banner {
        height: auto;
    }
    .banner .p_banner {
        display: none;
    }
    .banner .m_banner {
        display: block;
    }

    .nav_container {
        margin: 0 0 20px;
    }
    .nav_container .swiper-container {
        height: 44px;
    }
    .nav_container .swiper-slide {
        line-height: 44px;
        font-size: 16px;
    }
    .nav_container .swiper-slide a {
        padding: 0 15px;
    }

    .son_title h2 {
        font-size: 20px;
        line-height: 20px;
    }
    .son_title .line {
        margin-top: 10px;
    }

    /* son_main_container */
    .son_main_container {
        padding: 15px 0 25px;
    }


    .go_top {
        width: 40px;
        height: 40px;
        line-height: 40px;
        right: 10px;
        font-size: 20px;
    }
}
@media screen and (max-width: 640px) {
    body {
        padding-top: 66px;
    }
    body.index_body {
        padding-top: 66px;
    }
    .header .logo {
        height: 40px;
    }
    .header .nav_menu .open_control,
    .header .m_search {
        width: 40px;
        font-size: 14px;
        border-radius: 3px;
    }
    .header .nav_menu .open_control .iconfont,
    .header .m_search .iconfont {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    .search_container.active {
        top: 66px;
    }
    .search_container {
        padding: 10px 0;
    }

    .footer .footer_bottom {
        padding: 10px 0;
    }
    .footer .footer_bottom .center {
        display: block;
    }
    .footer .footer_bottom a:active {
        color: #006bb8;
    }
    .footer .footer_bottom .footer_record {
        margin-left: 5px;
    }
}
@media screen and (max-width: 480px) {}
@media screen and (max-width: 375px) {
    .loadData .center {
        padding: 0;
    }
    .loadData a {
        width: 100%;
    }
}
@media screen and (max-width: 320px) {}


