.box {
    width: 100%;
    margin: 0 auto;
}

header {
    width: 100%;
    margin: 0 auto;
}

.header_nav {
    width: 100%;
    height: 85px;
    position: fixed;
    top: 0%;
    left: 0%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.header_nav:hover {
    background-color: #fff;
}

.header_nav:hover .header_nav_ul>li>a {
    color: #333;
}

.header_nav2 {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header_nav_logo {
    height: 90%;

}

.header_nav_logo>img {
    height: 100%;

}

.header_nav_ul {
    width: 55%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header_nav_ul>li {}

.header_nav_ul>li>a {
    color: #fff;
}

.header_banner {
    width: 100%;
    height: 462px;
    position: relative;
}

.header_banner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
}

.header_banner_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 990;
    background-color: rgba(0, 0, 0, 0.2);
}

.header_banner_text>h4 {
    font-size: 51px;
    color: #fff;
    font-weight: 500;
}

.header_banner_text>p {
    font-size: 51px;
    color: #fff;
    margin-top: 14px;
}

.header_swiper {
    width: 100%;
    height: 65vh;
    position: relative;
}

.mySwiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;


}

.mySwiper .swiper-wrapper {
    width: 100%;
    height: 100%;

}

.mySwiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 990;
}

.mySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.myswiper_text {
    position: absolute;
    top: 0%;
    left: 0%;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    z-index: 990;
}

.myswiper_text>h4 {
    font-size: 56px;
    margin-bottom: 30px;
    color: #fff;
}

.myswiper_text>p {
    font-size: 42px;
    color: #fff;
}

.myswiper_text>a {
    margin-top: 30px;
    width: 150px;
    height: 40px;
    display: inline-block;
    border-radius: 80px;
    background-color: #2867b0;
    line-height: 40px;
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.mySwiper .swiper-button-next {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    background: url(../image/bannernext.png)no-repeat center;
    z-index: 9999;
    cursor: pointer;

}

.mySwiper .swiper-button-next:hover {
    border-right: 1px solid #2a8dfd;
    border-top: 1px solid #2a8dfd;
    border-bottom: 1px solid #2a8dfd;
    position: relative;
    z-index: 9999;
}

.mySwiper .swiper-button-prev {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    background: url(../image/bannerprev.png)no-repeat center;
    z-index: 9999;
    cursor: pointer;
}

.mySwiper .swiper-button-prev:hover {
    border-left: 1px solid #2a8dfd;
    border-top: 1px solid #2a8dfd;
    border-bottom: 1px solid #2a8dfd;
    position: relative;
    z-index: 9999;
}

.shubiao {
    position: absolute;
    top: 90%;
    right: 50%;
    width: 20px;
    height: 34px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 990;
    animation: arrow2 1s infinite linear;
}

@keyframes arrow2 {
    0% {
        transform: translate(-50%, -50%);
    }


    50% {
        transform: translate(-50%, -70%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

/* footer{
    width: 100%;
    margin: 0 auto;
    
    background-color: #282e3c;
}
.footer_main{
    width: 81.5%;
   padding-top: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.footer_js{
    width: 30%;
}
.footer_js>p{
color: #fff;
}
.footer_dh{
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.footer_dh>a{
    color: #fff;
}
.footer_ewm{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.footer_ewm>img{
width: 40%;
}
.footer_ewm>p{
 margin-top: 10px;
 color: #fff;
}
.footer_bottom{
    width: 100%;
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
background-color: #ccc;
}
.footer_bottom>p{
    color: #fff;
}
.footer_bottom>p>a{
    color: #fff;
} */

footer {
    width: 100%;
    margin: 0 auto;
    background-color: #224d77;
}

.footer_top {
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.footer_top_main {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer_top_ul {
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer_top_ul>li {
    font-size: 14px;
    color: #fff;
}

.footer_top_img {
    width: 9%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer_top_img>img {
    width: 28px;
    height: 28px;

}

.footer_bottom {
    width: 1200px;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 0;
}

.footer_zuo {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.footer_zuo_ul {
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer_zuo_ul>li {
    font-size: 13px;
    color: #fff;

}

.footer_zuo_div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer_zuo_div>div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer_zuo_div>div>p {
    font-size: 12px;
    color: #fff;
}

.footer_you {
    width: 100px;
    height: 130px;
}

.footer_you>img {
    width: 100%;
    height: 100px;
}

.footer_you>p {
    font-size: 12px;
    width: 100%;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
}

.footer_bq {
    width: 100%;
    height: 50px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ccc;
}

.footer_bq>p {
    font-size: 14px;
    color: #fff;
}
.index_main{
  width: 100%;
    margin: 0 auto;   
}
main {
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: -80px;
    z-index: 998;
}

/* .index_one{
    width: 100%;
    margin: 0 auto;
    background:url(../image/1577440878084880994.jpg)no-repeat center;
    background-size:cover;

}
.indexone_main{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
padding: 68px 0;
} */
.index_one {
    width: 100%;
    height: 270px;
    margin: 0 auto;

}

.indexone_main {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.indexone_center {
    width: 24%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(109, 153, 186, 0.2);

}

.indexone_center_top {
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.indexone_center_top>img {
    width: 50px;
    height: 50px;
}

.indexone_center_top>p {
    font-size: 51px;
    font-weight: bold;
    font-style: normal;
    color: #2867b0;
    padding: 0 0 0 15px;
    padding: 0 0 0 15px;
    vertical-align: bottom;
}

.indexone_center_bottom {
    color: #333;
    font-size: 16px;

}

.tebold {
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    position: relative;
    color: #fff;
    margin-bottom: 50px;
    font-family: "PINGFANG HEAVY_1";
}

.tebold::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 8px;
    content: "";
    background-image: url(../image/after.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    bottom: -30px;
}

.tebiaole {
    margin-top: 10px;
    font-size: 30px;
    color: #fff;
    line-height: 32px;
    font-family: "PINGFANG HEAVY_1";
    text-align: center;
}

.sm-jie {
    text-align: center;
    margin-top: 30px;
}

.sm-jie>p {
    color: #fff;
    font-size: 14px;

}

.more {
    display: block;
    margin: 40px auto 0;
    width: 140px;
    padding-left: 20px;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    border-radius: 80px;
    color: #fff;
    background-color: #18a4fd;
    background-position: 80% center;
    background-size: 14px;
    background-repeat: no-repeat;
    background-image: url(../image/bannernext.png);
    cursor: pointer;
    transition: all 0.3s;
}

.more:hover {
    background-position: 85% center;
}

.list4ul {
    margin-top: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.list4ul>li {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
    vertical-align: top;
}

.liname {
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: 20px;
    padding-top: 15px;
}

.num {
    font-size: 40px;
    line-height: 40px;
    margin-top: 20px;
    color: #fff;
    font-family: "BEBAS_";
    display: inline-block;
}

.base {
    font-size: 68px;
    line-height: 68px;
}

.index_two {
    width: 100%;
    margin: 0 auto;
    background-color: #f6fbff;

}

.indextwo_main {
    width: 1200px;
    margin: 0 auto;
    padding: 68px 0;
}

.tebold2 {
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    position: relative;
    color: #333;
    margin-bottom: 50px;
    font-family: "PINGFANG HEAVY_1";
}

.tebold2::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 8px;
    content: "";
    background-image: url(../image/after.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    bottom: -30px;
}

.indextwo_swiper {
    width: 100%;
    height: 450px;
}

.mySwiper2 {
    width: 100%;
    height: 100%;
}

.mySwiper2 .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.mySwiper2 .swiper-slide {
    height: 100%;
    transition: 0.5s;
}

.mySwiper2 .swiper-slide:hover {
    margin-top: -20px;
    box-shadow: 0 10px 20px rgba(1, 125, 255, 0.2);
    transition: 0.5s;
}

.mySwiper2_img {
    height: 282px;
    width: 100%;
    overflow: hidden;
}

.mySwiper2_img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.mySwiper2_text {
    padding: 30px 40px;
    background-color: #fff;
}

.tishi {}

.nameti {
    font-size: 19px;
    color: #404040;
    line-height: 25px;
    margin-top: 15px;
    height: 51px;
    overflow: hidden;
}

.tiem {
    font-size: 13px;
    color: #999999;
    margin: 25.5px 0 0;
}

.index_three {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 68px;
}

.indexthree_main {
    width: 100%;
    height: 390px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

.indexthree_main_left {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: url(../image/16.jpg)no-repeat;

}

.indexthree_main_left>h1 {
    font-size: 22px;
    font-weight: normal;
    font-style: normal;
    color: #ffffff;
    padding: 0 0 20px 0;
    display: block;
    padding: 0 0 20px 0;
    vertical-align: bottom;
    margin-left: 300px;
}

.indexthree_main_left>p {
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    color: #ffffff;
    display: block;
    padding: 2px;
    vertical-align: bottom;
    margin-bottom: 30px;
    max-width: 375px;
    margin-left: 300px;
}

.indexthree_main_left>a {
    font-size: 14px;
    padding: 15px 60px;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 1px solid #fff;
    margin-left: 300px;
}

.indexthree_main_left>a:hover {
    font-size: 14px;
    padding: 15px 60px;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    background-color: #fff;
    color: rgb(0, 0, 0);
    border: 1px solid #fff;
}

.indexthree_main_right>a:hover {
    font-size: 14px;
    padding: 15px 60px;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    background-color: #fff;
    color: rgb(0, 0, 0);
    border: 1px solid #fff;
}

.indexthree_main_right {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: url(../image/17.jpg)no-repeat;
}

.indexthree_main_right>h1 {
    font-size: 22px;
    font-weight: normal;
    font-style: normal;
    color: #ffffff;
    padding: 0 0 20px 0;
    display: block;
    padding: 0 0 20px 0;
    vertical-align: bottom;
    margin-left: 50px;
}

.indexthree_main_right>p {
    font-size: 14px;
    max-width: 375px;
    font-weight: normal;
    font-style: normal;
    color: #ffffff;
    display: block;
    padding: 2px;
    vertical-align: bottom;
    margin-bottom: 30px;
    margin-left: 50px;
}

.indexthree_main_right>a {
    font-size: 14px;
    padding: 15px 60px;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 1px solid #fff;
    margin-left: 50px;
}

.index_six {
    width: 100%;
    margin: 0 auto;
    padding: 0px 0;
    margin-bottom: 50px;
}

.indexsix_main {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
}

.indexsix_main_left {
    width: 42%;
    display: inline-block;
    padding: 44px 60px;
    background-color: #f8f8f8;
}

.indexsix_main_left:hover {
    background-color: #224d77;
}

.indexsix_main_left:hover h4 {
    color: #fff;
}

.indexsix_main_left:hover p {
    color: #fff;
    margin-left: 20px;
    transition: all .36s ease;
}

.indexsix_main_left:hover .indexsix_but {
    opacity: 1;
    bottom: -20px;
}

.indexsix_but {
    display: block;

    position: relative;
    left: 0px;
    bottom: -40px;
    width: 140px;
    height: 37px;
    color: transparent;
    opacity: 0;
    background: #22326b;
    transition: all .36s ease;
    font-size: 32px;
    font-weight: 200;
    text-align: center;
    color: #fff;
    line-height: 37px;
}

.indexsix_left_center {}

.indexsix_left_center>h1 {
    color: #c4c4c4;
    font-size: 24px;
    font-weight: 500;
}

.indexsix_left_center>h4 {
    color: #666666;
    font-size: 15px;
    font-family: 微软雅黑;
    font-weight: normal;
    padding-bottom: 10px;
}

.indexsix_left_center>p {
    color: #999999;
    font-size: 12px;
    max-width: px;
    word-break: break-all;
    font-family: 微软雅黑;
    line-height: 20px;
    padding-bottom: 10px;
    transition: all .36s ease;
}

.indexsix_left_img {
    width: 100%;

}

.indexsix_left_img>img {
    width: 100%;
height: 447px;
}

.indexsix_main_right {
    width: 45%;
}

.indexsix_right_main {
    width: 100%;
    height: 156px;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #ccc;
    margin-bottom: 35px;
    overflow: hidden;
}

.indexsix_right_main:hover {
    background-color: #224d77;
}

.indexsix_right_main:hover .indexsix_right_zuo h4 {
    margin-left: 30px;
    color: #fff;
}

.indexsix_right_main:hover .indexsix_right_zuo p {
    color: #fff;
    margin-left: 30px;
}

.indexsix_right_main:hover .indexsix_right_you>p {

    padding-right: 10px;
}

.indexsix_right_zuo {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.indexsix_right_zuo>h4 {
    color: #666666;
    font-size: 15px;
    font-family: 微软雅黑;
    font-weight: normal;
    padding-bottom: 10px;
    transition: all .36s ease;
}

.indexsix_right_zuo>h4>span {
    margin-right: 10px;
}

.indexsix_right_zuo>p {
    color: #999999;
    font-size: 13px;
    max-width: px;
    word-break: break-all;
    font-family: 微软雅黑;
    line-height: 28px;

    transition: all .36s ease;
    padding-left: 20px;
    display: -webkit-box;
    /*将对象转为弹性盒模型展示*/
    -webkit-box-orient: vertical;
    /*设置弹性盒模型子元素的排列方式*/
    -webkit-line-clamp: 2;
    /*限制文本行数*/
    overflow: hidden;
    /*超出隐藏*/
}

.indexsix_right_you {
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-end;
}

.indexsix_right_you>h1 {
    color: #c4c4c4;
    font-size: 24px;
}

.indexsix_right_you>p {
    color: #999;
    border-left: 1px solid #ccc;
    transition: all .36s ease;
    padding-left: 10px;
}

.indextwo_title {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.indextwo_title>h1 {
    font-size: 26px;
    font-weight: normal;
    font-style: normal;
    color: #1d3658;
    padding-bottom: 10px;
}

.indextwo_title>p {
    font-size: 13px;
    color: #999999;
    padding-bottom: 10px;
}

.mbx {
    width: 1200px;
    margin: 0 auto;
    padding: 30px 50px;
    border-bottom: 1px solid #ccc;
    
   /* position: absolute;
    top: 382px;
    left: 5.8%;*/
    background-color: #fff;
    z-index: 991;
    border-radius: 5px 5px 0 0;
}

.mbx>a {
    padding: 0 20px;
}

.mbx_on {
    color: #2a8dfd !important;
}

.mbx>a:hover {
    color: #2a8dfd;

}

.news {
    width: 100%;
    margin: 0 auto;
    background-color: #f6fbff;
}

.news_main {
    width: 1200px;
    margin: 0 auto;
    padding: 60px 50px;
    background-color: #fff;
}

.news_center {
    width: 100%;

}

.news_center_top {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.news1-tp-left {
    width: 57%;
    height: 461px;
    overflow: hidden;
}

.news1-tp-left>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease;
}

.news1-tp-right {
    width: 38%;
}

.news1-tp-all {}

.news1-tp-time {
    margin-bottom: 10px;
}

.ft14 {
    font-size: 14px;
}

.cl99 {
    color: #999;
}

.news1-tp-title {
    font-size: 25px;
    color: #4c4c4c;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all .4s ease;
}

.news1-tp-txt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 20px 0 50px 0px;
    line-height: 25px;
}

.clff {
    color: #fff;
}

.news1-tp-all a {
    width: 170px;
    height: 40px;
    background: #298efd;
    line-height: 40px;
    display: block;
    border-radius: 30px;
    text-align: center;
}

.news_center_top:hover .news1-tp-left img {
    transform: scale(1.1);
    transition: 0.5;
}

.news_center_top:hover .news1-tp-title {
    color: #2a8dfd;
}

.lant {
    width: 100%;
    position: absolute;
    padding: 0 0px;
    left: 0%;
    margin-top: 50px;
    height: 20px;
    background-color: #f6fbff;
}

.news_center_bottom {

    display: flex;
    flex-direction: column;
    margin-top: 130px;
}

.news_center_bottomchild {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #f2f2f2;
    margin-bottom: 20px;
}

.news1-bt-left {
    width: 41%;
    height: 328px;
    overflow: hidden;
}

.news1-bt-left>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease;
}

.news_center_bottomchild:hover .news1-bt-left>img {
    transition: all .4s ease;
    transform: scale(1.1);
}

.news1-bt-right {
    width: 59%;
}

.news1-btrt-all {
    padding: 0 10%;
}

.news1-btrt-logo {
    color: #808080;
}

.news1-btrt-logo div {
    color: #808080;
    background: url(../image/jt.png) right center no-repeat;
    padding-right: .75rem;
    transition: all .4s ease;
    padding-right: 30px;
}

.news_center_bottomchild:hover .news1-btrt-logo div {
    padding-right: 35px;
}

.fr {
    float: right;
    display: inline;
}

.news1-btrt-time {
    font-size: 16px;

}

.news1-btrt-time span {
    font-size: 51px;
    margin-right: 5px;
}

.news1-tp-title {
    font-size: 25px;
    margin-top: 25px;
    margin-bottom: 15px;
    width: 100%;
}

.news_center_bottomchild:hover .news1-tp-title {
    color: #2a8dfd;
}

.news1-btrt-txt {}

.ft16 {
    font-size: 16px;
}

.cl66 {
    color: #666;
}

.page {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.pagination {

    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.pagination>a {
    font-size: 16px;
    color: #686868;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #f7f7f7;
    display: inline-block;
    vertical-align: top;
    transition: all .4s ease;
}

.pagination>a:hover {
    background-color: #2588f6;
    color: #fff;
}

.active {
    background-color: #2588f6 !important;
    color: #fff !important;
}

.next {}

.news_detail {
    width: 100%;
    margin: 0 auto;
    background-color: #f6fbff;
}

.news_detail_main {
    width: 1200px;
    margin: 0 auto;
    padding: 60px 50px;
    background-color: #fff;
}

.newscenter {
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;

}

.newscenter_main {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;

}

.newscenter_main_left {
    width: 65%;

}

.newscenter_main_left_title {
    padding: 25px 0;
    border-bottom: 1px solid rgba(237, 237, 237, 1);

}

.newscenter_main_left_title>h4 {
    font-family: 微软雅黑;
    font-size: 22px;
    font-weight: normal;
    font-style: normal;
    color: #494949;
}

.newscenter_main_left_text {
    margin-top: 30px;
    overflow: hidden;
}

.newscenter_main_left_text p {
    line-height: 26px;
    letter-spacing: 1px;
    font-size: 13px;
    color: #808080;
}

.newscenter_main_left_text img {
    max-width: 100%;

}

.newscenter_main_left_time {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
    border-top: 1px solid rgba(237, 237, 237, 1);
    padding-top: 15px;
}

.newscenter_main_left_time>p:nth-child(1) {
    line-height: 1.5em;

    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-family: 微软雅黑;
    color: #aaaaaa;
    text-align: left;
}

.newscenter_main_left_time>p:nth-child(2) {
    color: #727272;
}

.newscenter_main_left_time>p {
    width: 40%;
}

.newscenter_main_left_a {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.newscenter_main_left_a>a {
    padding: 10px 0;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-family: 默认;
    color: #8c8c8c;
    max-width: 300px;
}

.newscenter_main_left_a>a:hover {
    color: #224d77;
}

.newscenter_main_right {
    width: 29%;
}

.newscenter_main_right>h4 {
    color: #666666;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(237, 237, 237, 1);

}

.newscenter_main_right>div {
    display: flex;
    flex-direction: column;
}

.newscenter_main_right>div>a {
    color: #9e9e9e;
    font-size: 14px;
    font-family: 微软雅黑;
    line-height: 20px;
    font-weight: normal;
    padding: 15px 0;
    border-bottom: 1px solid rgba(237, 237, 237, 1);
    margin-top: 20px;
}

.newscenter_main_right>div>a:hover {
    color: #2a8dfd;
}

.service {
    width: 100%;
    margin: 0 auto;
    background-color: #f6fbff;
}

.service_main {
    width: 1200px;
    margin: 0 auto;
    padding: 60px 50px;
    background: url(../image/se1_05.png)no-repeat;
    background-position: center;
    background-size: cover;
}

.serve-main-txt {
    text-align: center;
}

.service_center {
    width: 100%;
    margin: 0 auto;
    padding-top: 50px;
}

.ser-list1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
}

.ser-list1 a {
    width: 31.3%;
    height: 210px;
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ser1-show {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.ser1-show img {
    width: 40px;
    height: 40px;
}

.ser1-s-all {
    display: inline-block;
    vertical-align: top;
    text-align: left !important;
    margin-left: 10px;
}

.ser1-stitle {
    color: #4c4c4c;
    line-height: 1.1;
}

.ser1-etitle {
    color: #bfbfbf;
}

.ser1-cover-img {
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
    object-fit: cover;
    border-radius: 10px;
}

.ser1-cover {
    position: absolute;
    width: 100%;
    left: 0;
    top: 70%;
    transform: translateY(-50%);
    text-align: center;
    padding: 0 30px;
    box-sizing: border-box;
    transition: all .4s .2s ease;
    opacity: 0;
    visibility: hidden;
}

.sre1-ctitle {
    margin-bottom: 10px;
}

.ser1-ctxt {
    line-height: 1.4;
    margin-bottom: 10px;
}

.ser1-ctel1 {
    line-height: 1.4;
}

.ft20 {
    font-size: 20px;
}

.pre {
    position: relative;
}

.ser-list1 a:hover .ser1-cover {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.ser-list1 a:hover .ser1-cover-img {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.ser-list1 a:hover .ser1-show {
    opacity: 0;
    visibility: hidden;
}

.about {
    width: 100%;
    margin: 0 auto;
    background-color: #f6fbff;
}

.about_main {
    width: 1200px;
    margin: 0 auto;
    padding: 0px 50px;
    background: #fff;
    background-position: center;
    background-size: cover;
}

.about_center {
    width: 100%;
    margin: 0 auto;
    padding: 60px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    background: url(../image/amap.png)no-repeat center;
    background-size: cover;
}

.about_center_left {
    width: 41.7%;
}

.about_center_right {
    width: 45%;
    height: 362px;
    border-radius: 5px;
}

.about_center_right>img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.name {
    font-size: 40.8px;
    line-height: 35px;
    color: #000;
    margin-bottom: 80px;
    position: relative;
}

.name:after {
    position: absolute;
    left: 0%;
    width: 51px;
    height: 6.8px;
    content: "";
    background-image: url(../image/after.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    bottom: -35px;
}

.about_center_left>p {
    font-size: 14px;

}

.honour {
    width: 100%;
    margin: 0 auto;
    background-color: #f6fbff;
}

.honour_main {
    width: 1200px;
    margin: 0 auto;
    padding: 60px 50px;
    background: #fff;
    background-position: center;
    background-size: cover;
}

.honour_center {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.honour_child {
    width: 23.6%;
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

.honour_child:nth-child(4n+4) {
    margin-right: 0px;
}

.honour_childimg {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.honour_childimg>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.5s;
}

.honour_child:hover .honour_childimg>img {
    transform: scale(1.1);
    transition: 0.5s;
}

.honour_childtext {
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

.honour_childtext>p {
    font-size: 14px;
}

.honour_child:hover .honour_childtext>p {
    color: #2a8dfd;
}

.product {
    width: 100%;
    margin: 0 auto;
    background-color: #f6fbff;
}

.product_main {
    width: 1200px;
    margin: 0 auto;
    padding: 60px 50px;
    background: #fff;
    background-position: center;
    background-size: cover;
}

.product_center {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.product_child {
    width: 32%;
    margin-right: 20px;
    margin-bottom: 20px;
    transition: 0.5s;
    /*     box-shadow: 0 0px 15px rgba(0,0,0,0.2); */
}

.product_child:nth-child(3n+3) {
    margin-right: 0px;
}

.product_child:hover {
    margin-top: -20px;
    box-shadow: 0 10px 20px rgba(1, 125, 255, 0.2);
    transition: 0.5s;
}

.mySwiper2_img {
    height: 282px;
    width: 100%;
    overflow: hidden;
}

.mySwiper2_img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.mySwiper2_text {
    padding: 30px 40px;
    background-color: #fff;
}

.tishi {}

.nameti {
    font-size: 19px;
    color: #404040;
    line-height: 25px;
    margin-top: 15px;
    height: 51px;
    overflow: hidden;
}

.tiem {
    font-size: 13px;
    color: #999999;
    margin: 25.5px 0 0;
}

.product_child:hover .nameti {
    color: #2a8dfd;
}

.product_fl {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.product_fl>a {
    padding: 10px 50px;
    border: 1px solid #ccc;

    border-radius: 5px;
    margin: 10px;
}

.product_fl>a:hover {
    background-color: #2a8dfd;
    color: #fff;
}

.product_flon {
    background-color: #2a8dfd;
    color: #fff;
}