*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'MicrosoftYaHei',serif;
}
html, body{
    scroll-behavior:smooth;
    color: #333333;
    overflow-x: hidden;
}
a{
    color: #333;
    text-decoration: none;
}
input, button, textarea {
    outline: none;
}

/* 公共类名 */
.none{
    display: none;
}
.auto{
    width: 1220px;
    margin: 0 auto;
    max-width: 95%;
}
.ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-more{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.ellipsis-more-3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.title{
    width: 100%;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: stretch;
    padding-bottom: 20px;
}
.title-line{
    width: 5px;
    background-color: #00335d;
    margin-right: 12px;
}
.title-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}
.title-cn{
    font-size: 22px;
    color: #00335d;
    margin-bottom: 8px;
}
.title-en{
    font-size: 12px;
    color: #e6e6e6;
}

/* header */
.header{

}
.header-container{
    width: 100%;
    height: 88px;
    position: fixed;
    background: #ffffff;
    top: 0;
    left: 0;
    z-index: 90;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
}
.header-height{
    height: 88px;
}
.header-box{
    width: 85%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-left{
    display: flex;
    align-items: center;
}
.header-center{
    height: 100%;
    display: flex;
    align-items: center;
}
.header-list{
    display: flex;
    width: 496px;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}
.header-li{
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: #333333;
    position: relative;
}
.header-li:after{
    content: '';
    display: block;
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 25px;
    left: 0;
    background: #00335d;
    border-radius: 10px;
    transition: all 0.4s;
}
.header-li:hover{
    color: #00335d;
}
.header-li:hover:after{
    width: 100%;
}
.header-more{
    display: flex;
    margin-left: 140px;
    cursor: pointer;
}
.header-right{
    display: flex;
    align-items: center;
}
.header-search{
    display: flex;
    align-items: center;
}
.header-lan{
    display: flex;
    align-items: center;
    margin-left: 106px;
}
.menu{
    display: none;
    align-items: center;
}
.menu img{
    width: 30px;
}

/* header-mobile*/
.header-mobile{
    width: 260px;
    height: 100vh;
    position: fixed;
    left: -260px;
    top: 0;
    z-index: 1001;
    background: #F5F5F5;
    transition: all 0.4s;
    opacity: 0;
}
.header-mobile-active{
    left: 0;
    opacity: 1;
}
.mobile-mask{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
}
.mobile-top{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    background-image: linear-gradient(to right, #1d8cc4 0%, #19cbd2 100%);
    line-height: 100%;
}
.mobile-top img{
    width: 130px;
}
.mobile-list{
    height: calc(100vh - 50px);
    overflow-y: auto;
}
.mobile-li{
    border-top: 1px solid #EBEBEB;
    line-height: 100%;
}
.mobile-li-a{
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: space-between;
    padding: 0 20px;
    color: #999999;
    font-size: 15px;
    box-sizing: border-box;
}
.mobile-li-left{
    height: 100%;
    display: flex;
    align-items: center;
}
.mobile-li-left span{
    width: 8px;
    height: 8px;
    background-image: linear-gradient(to right, #1d8cc4 0%, #19cbd2 100%);
    border-radius: 50%;
    margin-right: 20px;
}
.mobile-li-right{
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #666666;
}
.mobile-li-list-a{
    display: flex;
    width: 100%;
    height: 50px;
    padding: 0 30px;
    color: #999999;
    font-size: 14px;
    align-items: center;
    border-top: 1px solid #EBEBEB;
    background: #F6F6F6;
    box-sizing: border-box;
}
.mobile-li-list-a i{
    margin-right: 20px;
}
.mobile-li-active{
    background: #EBEBEB;
}
.mobile-li-active .mobile-li-a{
    color: #3D3D3D;
}
.mobile-top-search{
    display: flex;
    align-items: center;
}
.mobile-top-search img{
    width: 20px;
}
.mobile-top-lan{
    display: flex;
    align-items: center;
}
.mobile-top-lan img{
    width: 20px;
}
.mobile-top-lan span{
    font-size: 14px;
    color: #ffffff;
}

.swiper-box{
    width: 100%;
    height: calc(100vh - 88px);
}
.index-slide{
    width: 100%;
}
.index-box{
    width: 100%;
    height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* banner */
.banner{
    height: calc(100vh - 88px);
    position: relative;
}
.banner-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-tab{
    position: absolute;
    width: 100%;
    height: 120px;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 60, 110, 0.8);
    border: solid 1px #00479d;
    z-index: 11;
}
.banner-tab-box{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.banner-tab-box span{
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 6px 6px 6px #000;
}
.banner-tip{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*top: 50px;*/
    z-index: 11;
    /*left: 7.5%;*/
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #f6821c;
    display: flex;
    flex-direction: column;
    align-items; center;
    justify-content: center;
    line-height: 1;
}
.banner-tip p{
    width: 100%;
    padding: 0 2.5%;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1;
    /*text-shadow: 3px 3px 3px #5d5c5c;*/
    letter-spacing: 6px;
    margin-top: -240px;
}
.banner-tip p:last-child{
    margin: 0;
    font-size: 28px;
    color: #003463;
    text-shadow: none;
    letter-spacing: 0;
}
.banner-tip p span{
    margin: 0 20px;
}
.banner-pagination{
    width: 450px;
    height: 90px;
    background-color: rgba(0, 60, 110, 0.8);
    position: absolute;
    /*bottom: 120px;*/
    bottom: 0;
    left: 90px;
    z-index: 11;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}
.banner-pagination-num{
    display: flex;
    align-items: flex-end;
    line-height: 1;
    font-weight: bold;
}
.banner-pagination-num span{
    font-size: 24px;
    color: rgba(255,255,255,0.3);
    font-weight: bold;
    margin: 0 2px;
}
.banner-pagination-num #current{
    font-size: 40px;
    color: #ffffff;
    font-weight: bold;
}
.banner-pagination-num #total{
    font-size: 24px;
    color: #ffffff;
    opacity: 0.3;
    font-weight: bold;
}
.banner-pagination-num #current1{
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
}
.banner-pagination-num #total1{
    font-size: 12px;
    color: #ffffff;
    opacity: 0.3;
    font-weight: bold;
}
.banner-pagination-jt{
    display: flex;
    align-items: center;
    margin-top: 6px;
}
.banner-pagination-jt img{
    width: 14px;
    cursor: pointer;
}
.banner-pagination-left{
    display: flex;
    align-items: center;
    margin-right: 70px;
}
.banner-pagination-right{
    display: flex;
    align-items: center;
}
.banner-pagination-active img{
    display: none;
}
.banner-pagination-active img:last-child{
    display: inline-block;
}
.banner-pagination-active1 img{
    display: none;
}
.banner-pagination-active1 img:last-child{
    display: inline-block;
}
.banner-slide{
    display: flex;
    align-items: center;
    position: relative;
}

.gsyj{

}
.index-title{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}
.index-more{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.index-more span{
    font-size: 14px;
    color: #333333;
    padding-right: 15px;
    transition: all 0.4s;
}
.index-more-line{
    width: 129px;
    height: 1px;
    background-color: #999999;
    opacity: 0.2;
    margin-top: 15px;
    position: relative;
}
.index-more-line-child{
    width: 0;
    height: 1px;
    background-color: #00335d;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.4s;
}
.index-more:hover span{
    color: #00335d;
}
.index-more:hover .index-more-line-child{
    width: 100%;
}
.gsyj-con{
    display: flex;
    justify-content: space-between;
}
.gsyj-left{
    width: 542px;
    height: 560px;
    background-color: #f7f7f7;
    padding: 70px 60px;
    margin-right: 90px;
}
.gsyj-left-date{
    font-size: 24px;
    line-height: 1;
    color: #999999;
    margin-bottom: 25px;
}
.gsyj-left-tit{
    font-size: 18px;
    line-height: 1;
    color: #333333;
    margin-bottom: 25px;
}
.gsyj-left-desc{
    border-left: 1px solid #ccc;
    font-size: 14px;
    line-height: 1.6;
    color: #999999;
    padding-left: 30px;
    margin-bottom: 35px;
}
.gsyj-left-img{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.gsyj-left-img img{
    width: 100%;
}
.gsyj-left-more{
    width: 146px;
    height: 38px;
    background-color: #00335d;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gsyj-left-more img{
    transition: all 0.4s;
}
.gsyj-left-more:hover img{
    transform: rotate(-90deg);
}
.gsyj-right{
    width: calc(100% - 542px - 90px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.gsyj-li{
    width: 100%;
    height: calc(100%/3);
    border-bottom: 1px solid #cccccc;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px 16px;
    transition: all 0.4s;
}
.gsyj-li-top{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.gsyj-li-bottom{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.gsyj-li-tit{
    width: 65%;
    font-size: 16px;
    color: #333;
    line-height: 1;
    position: relative;
    text-indent: 1em;
    transition: all 0.4s;
    font-weight: bold;
}
.gsyj-li-tit:before{
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #666666;
    position: absolute;
    left: 0;
    top: 6px;
    border-radius: 10px;
}
.gsyj-li-date{
    font-size: 20px;
    line-height: 1;
    color: #999999;
}
.gsyj-li-desc{
    width: 75%;
    text-indent: 1em;
    font-size: 14px;
    line-height: 1.6;
    color: #999999;
}
.gsyj-li-more{
    display: flex;
    align-items: center;
    padding: 4px 0 4px 16px;
    border-left: 1px solid #ccc;
}
.gsyj-li:hover{
    box-shadow: 0px 0px 20px 0px rgba(4, 0, 0, 0.06);
}
.gsyj-li:hover .gsyj-li-tit{
    color: #00335d;
}

.index-box-bg1{
    background: url("../img/bg1.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
}
.ywly{
    margin-top: -200px;
}
.ywly-list{
    display: grid;
    grid-template-rows: repeat(2, 179px);
    grid-template-columns: repeat(3,calc((100% - 54px)/3));
    grid-gap: 27px;
}
.ywly-li{
    background: #ffffff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s;
}
.ywly-li-top{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ywly-li-bottom{
    width: 100%;
    text-align: right;
}
.ywly-li-text-1{
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 2px;
    color: #00335d;
    margin-bottom: 8px;
    transition: all 0.4s;
}
.ywly-li-text-2{
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #b3b3b3;
}
.ywly-li:hover{
    background: #00335d;
}
.ywly-li:hover .ywly-li-left img{
    display: none;
}
.ywly-li:hover .ywly-li-left img:last-child{
    display: inline-block;
}
.ywly-li:hover .ywly-li-text-1{
    color: #ffffff;
}
.ywly-bottom{
    width: 100%;
    height: 90px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #00335d;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ywly-bottom-item{
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ywly-bottom-split{
    width: 1px;
    height: 90px;
    background-color: #ffffff;
    opacity: 0.5;
}
.ywly-bottom-line{
    width: 44px;
    height: 1px;
    background-color: #ffffff;
    opacity: 0.2;
}
.ywly-bottom-text{
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0 20px;
}

/* footer */
.footer{
    width: 100%;
    background: url("../img/bg2.jpg") no-repeat center center;
    background-size: cover;
    padding: 55px 0 20px;
    overflow: hidden;
}
.footer-index{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 88px 0 0;
    margin-top: -88px;
}
.footer-top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}
.footer-1{
    width: 222px;
}
.footer-2{
    width: 204px;
}
.footer-3{
    width: 200px;
}
.footer-4{
    width: 134px;
}
.footer-logo{
    width: 140px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}
.footer-logo img{
    margin-bottom: 20px;
}
.footer-logo-cn{
    font-size: 18px;
    letter-spacing: 2px;
    color: #feffff;
    line-height: 1;
}
.footer-logo-en{
    font-size: 12px;
    color: #feffff;
    margin-top: 8px;
    line-height: 1;
}
.footer-info{
    /*margin-bottom: 65px;*/
}
.footer-info-item{
    margin-bottom: 10px;
}
.footer-info-tit{
    font-size: 14px;
    letter-spacing: 2px;
    color: #ffffff;
    /*margin-bottom: 5px;*/
}
.footer-info-desc{
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    /*opacity: 0.3;*/
}
.footer-line{
    width: 50%;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    margin-bottom: 20px;
}
.footer-2-tit{
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1;
}
.footer-contact-item{
    margin-bottom: 40px;
    line-height: 1;
}
.footer-contact-tit{
    font-size: 14px;
    letter-spacing: 2px;
    color: #fe840e;
    margin-bottom: 10px;
}
.footer-contact-desc{
    font-size: 14px;
    color: #feffff;
}
.footer-contact-desc2{
    font-size: 14px;
    color: #ffffff;
}
.footer-3-tit{
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1;
}
.footer-li{
    border-bottom: 2px dotted rgba(255,255,255,0.2);
    padding-bottom: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    line-height: 1;
}
.footer-li span{
    font-size: 14px;
    letter-spacing: 2px;
    color: #feffff;
    margin-right: 2px;
    transition: all 0.4s;
}
.footer-li img{
    transition: all 0.4s;
}
.footer-li:hover img{
    transform: translateX(10px);
}
.footer-li:hover span{
    color: #fe840e;
}
.footer-4-tit{
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1;
}
.footer-qrcode{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.footer-qrcode span{
    font-size: 14px;
    color: #feffff;
    /*opacity: 0.2;*/
    margin-top: 20px;
}
.footer-bottom{
    display: flex;
    align-items: center;
}
.footer-bq{
    font-size: 14px;
    color: #fff;
    /*opacity: 0.3;*/
    margin-right: 60px;
}
.footer-ba{
    font-size: 14px;
    color: #fff;
    /*opacity: 0.3;*/
}
.footer-ba a{
    font-size: 14px;
    color: #ffffff;
    /*opacity: 0.2;*/
}

/* nav */
.nav{
    width: 100%;
    position: fixed;
    top: 88px;
    left: 0;
    z-index: 90;
}
.nav-box{
    min-height: 300px;
    background: rgba(0, 51, 93, 0.7);
    padding: 36px 0;
    opacity: 0;
    transition: all 0.5s
}
.nav-active{
    opacity: 1;
}
.nav-list{
    display: flex;
    justify-content: space-between;
}
.nav-li a{
    display: block;
    line-height: 1;
    margin-bottom: 30px;
    font-size: 18px;
    color: #ffffff;
    /*opacity: 0.3;*/
    transition: all 0.4s;
}
.nav-li a:hover{
    color: #fe840e;
}

.bg{
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.bg-img{
    width: 100%;
    object-fit: cover;
    min-height: 200px;
}
.bg-box{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.bg-box span{
    font-size: 24px;
    line-height: 1;
    color: #e6e6e6;
    margin-top: 24px;
}
.bread{
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 90px;
    overflow: hidden;
}
.bread-left{
    display: flex;
    align-items: center;
    line-height: 1;
}
.bread-left label{
    font-size: 12px;
    color: #333333;
}
.bread-left span{
    font-size: 12px;
    color: #333333;
    margin: 0 5px;
}
.bread-left a{
    font-size: 12px;
    color: #333333;
}
.bread-left a:hover{
    color: #00335d;
}
.bread-left a:last-child{
    color: #00335d;
}
.bread-right{
    display: flex;
    align-items: center;
}
.bread-right a{
    font-size: 14px;
    line-height: 1;
    color: #333333;
    margin-left: 80px;
}
.bread-right .bread-active{
    color: #00335d;
    font-weight: bold;
}
.bread-right a:hover{
    color: #00335d;
}

.about{
    margin-bottom: 80px;
    overflow: hidden;
}
.about-title{
    margin-bottom: 50px;
}
.about-con{
    line-height: 1.8;
}
.about-con p{
    font-size: 14px;
    color: #333333;
    text-indent: 2em;
    margin-bottom: 20px;
}
.about-con img{
    max-width: 100%;
}

.about-2-con{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 100px;
}
.about-2-left{
    width: 572px;
    margin-right: 70px;
    display: flex;
    align-items: center;
}
.about-2-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-2-right{
    width: calc(100% - 572px - 70px);
    padding: 30px 0 0 0;
    border-bottom: 1px solid #aaa;
    overflow: hidden;
}
.about-2-item{
    margin-bottom: 120px;
}
.about-2-item:last-child{
    margin-bottom: 0;
}
.about-2-tit{
    width: 184px;
    height: 10px;
    background-color: rgba(0, 51, 93, 0.3);
    border-radius: 5px;
    position: relative;
    margin-bottom: 50px;
}
.about-2-tit span{
    position: absolute;
    bottom: 0;
    left: 10px;
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 3px;
    color: #333333;
    z-index: 10;
}
.about-2-line{
    width: 149px;
    height: 10px;
    background-color: #fe840e;
    border-radius: 5px;
    position: absolute;
    bottom: -3px;
    left: 20px;
    z-index: 9;
}
.about-2-desc{
    width: 90%;
    font-size: 14px;
    line-height: 1.8;
    color: #333333;
}
.about-2-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about-2-li{
    width: calc((100% - 200px)/3);
    height: 303px;
    border: solid 1px rgba(25, 25, 25, 0.2);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 50px 20px 30px;
    transition: all 0.4s;
}
.about-2-li-img{
    margin-bottom: 35px;
}
.about-2-li-tit{
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 2px;
    color: #ee801e;
    margin-bottom: 30px;
}
.about-2-li-desc{
    text-align: center;
    line-height: 1.5;
}
.about-2-li-desc p{
    font-size: 18px;
    letter-spacing: 1px;
    color: #003463;
}
.about-2-li:hover{
    border-color: #00335d;
}

.pro-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.pro-li{
    width: calc((100% - 120px)/4);
    margin-right: 40px;
    border: solid 3px rgba(0,0,0,0);
    padding: 12px;
    margin-bottom: 80px;
    transition: all 0.4s;
}
.pro-li:nth-child(4n){
    margin-right: 0;
}
.pro-li-img{
    display: flex;
    align-items: center;
    overflow: hidden;
}
.pro-li-img img{
    width: 100%;
    transition: all 0.4s;
}
.pro-li-info{
    padding-top: 25px;
}
.pro-li-name{
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.pro-li-tag{
    font-size: 16px;
    line-height: 1;
    color: #fe840e;
    margin-bottom: 10px;
}
.pro-li-desc{
    font-size: 12px;
    line-height: 1.6;
    color: #999999;
    height: 60px;
    margin-bottom: 20px;
}
.pro-li-more{
    display: flex;
    align-items: center;
}
.pro-li-more span{
    font-size: 12px;
    line-height: 1;
    color: #333333;
    margin-right: 12px;
}
.pro-li-more img{
    transition: all 0.4s;
}
.pro-li:hover{
    border-color: #00335d;
}
.pro-li:hover .pro-li-img img{
    transform: scale(1.1);
}
.pro-li:hover .pro-li-more img{
    transform: translateX(10px);
}

.per-detail{
    border-left: 1px solid rgba(0,0,0,0.1);
    padding: 16px 0;
    overflow-y: hidden;
}
.per-detail-text{
    display: flex;
    align-items: flex-end;
    padding-left: 30px;
    margin-bottom: 15px;
}
.per-detail-name{
    font-size: 24px;
    line-height: 1;
    color: #333333;
}
.per-detail-tag{
    border-left: 2px solid #fe840e;
    padding-left: 8px;
    font-size: 18px;
    line-height: 1;
    color: #fe840e;
    margin-left: 25px;
}
.per-detail-line{
    width: calc(100% + 50px);
    height: 1px;
    background-color: #000000;
    opacity: 0.1;
    margin-left: -50px;
}
.per-detail-con{
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.per-detail-left{
    width: calc(100% - 352px - 120px);
    margin-right: 120px;
}
.per-detail-item{
    margin-bottom: 30px;
}
.per-detail-item-tit{
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a1a;
    font-weight: bold;
}
.per-detail-item-desc{
    line-height: 1.8;
}
.per-detail-item-desc p{
    font-size: 14px;
    color: #666666;
}
.per-detail-info{
    display: flex;
    align-items: center;
    margin: 80px 0;
}
.per-detail-info div{
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
}
.per-detail-tel{
    margin-right: 30px;
}
.per-detail-right{
    width: 352px;
    display: flex;
    align-items: center;
}
.per-detail-right img{
    width: 100%;
}
.per-detail-item-line{
    width: 304px;
    height: 1px;
    background-color: #000000;
    opacity: 0.1;
    margin: 40px 0;
}

.field-tab{
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: space-between;*/
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 18px;
}
.field-tab-li{
    /*width: calc((100% - 90px)/6);*/
    
    height: 42px;
    background-color: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 14px;
    color: #333333;
    transition: all 0.4s;
    padding: 0 10px;
}
.field-tab-active{
    color: #e6e6e6;
    background: #00335d;
}
.field-tab-li:hover{
    color: #e6e6e6;
    background: #00335d;
}

.field-con{
    background: #f5f5f5;
    padding: 100px 0;
    overflow: hidden;
}
.field-con-tit{
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: #00335d;
    margin-bottom: 16px;
    text-align: center;
}
.field-con-en{
    font-size: 14px;
    line-height: 1;
    color: #cccccc;
    margin-bottom: 40px;
    text-align: center;
}
.field-con-line{
    width: 100%;
    height: 1px;
    background-color: #cccccc;
    margin-bottom: 40px;
}
.field-con-desc p{
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
    text-align: center;
}
.field-con-desc p:last-child{
    margin-bottom: 0;
}

.news{
    margin-bottom: 100px;
    overflow: hidden;
}
.news-li{
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.5s;
    background: #ffffff;
}
.news-li-left{
    width: calc(100% - 202px - 140px);
    display: flex;
    align-items: flex-start;
}
.news-li-date{
    width: 67px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 13px;
}
.news-li-date-text{
    font-size: 24px;
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 40px;
}
.news-li-line{
    width: 35px;
    height: 1px;
    background-color: #cccccc;
    margin-top: 10px;
    margin-right: 30px;
}
.news-li-text{
    width: calc(100% - 67px - 13px - 35px - 30px);
}
.news-li-tit{
    font-size: 16px;
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 25px;
    transition: all 0.5s;
}
.news-li-desc{
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}
.news-li-right{
    width: 202px;
    display: flex;
    align-items: center;
    margin-left: 140px;
}
.news-li-right img{
    width: 100%;
}
.news-li:hover{
    background: rgba(0, 51, 93, 0.1);
}
.news-li:hover .news-li-tit{
    color: #00335d;
}

.news-details-tit{
    font-size: 28px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
    text-align: center;
}
.news-details-date{
    font-size: 14px;
    color: #999999;
    margin-bottom: 20px;
    text-align: center;
}
.news-details-line{
    height: 1px;
    border-bottom: dashed 1px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}
.news-details-con{
    line-height: 30px;
    margin-bottom: 30px;
}
.news-details-con p{
    font-size: 14px;
    color: #999999;
    text-indent: 2em;
}
.news-details-con img{
    max-width: 100%;
}
.news-details-bottom div{
    font-size: 14px;
    line-height: 36px;
    color: #333333;
}
.news-details-bottom div a{
    color: #333333;
}
.news-details-bottom .news-details-prev{
    color: #999;
}
.news-details-bottom .news-details-prev a{
    color: #999;
}
.news-details-bottom div a:hover{
    color: #00335d;
    text-decoration: underline;
}

.my-4{
    text-align:center;
    margin-top:20px;
}

.my-4 .page-item{
    padding: 6px;
}

.my-4 .page-num{
    padding: 3px;
}

.my-5{
    text-align: center;
    margin-top:20px;
}

.my-4 a:hover{
    color:#fe840e;
    
}

.pagination a.page-num-current {
  color: #fe840e;
  
}

.join-desc{
    margin-bottom: 40px;
}
.join-desc-tit{
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    color: #333333;
    margin-bottom: 20px;
}
.join-desc-text{
    font-size: 14px;
    line-height: 2;
    color: #666666;
    margin-bottom: 20px;
}
.join-desc-images{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.join-desc-item{
    width: calc((100% - 120px)/4);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.join-desc-item img{
    width: 100%;
    margin-bottom: 24px;
}
.join-desc-item span{
    font-size: 14px;
    line-height: 1;
    color: #999999;
}
.join-title{
    padding: 0 25px;
    height: 82px;
    background-color: #00335d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 1px 5px 0px rgba(0, 51, 93, 0.35);
}
.join-title .join-td{
    font-size: 18px;
    line-height: 1;
    color: #ffffff;
}
.join-td{
    width: calc((100% - 100px)/6);
    font-size: 16px;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
}
.join-list{
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.35);
}
.join-tr{
    position: relative;
}
.join-tr-top{
    height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    padding: 0 25px;
    background-color: #ffffff;
    transition: all 0.4s;
    cursor: pointer;
}
.join-td img{
    transition: all 0.4s;
}
.join-td-active{
    transform: rotate(90deg);
}
.join-tr-info{
    background-color: #f5f5f5;
    padding: 30px 65px 60px;
    position: relative;
}
.join-tr-info-jt{
    position: absolute;
    top: 62px;
    left: 92px;
}
.join-tr-info-item{
    margin-bottom: 30px;
}
.join-tr-info-item:last-child{
    margin-bottom: 0;
}
.join-tr-info-tit{
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    color: #333333;
    margin-bottom: 10px;
}
.join-tr-info-desc p{
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
}
.join-tr-info-desc p a{
    font-size: 14px;
    color: #fe840e;
}
.join-tr-top:hover{
    background: rgba(0, 51, 93, 0.1);
}

.contact-info{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    overflow: hidden;
}
.contact-left{
    width: 237px;
}
.contact-tit{
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 5px;
    color: #fe840e;
    margin-bottom: 30px;
}
.contact-text{
    font-size: 14px;
    line-height: 2;
    color: #333333;
    margin-bottom: 20px;
}
.contact-line{
    width: 1px;
    border-left: dotted 1px rgba(0,0,0,0.3);
}
.contact-map{
    display: flex;
    align-items: center;
}
.contact-map img{
    width: 100%;
}

.search{
    margin-bottom: 60px;
}
.search-ipt{
    width: 100%;
    height: 52px;
    background-color: #eeeeee;
    padding: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.search-ipt input{
    flex: 1;
    height: 100%;
    background: #ffffff;
    border: 0;
    padding: 0 20px;
    font-size: 16px;
    color: #333;
    font-family: '微软雅黑', serif;
}
.search-ipt a{
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.search-text{
    font-size: 14px;
    color: #333333;
    text-align: center;
}
.search-li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 2;
    font-size: 16px;
    margin-bottom: 25px;
    color: #666666;
}
.search-li:hover{
    color: #00335d;
}
.search-li-tit{
    width: 70%;
}