ul {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

.pc_banner .swiper-slide {
    position: relative;
}

.pc_banner .swiper-slide>img {
    width: 100%;
    height: 100vh;
}

.pc_banner .pc_banner_content {
    position: absolute;
    top: 30%;
    width: 100%;
    z-index: 1000;
}

.pc_banner .pc_banner_content h4 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: #666 1px 1px 2px;
}

.pc_banner .pc_banner_content p {
    font-size: 24px;
    color: #fff;
    margin-bottom: 50px;
    text-shadow: #666 1px 1px 2px;
}

.pc_banner .pc_banner_content a {
    width: 160px;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(270deg, #0C92EE 0%, #22B3FC 100%);
    color: #fff;
    text-align: center;
    display: block;
    font-size: 16px;
}

.pc_banner .pc_banner_content a img {
    width: 18px;
    display: inline-block;
    margin-left: 6px;
}
.banner_video{
    width: 100%;
    height: 100vh!important;
    object-fit: cover!important;
}
.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 30px;
}

.pc_banner .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.pc_banner .swiper-pagination-bullet-active {
    background: #E4393E;
    width: 40px;
    border-radius: 10px;
}

.top_nav {
    background: rgba(255, 255, 255, .1);
    padding-top: 0px;
    padding-bottom: 0px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 101;
    transition: all .5s ease;
}

.top_nav_group {
    display: flex;
}

.top_nav_group .logo {
    width: 200px;
    flex: 0 0 auto;
    align-self: center;
}

.top_nav_group .logo img {
    width: 100%;
}

.top_nav_list {
    flex: 1;
    max-width: 100%;
    max-height: 100%;
}

.top_nav_list ul {
    display: flex;
    justify-content: flex-end;
}

.top_nav_list ul li {
    padding: 0 30px;
}

.top_nav_list ul li>a {
    line-height: 80px;
    color: #fff;
    font-size: 18px;
    display: block;
    position: relative;
}

.top_nav_language {
    line-height: 80px;
    flex: 0 0 auto;
    margin-left: 50px;
}

.top_nav_language select {
    outline: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
}

.top_nav_language select option {
    color: #333;
}

.top_nav_search {
    line-height: 80px;
    flex: 0 0 auto;
    margin-left: 30px;
}

.top_nav_search img {
    width: 20px;
    cursor: pointer;
}

.top_nav_list ul li:hover>a {
    color: #E4393E;
}

.top_nav_list ul li:hover>a::after {
    width: 100%;
}

.top_nav_list ul li>a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    margin: 0 auto;
    transition: all ease .3s;
    background: #e60012;
    height: 4px;
    border-radius: 25px;
}

.warp {
    display: flex;
}

.top_nav_list ul li:hover .p_navBox {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.top_nav_list .p_navBox {
    position: absolute;
    left: 50%;
    padding: 60px 0px;
    transform: translateX(-50%);
    top: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
    transition: all ease .3s;
    background: #f2f3f1;
    width: 100%;
    pointer-events: none;
    opacity: 0;
}

.top_nav_list .p_navBox .left {
    width: 60%;
    display: inline-block;
}

.top_nav_list .p_navBox .right {
    float: right;
}

.top_nav_list .p_navBox .left .title {
    color: #333;
    font-size: 26px;
    margin-bottom: 20px;
}

.top_nav_list .p_navBox .left .p_navBox_list {
    display: flex;
    flex-wrap: wrap;
}

.top_nav_list .p_navBox .left .p_navBox_list .item {
    width: 25%;
    margin-right: 6%;
    margin-bottom: 10px;
}

.top_nav_list .p_navBox .left .p_navBox_list .item a {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    color: #333;
    padding: 15px 0px;
    transition: all ease .3s;
    font-size: 16px;
    height: 62px;
}
.top_nav_list .p_navBox .left .p_navBox_list .item a span{
    width: calc(100% - 12px);
}
.top_nav_list .p_navBox .left .p_navBox_list .item a img {
    width: 12px;
    float: right;
    position: relative;
    top: 4px;
}

.top_nav_list .p_navBox .left .p_navBox_list .item a:hover {
    color: #e60012;
    border-bottom: 1px solid #e60012;
}

@media screen and (min-width: 1200px) {
    .top_nav:hover {
        background: #fff;
        box-shadow: 0 0 15px rbg(0, 0, 0, 20%);
    }

    .top_nav:hover .logo img {
        content: url(../img/logo.png);
    }

    .top_nav:hover .top_nav_list ul li a {
        color: #333;
    }

    .top_nav:hover .top_nav_search img {
        content: url(../img/nav_search_h.png);
    }

    .top_nav:hover .top_nav_hover {
        background: #fff;
        box-shadow: 0 0 15px rgb(0 0 0 / 20%);
    }

    .top_nav:hover .top_nav_language select {
        color: #333;
    }
}

.top_nav_hover {
    background: #fff;
    box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}

.top_nav_hover .logo img {
    content: url(../img/logo.png);
}

.top_nav_hover .top_nav_language select {
    color: #333;
}

.top_nav_hover .top_nav_search img {
    content: url(../img/nav_search_h.png);
}

.top_nav_hover .top_nav_list ul li a {
    color: #333;
}

.index_about {
    background: url(../img/index_about_bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.index_about_left {
    display: inline-block;
    width: 45%;
    position: relative;
    padding-left: 10%;
    padding-top: 50px;
}

.index_about_left h4 {
    font-size: 36px;
    color: #333;
    border-left: 4px solid #E4393E;
    padding-left: 15px;
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
}

.index_about_left p {
    color: #666666;
    font-size: 16px;
    line-height: 30px;
    position: relative;
    z-index: 2;
}

.index_about_left>img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 60%;
}

.index_about_right {
    width: 50%;
    float: right;
    border-top-left-radius: 110px;
    position: relative;
    cursor: pointer;
}

.index_about_right .bgs {
    width: 100%;
    border-top-left-radius: 110px;
    display: block;
}

.index_about_right .play {
    width: 100px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
}


.index_about_left .numCount {
    margin-top: 50px;
    margin-bottom: 100px;
}

.index_about_left .numCount ul {
    padding-left: 0;
}

.index_about_left .numCount li {
    float: left;
    text-align: center;
    position: relative;
    margin-right: 10%;
}

.index_about_left .numCount li .numU {
    line-height: 1.3;
}

.index_about_left .numCount li .numCX {
    font-size: 40px;
    color: #333;
    font-family: Staatliches;
}
.index_about_left .numCount li .numU .descs{
    font-size: 16px;
    color: #666;
    margin-right: 4px;
}
.index_about_left .numCount li .numU .unitC {
    font-size: 100%;
    line-height: 1.3;
    margin-left: 0.3em;
    color: #333;
    font-family: Staatliches;
    position: relative;
    top: -3px;
    font-size: 28px;
}

.index_about_left .numCount li .numU sub {
    vertical-align: baseline;
}

.index_about_left .numCount li .indc {
    color: #333;
    font-size: 16px;
    margin-top: 12px;
}

.index_about_left .numCount li .desc {
    color: #999;
    font-size: 14px;
}

.index_btn_blue {
    width: 140px;
    height: 42px;
    line-height: 42px;
    background: linear-gradient(270deg, #0C92EE 0%, #22B3FC 100%);
    color: #fff;
    text-align: center;
    display: block;
    font-size: 16px;
}

.index_btn_blue:hover {
    color: #fff;
}

.index_btn_blue img {
    width: 18px;
    display: inline-block;
    margin-left: 6px;
}

@font-face {
    font-family: Staatliches;
    src: url(../font/Staatliches.ttf);
}

.index_cp {
    background: url(../img/index_cp_bg.png) no-repeat;
    background-size: 100% 100%;
    padding-top: 50px;
}

.index_cp .title {
    font-size: 36px;
    color: #fff;
    border-left: 4px solid #fff;
    padding-left: 15px;
}

#cp_banner1 {
    margin-top: 30px;
    padding-bottom: 50px;
}

#cp_banner1 .swiper-slide .left {
    width: 45%;
    display: inline-block;
    padding-top: 50px;
}

#cp_banner1 .swiper-slide .left .name {
    font-size: 30px;
    color: #33FFEF;
    margin-bottom: 20px;
    display: block;
}

#cp_banner1 .swiper-slide .left>span {
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    display: block;
    margin-bottom: 50px;
}

#cp_banner1 .swiper-slide .left .btns {
    border: 1px solid #fff;
    width: 140px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    display: block;
    transition: 0.5s all ease;
}

#cp_banner1 .swiper-slide .left .btns img {
    width: 18px;
    display: inline-block;
    margin-left: 6px;
    position: relative;
    top: -1px;
}

#cp_banner1 .swiper-slide .left .btns:hover {
    border: 1px solid transparent;
    background: linear-gradient(270deg, #0C92EE 0%, #22B3FC 100%);
}

#cp_banner1 .swiper-slide .right {
    float: right;
    width: 50%;
}

#cp_banner1 .swiper-slide .right img {
    width: 100%;
}

#cp_banner2 .cp_name_box {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    height: 110px;
    display: table;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

#cp_banner2 .cp_name_box span {
    margin: 0 auto;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    display: table-cell;
    vertical-align: middle
}

#cp_banner2 .cp_name_box:hover {
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
    color: #fff;
}

#cp_banner2 .acitve .cp_name_box {
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%) !important;
    color: #fff;
}
#cp_banner2 .swiper-slide-active .cp_name_box{
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%) !important;
    color: #fff;
}
.index_dt {
    padding: 50px 0;
    background: url(../img/index_dt_bg.png) no-repeat;
    background-size: 100% 100%;
    text-align: center;
}

.index_dt .title {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.index_dt .block {
    width: 38px;
    height: 5px;
    background: #E4393E;
    margin: 0 auto;
    margin-bottom: 20px;
}

.index_dt span {
    font-size: 18px;
}

.index_new {
    overflow: hidden;
    padding-top: 70px;
    background: linear-gradient(270deg, #0A61B7 0%, #22B3FC 100%);
}

.index_new .left {
    width: 50%;
    position: relative;
    border-top-right-radius: 90px;
    overflow: hidden;
    float: left;
}

.index_new .left img {
    width: 100%;
    border-top-right-radius: 90px;
    display: block;
    transition: 0.5s all ease;
    position: relative;
    z-index: 2;
}

.index_new .left:hover img {
    transform: scale(1.2);
}

.index_new .left .content {
    position: absolute;
    width: 100%;
    padding: 60px;
    bottom: 0px;
    color: #fff;
    z-index: 4;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #081A3C 100%);
}

.index_new .left .content div {
    font-size: 28px;
    margin-bottom: 10px;
}

.index_new .left .content p {
    font-size: 32px;
    margin-bottom: 20px;
}

.index_new .left .content span {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.index_new .right {
    width: 50%;
    float: right;
    padding: 0 50px;
}

.index_new .right ul li {
    overflow: hidden;
    margin-bottom: 40px;
}
.index_new .right ul li:last-child{
    margin-bottom: 0;
}
.index_new .right ul li .img {
    float: left;
    width: 20%;
    border-radius: 10px;
    overflow: hidden;
}

.index_new .right ul li .img img {
    display: block;
    width: 100%;
    border-radius: 10px;
    transition: 0.5s all ease;
}

.index_new .right ul li .img img:hover {
    transform: scale(1.2);
}

.index_new .right ul li .content {
    float: left;
    width: 70%;
    margin-left: 20px;
}

.index_new .right ul li .content a {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
    display: block;
}

.index_new .right ul li .content p {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 12px;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.index_new .right ul li .content span {
    color: rgba(255, 255, 255, .7);
    display: block;
    font-size: 16px;
}

.index_fa {
    padding: 80px 0;
    background: url(../img/index_fa_bg.png) no-repeat;
    background-size: 100% 100%;
}

.index_fa .left {
    width: 40%;
    display: inline-block;
}

.index_fa .left .title {
    color: #333333;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 4px;
}

.index_fa .left .title span {
    font-size: 70px;
    color: #E4393E;
}

.index_fa .left p {
    font-size: 20px;
    color: #333;
}

.index_fa .right {
    width: 60%;
    float: right;
}

.index_fa .right .select_group {
    display: flex;
}

.index_fa .right select {
    width: 40%;
    height: 50px;
    margin-right: 4px;
    border: none;
    outline: none;
    padding: 0 10px;
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;
  background: url("../img/jiantou.png") no-repeat scroll right center #fff;
  background-position: 97% 50%;
}

.index_fa .right .select_group>a {
    width: 20%;
    height: 50px;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
    line-height: 50px;
    color: #fff;
    text-align: center;
    font-size: 16px;
}

.index_fa .right a img {
    width: 18px;
    display: inline-block;
    margin-left: 6px;
    position: relative;
    top: -2px;
}

.index_fa .right .link {
    margin-top: 40px;
}

.index_fa .right .link a {
    font-size: 14px;
    color: #555;
    padding-right: 14px;
    border-right: 1px solid #97A5B7;
    margin-right: 14px;
    margin-bottom: 10px;
}

.index_mx {
    display: flex;
}

.index_mx .box {
    width: 50%;
    overflow: hidden;
    position: relative;
}

.index_mx .box img {
    width: 100%;
    position: relative;
    z-index: 1;
    transition: 0.5s all ease;
    display: block;
}

.index_mx .box:hover img {
    transform: scale(1.2);
}

.index_mx .box .content {
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}

.index_mx .box .content p {
    font-size: 40px;
    color: #fff;
    padding-top: 20%;
    margin-bottom: 20px;
}

.index_mx .box .content span {
    font-size: 18px;
    color: #fff;
}

footer {
    background: #0D4695;
}

.footer_top {
    padding: 50px 0;
    display: flex;
}

.footer_list {
    width: 75%;
}

.footer_list ul {
    display: flex;
}

.footer_list ul li {
    width: 19%;
    margin-right: 1%;
}

.footer_list ul li p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.footer_list ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: block;
}

.footer_lx {
    width: 15%;
}

.footer_lx p {
    font-size: 18px;
    color: #fff;
}

.footer_lx span {
    display: block;
    color: #fff;
    font-size: 26px;
    font-family: Staatliches;
}

.footer_qrcode {
    width: 10%;
    text-align: center;
}

.footer_qrcode p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.footer_qrcode .qrcode {
    width: 100px;
}

.footer_qrcode .box {
    display: flex;
    justify-content: center;
}

.footer_qrcode .box a {
    width: 30px;
    margin-right: 4px;
    margin-top: 10px;
}

.footer_qrcode .box img {
    width: 100%;
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}

.footer_bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    padding: 14px 0;
}

.modal-dialog {
    width: 80%;
    margin: 0 auto;
    margin-top: 5%;
}

.page_banner {
    position: relative;
}

.page_banner>img {
    display: block;
    width: 100%;
}

.page_banner .content {
    position: absolute;
    width: 100%;
    top: 40%;
    color: #fff;
}

.page_banner .content p {
    font-size: 46px;
    margin-bottom: 10px;
}

.page_banner .content span {
    font-size: 22px;
    display: block;
}

.page_nav {
    border-bottom: 1px solid #E0E2E4;
    padding: 24px 0;
}

.page_nav_list {
    width: 80%;
    display: flex;
    float: left;
}

.page_nav_list a {
    display: block;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #999999;
    color: #333;
    font-size: 16px;
    position: relative;
}

.page_nav_list a:hover {
    color: #E4393E;
}

.page_nav_list .active {
    color: #E4393E;
}

.page_nav_list .active::after {
    position: absolute;
    content: '';
    bottom: -30px;
    left: 33%;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #E4393E;
    border-radius: 50%;
}

.page_nav_list a:last-child {
    border-right: none;
}

.page_nav .page_nav_right {
    float: right;
}

.page_nav_right a {
    color: #333;
}

.page_wh {
    background: url(../img/page_about_bg.png);
    padding: 50px 0;
}

.page_wh .left {
    width: 40%;
    display: inline-block;
    position: relative;
}

.page_wh .left .icon1 {
    position: absolute;
    left: 0;
    top: 0;
}

.page_wh .left .icon2 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.page_wh ul {
    padding-left: 100px;
}

.page_wh .right {
    width: 55%;
    float: right;
}

.page_wh .right img {
    width: 100%;
}

.page_wh .left ul li {
    margin-bottom: 40px;
}

.page_wh .left ul li h4 {
    color: #333;
    font-size: 34px;
}

.page_wh .left ul li span {
    display: block;
    color: #999;
    font-size: 16px;
    margin-bottom: 10px;
}

.page_wh .left ul li .desc {
    display: flex;
    margin-bottom: 10px;
}

.page_wh .left ul li .desc div {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-left: 8px solid #E4393E;
    border-bottom: 6px solid transparent;
    margin-right: 10px;
    position: relative;
    top: 5px;
}

.page_wh .left ul li .desc p {
    color: #333;
    font-size: 16px;
}

.page_whhd {
    padding: 50px 0;
}

.page_whhd .title {
    text-align: center;
}

.page_whhd .title p {
    font-size: 34px;
    color: #333;
}

.page_whhd .title span {
    color: #E6E6E6;
    font-size: 34px;
    text-transform: uppercase;
}

.page_whhd_box {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.page_whhd_list {
    margin-bottom: 30px;
    margin-top: 30px;
}

.page_whhd_list .img {
    overflow: hidden;
    display: block;
}

.page_whhd_list .img img {
    width: 100%;
    transition: 0.5s all ease;
}

.page_whhd_list .img img:hover {
    transform: scale(1.2);
}

.page_whhd_list .name {
    display: block;
    text-align: center;
    margin-top: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #333;
    font-size: 16px;
}

.page_ds {
    padding: 50px 0 110px 0;
    background: url(../img/page_about_bg.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
}

.page_title {
    text-align: center;
}

.page_title p {
    font-size: 34px;
    color: #333;
}

.page_title span {
    font-size: 34px;
    color: #E6E6E6;
    text-transform: uppercase;
}

.page_ds_box {
    background: #FFFFFF;
    box-shadow: 0px 2px 25px 0px rgba(26, 40, 70, 0.05);
    padding: 30px;

}

.page_ds_box>img {
    width: 110px;
    height: 110px;
    display: block;
    margin: 0 auto;
}

.page_ds_box p {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 14px;
}

.page_ds_box a {
    display: block;
    height: 42px;
    border: 1px solid #D0D0D0;
    text-align: center;
    line-height: 42px;
    width: 90%;
    margin: 0 auto;
    transition: 0.5s all ease;
}

.page_ds_box a span {
    color: #666666;
    font-size: 16px;
}

.page_ds_box a img {
    width: 14px;
}

.page_ds_box a:hover {
    border: 1px solid transparent;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
}

.page_ds_box a:hover span {
    color: #fff;
}

.page_ds_box a:hover img {
    content: url(../img/banner_btn.png);
}

#page_ds_banner {
    margin-top: 30px;
}

.page_ds .prev_btn {
    position: absolute;
    left: 5%;
    top: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.page_ds .next_btn {
    position: absolute;
    right: 5%;
    top: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.page_mt {
    padding: 50px 0;
    background: url(../img/index_about_bg.png) no-repeat;
    background-size: 100% 100%;
}

.page_mt_flex {
    display: flex;
    justify-content: center;
}

.page_mt_flex .page_mt_list {
    width: 12.5%;
    position: relative;
    overflow: hidden;
}

.page_mt_flex .page_mt_list:hover .box {
    top: 0;
}

.page_mt_flex .page_mt_list .box {
    position: absolute;
    transition: 0.5s all;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0px 2px 25px 0px rgba(26, 40, 70, 0.05);
    padding: 15px;
    top: 100%;
    left: 0;
}

.page_mt_flex .page_mt_list .box img {
    width: 90%;
    margin: 0 auto;
    display: block;
}

.page_mt_flex .page_mt_list .box p {
    font-size: 20px;
    color: #0B89D6;
    text-align: center;
    margin-bottom: 4px;
}

.page_mt_flex .page_mt_list .box span {
    font-size: 14px;
    color: #666;
    text-align: center;
    display: block;
}

.page_mt_flex .page_mt_list>img {
    width: 90%;
    margin: 0 auto;
    display: block;
}

.page_mt_flex .page_mt_list>p {
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 4px;
}

.page_mt_flex .page_mt_list>span {
    font-size: 14px;
    color: #666;
    text-align: center;
    display: block;
}

.page_gwmt {
    padding: 50px 0 100px 0;
}

.page_gwmt_flex {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.page_gwmt_flex img {
    width: 110px;
    margin-right: 50px;
}

.page_hd {
    padding: 50px 0;
}

.page_hd_title {
    display: inline-block;
    margin-bottom: 40px;
}

.page_hd_title p {
    font-size: 34px;
    color: #333;
    display: inline-block;
    margin-right: 14px;
}

.page_hd_title span {
    color: #E6E6E6;
    font-size: 34px;
    display: inline-block;
    text-transform: uppercase;
}

.page_hd_box {
    margin-bottom: 30px;
}

.page_hd_box .img {
    width: 100%;
    display: block;
    overflow: hidden;
}

.page_hd_box .img img {
    width: 100%;
    transition: 0.5s all ease;
}

.page_hd_box:hover .img img {
    transform: scale(1.2);
}

.page_hd_box:hover .box {
    background: #fff;
    box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.15);
}

.page_hd_box .box {
    background: #F6F6F6;
    padding: 30px;
    transition: 0.5s all ease;
}

.page_hd_box:hover .box a {
    color: #0B89D6;
}

.page_hd_box .box a {
    font-size: 18px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.page_hd_box .box span {
    font-size: 16px;
    color: #666;
}

.fenye {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.fenye .active {
    color: #fff;
    border: 1px solid #E4393E;
    background: #E4393E;
}

.fenye a {
    padding: 4px 12px;
    display: inline-block;
    margin-right: 10px;
    text-align: center;
    font-size: 16px;
    color: #666;
    border-radius: 4px;
    border: 1px solid #C4C4C4;
}

.fenye a:hover {
    background: #E4393E;
    color: #fff;
    border: 1px solid #E4393E;
}

.page_hd_tab {
    float: right;
    display: flex;
}

.page_hd_tab .active {
    border: 1px solid transparent;
    color: #fff;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
}

.page_hd_tab a {
    padding: 0px 14px;
    line-height: 36px;
    margin-right: 10px;
    text-align: center;
    color: #666666;
    font-size: 16px;
    display: block;
    border: 1px solid #CBCBCB;
}

.page_hd_tab a:hover {
    border: 1px solid transparent;
    color: #fff;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
}

.page_hd_box2 {
    margin-bottom: 30px;
}

.page_hd_box2 .img {
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
}

.page_hd_box2:hover .img .content {
    top: 0;
}

.page_hd_box2 .img .content {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
    opacity: 0.8;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: 0.5s all ease;
}

.page_hd_box2 .img .content img {
    width: 90px;
    height: 90px;
    margin-top: 18%;
}

.page_hd_box2 .img>img {
    width: 100%;
    transition: 0.5s all ease;
}


.page_hd_box2:hover .box {
    background: #fff;
    box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.15);
}

.page_hd_box2 .box {
    background: #F6F6F6;
    padding: 30px;
    transition: 0.5s all ease;
}

.page_hd_box2:hover .box a {
    color: #0B89D6;
}

.page_hd_box2 .box a {
    font-size: 18px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.page_hd_box2 .box span {
    font-size: 16px;
    color: #666;
}

.page_yx {
    padding: 50px 0;
}

.page_yx .left {
    width: 50%;
    display: inline-block;
    padding-top: 40PX;
}

.page_yx .left p {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.page_yx .left span {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    position: relative;
    padding-left: 10px;
    line-height: 30px;
}

.page_yx .left span::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #E4393E;
    position: absolute;
    left: 0;
    top: 9px;
}

.page_yx .right {
    float: right;
    padding: 30px;
    background: #F3F5F9;
    position: relative;
    width: 45%;
}

.page_yx .right .qrcode {
    width: 120px;
    float: left;
    margin-right: 10px;
}

.page_yx .right .content {
    float: right;
    width: calc(100% - 140px);
}

.page_yx .right .content p {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    margin-top: 20px;

}

.page_yx .right .content div {
    color: #0D4695;
    font-size: 22px;
}

.page_yx .right .content div span {
    font-weight: bold;
}

.page_yx .right .icon {
    position: absolute;
    width: 80px;
    right: 0;
    top: 0;
}


.page_yx .leftBox {
    width: calc(100% - 860px);
    display: inline-block;
    padding-top: 40PX;
}

.page_yx .leftBox p {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.page_yx .leftBox span {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    position: relative;
    padding-left: 10px;
    line-height: 30px;
}

.page_yx .leftBox span::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #E4393E;
    position: absolute;
    left: 0;
    top: 9px;
}

.page_yx .rightBox {
    float: right;
    width: 840px;
    display: flex;
}

.page_yx .rightBox .rightBox_left {
    width: 260px;
    margin-right: 10px;
}

.page_yx .rightBox .rightBox_left .top {
    height: 205px;
    background: #0B89D6;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page_yx .rightBox .rightBox_left .top div {
    color: #fff;
}

.page_yx .rightBox .rightBox_left .top div span {
    font-size: 22px;
    display: block;
    text-align: center;
}

.page_yx .rightBox .rightBox_left .top div p {
    font-size: 32px;
    font-weight: bold;
}

.page_yx .rightBox .rightBox_left .bottom img {
    width: 100%;
}

.page_yx .rightBox .rightBox_mid {
    width: 300px;
}

.page_yx .rightBox .rightBox_mid img {
    width: 100%;
}

.page_yx .rightBox .rightBox_right {
    width: 260px;
    margin-left: 10px;
}

.page_yx .rightBox .rightBox_right .top {
    margin-bottom: 10px;
}

.page_yx .rightBox .rightBox_right .top img {
    width: 100%;
}

.page_yx .rightBox .rightBox_right .bottom {
    height: 205px;
    background: #E4393E;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page_yx .rightBox .rightBox_right .bottom div p {
    font-size: 26px;
    color: #fff;
    text-align: center;
}

.page_banner .search {
    width: 100%;
    position: absolute;
    left: 0;
    top: 40%;
}

.page_banner .search_box {
    width: 620px;
    margin: 0 auto;
}

.page_banner .search p {
    font-size: 42px;
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

.page_banner .search .input {
    position: relative;
}

.page_banner .search .input input {
    height: 52px;
    border-radius: 50px;
    width: 100%;
    border: none;
    outline: none;
    padding-left: 15px;
}

.page_banner .search .input input:focus+img {
    content: url(../img/al_search_on.png);
}

.page_banner .search .input img {
    width: 42px;
    position: absolute;
    right: 5px;
    top: 5px;
    transition: 0.5s all ease;
    cursor: pointer;
}

.page_banner .search .input img:hover {
    content: url(../img/al_search_on.png);
}

.page_nav2 {
    font-size: 14px;
    color: #333;
    padding: 20px 0;
    border-bottom: 1px solid #E0E2E4;
}

.page_nav2 a {
    color: #333;
}

.page_nav2 a:hover {
    color: #0D4695;
}

.al_detail {
    padding: 50px 0;
}

.al_detail .title {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}
.al_detail .content{
    margin-top: 30px;
}
.al_detail .content p{
    line-height: 30px;
    font-size: 16px;
}
.al_tj {
    padding: 50px 0;
    background: #F2F2F2;

}

.al_tj .title {
    text-align: center;
    margin-bottom: 30px;
}

.al_tj .title p {
    font-size: 34px;
    color: #333;
    margin-bottom: 10px;
}

.al_tj .title span {
    font-size: 16px;
    color: #999;
}

.al_tj_cp {
    background: #fff;
    padding: 30px;
}

.al_tj_cp .img {
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
}

.al_tj_cp .img img {
    width: 100%;
    display: block;
    transition: 0.5s all ease;
}

.al_tj_cp .img:hover img {
    transform: scale(1.2);
}

.al_tj_cp .name {
    display: block;
    text-align: center;
    color: #333;
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 30px;
}

.al_tj_cp .name:hover {
    color: #0074C3;
}

.al_tj_cp .btns {
    border: 1px solid #D0D0D0;
    width: 60%;
    margin: 0 auto;
    display: block;
    height: 42px;
    line-height: 42px;
    text-align: center;
    transition: 0.5s all ease;
}

.al_tj_cp .btns span {
    color: #666666;
}

.al_tj_cp .btns img {
    width: 14px;
    position: relative;
    top: -2px;
    margin-left: 4px;
}

.al_tj_cp .btns:hover {
    border: 1px solid #fff;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
}

.al_tj_cp .btns:hover span {
    color: #fff;
}

.al_tj_cp .btns:hover img {
    content: url(../img/banner_btn.png);
}

.al_form {
    padding: 50px 0;
}

.al_form .title {
    text-align: center;
    margin-bottom: 30px;
}

.al_form .title p {
    font-size: 34px;
    color: #333;
    margin-bottom: 10px;
}

.al_form .title span {
    font-size: 16px;
    color: #999;
    display: block;
}

.al_form .title span a {
    color: #0B89D6;
}

.al_form_box {
    margin-bottom: 20px;
}

.al_form_box p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.al_form_box p span {
    font-size: 16px;
    color: #E4393E;
    margin-left: 4px;

}

.al_form_box input {
    width: 100%;
    height: 48px;
    outline: none;
    border: 1px solid #CCCCCC;
    padding-left: 10px;
}

.al_form_box select {
    width: 100%;
    height: 48px;
    outline: none;
    border: 1px solid #CCCCCC;
    padding-left: 10px;
}

.al_form_box textarea {
    width: 100%;
    outline: none;
    border: 1px solid #CCCCCC;
    height: 150px;
}

.al_form_yanz {
    overflow: hidden;
}

.al_form_yanz input {
    width: 60%;
    float: left;
}

.al_form_yanz img {
    width: 38%;
    float: right;
    height: 48px;
}

.form_btn {
    width: 300px;
    height: 52px;
    line-height: 52px;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
    text-align: center;
    color: #fff;
    font-size: 16px;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
}

.form_btn:hover {
    color: #fff;
}

.page_new_top {
    background: url(../img/page_new_bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 120px 0 50px 0;
}

.page_new_top .title {
    font-size: 34px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.page_new_top .left {
    width: calc(50% - 15px);
    display: inline-block;
}

.page_new_top .left a {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.page_new_top .left a img {
    width: 100%;
    position: relative;
    z-index: 1;
    transition: 0.5s all ease;
}

.page_new_top .left a:hover img {
    transform: scale(1.2);
}

.page_new_top .left .content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(8, 26, 60, 0.9) 100%);
}

.page_new_top .left .content span {
    font-size: 16px;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.page_new_top .left .content p {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
}

.page_new_top .right {
    width: calc(50% - 15px);
    float: right;
}

.page_new_top .right .page_new_top_box {
    display: block;
    position: relative;
    overflow: hidden;
    height: 230px;
    margin-bottom: 24px;
}

.page_new_top .right .page_new_top_box img {
    width: 100%;
    transition: 0.5s all ease;
    display: block;
    position: relative;
    z-index: 1;
    height: 230px;
}

.page_new_top .right .page_new_top_box:hover img {
    transform: scale(1.2);
}

.page_new_top .right .page_new_top_box .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 30px;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(8, 26, 60, 0.9) 100%);
}

.page_new_top .right .page_new_top_box .content span {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.page_new_top .right .page_new_top_box .content p {
    font-size: 18px;
    color: #fff;
}

.page_new_top .right .row .col-xs-6:nth-child(3) .page_new_top_box {
    background: #0D4695;
}

.page_new_top .right .row .col-xs-6:nth-child(3) .page_new_top_box .content {
    top: 30%;
    background: transparent;
}
.page_new_top .right .row .col-xs-6:nth-child(3) .page_new_top_box img{
    display: none;
}
.page_new_top .right .row .col-xs-6:nth-child(4) .page_new_top_box img{
    display: none;
}
.page_new_top .right .row .col-xs-6:nth-child(4) .page_new_top_box {
    background: #0B89D6;
}

.page_new_top .right .row .col-xs-6:nth-child(4) .page_new_top_box .content {
    top: 30%;
    background: transparent;
}

.page_new_list {
    background: #F2F2F2;
    padding: 50px 0;
}

.page_new_title {
    text-align: center;
    margin-bottom: 30px;
}

.page_new_title p {
    font-size: 34px;
    color: #333;
    margin-bottom: 10px;
}

.page_new_title span {
    font-size: 16px;
    color: #999;
    display: block;
}

.page_new_list_box {
    background: #fff;
    padding: 60px 30px;
    height: 340px;
    display: block;
    position: relative;
    overflow: hidden;
}

.page_new_list_box:hover p {
    color: #0074C3;
}

.page_new_list_box:hover {
    box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.15);

}

.page_new_list_box .line {
    width: 100%;
    height: 4px;
    background: #0B89D6;
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: 0.2s all ease;
}

.page_new_list_box:hover .line {
    bottom: 0;
}

.page_new_list_box p {
    font-size: 18px;
    color: #333;
    margin-bottom: 14px;
    font-weight: bold;
}

.page_new_list_box span {
    font-size: 16px;
    color: #0B89D6;
    display: block;
    margin-bottom: 14px;
}

.page_new_list_box .desc {
    font-size: 14px;
    color: #333;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 30px;
}

.page_new_list_box img {
    width: 28px;
}

.page_new_hd .box {
    background: #fff;
}

.page_new_hd .box a {
    text-align: center;
}

.page_new_bottm {
    display: flex;
}

.page_new_bottm_list {
    width: 49.5%;
    overflow: hidden;
    display: block;
    position: relative;
}

.page_new_bottm_list .content {
    width: 50%;
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.page_new_bottm_list .content .desc {
    display: inline-block;
    width: calc(100% - 50px);
}

.page_new_bottm_list .content .desc p {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.page_new_bottm_list .content .desc span {
    font-size: 16px;
    color: #666666;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page_new_bottm_list .content img {
    width: 44px;
    float: right;
}

.page_new_bottm_list>img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    transition: 0.5s all ease;
}

.page_new_bottm_list:hover>img {
    transform: scale(1.2);
}

.page_new_bottm_list:first-child {
    margin-right: 1%;
}

.al_list_top {
    display: block;
    overflow: hidden;
    position: relative;
}

.al_list_top img {
    width: 100%;
    display: block;
    transition: 0.5s all ease;
    position: relative;
    z-index: 1;
}

.al_list_top:hover img {
    transform: scale(1.2);
}

.al_list {
    padding: 50px 0;
}

.al_list_top .content {
    width: 100%;
    padding: 30px;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(8, 26, 60, 0.9) 100%);
}

.al_list_top .content p {
    font-size: 30px;
    margin-bottom: 15px;
    color: #fff;
}

.al_list_top .content span {
    display: block;
    font-size: 16px;
    color: #fff;
}

.al_list_box {
    width: 100%;
    overflow: hidden;
}

.al_list_box .img {
    display: block;
    overflow: hidden;
}

.al_list_box .img:hover img {
    transform: scale(1.2);
}

.al_list_box .img img {
    width: 100%;
    display: block;
    height: 320px;
    transition: 0.5s all ease;
}

.al_list_box .box {
    height: 320px;
    padding: 30px;
    background: #F6F6F6;
}

.al_list_box .box .name {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    display: block;
}

.al_list_box .box .name:hover {
    color: #0074C3;
}

.al_list_box .box p {
    font-size: 16px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 30px;
    line-height: 30px;
}

.al_list_box .box .btns {
    width: 140px;
    height: 42px;
    border: 1px solid #D0D0D0;
    line-height: 42px;
    text-align: center;
    display: block;
}

.al_list_box .box .btns:hover {
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
    border: 1px solid #F6F6F6;
}

.al_list_box .box .btns:hover span {
    color: #fff;
}

.al_list_box .box .btns:hover img {
    content: url(../img/banner_btn.png);
}

.al_list_box .box .btns span {
    color: #666;
}

.al_list_box .box .btns img {
    width: 14px;
}

.al_list_box2 {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.al_list_box2 .img {
    display: block;
    overflow: hidden;
}

.al_list_box2 .img:hover img {
    transform: scale(1.2);
}

.al_list_box2 .img img {
    width: 100%;
    display: block;
    transition: 0.5s all ease;
}

.al_list_box2 .box {
    padding: 30px;
    background: #F6F6F6;
    position: relative;
    overflow: hidden;
}

.al_list_box2 .box:hover {
    background: #fff;
    box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.15);
}

.al_list_box2 .box:hover .line {
    bottom: 0;
}

.al_list_box2 .box .line {
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -4px;
    left: 0;
    transition: 0.2s all ease;
    background: #0B89D6;
}

.al_list_box2 .box .name {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    display: block;
}

.al_list_box2 .box .name:hover {
    color: #0074C3;
}

.al_list_box2 .box p {
    font-size: 16px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 30px;
    line-height: 30px;
}

.al_list_box2 .box .btns {
    width: 140px;
    height: 42px;
    border: 1px solid #D0D0D0;
    line-height: 42px;
    text-align: center;
    display: block;
}

.al_list_box2 .box .btns:hover {
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
    border: 1px solid #F6F6F6;
}

.al_list_box2 .box .btns:hover span {
    color: #fff;
}

.al_list_box2 .box .btns:hover img {
    content: url(../img/banner_btn.png);
}

.al_list_box2 .box .btns span {
    color: #666;
}

.al_list_box2 .box .btns img {
    width: 14px;
}

.page_hzkh {
    padding: 50px 0;
}

.page_hzkh .left {
    width: 38%;
    display: inline-block;
}

.page_hzkh .right {
    width: 60%;
    float: right;
}

.page_hzkh .right img {
    width: 100%;
}

.page_hzkh .numCount ul li {
    border-bottom: 1px dashed #979797;
    padding-bottom: 20px;
    margin-top: 20px;
    overflow: hidden;
}

.page_hzkh .numCount ul li img {
    width: 90px;
    float: left;
}

.page_hzkh .numCount ul li .item {
    float: right;
}

.page_hzkh .numCount ul li .item .numU {
    text-align: right;
}

.page_hzkh .numCount ul li .item .numCX {
    font-size: 42px;
    color: #333;
    font-family: Staatliches;
}

.page_hzkh .numCount ul li .item .unitC {
    font-size: 40px;
    top: 0;
    font-family: Staatliches;
}

.page_hzkh .numCount ul li:last-child {
    border-bottom: none;
}

.page_hzkh .numCount ul li .item .indc {
    text-align: right;
    font-size: 16px;
    color: #333;
}

.page_hzpp {
    background: url(../img/hz_bg.png) no-repeat;
    padding: 50px 0;
}

.page_hzpp .title {
    text-align: center;
    margin-bottom: 30px;
}

.page_hzpp .title p {
    font-size: 34px;
    color: #333;
    margin-bottom: 10px;
}

.page_hzpp .title div {
    width: 38px;
    height: 4px;
    background: #E4393E;
    border-radius: 10px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.page_hzpp .title span {
    font-size: 16px;
    color: #666;
}

.page_hzpp_flex {
    display: flex;
    flex-wrap: wrap;
}

.page_hzpp_flex div {
    width: 13%;
    margin-right: 14px;
    margin-bottom: 14px;
}

.page_hzpp_flex div img {
    width: 100%;
}

.newDetail {
    padding: 50px 0;
}

.newDetail .left {
    display: inline-block;
    width: calc(100% - 470px);
}

.newDetail .left .title {
    font-size: 32px;
    text-align: center;
    color: #333;
    margin-bottom: 14px;
}

.newDetail .left .time {
    font-size: 14px;
    text-align: center;
    color: #999;
    margin-bottom: 20px;
}

.newDetail .left .content {
    margin-bottom: 40px;
}

.newDetail .left .content p {
    text-indent: 24px;
    font-size: 16px;
    color: #333;
    line-height: 30px;
}

.newDetail .left .more {
    border-top: 1px solid #E0E2E4;
    overflow: hidden;
    padding-top: 30px;
}

.newDetail .left .more .more_left {
    width: calc(100% - 170px);
    float: left;
}

.newDetail .left .more .more_left a {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.newDetail .left .more .more_left a:hover {
    color: #0074C3;
}

.newDetail .left .more .more_right {
    float: right;
    width: 140px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border: 1px solid #D0D0D0;

}

.newDetail .left .more .more_right:hover {
    border: 1px solid #fff;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
}

.newDetail .left .more .more_right:hover span {
    color: #fff;
}

.newDetail .left .more .more_right:hover img {
    content: url(../img/banner_btn.png);
}

.newDetail .left .more .more_right span {
    color: #666;
    font-size: 16px;
}

.newDetail .left .more .more_right img {
    width: 14px;
}

.newDetail .right {
    width: 420px;
    border: 1px solid #E5E5E5;
    padding: 24px;
    float: right;
}

.newDetail .right .title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.newDetail .right ul li {
    margin-bottom: 20px;
}

.newDetail .right ul li .img {
    width: 100%;
    display: block;
    overflow: hidden;
}

.newDetail .right ul li .img img {
    width: 100%;
    transition: 0.5s all ease;
}

.newDetail .right ul li .img:hover img {
    transform: scale(1.2);
}

.newDetail .right ul li .name {
    font-size: 16px;
    color: #333;
    margin: 14px 0 4px 0;
    display: block;
}

.newDetail .right ul li div {
    font-size: 14px;
    color: #666;
}

.new_list ul li {
    margin-bottom: 30px;
    padding: 30px;
    background: #F6F6F6;
    overflow: hidden;
    transition: 0.5s all ease;
}

.new_list ul li:hover {
    background: #FFFFFF;
    box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.15);
}

.new_list ul li .img {
    width: 300px;
    float: left;
    display: block;
    overflow: hidden;
}

.new_list ul li .img img {
    width: 100%;
    transition: 0.5s all ease;
}

.new_list ul li .img:hover img {
    transform: scale(1.2);
}

.new_list ul li .content {
    float: right;
    width: calc(100% - 330px);
}

.new_list ul li .content>a {
    font-size: 26px;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.new_list ul li .content>a:hover {
    color: #0074C3;
}

.new_list ul li .content>span {
    font-size: 16px;
    color: #333;
    line-height: 30px;
    margin-bottom: 20px;
    display: block;
}

.new_list ul li .content .time>span {
    font-size: 16px;
    color: #666;
}

.new_list ul li .content .time>a {
    float: right;

}

.new_list ul li .content .time a {
    float: right;
    width: 140px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border: 1px solid #D0D0D0;

}

.new_list ul li .content .time a:hover {
    border: 1px solid #fff;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
}

.new_list ul li .content .time a:hover span {
    color: #fff;
}

.new_list ul li .content .time a:hover img {
    content: url(../img/banner_btn.png);
}

.new_list ul li .content .time a span {
    color: #666;
    font-size: 16px;
}

.new_list ul li .content .time a img {
    width: 14px;
}

.about_us_top {
    padding: 50px 0;
}

.about_us_top .title {
    font-size: 34px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.about_us_top .content {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 30px;
}


.about_us_top .numCount {
    margin-top: 50px;
}

.about_us_top .numCount ul {
    padding-left: 0;
}

.about_us_top .numCount li {
    float: left;
    text-align: center;
    position: relative;
    width: 16.666666%;
}

.about_us_top .numCount li .numU {
    line-height: 1.3;
}

.about_us_top .numCount li .numCX {
    font-size: 40px;
    color: #0B89D6;
    font-family: Staatliches;
}

.about_us_top .numCount li .numU .unitC {
    font-size: 100%;
    line-height: 1.3;
    margin-left: 0.3em;
    color: #0B89D6;
    font-family: Staatliches;
    position: relative;
    top: -3px;
    font-size: 28px;
}

.about_us_top .numCount li .numU sub {
    vertical-align: baseline;
}

.about_us_top .numCount li .indc {
    color: #333;
    font-size: 16px;
    margin-top: 12px;
}

.about_us_top .numCount li .desc {
    color: #999;
    font-size: 14px;
}

.about_bottom {
    padding: 50px 0;
    background: #F7F7F7;
}

.about_l_top {
    position: relative;
}

.about_l_top .about_l_top_left {
    position: relative;
    overflow: hidden;
    width: calc(70% - 30px);
}

.about_l_top .about_l_top_left>div {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #0B89D6;
    padding: 40px;
}

.about_l_top .about_l_top_left>div>span {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 30px;
}

.about_l_top .about_l_top_left>div p {
    font-size: 30px;
    color: #fff;
    margin-bottom: 14px;
}

.about_l_top .about_l_top_left>img {
    float: right;
    width: 50%;
}

.about_l_top .about_l_top_left>div>a {
    width: 140px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border: 1px solid #D0D0D0;
    display: block;
}

.about_l_top .about_l_top_left>div>a:hover {
    border: 1px solid #fff;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
}

.about_l_top .about_l_top_left>div>a:hover span {
    color: #fff;
}

.about_l_top .about_l_top_left>div>a:hover>img {
    content: url(../img/banner_btn.png);
}

.about_l_top .about_l_top_left>div>a span {
    color: #fff;
    font-size: 16px;
}

.about_l_top .about_l_top_left>div>a>img {
    width: 14px;
}

.about_l_top .about_l_top_left>div>img {
    position: absolute;
    right: -18px;
    top: 49%;
}

.about_l_top .about_l_top_right {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.about_l_top .about_l_top_right img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: 0.5s all ease;
}

.about_l_top .about_l_top_right:hover img {
    transform: scale(1.2);
}

.about_l_top .about_l_top_right .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: rgba(228, 57, 62, 0.8);
    color: #fff;
    z-index: 2;
}

.about_l_top .about_l_top_right .content p {
    font-size: 30px;
    margin-bottom: 15px;
}

.about_l_top .about_l_top_right .content span {
    font-size: 16px;
    color: #fff;
}

.about_l_mid {
    position: relative;
    margin-top: 30px;
}

.about_l_mid>img {
    width: calc(70% + 30px);
}

.about_l_mid .box {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
    padding: 40px;
    background: #fff;
}

.about_l_mid .box>span {
    display: block;
    color: #333;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 30px;
}

.about_l_mid .box p {
    font-size: 30px;
    color: #333;
    margin-bottom: 14px;
}

.about_l_mid .box>a {
    width: 140px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border: 1px solid #D0D0D0;
    display: block;
}

.about_l_mid .box>a:hover {
    border: 1px solid #fff;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
}

.about_l_mid .box>a:hover span {
    color: #fff;
}

.about_l_mid .box>a:hover>img {
    content: url(../img/banner_btn.png);
}

.about_l_mid .box>a span {
    color: #333;
    font-size: 16px;
}

.about_l_mid .box>a>img {
    width: 14px;
}

.about_l_mid .box>img {
    position: absolute;
    left: -18px;
    top: 48%;
}

.about_l_bottom {
    display: flex;
    margin-top: 30px;
}

.about_l_bottom_1 {
    width: calc((100% - 60px) / 3);
    display: block;
    margin-right: 30px;
    position: relative;
    overflow: hidden;
}

.about_l_bottom_1 img {
    width: 100%;
    transition: 0.5s all ease;
    position: relative;
    z-index: 1;
}

.about_l_bottom_1:hover img {
    transform: scale(1.2);
}

.about_l_bottom_1 .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: rgba(228, 57, 62, 0.8);
    color: #fff;
    z-index: 2;
}

.about_l_bottom_1 .content p {
    font-size: 30px;
    margin-bottom: 15px;
}

.about_l_bottom_1 .content span {
    font-size: 16px;
    color: #fff;
}

.about_l_bottom_2 {
    width: calc((100% - 60px) / 3);
    display: block;
    margin-right: 30px;
    position: relative;
}

.about_l_bottom_2 img {
    width: 100%;
}

.about_l_bottom_2 .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    color: #fff;
    z-index: 2;
}

.about_l_bottom_2 .content p {
    font-size: 30px;
    color: #333;
    margin-bottom: 14px;
}

.about_l_bottom_2 .content>span {
    font-size: 16px;
    color: #333;
    display: block;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 30px;
}

.about_l_bottom_2 .content a {
    width: 140px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border: 1px solid #D0D0D0;
    display: block;
}

.about_l_bottom_2 .content a>span {
    color: #333;
    font-size: 16px;
}

.about_l_bottom_2 .content a>img {
    width: 14px;
}

.about_l_bottom_2 .content a:hover {
    border: 1px solid #fff;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
}

.about_l_bottom_2 .content a:hover span {
    color: #fff;
}

.about_l_bottom_2 .content a:hover>img {
    content: url(../img/banner_btn.png);
}


.about_l_bottom_3 {
    width: calc((100% - 60px) / 3);
    display: block;
    position: relative;
    overflow: hidden;
}

.about_l_bottom_3 img {
    width: 100%;
    transition: 0.5s all ease;
    position: relative;
    z-index: 1;
}

.about_l_bottom_3:hover img {
    transform: scale(1.2);
}

.about_l_bottom_3 .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: rgba(11, 137, 214, 0.8);
    color: #fff;
    z-index: 2;
}

.about_l_bottom_3 .content p {
    font-size: 30px;
    margin-bottom: 15px;
}

.about_l_bottom_3 .content span {
    font-size: 16px;
    color: #fff;
}

.page_lx {
    background: url(../img/page_lx_bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 50px 0;
}

.page_lx .title {
    margin-bottom: 30px;
    text-align: center;
}

.page_lx .title p {
    font-size: 34px;
    color: #333;
    margin-bottom: 10px;
}

.page_lx .title span {
    font-size: 16px;
    color: #666;
}

.page_lx_top {
    position: relative;
    overflow: hidden;
}

.page_lx_top img {
    width: 100%;
}

.page_lx_top .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #fff;
}

.page_lx_top .content p {
    font-size: 20px;
    padding-top: 15%;
    margin-bottom: 20px;
}

.page_lx_top .content span {
    font-size: 16px;
    display: block;
    margin-bottom: 30px;
}

.page_lx_top .content a {
    width: 140px;
    height: 42px;
    line-height: 42px;
    color: #fff;
    border: 1px solid #CBCBCB;
    display: block;
    margin: 0 auto;
    transition: 0.5s all ease;
}

.page_lx_top .content a:hover {
    background: #fff;
    color: #0074C3;
}

.page_lx_bottom {
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
    padding: 30px;
    margin-top: 30px;
}

.page_lx_bottom div {
    font-size: 20px;
    font-weight: bold;
    border-left: 4px solid #0096DB;
    padding-left: 10px;
    margin-bottom: 20px;
    color: #0096DB;
}

.page_lx_bottom p {
    margin-bottom: 10px;
    font-size: 16px;
}

.page_zzsl ul li {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.page_zzsl ul li:nth-child(1) img {
    float: right;
    width: 65%;
}

.page_zzsl ul li:nth-child(1) .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: #0096DB;
    padding: 40px;
}

.page_zzsl ul li:nth-child(1) .content p {
    font-size: 30px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}

.page_zzsl ul li:nth-child(1) .content p::after {
    width: 60px;
    height: 2px;
    background: #FFFFFF;
    content: '';
    margin-top: 30px;
    display: block;
}

.page_zzsl ul li:nth-child(1) .content span {
    color: #fff;
    display: block;
    font-size: 16px;
    line-height: 30px;
}

/* 11 */

.page_zzsl ul li:nth-child(2) img {
    width: 65%;
}

.page_zzsl ul li:nth-child(2) .content {
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: #0096DB;
    padding: 40px;
}

.page_zzsl ul li:nth-child(2) .content p {
    font-size: 30px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}

.page_zzsl ul li:nth-child(2) .content p::after {
    width: 60px;
    height: 2px;
    background: #FFFFFF;
    content: '';
    margin-top: 30px;
    display: block;
}

.page_zzsl ul li:nth-child(2) .content span {
    color: #fff;
    display: block;
    font-size: 16px;
    line-height: 30px;
}

/* 22 */
.page_zzsl ul li:nth-child(3) img {
    float: right;
    width: 65%;
}

.page_zzsl ul li:nth-child(3) .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: #F7F7F7;
    padding: 40px;
}

.page_zzsl ul li:nth-child(3) .content p {
    font-size: 30px;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.page_zzsl ul li:nth-child(3) .content p::after {
    width: 60px;
    height: 2px;
    background: #333;
    content: '';
    margin-top: 30px;
    display: block;
}

.page_zzsl ul li:nth-child(3) .content span {
    color: #333;
    display: block;
    font-size: 16px;
    line-height: 30px;
}

.page_ry_list {
    margin-bottom: 30px;
}

.page_ry_list .img {
    display: block;
    overflow: hidden;
}

.page_ry_list .img img {
    width: 100%;
    display: block;
    transition: 0.5s all ease;
}

.page_ry_list .img:hover img {
    transform: scale(1.2);
}

.page_ry_list .name {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-top: 20px;
    display: block;
}

.page_ry_list .name:hover {
    color: #0074C3;
}

.page_lc_list ul li {
    padding-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.page_lc_list ul li .time {
    width: 120px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.page_lc_list ul li .time div {
    position: absolute;
    height: 100%;
    width: 1px;
    background: #DBDBDB;
    left: 50%;
    top: 0;
    z-index: 1;
}

.page_lc_list ul li:first-child .time div {
    height: 50%;
    top: 50%;
}

.page_lc_list ul li:last-child .time div {
    height: 50%;
}

.page_lc_list ul li .time p {
    width: 110px;
    height: 110px;
    text-align: center;
    line-height: 110px;
    color: #fff;
    border-radius: 50%;
    font-size: 40px;
    font-family: Staatliches;
    position: relative;
    z-index: 2;
    background: linear-gradient(270deg, #0C92EE 0%, #22B3FC 100%);
}

.page_lc_list ul li .content {
    width: calc(100% - 150px);
    float: right;
    padding: 30px;
    background: #F6F6F6;
    overflow: hidden;
    transition: 0.2s all ease;
}

.page_lc_list ul li .content:hover {
    background: #fff;
    box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.15);
}

.page_lc_list ul li .content:hover .left p {
    color: #0B89D6;
}

.page_lc_list ul li .content .left {
    width: calc(100% - 250px);
    display: inline-block;
}

.page_lc_list ul li .content .left p {
    font-size: 30px;
    color: #333;
    margin-bottom: 10px;
}

.page_lc_list ul li .content .left span {
    font-size: 16px;
    color: #555;
    line-height: 30px;
}

.page_lc_list ul li .content img {
    width: 220px;
    border-radius: 4px;
    float: right;
}

.page_gs {
    padding: 50px 0;
}

.page_gs .left {
    width: 35%;
    display: inline-block;
}

.page_gs .left p {
    font-size: 26px;
    color: #333;
    margin-bottom: 10px;
    margin-top: 20px;
}

.page_gs .left>span {
    font-size: 34px;
    color: #E6E6E6;
    display: block;
    text-transform: uppercase;
}


.page_gs .left .numCount {
    margin-top: 50px;
}

.page_gs .left .numCount ul {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}

.page_gs .left .numCount li {
    text-align: center;
    position: relative;
    margin-right: 60px;
    margin-bottom: 20px;
}

.page_gs .left .numCount li .numU {
    line-height: 1.3;
}

.page_gs .left .numCount li .numCX {
    font-size: 40px;
    color: #0B89D6;
    font-family: Staatliches;
    display: inline-block;
}

.page_gs .left .numCount li .numU .unitC {
    font-size: 100%;
    line-height: 1.3;
    margin-left: 0.3em;
    color: #0B89D6;
    font-family: Staatliches;
    position: relative;
    top: -3px;
    font-size: 28px;
}
.page_gs .left .numCount li .numU .descs{
    font-size: 16px;
    color: #666;
    margin-left: 2px;
}
.page_gs .left .numCount li .numU sub {
    vertical-align: baseline;
}

.page_gs .left .numCount li .indc {
    color: #333;
    font-size: 16px;
    margin-top: 12px;
}

.page_gs .left .numCount li .desc {
    color: #999;
    font-size: 14px;
}

.page_gs .right {
    float: right;
    width: 62%;
}

.page_gs .right h4 {
    font-size: 34px;
    color: #333;
    margin-bottom: 40px;
}

.page_gs .right .content p {
    text-indent: 24px;
    line-height: 30px;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.proDetail_top {
    background: #F2F2F2;
}

.proDetail_nav {
    padding-top: 100px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E2E4;
}

.proDetail_nav a {
    color: #333;
}

.proDetail_group {
    margin-top: 50px;
    padding-bottom: 50px;
}

.proDetail_group .left {
    width: 45%;
    display: inline-block;
    background: #fff;
    position: relative;
}

.proDetail_group .left .swiper-slide {
    padding: 50px 60px;
}

.proDetail_group .left .swiper-slide img {
    width: 100%;
}

.proDetail_group .left .proBtn_left {
    position: absolute;
    left: 0;
    top: 42%;
    cursor: pointer;
    z-index: 100;
}

.proDetail_group .left .proBtn_right {
    position: absolute;
    right: 0;
    top: 42%;
    cursor: pointer;
    z-index: 100;
}

.proDetail_group .right {
    float: right;
    width: 52%;
}

.proDetail_group .right .fl span {
    font-size: 22px;
    color: #333;
    display: inline-block;
}

.proDetail_group .right .fl a {
    float: right;
    cursor: pointer;
    display: inline-block;
}

.proDetail_group .right .fl a:hover img {
    content: url(../img/fx_icon1_on.png);
}

.proDetail_group .right .fl a:hover p {
    color: #0074C3;
}

.proDetail_group .right .fl a img {
    width: 24px;
    margin-right: 4px;
    float: left;
    position: relative;
    top: -2px;
}

.proDetail_group .right .fl a p {
    font-size: 16px;
    color: #666;
    display: inline-block;
}

.proDetail_group .right h4 {
    font-size: 42px;
    color: #333;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.proDetail_group .right .content {
    border-top: 1px dashed #B3B3B3;
    padding-top: 20px;
    font-size: 16px;
    color: #444;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.proDetail_group .right .tel {
    color: #0D4695;
    font-size: 22px;
    margin-bottom: 14px;
    margin-top: 40px;
}

.proDetail_group .right>a {
    width: 180px;
    height: 42px;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
    line-height: 42px;
    text-align: center;
    color: #fff;
    display: block;
    margin-top: 30px;
}

.proDetail_group .right>a span {
    color: #fff;
    font-size: 16px;
    margin-right: 4px;
}

.proDetail_group .right>a img {
    width: 14px;
}

.pro_tab {
    padding-top: 50px;
    border-bottom: 1px solid #E0E2E4;
}

.pro_tab ul {
    display: flex;
}

.pro_tab ul li {
    margin-right: 70px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 20px;
    cursor: pointer;
}

.pro_tab ul li:hover {
    color: #0B89D6;
}

.pro_tab ul .active {
    color: #0B89D6;
    border-bottom: 3px solid #0B89D6;
}

.table_title {
    background: #F2F2F2;
    border-radius: 10px 10px 0px 0px;
    text-align: center;

}

.table_title th {
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-right: 1px solid #DEDEDE;
    border-bottom: 1px solid #DEDEDE;
}

.table_title .wid1 {
    width: 60px;
    text-align: center;
}

.table_title .wid30 {
    width: 30%;
}

.table_title .wid20 {
    width: 20%;
}

.pro_pz table .table_f {
    background: #F8F8F8;
    border-right: 1px solid #DEDEDE;
}

.about_table .table_t {
    text-align: center;
}

.table_content td {
    padding: 15px 15px;
}

.pro_pz {
    padding: 50px 0;
}

.pro_pz table {
    width: 100%;
    border: 1px solid #DEDEDE;
}

.pro_pz table tr td {
    text-align: center;
    border-bottom: 1px solid #DEDEDE;
}

.pro_pz table .table_content td {
    border-right: 1px solid #DEDEDE;
}

.pro_al {
    padding-bottom: 50px;
}

.pro_lx {
    padding: 50px 0;
    background: url(../img/pro_lx_bg.png) no-repeat;
    background-size: 100% 100%;
}

.pro_lx h4 {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 60px;
}

.pro_lx ul {
    display: flex;
}

.pro_lx ul li {
    width: 25%;
}

.pro_lx ul li img {
    width: 88px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.pro_lx ul li p {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.pro_hot {
    padding: 50px 0;
}

.pro_hot_box {
    background: #F2F2F2;
    padding: 30px;
    position: relative;
    height: 300px;
}

.pro_hot_box p {
    font-size: 18px;
    color: #0B89D6;
    margin-bottom: 4px;
}

.pro_hot_box .name {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.pro_hot_box .name:hover {
    color: #0074C3;
}

.pro_hot_box>span {
    width: 40%;
    display: block;
    font-size: 16px;
    color: #666;
    margin-top: 20px;
}

.pro_hot_box:hover .pro img {
    transform: scale(1.2);
}

.pro_hot_box .pro {
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 60%;
    overflow: hidden;
}

.pro_hot_box .pro img {
    width: 100%;
    transition: 0.5s all ease;
}

.pro_hot_box .btns {
    width: 40%;
    display: block;
    color: #666;
    margin-top: 50px;
}

.pro_hot_box .btns span {
    font-size: 16px;
    margin-right: 4px;
}

.pro_hot_box .btns img {
    width: 14px;
}

.pro_search {
    padding: 50px 0;
}

.pro_search h4 {
    font-size: 42px;
    color: #333;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.pro_search .search_box {
    width: 620px;
    margin: 0 auto;
}

.pro_search .search_box .input {
    position: relative;
}

.pro_search .search_box .input input {
    height: 52px;
    border-radius: 50px;
    width: 100%;
    border: none;
    outline: none;
    padding-left: 15px;
    border: 1px solid #D5D5D5;
}

.pro_search .search_box .input img {
    width: 42px;
    position: absolute;
    right: 5px;
    top: 5px;
    transition: 0.5s all ease;
    cursor: pointer;
}

.pro_search .search_box .input img:hover {
    content: url(../img/al_search_on.png);
}

.pro_search .search_box .input input:focus+img {
    content: url(../img/al_search_on.png);
}

.search_list {
    text-align: center;
    margin-top: 20px;
}

.search_list a {
    color: #555;
    font-size: 16px;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #97A5B7;
}

.search_list a:hover {
    color: #0074C3;
}

.search_list a:last-child {
    border-right: none;
}

.pro_list_group {
    padding: 50px 0;
    background: #F2F2F2;
}

.pro_list {
    background: #fff;
    padding: 30px;
    position: relative;
    height: 510px;
    overflow: hidden;
    margin-bottom: 30px;
}

.pro_list:hover .content {
    top: 0;
}

.pro_list .content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    transition: 0.5s all ease;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
}

.pro_list .content h4 {
    font-size: 24px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.pro_list .content ul {
    display: flex;
    flex-wrap: wrap;
}

.pro_list .content ul li {
    text-align: center;
    width: 50%;
    color: #fff;
    font-size: 16px;
    margin-bottom: 14px;
}

.pro_list .content>a {
    width: 50%;
    display: block;
    margin: 0 auto;
    height: 42px;
    border: 1px solid #fff;
    line-height: 42px;
    text-align: center;
    color: #fff;
    margin-top: 40px;
}

.pro_list .content>a img {
    width: 14px;
    margin-left: 4px;
    top: -2px;
    position: relative;
}

.pro_list>img {
    width: 100%;
}

.pro_list>p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: center;
}

.pro_list>a {
    width: 50%;
    display: block;
    margin: 0 auto;
    height: 42px;
    border: 1px solid #D0D0D0;
    line-height: 42px;
    text-align: center;
    color: #666666;
}

.pro_list>a>img {
    width: 14px;
    margin-left: 4px;
    top: -2px;
    position: relative;
}

.page_banner .proContent {
    position: absolute;
    top: 40%;
    color: #fff;
    width: 100%;
}

.page_banner .proContent select {
    color: #fff;
    background: transparent;
    border: none;
    font-size: 34px;
    outline: none;
}

.page_banner .proContent select option {
    color: #333;
    font-size: 16px;

}

.pro_check {
    margin-top: 40px;
}

.pro_check label {
    font-size: 16px;
    margin-right: 10px;
    font-weight: normal;
}

.pro_check input {
    margin-right: 10px;
}

.protwo_bg {
    padding: 50px 0;
    background: #F2F2F2;
}

.protwo_list {
    padding: 30px;
    background: #FFFFFF;
    transition: 0.4s all ease;
    margin-bottom: 30px;
}

.protwo_list .img {
    display: block;
    overflow: hidden;
}

.protwo_list .img img {
    width: 100%;
    transition: 0.5s all ease;
}

.protwo_list .img:hover img {
    transform: scale(1.2);
}

.protwo_list .name {
    text-align: center;
    font-size: 20px;
    color: #333;
    margin-top: 30px;
    display: block;
    margin-bottom: 10px;
}

.protwo_list .fl {
    text-align: center;
    font-size: 16px;
    color: #0B89D6;
    margin-bottom: 10px;
}

.protwo_list .content {
    border-top: 1px dashed #D6D6D6;
    padding-top: 20px;
    margin-bottom: 20px;
}

.protwo_list .content ul li {
    margin-bottom: 4px;
}

.protwo_list label {
    display: inline-block;
    font-weight: normal;
    position: relative;
    top: -2px;
}

.protwo_list input {
    margin-right: 4px;
}

.protwo_list:hover {
    box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.15);
}

.protwo_list .btns {
    float: right;
    color: #333;
}

.protwo_list .btns img {
    width: 14px;
    margin-left: 4px;
}

.pro_db_box {
    position: fixed;
    bottom: -110px;
    left: 0;
    width: 100%;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s all ease;
}

.pro_db_box .left {
    display: inline-block;
    width: 60%;
    overflow: hidden;
}

.pro_db_box .left ul li {
    float: left;
    margin-right: 50px;
    color: #fff;
}

.pro_db_box .left ul li img {
    width: 16px;
    cursor: pointer;
    margin-left: 4px;
}

.pro_db_box .right {
    float: right;
}

.pro_db_box .right a {
    text-align: center;
    display: inline-block;
    margin-right: 10px;
    text-align: center;
    color: #fff;
    width: 140px;
    line-height: 42px;
    border: 1px solid #fff;
}

.pro_db_box .right a:hover {
    color: #333;
    background: #fff;
    transition: 0.5s all ease;
}

.pro_db_group {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    transition: 0.3s all ease;
}
.hidescrollbar{
    overflow: hidden;
    -ms-overflow-x: hidden;
    -ms-overflow-y: hidden;
}
.pro_db_group_top {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.pro_db_group_top p {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    margin-right: 20px;
}

.pro_db_group_top a {
    width: 140px;
    height: 42px;
    border: 1px solid #FFFFFF;
    text-align: center;
    line-height: 42px;
    color: #fff;
    display: inline-block;

}

.pro_db_group_top a img {
    width: 14px;
}

.pro_db_flex {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pro_db_flex_box {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 30px;
}

.pro_db_flex_box>img {
    width: 90%;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}

.pro_db_flex_box p {
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.pro_db_flex_box:last-child {
    margin-right: 0;
}

.pro_db_flex_box a {
    width: 70%;
    display: block;
    margin: 0 auto;
    line-height: 42px;
    border: 1px solid #D0D0D0;
    text-align: center;
    font-size: 16px;
    color: #666;
}
.pro_db_flex_box a:hover{
    border: 1px solid #fff;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
    color: #fff;
}
.pro_db_flex_box a:hover img{
    content: url(../img/banner_btn.png);
}
.pro_db_flex_box a img {
    width: 14px;
    margin-left: 4px;
}
.pro_body{
    height: 90%;
    overflow-y: auto;
}
#searchouter{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    z-index: 50;
    transform: scale(1.5);
    visibility: hidden;
    transition: .5s;
}
#searchouter.show {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}
#searchouter div{
    width: 650px;
    margin: 0 auto;
    margin-top: 20%;
    position: relative;
}
#searchouter div input{
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    font-size: 24px;
    outline: none;
    color: #fff
}
#searchouter div input::-webkit-input-placeholder{
    color: #fff;
}
#searchouter div .search_icon{
    width: 30px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}
#searchouter .close_icon{
    width: 40px;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 30px;
    display: block;
}
.fixNav {
    position: fixed;
    width: 52px;
    top: 50%;
    right: 0;
    z-index: 100;
}

.fixNav ul li {
    background: #fff;
    cursor: pointer;
    margin-bottom: 2px;
    position: relative;
    width: 52px;
    height: 52px;
    line-height: 52px;
    display: flex;
    align-items: center;
border: 1px solid #EEEEEE;
}
.fixNav ul li>img{
    width: 28px;
    height: 28px;
    margin: 0 auto;
    display: block;
}
.fixNav ul li:hover{
    border: none;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
}
.fixNav ul li:nth-child(1):hover>img{
    content: url(../img/fix_icon1_on.png);
}
.fixNav ul li:nth-child(2):hover>img{
    content: url(../img/fix_icon2_on.png);
}
.fixNav ul li:nth-child(3):hover>img{
    content: url(../img/fix_icon3_on.png);
}

.fixNav ul li .tel {
    position: absolute;
    left: -120px;
    top: 0;
    height: 100%;
    line-height: 52px;
    text-align: center;
    color: #fff;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
    display: none;
    padding: 0 10px;
}

.fixNav ul li .erweima {
    position: absolute;
    left: -142px;
    top: 0;
    line-height: 52px;
    text-align: center;
    color: #fff;
    background: linear-gradient(270deg, #0074C3 0%, #22B3FC 100%);
    padding: 10px;
    display: none;
}

.fixNav ul li:hover div {
    display: block;
}


@media screen and (max-width: 1680px) {
    .index_about_left .numCount li{
        margin-right: 10%;
    }
    .index_about_right .play{
        top: 48%;
    left: 47%;
    }
    .page_ds .prev_btn{
        left: 2%;
    }
    .page_ds .next_btn{
        right: 2%;
    }
}

@media screen and (max-width: 1679px) {
    .page_new_top .right .page_new_top_box {
        height: 208px;
    }
}

@media screen and (max-width: 1500px) {
    .index_about_left .numCount {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .index_about_left .numCount li {
        margin-right: 11%;
    }

    .index_new .right ul li {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 1379px) {
    .index_about_left .numCount li {
        margin-right: 10%;
    }
    .top_nav_list ul li {
        padding: 0 15px;
    }
}

@media screen and (max-width: 768px) {
    .top_nav_list {
        display: none;
    }

    .top_nav_search {
        display: none;
    }

    .mobileIcon .openMenu {
        width: 50px;
        height: 50px;
        align-self: center;
        margin: 0 auto;
    }

    .mobileIcon .closeMenu {
        width: 50px;
        height: 50px;
        align-self: center;
        margin: 0 auto;
        display: none;
    }

    .top_nav_hover .openMenu {
        content: url(../img/m_menu.png);
    }

    .top_nav_hover .closeMenu {
        content: url(../img/m_close.png);
    }

    .top_nav:hover .openMenu {
        content: url(../img/m_menu.png);
    }

    .top_nav:hover .closeMenu {
        content: url(../img/m_close.png);
    }

    .menuDown .mobileMenu {
        position: fixed;
        width: 100%;
        height: 0;
        top: 50px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 30px;
        background: #fff;
        z-index: 99999;
        opacity: 0;
        overflow: hidden;
    }

    .menuDown .mobileMenu .menuBtns .menuBtn {
        display: block;
        font-size: 18px;
        line-height: 40px;
        color: #333;
        margin-bottom: 20px;
        transition: all 0.5s;
        text-decoration: none;
        border-bottom: 1px solid #ececec;
    }

    .menuDown .mobileMenu .menuBtns .menuBtn>a {
        color: #333;
        padding-left: 30px;
        padding-right: 30px;
    }

    .menuDown .mobileMenu .menuBtns .menuBtn:hover div {
        display: block;
        background: #f5f6fa;
        padding: 15px 45px;
    }

    .menuDown .mobileMenu .menuBtns .menuBtn>div {
        display: none;
    }

    .menuDown .mobileMenu .menuBtns .menuBtn>div a {
        display: block;
        color: #666;
        font-size: 16px;
    }

    .menuDown .mobileMenu .flexBox {
        position: absolute;
        width: 100%;
        bottom: 50px;
        left: 0;
        display: flex;
        justify-content: center;
    }

    .menuDown .mobileMenu .flexBox .language {
        font-size: 13px;
        line-height: 32px;
        color: rgba(255, 255, 255, 0.5);
        margin-right: 10px;
        cursor: pointer;
    }

    .menuDown .mobileMenu .flexBox .language .active {
        color: #fff;
    }

    .menuDown .mobileMenu .flexBox .tel {
        display: flex;
        align-items: center;
        font-size: 13px;
        line-height: 32px;
        color: #fff;
        margin-left: 6px;
        margin-right: 6px;
    }

    .menuDown .mobileMenu .flexBox .tel .icon {
        width: 26px;
        height: 26px;
        display: block;
    }

    .menuDown .bg {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 99;
        opacity: 0;
    }

    .menuDown {
        position: fixed;
        width: 100%;
        height: 100%;
        display: none;
        z-index: 99;
    }

    .menuDown .bg {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 50px;
        background: rgba(0, 0, 0, 0.3);
        z-index: 99;
        opacity: 0;
    }

    .menuDown {
        position: fixed;
        width: 100%;
        height: 100%;
        display: none;
        z-index: 999;
        top: 50px;
    }

    .menuDown .infoBox {
        position: fixed;
        width: 100%;
        top: 80px;
        z-index: 99;
    }

    .mobileIcon {
        position: absolute;
        right: 0;
        top: 0;
        width: 50px;
        height: 50px;
        display: flex !important;
        align-items: center;
        text-align: center;
    }

    .top_nav_group .logo {
        width: 110px;
        line-height: 50px;
    }

    .top_nav_language {
        line-height: 50px;
        position: absolute;
        right: 50px;
        top: 0;
    }

    .pc_banner .pc_banner_content h4 {
        font-size: 24px;
    }

    .pc_banner .pc_banner_content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .pc_banner .pc_banner_content a {
        width: 140px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }

    .pc_banner .swiper-slide>img {
        height: auto;
    }

    .index_about {
        padding: 30px 0;
    }

    .index_about_left {
        width: 100%;
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .index_about_left h4 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .index_about_left>img {
        right: 15px;
    }

    .index_about_left p {
        font-size: 14px;
    }

    .index_about_left .numCount {
        margin: 15px 0;
    }

    .index_about_left .numCount li {
        width: 25%;
        margin-right: 0;
    }

    .index_about_left .numCount li .numCX {
        font-size: 28px;
    }

    .index_about_left .numCount li .numU .unitC {
        top: 0;
        margin-left: 4px;
    }

    .index_btn_blue {
        width: 100%;
    }

    .index_about_right {
        width: 100%;
        padding-left: 15px;
    }

    .index_about_right .play {
        width: 40px;
    }

    .modal-dialog {
        width: 350px;
        margin: 0 auto;
        margin-top: 30%;
    }

    .index_cp {
        padding: 30px 0 0 0;
    }

    .index_cp .title {
        font-size: 24px;
    }

    #cp_banner1 .swiper-slide .left {
        width: 100%;
        padding-top: 0;
        margin-bottom: 20px;
    }

    #cp_banner1 .swiper-slide .left .name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    #cp_banner1 .swiper-slide .left>span {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    #cp_banner1 .swiper-slide .left .btns {
        width: 100%;
        font-size: 14px;
    }

    #cp_banner1 .swiper-slide .right {
        float: none;
        width: 100%;
    }

    .index_dt {
        padding: 30px 0;
    }

    .index_dt .title {
        font-size: 24px;
    }

    .index_dt span {
        font-size: 16px;
    }

    .index_dt .block {
        margin-bottom: 10px;
    }

    .index_new {
        padding-top: 30px;
    }

    .index_new .left {
        width: 100%;
        padding-right: 15px;
        border-top-right-radius: 60px;
    }

    .index_new .left img {
        border-top-right-radius: 60px;
    }

    .index_new .left .content {
        padding: 20px;
        width: calc(100% - 15px);
    }

    .index_new .left .content div {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .index_new .left .content p {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .index_new .left .content span {
        font-size: 14px;
    }

    .index_new .right {
        width: 100%;
        padding: 15px;
    }

    .index_new .right ul li {
        margin-bottom: 20px;
    }

    .index_new .right ul li .img {
        width: 36%;
    }

    .index_new .right ul li .content {
        width: 57%;
    }

    .index_new .right ul li .content a {
        font-size: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 4px;
    }

    .index_new .right ul li .content p {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .index_fa {
        padding: 30px 0;
    }

    .index_fa .left {
        width: 100%;
    }

    .index_fa .left .title {
        font-size: 26px;
    }

    .index_fa .left .title span {
        font-size: 40px;
    }

    .index_fa .right {
        width: 100%;
        margin-top: 10px;
    }

    .index_fa .right .select_group>a {
        font-size: 14px;
    }

    .index_fa .right .select_group>a img {
        display: none;
    }

    .index_fa .right .link {
        margin-top: 15px;
    }
    .index_fa .right .link a{
        display: inline-block;
        margin-bottom: 15px;
    }
    .index_mx {
        flex-wrap: wrap;
    }

    .index_mx .box {
        width: 100%;
    }

    .footer_top {
        padding: 30px 0;
        flex-wrap: wrap;
    }

    .footer_list {
        width: 100%;
        display: none;
    }

    .footer_list ul li p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer_list ul li a {
        font-size: 14px;
    }

    .footer_lx {
        width: 50%;
    }

    .footer_qrcode {
        width: 50%;
    }

    .index_mx .box .content p {
        padding-top: 16%;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .page_banner .content p {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .page_banner .content span {
        font-size: 14px;
    }

    .page_nav .page_nav_right {
        float: right;
        width: 100%;
    }
    .pro_list>img{
        height: auto;
    }
    .page_nav_list {
        width: 100%;
        flex-wrap: wrap;
    }

    .page_nav_list a {
        font-size: 14px;
        width: 25%;
        float: left;
        margin-right: 0px;
        padding-right: 0px;
        border: none;
        margin-bottom: 10px;
    }

    .page_nav {
        padding: 12px 0;
    }

    .page_nav_list .active::after {
        display: none;
    }

    .page_wh {
        padding: 30px 0;
    }

    .page_wh .left {
        width: 100%;
    }

    .page_wh .left .icon1 {
        width: 40px;
    }

    .page_wh .left .icon2 {
        width: 40px;
    }

    .page_wh ul {
        padding-left: 60px;
    }

    .page_wh .left ul li h4 {
        font-size: 24px;
        margin-top: 0;
    }

    .page_wh .left ul li span {
        font-size: 14px;
    }

    .page_wh .left ul li {
        margin-bottom: 20px;
    }

    .page_wh .right {
        width: 100%;
        margin-top: 20px;
    }

    .page_whhd {
        padding: 30px 0;
    }

    .page_whhd .title p {
        font-size: 24px;
    }

    .page_whhd .title span {
        font-size: 22px;
    }

    .row {
        margin-left: -6px;
        margin-right: -6px;
    }

    .col-xs-6 {
        padding-right: 6px;
        padding-left: 6px;
    }

    .page_whhd_list {
        margin-bottom: 0;
        margin-top: 20px;
    }

    .page_title p {
        font-size: 24px;
    }

    .page_title span {
        font-size: 24px;
    }

    .page_ds {
        padding: 30px 0;
    }

    .page_ds_box {
        padding: 15px;
    }

    .page_ds_box>img {
        width: 80px;
        height: 80px;
    }

    .page_ds_box p {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .page_ds_box a span {
        font-size: 14px;
        line-height: 38px;
        height: 38px;
    }

    .page_ds .prev_btn {
        display: none;
    }

    .page_ds .next_btn {
        display: none;
    }

    .page_gwmt_flex {
        flex-wrap: wrap;
    }

    .page_gwmt_flex img {
        margin-right: 10px;
        width: 90px;
    }

    .page_gwmt_flex img:nth-child(3) {
        margin-right: 0;
    }

    .page_gwmt {
        padding: 30px 0;
    }

    .page_mt_flex {
        flex-wrap: wrap;
    }

    .page_mt_flex .page_mt_list {
        width: 50%;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .page_mt_flex .page_mt_list>img {
        width: 80%;
    }

    .page_mt_flex .page_mt_list>p {
        font-size: 18px;
    }

    .page_mt_flex .page_mt_list .box p {
        font-size: 18px;
    }

    .page_hd_box .box {
        padding: 10px;
    }

    .page_hd_title p {
        font-size: 24px;
    }

    .page_hd_title span {
        font-size: 24px;
    }

    .page_hd {
        padding: 30px 0;
    }

    .page_hd_title {
        margin-bottom: 20px;
    }

    .page_hd_box .box a {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .page_hd_box .box span {
        font-size: 14px;
    }

    .page_hd_box {
        margin-bottom: 14px;
    }

    .fenye a {
        font-size: 14px;
        margin-right: 4px;
    }

    .page_hd_box2 .img .content img {
        width: 40px;
        height: 40px;
    }

    .page_hd_tab {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .page_hd_tab a {
        width: 30%;
        margin-bottom: 10px;
    }

    .page_hd_box2 .box {
        padding: 12px;
    }

    .page_hd_box2 .box a {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .page_hd_box2 .box span {
        font-size: 14px;
    }

    .page_yx .left {
        width: 100%;
        padding-top: 0;
    }

    .page_yx .left p {
        font-size: 24px;
    }

    .page_yx {
        padding: 30px 0;
    }

    .page_yx .right {
        width: 100%;
    }

    .page_yx .right .qrcode {
        display: block;
        margin: 0 auto;
        float: none;
    }

    .page_yx .right .content {
        width: 100%;
        float: none;
    }

    .page_yx .right .content p {
        font-size: 18px;
    }

    .page_yx .right .content div {
        font-size: 18px;
    }

    .page_yx .right .content div span {
        display: inline;
    }

    .page_yx .leftBox {
        width: 100%;
        padding-top: 0;
    }

    .page_yx .leftBox p {
        font-size: 24px;
    }

    .page_yx .rightBox {
        width: 100%;
        flex-wrap: wrap;
    }

    .page_yx .rightBox .rightBox_left {
        width: 100%;
        margin-right: 0;
    }

    .page_yx .rightBox .rightBox_left .top {
        width: 49%;
        height: 148px;
        float: left;
    }

    .page_yx .rightBox .rightBox_left .bottom {
        width: 49%;
        height: 148px;
        float: right;
    }

    .page_yx .rightBox .rightBox_left .bottom img {
        width: 100%;
        display: block;
        height: 148px;
    }

    .page_yx .rightBox .rightBox_left .top div span {
        font-size: 16px;
    }

    .page_yx .rightBox .rightBox_left .top div p {
        font-size: 18px;
        text-align: center;
    }

    .page_yx .rightBox .rightBox_mid {
        width: 100%;
    }

    .page_yx .rightBox .rightBox_right {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }

    .page_yx .rightBox .rightBox_right .top {
        width: 49%;
        float: left;
        height: 148px;
    }

    .page_yx .rightBox .rightBox_right .top img {
        height: 148px;
        display: block;
    }

    .page_yx .rightBox .rightBox_right .bottom {
        width: 49%;
        height: 148px;
        float: right;
    }

    .page_yx .rightBox .rightBox_right .bottom div p {
        font-size: 18px;
    }

    .page_banner .search p {
        font-size: 20px;
    }

    .page_banner .search_box {
        width: 80%;
    }

    .page_banner .search .input input {
        height: 42px;
    }

    .page_banner .search .input img {
        height: 32px;
        width: 32px;
    }

    .al_detail .title {
        font-size: 24px;
    }

    .al_detail {
        padding: 30px 0;
    }

    .plyr--setup {
        width: 100%;
    }

    .al_tj {
        padding: 30px 0;
    }

    .al_tj .title p {
        font-size: 24px;
    }

    .al_tj .title span {
        font-size: 14px;
    }

    .al_tj_cp {
        margin-bottom: 20px;
    }

    .al_tj_cp .name {
        font-size: 18px;
    }

    .al_form {
        padding: 30px 0;
    }

    .al_form .title p {
        font-size: 24px;
    }

    .al_form .title span {
        font-size: 14px;
    }

    .wap_al_form {
        padding-left: 7px;
        padding-right: 7px;
    }

    .page_new_top .left {
        width: 100%;
        margin-bottom: 10px;
    }

    .page_new_top .right {
        width: 100%;
    }

    .page_new_top .right .page_new_top_box {
        margin-bottom: 12px;
    }

    .page_new_top .right .page_new_top_box img {
        height: auto;
    }

    .page_new_top .right .page_new_top_box {
        height: auto;
    }

    .page_new_top .right .page_new_top_box .content {
        padding: 15px;
    }

    .page_new_top .right .page_new_top_box .content p {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .page_new_top .right .page_new_top_box .content p {
        font-size: 14px;
    }

    .page_new_top .right .row .col-xs-6:nth-child(3) .page_new_top_box {
        height: 120px;
    }

    .page_new_top .right .row .col-xs-6:nth-child(4) .page_new_top_box {
        height: 120px;
    }

    .page_new_top {
        padding: 70px 0 30px 0;
    }

    .page_new_top .title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .page_new_list {
        padding: 30px 0;
    }

    .page_new_title p {
        font-size: 24px;
    }

    .page_new_title span {
        font-size: 14px;
    }

    .page_new_list_box {
        padding: 30px 15px;
        height: 250px;
        margin-bottom: 15px;
    }

    .page_new_list_box span {
        margin-bottom: 10px;
    }

    .page_new_list_box p {
        margin-bottom: 10px;
    }

    .page_new_list_box .desc {
        margin-bottom: 10px;
    }

    .page_new_bottm_list {
        width: 100%;
        margin-bottom: 15px;
    }

    .page_new_bottm {
        flex-wrap: wrap;
    }

    .page_new_bottm_list:first-child {
        margin-right: 0;
    }

    .al_list_top {
        margin-bottom: 15px;
    }

    .al_list_top .content {
        padding: 15px;
    }

    .al_list_top .content p {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 24px;
    }

    .al_list_top .content span {
        font-size: 14px;
    }

    .al_list_box .img img {
        height: auto;
    }

    .al_list_box .box .name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .al_list_box .box {
        height: 240px;
        padding: 15px;
    }

    .al_list_box .box p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .al_list_box2 .box {
        padding: 15px;
    }

    .al_list_box2 .box .name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .al_list_box2 .box p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 24px;
    }

    .page_hzkh {
        padding: 30px 0;
    }

    .page_hzkh .left {
        width: 100%;
    }

    .page_hzkh .numCount ul li img {
        width: 70px;
    }

    .page_hzkh .numCount ul li .item .numCX {
        font-size: 36px;
    }

    .page_hzkh .right {
        width: 100%;
    }

    .page_hzpp .title p {
        font-size: 24px;
    }

    .page_hzpp .title span {
        font-size: 14px;
    }

    .page_hzpp_flex div {
        width: 48%;
    }

    .page_hzpp_flex div:nth-child(even) {
        margin-right: 0;
    }

    .newDetail {
        padding: 30px 0;
    }

    .newDetail .left {
        width: 100%;
    }

    .newDetail .left .title {
        font-size: 24px;
    }

    .newDetail .left .more {
        margin-bottom: 20px;
    }

    .newDetail .left .more .more_left {
        width: 100%;
    }

    .newDetail .left .more .more_left a {
        font-size: 14px;
    }

    .newDetail .left .more .more_right {
        width: 100%;
    }

    .newDetail .right {
        width: 100%;
    }

    .new_list ul li .img {
        width: 100%;
        margin-bottom: 20px;
    }

    .new_list ul li .content {
        width: 100%;
    }

    .new_list ul li .content>a {
        font-size: 20px;
    }

    .new_list ul li .content>span {
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .about_us_top .numCount li {
        width: 33.333333%;
    }

    .about_l_top .about_l_top_left {
        width: 100%;
        margin-bottom: 15px;
    }

    .about_l_top .about_l_top_left>div {
        position: relative;
        width: 100%;
        padding: 30px;
    }

    .about_l_top .about_l_top_left>div p {
        font-size: 22px;
    }

    .about_l_top .about_l_top_left>img {
        float: none;
        width: 100%;
    }

    .about_l_top .about_l_top_right .content p {
        font-size: 22px;
    }

    .about_l_mid {
        margin-top: 15px;
    }

    .about_us_top {
        padding: 30px 0;
    }

    .about_us_top .title {
        font-size: 24px;
    }

    .about_l_bottom {
        flex-wrap: wrap;
    }

    .about_l_bottom_1 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .about_l_bottom_2 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .about_l_bottom_3 {
        width: 100%;
    }

    .about_l_top .about_l_top_right {
        position: relative;
        width: 100%;
    }

    .about_l_mid>img {
        width: 100%;
    }

    .about_l_mid .box {
        position: relative;
        width: 100%;
        padding: 30px;
    }

    .about_l_mid .box p {
        font-size: 22px;
    }

    .about_l_bottom_2 .content p {
        font-size: 22px;
    }

    .about_l_bottom_2 .content {
        padding: 30px;
    }

    .about_l_mid .box>span {
        font-size: 14px;
        line-height: 24px;
    }

    .about_l_top .about_l_top_left>div>span {
        font-size: 14px;
        line-height: 24px;
    }

    .about_l_bottom_2 .content>span {
        font-size: 14px;
        line-height: 24px;
    }

    .page_lx {
        padding: 30px 0;
    }

    .page_lx .title p {
        font-size: 24px;
    }

    .page_lx .title span {
        font-size: 14px;
    }

    .page_lx_bottom {
        margin-top: 15px;
    }

    .page_lx_top {
        margin-top: 15px;
    }

    .page_zzsl ul li .content {
        width: 100% !important;
        position: relative !important;
        padding: 30px !important;
    }

    .page_zzsl ul li .content p {
        font-size: 24px !important;
    }

    .page_zzsl ul li img {
        width: 100% !important;
    }

    .page_ry_list .name {
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .page_lc_list ul li .time {
        width: 70px;
    }

    .page_lc_list ul li .time p {
        width: 60px;
        height: 60px;
        font-size: 20px;
        line-height: 60px;
    }

    .page_lc_list ul li .content {
        width: calc(100% - 80px);
        padding: 20px;
    }

    .page_lc_list ul li .content img {
        width: 100%;
    }

    .page_lc_list ul li .content .left {
        width: 100%;
        margin-bottom: 10px;
    }

    .page_lc_list ul li .content .left p {
        font-size: 20px;
    }

    .page_lc_list ul li .content .left span {
        font-size: 14px;
        line-height: 24px;
    }

    .page_gs {
        padding: 30px 0;
    }

    .page_gs .left {
        width: 100%;
    }

    .page_gs .left p {
        margin-top: 0;
        font-size: 24px;
    }

    .page_gs .left span {
        font-size: 28px;
    }

    .page_gs .left .numCount {
        margin-top: 15px;
    }

    .page_gs .left .numCount li {
        width: 33.33333%;
        margin-right: 0;
    }

    .page_gs .right {
        width: 100%;
    }

    .page_gs .right h4 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .proDetail_nav {
        padding-top: 70px;
    }

    .proDetail_group {
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .proDetail_group .left {
        width: 100%;
    }

    .proDetail_group .right {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .proDetail_group .right .fl span {
        font-size: 16px;
    }

    .proDetail_group .right .fl a img {
        width: 22px;
    }

    .proDetail_group .right .fl a p {
        font-size: 14px;
    }

    .proDetail_group .right h4 {
        font-size: 24px;
    }

    .proDetail_group .right .content {
        font-size: 14px;
        line-height: 24px;
    }

    .proDetail_group .right .tel {
        margin-top: 10px;
    }

    .proDetail_group .right>a {
        margin-top: 10px;
    }

    .pro_tab {
        padding-top: 30px;
    }

    .pro_pz {
        padding: 30px 0;
    }

    .pro_lx {
        padding: 30px 0;
    }

    .pro_lx h4 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .pro_lx ul {
        flex-wrap: wrap;
    }

    .pro_lx ul li {
        width: 50%;
        margin-bottom: 15px;
    }

    .pro_lx ul li p {
        font-size: 16px;
    }

    .pro_lx ul li img {
        width: 70px;
    }

    .pro_search .search_box {
        width: 90%;
    }

    .pro_hot {
        padding: 30px 0;
    }

    .pro_hot_box {
        margin-bottom: 30px;
        height: 280px;
    }

    .pro_hot_box .name {
        font-size: 30px;
    }

    .pro_search {
        padding: 30px 0;
    }

    .pro_search h4 {
        font-size: 24px;
    }

    .search_list a {
        font-size: 14px;
    }

    .pro_list {
        padding: 15px;
        height: 290px;
    }

    .pro_list>a {
        width: 70%;
    }

    .pro_list>p {
        font-size: 16px;
    }

    .pro_list .content {
        padding: 15px;
    }

    .pro_list .content h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .pro_list .content ul li {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .pro_list .content>a {
        width: 70%;
        margin-top: 20px;
    }
    .page_banner .proContent select{
        font-size: 18px;
    }
    .pro_check{
        margin-top: 10px;
    }
    .protwo_bg{
        padding: 30px 0;
    }
    .protwo_list{
        padding: 15px;
    }
    .protwo_list .name{
        font-size: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .protwo_list .fl{
        font-size: 14px;
    }
    .pro_db_box .left{
        width: 100%;
        margin-bottom: 15px;
    }
    .pro_db_box .left ul li{
        margin-right: 10px;
    }
    .pro_db_box .right{
        width: 100%;
        float: none;
        display: flex;
        justify-content: center;
    }
    .pro_db_flex_box p{
        font-size: 16px;
    }
    .pro_db_flex_box a{
        width: 100%;
    }
    #cp_banner1 .swiper-slide .right img{
        height: auto;
    }
    .page_banner .proContent{
        top: 30%;
    }
    .protwo_list .img img{
        height: auto;
    }
    .pro_db_flex_box>img{
        height: auto;
    }
    .al_form_box select{
        background: #fff;
    }
}