*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '微软雅黑',serif;
}
html, body{
    scroll-behavior:smooth;
    color: #333333;
}
a{
    color: #333;
    text-decoration: none;
}
input, button, textarea {
    outline: none;
}
strong{
    font-weight: bold;
}

/* 公共类名 */
.none{
    display: none;
}
.auto{
    width: 1480px;
    max-width: 95%;
    margin: 0 auto;
}
.ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-more{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.title{
    width: 100%;
    overflow: hidden;
}
.title-top{
    display: flex;
    align-items: center;
    justify-content: center;
}
.title-line{
    width: 200px;
    height: 3px;
    background-color: #006591;
}
.title-text{
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    color: #075d8d;
    margin: 0 40px;
}
.title-bottom{
    font-size: 20px;
    line-height: 1;
    color: #075d8d;
    text-align: center;
    margin-top: 9px;
}
.scrollbar::-webkit-scrollbar{
    width: 5px;
}
.scrollbar::-webkit-scrollbar-track{
    border-radius: 3px;
    background: rgba(0,0,0,0.1);
}
.scrollbar::-webkit-scrollbar-thumb{
    border-radius: 3px;
    background: #c9c9c9;
}

/* header */
.header-1-box{
    position: fixed;
    width: 100%;
    height: 88px;
    top: 0;
    left: 0;
    z-index: 99;
}
.header-1-container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.7);
}
.header-1-left{
    padding-left: 50px;
}
.header-1-logo{
    display: flex;
    align-items: center;
}
.header-1-logo img{
    width: 344px;
}
.header-1-center{
    height: 100%;
    padding: 0 40px;
}
.header-1-list{
    height: 100%;
    display: flex;
    align-items: center;
}
.header-1-li{
    height: 100%;
    margin-right: 40px;
    position: relative;
}
.header-1-li-text{
    height: 100%;
    display: flex;
    align-items: center;
}
.header-1-li-text span{
    padding-right: 40px;
    border-right: 2px solid rgba(0,0,0,0.1);
    font-size: 18px;
    line-height: 1;
    color: #333333;
    transition: all 0.5s;
}
.header-1-li:last-child{
    margin-right: 0;
}
.header-1-li:last-child .header-1-li-text span{
    padding-right: 0;
    border: 0;
}
.header-1-li-active .header-1-li-text span{
    font-weight: bold;
    color: #006591;
}
.header-1-li-active:after{
    content: '';
    display: block;
    width: 74px;
    height: 4px;
    background-color: #006591;
    position: absolute;
    bottom: 1px;
    left: 0;
}
.header-1-li-box{
    position: absolute;
    width: 190px;
    background-color: #ffffff;
    opacity: 0.9;
    top: 100%;
    left: -50%;
}
.header-1-li-container{
    display: flex;
    flex-direction: column;
}
.header-1-li-container a{
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    font-size: 18px;
    color: #333333;
}
.header-1-li-container a:hover{
    background: #dbdbdb;
    font-weight: bold;
}
.header-1-li:hover .header-1-li-text span{
    color: #006591;
    font-weight: bold;
}
.header-1-li:hover .header-1-li-box{
    display: block;
}
.header-1-right{
    height: 100%;
    display: flex;
}
.header-1-right-item{
    width: 92px;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.header-1-right-item img{
    transition: all 0.4s;
}
.header-1-right-item:first-child{
    border-left: 2px solid rgba(0,0,0,0.1);
    background: none;
}
.header-1-right-item:last-child{
    border-left: 2px solid rgba(0,101,145,0.5);
}
.header-1-right-tip{
    position: absolute;
    padding: 0 30px;
    height: 100%;
    right: -300px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #006591;
    border-radius: 100px 0 0 100px;
}
.header-1-right-tip img{
    margin-right: 20px;
}
.header-1-right-tip span{
    font-size: 24px;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    line-height: 1;
}
.header-2 .header-1-right-tip{
    background: rgba(0,101,145,0.15);
    opacity: 1;
}
.header-2 .header-1-right-tip span{
    color: #006591;
    border-color: #006591;
}
.header-2 .header-1-right-item:first-child:hover img{
    opacity: 0;
}
.header-2 .header-1-right-item:first-child:hover{
    border-left-color: rgba(0,0,0,0);
}
.header-1-right-item:first-child:hover .header-1-right-tip{
    right: 0;
    opacity: 1;
}
.header-1-right-item:first-child:hover .header-1-right-tip img{
    transform: rotate(0);
    opacity: 1;
}
.header-1-right-item:hover img{
    transform: rotate(20deg);
}
.header-1-menu{
    height: 100%;
}
.header-1-menu-img{
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}
.header-1-menu-img img{
    width: 32px;
}
.header-2-menu{
    height: 100%;
}
.header-2-menu-img{
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #006591;
}
.header-2-menu-img img{
    width: 32px;
}

.hz-box{
    position: relative;
    display: flex;
    align-items: center;
}
.hz-bg{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.hz-container{
    position: absolute;
    width: 100%;
    height: calc(100% - 88px);
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hz-con{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 80px 100px;
}
.hz-con-right{
    width: 370px;
    height: 100%;
    overflow-y: auto;
}
.hz-con-right::-webkit-scrollbar{
    width: 0;
}
.hz-con-left{
    width: calc(100% - 50px - 370px);
    position: relative;
}
.hz-con-left-img{
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
}
.hz-con-left-con{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 160px 40px 140px;
}
.hz-con-left-tit{
    /*width: 760px;*/
    width: 100%;
    max-width: 100%;
    font-size: 80px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 3px;
    color: #fff;
    text-align: center;
    margin-bottom: 200px;
}
.hz-con-left-desc p{
    font-size: 30px;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 3px;
}
.hz-con-left-desc p:last-child{
    margin-bottom: 0;
}
.hz-con-right-li{
    width: 100%;
    height: 195px;
    padding: 30px 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    position: relative;
}
.hz-con-right-tit{
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
}
.hz-con-right-desc p{
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    margin-bottom: 6px;
}
.hz-con-right-desc p:last-child{
    margin-bottom: 0;
}
.hz-con-right-li:last-child{
    margin-bottom: 0;
}
.hz-con-right-li:nth-child(4n - 3){
    background: url("../img/jx1.png") no-repeat center center;
    background-size: 100% 100%;
}
.hz-con-right-li:nth-child(4n - 2){
    background: url("../img/jx2.png") no-repeat center center;
    background-size: 100% 100%;
}
.hz-con-right-li:nth-child(4n - 1){
    background: url("../img/jx3.png") no-repeat center center;
    background-size: 100% 100%;
}
.hz-con-right-li:nth-child(4n){
    background: url("../img/jx4.png") no-repeat center center;
    background-size: 100% 100%;
}
.hz-play{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: all 0.4s;
}
.hz-play-box{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hz-play-box img{
    width: 48px;
    transform: scale(0.5);
    transition: all 0.4s;
}
.hz-con-left .hz-play-box img{
    width: 128px;
}
.hz-con-left:hover .hz-play{
    opacity: 1;
}
.hz-con-left:hover .hz-play-box img{
    transform: scale(1);
}
.hz-con-right-li:hover .hz-play{
    opacity: 1;
}
.hz-con-right-li:hover .hz-play-box img{
    transform: scale(1);
}

.news-box{
    width: 100%;
    height: 100%;
    padding: 80px 100px;
}
.news-tab{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    /*overflow: hidden;*/
}
.news-tab-item{
    width: 228px;
    height: 58px;
    background-color: #ffffff;
    max-width: calc((100% - 60px)/4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 2px;
    color: #333;
    transition: all 0.5s;
    margin-right: 50px;
}
.news-tab-item:last-child{
    margin-right: 0;
}
.news-tab-active{
    background: #00a0e9;
    color: #ffffff;
}
.news-tab-item:hover{
    background: #00a0e9;
    color: #ffffff;
}
.news-container{
    width: 100%;
    background: rgba(0,160,233,0.4);
    height: calc(100% - 30px - 58px);
}
.news-container-box{
    width: 1260px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    padding-top: 40px;
}
.news-page{
    position: absolute;
    width: 100%;
    bottom: 30px;
    left: 0;
}
.news-page ul{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.news-page li{
    height: 30px;
    padding: 0 12px;
    border: solid 1px #ffffff;
    font-size: 12px;
    line-height: 1;
    margin: 0 2px 4px;
    transition: all 0.5s;
    display: flex;
    align-items: center;
}
.news-page li a{
    color: #ffffff;
}
.news-page li:hover{
    color: #333333;
    background: #fff;
}
.news-page li:hover a{
    color: #333333;
}
.news-page .active{
    color: #333333;
    background: #fff;
}
.news-list{
    width: 100%;
    height: calc(100% - 90px);
    overflow-y: auto;
    padding-right: 20px;
}
.news-li{
    display: flex;
    align-items: stretch;
    margin-bottom: 30px;
    padding: 10px;
    transition: all 0.5s;
}
.news-li:last-child{
    margin-bottom: 0;
}
.news-li-img{
    width: 272px;
    height: 153px;
    display: flex;
    align-items: center;
    margin-right: 25px;
    overflow: hidden;
}
.news-li-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.news-li-con{
    width: calc(100% - 272px - 25px);
    border-bottom: 1px solid rgba(51,51,51,0.3);
}
.news-li-date{
    font-size: 20px;
    line-height: 1;
    color: #cccccc;
    opacity: 0.3;
    margin-bottom: 15px;
    transition: all 0.5s;
}
.news-li-tit{
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    margin-bottom: 15px;
    transition: all 0.5s;
}
.news-li-line{
    width: 93px;
    height: 2px;
    background-color: #ffffff;
    margin-bottom: 15px;
    position: relative;
}
.news-li-desc{
    font-size: 16px;
    line-height: 1.5;
    color: #ccc;
    transition: all 0.5s;
}
.news-li:hover{
    background: rgba(255,255,255,0.8);
}
.news-li:hover .news-li-img img{
    transform: scale(1.15);
}
.news-li:hover .news-li-date{
    color: #666;
}
.news-li:hover .news-li-tit{
    color: #006591;
}
.news-li:hover .news-li-line{
    background-color: #006591;
}
.news-li:hover .news-li-desc{
    color: #666;
}
.news-li:hover .news-li-con{
    border-color: rgba(255,255,255,0);
}

.details-box{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 50px 100px 70px;
}
.details-tit{
    width: 1260px;
    margin: 0 auto 20px;
    max-width: 100%;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 4px;
    color: #ffffff;
}
.details-time{
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
}
.details-con{
    flex: 1;
    background: rgba(0,160,233,0.4);
    padding: 40px 0 30px;
    overflow-y: auto;
}
.details-con-box{
    width: 1260px;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 20px;
}
.details-con-box p{
    font-size: 20px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 10px;
}
.details-con-box img{
    max-width: 100%;
}
.details-con-box video{
    max-width: 100%;
}

.about-box{
    padding: 60px 100px 80px;
    width: 100%;
    height: 100%;
}
.about-top{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 58px;
}
.about-top-line{
    width: 160px;
    height: 3px;
    background: #ffffff;
}
.about-top-text{
    position: relative;
    margin: 0 30px;
}
.about-top-text span:first-child{
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 6px;
    color: #fff;
}
.about-top-text span:last-child{
    width: 100%;
    text-align: center;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
}
.about-con{
    width: 100%;
    height: calc(100% - 58px - 28px);
    background: rgba(0,160,233,0.4);
    padding: 60px 20px 50px 80px;
    overflow: hidden;
}
.about-con-box{
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.about-con-left{
    width: 526px;
    height: 100%;
    flex-direction: column;
    align-items: center;
    margin-right: 40px;
    overflow: hidden;
}
.about-con-left img{
    width: 100%;
    margin-bottom: 5px;
}
.about-con-right{
    height: 100%;
    width: calc(100% - 526px - 40px);
    padding-right: 50px;
    overflow-y: auto;
}
.about-con-right p{
    text-indent: 2em;
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    text-align: justify;
}

.header-2 .header-1-logo img{
    width: 234px;
}
.header-2 .header-1-container{
    background: rgba(255,255,255,0.9);
}
.header-2 .header-1-right-item{
    background: #006591;
}
.header-2 .header-1-right-item:first-child{
    background: none;
}
.header-2 .header-1-right-item:last-child{
    border-color: #ffffff;
}
.header-2-center{
    height: 100%;
}
.header-2-list{
    height: 100%;
    display: flex;
    align-items: center;
}
.header-2-li{
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 40px;
    position: relative;
}
.header-2-li span{
    font-size: 16px;
    line-height: 1;
    color: #333;
    border-right: 2px solid rgba(0,0,0,0.1);
    padding-right: 40px;
    transition: all 0.5s;
}
.header-2-li:last-child{
    margin-right: 0;
}
.header-2-li:last-child span{
    padding-right: 0;
    border: 0;
}
.header-2-active span{
    font-weight: bold;
    color: #006591;
}
.header-2-active:after{
    content: '';
    display: block;
    width: 66px;
    height: 4px;
    background-color: #006591;
    position: absolute;
    bottom: 16px;
    left: 0;
}
.header-2-li:hover span{
    color: #006591;
}
.header-2-nav{
    width: 100%;
    position: fixed;
    top: 88px;
    left: 0;
    background: rgba(255,255,255,0.9);
    padding: 10px 0;
}
.header-2-nav-con{
    display: flex;
    justify-content: space-between;
}
.header-2-nav-left{
    width: 284px;
}
.header-2-nav-right{
    width: 276px;
}
.header-2-nav-box{
    width: 940px;
    display: flex;
}
.header-2-nav-list{
    width: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 82px;
}
.header-2-nav-list a{
    font-size: 16px;
    color: #333333;
    line-height: 1;
    margin-bottom: 30px;
    transition: all 0.5s;
}
.header-2-nav-list .header-2-nav-active{
    font-weight: bold;
}
.header-2-nav-list a:hover{
    color: #006591;
}
.header-2-center:hover .header-2-nav{
    display: block;
}

.banner{
    display: flex;
    align-items: center;
}
.banner img{
    width: 100%;
    min-height: 250px;
    object-fit: cover;
}

.hz-a{
    margin: 100px auto;
}
.hz-a-tit{
    font-size: 32px;
    line-height: 1;
    color: #006591;
    margin-bottom: 40px;
    text-align: center;
}
.hz-a-name{
    font-size: 55px;
    font-weight: bold;
    line-height: 1.2;
    color: #006591;
    text-align: center;
    margin-bottom: 120px;
    letter-spacing: 8px;
}
.hz-a-con{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}
.hz-a-line{
    width: 3px;
    height: 72px;
    background-color: #006591;
    align-self: flex-end;
    margin: 0 190px;
}
.hz-a-item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hz-a-item-tit{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.hz-a-item-tit span{
    font-size: 26px;
    line-height: 1;
    color: #006591;
    margin-left: 10px;
}
.hz-a-item-text{
    font-size: 30px;
    line-height: 1;
    color: #000000;
    letter-spacing: 3px;
    text-align: center;
}

.hz-b{
    width: 100%;
    padding: 100px 0;
    background: url("../img/bg4.jpg") no-repeat center center;
    background-size: cover;
}
.hz-b-tit{
    margin-bottom: 30px;
}
.hz-b-con{
    width: 100%;
    background-color: #ffffff;
    border: solid 1px #006591;
    padding: 25px 45px;
}
.hz-b-con p{
    text-align: justify;
    font-size: 18px;
    line-height: 2;
    color: #333;
    text-indent: 2em;
}

.hz-c{
    width: 1280px;
    margin: 110px auto;
}
.hz-c-tit{
    margin-bottom: 38px;
}
.hz-c-list{
    display: flex;
    flex-wrap: wrap;
}
.hz-c-li{
    width: calc((100% - 90px)/3);
    height: 595px;
    margin-right: 45px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hz-c-li:nth-child(3n){
    margin-right: 0;
}
.hz-c-li-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hz-c-li-tit{
    position: absolute;
    width: 100%;
    bottom: 30px;
    left: 0;
    padding: 0 20px;
}
.hz-c-li-tit-box{
    height: 118px;
    background-color: #f7f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
}
.hz-c-li-tit-text{
    width: 100%;
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
    color: #333;
    text-align: center;
}
.hz-c-li-tit-line{
    width: 142px;
    height: 4px;
    background-color: #006591;
    margin-top: 20px;
}
.hz-c-li-con{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #006591;
    padding: 70px 60px 80px;
    transition: all 0.4s;
    opacity: 0;
}
.hz-c-li-con-box{
    width: 100%;
    height: 100%;
}
.hz-c-li-con-img{
    position: absolute;
    bottom: 58px;
    right: 60px;
}
.hz-c-li-con-tit{
    font-size: 28px;
    font-weight: bold;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 25px;
}
.hz-c-li-con-line{
    width: 142px;
    height: 4px;
    background-color: #ffffff;
    margin-bottom: 40px;
}
.hz-c-li-con-desc p{
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
}
.hz-c-li:hover .hz-c-li-con{
    top: 0;
    opacity: 1;
}

.hz-d{
    margin: 100px auto 120px;
}
.hz-d-tit{
    margin-bottom: 38px;
}
.hz-d-list{
    display: flex;
    flex-wrap: wrap;
}
.hz-d-li{
    width: calc((100% - 90px)/3);
    height: 317px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 45px;
    margin-right: 45px;
    cursor: pointer;
}
.hz-d-li:nth-child(3n){
    margin-right: 0;
}
.hz-d-li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}
.hz-d-li:hover img{
    transform: scale(1.2);
}

.hz-e{
    margin: 100px auto;
}
.hz-e-tit{
    margin-bottom: 35px;
}
.hz-e-con p{
    font-size: 20px;
    line-height: 2;
    color: #1a1a1a;
    text-indent: 2em;
    text-align: justify;
    margin-bottom: 15px;
}
.hz-e-con p img{
    max-width: 100%;
}
.hz-e-con p:last-child{
    margin-bottom: 0;
}

.hz-f{
    margin: 100px auto;
}
.hz-f-tit{
    margin-bottom: 50px;
}
.hz-f-list{
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #ccc;
}
.hz-f-li{
    width: 50%;
    height: 200px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #ccc;
    border-right: 2px solid #ccc;
}
.hz-f-li:nth-child(1){
    border-top: 2px solid #ccc;
}
.hz-f-li:nth-child(2){
    border-top: 2px solid #ccc;
}
.hz-f-li:last-child{
    border-bottom: 0;
}
.hz-f-li:nth-child(2n){
    border-right: 0;
}
.hz-f-li-left{
    width: 230px;
    margin-right: 170px;
}
.hz-f-li:nth-child(odd){
    justify-content: flex-end;
    padding-right: 120px;
}
.hz-f-li:nth-child(even){
    padding-left: 120px;
}
.hz-f-li-tit{
    font-size: 26px;
    line-height: 1;
    letter-spacing: 8px;
    color: #333333;
    margin-bottom: 20px;
}
.hz-f-li-desc{
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    text-align: justify;
}
.hz-f-li-right{
    display: flex;
    align-items: center;
}
.hz-f-li-right img{
    width: 70px;
}

.hz-g{
    margin: 100px 0;
    padding: 0 2.5%;
}
.hz-g-tit{
    margin-bottom: 40px;
}
.hz-g-con{
    display: flex;
    align-items: center;
    justify-content: center;
}
.hz-g-con img{
    max-width: 100%;
}

.hz-h{
    margin: 100px auto;
}
.hz-h-tit{
    margin-bottom: 40px;
}
.hz-h-con{
    width: 100%;
    height: 840px;
    background: url("../img/bg5.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hz-h-form{
    width: 800px;
    min-height: 510px;
    background-color: rgba(219, 228, 236, 0.8);
    border: dashed 1px #707070;
    padding: 50px 35px;
}
.hz-h-ipt{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.hz-h-ipt-item{
    width: calc((100% - 40px)/2);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hz-h-ipt-item label{
    font-size: 18px;
    line-height: 1;
    color: #333333;
    margin-left: 14px;
    margin-bottom: 15px;
}
.hz-h-ipt-item input{
    width: 100%;
    height: 45px;
    background-color: #ffffff;
    border: solid 1px #a0a0a0;
    padding: 0 16px;
    font-size: 18px;
    color: #333;
}
.hz-h-ipt-item input::-webkit-input-placeholder{
    color: #ccc;
}
.hz-h-textarea{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
}
.hz-h-textarea label{
    font-size: 18px;
    line-height: 1;
    color: #333333;
    margin-left: 14px;
    margin-bottom: 15px;
}
.hz-h-textarea textarea{
    width: 100%;
    height: 144px;
    resize: none;
    font-size: 18px;
    color: #333;
    padding: 14px 16px;
    background-color: #ffffff;
    border: solid 1px #a0a0a0;
}
.hz-h-textarea textarea::-webkit-input-placeholder{
    color: #ccc;
}
.hz-h-btn button{
    width: 100%;
    height: 58px;
    background-color: #075d8d;
    border-radius: 25px;
    font-size: 22px;
    color: #ffffff;
    letter-spacing: 20px;
    border: 0;
    cursor: pointer;
    transition: all 0.5s;
    opacity: 1;
}
.hz-h-btn button:hover{
    opacity: 0.8;
}
.hz-h-zc{
    display: flex;
    align-items: center;
    margin-top: 20px;
    min-height: 0;
    padding: 0;
    border: 0;
    background: none;
}
.hz-h-zc input{
    width: 16px;
    height: 16px;
    margin-right: 5px;
}
.hz-h-zc a{
    line-height: 1;
    color: #075d8d;
}
.hz-h-zc a:hover{
    text-decoration: underline;
}
.hz-zc{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1002;
}
.hz-model{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1003;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hz-model-box{
    width: 900px;
    max-width: 90%;
    height: 70vh;
    background: #f5f5f5;
    border-radius: 10px;
    transform: scale(0.5);
    transition: all 0.4s;
    opacity: 0;
    position: relative;
}
.hz-model-show{
    transform: scale(1);
    opacity: 1;
}
.hz-model-tit{
    text-align: center;
    font-size: 24px;
    border-bottom: 1px solid #ccc;
    line-height: 1;
    padding: 30px 0;
}
.hz-model-con{
    line-height: 1.8;
    padding: 30px 30px 20px;
    overflow: hidden;
    height: calc(100% - 90px - 24px);
    overflow-y: auto;
}
.hz-mask{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
}
.hz-model-close{
    display: flex
    align-items: center;
    position: absolute;
    top: 25px;
    right: 20px;
    cursor: pointer;
    transition: all 0.4s;
}
.hz-model-close img{
    width: 28px;
}
.hz-model-close:hover{
    transform: rotate(-90deg);
}

.hz-i{
    margin: 100px auto;
    overflow: hidden;
}
.hz-z{
    width: 1140px;
    max-width: 95%;
}
.hz-i-tit{
    margin-bottom: 40px;
}
.hz-i-con-img{
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}
.hz-i-con-img img{
    width: 100%;
}
.hz-i-con-tit{
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    color: #333333;
    margin-bottom: 20px;
}
.hz-i-con-line{
    width: 50px;
    height: 5px;
    background-color: #006591;
    margin-bottom: 40px;
}
.hz-i-con-desc{
    width: 900px;
    max-width: 100%;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333333;
}

.hz-j{
    margin: 100px auto;
}
.hz-j-tit{
    margin-bottom: 35px;
}
.hz-j-con{
    padding: 140px 180px;
    background-color: #f5f5f5;
    border: solid 1px rgba(7, 93, 141, 0.3);
    display: flex;
    justify-content: space-between;
}
.hz-j-box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.hz-j-item{
    width: 450px;
    margin-bottom: 100px;
}
.hz-j-item-tit{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.hz-j-item-num{
    width: 72px;
    height: 72px;
    background-color: #075d8d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    color: #ffffff;
    margin-right: 45px;
}
.hz-j-item-line{
    flex: 1;
    height: 0;
    border-bottom: dashed 2px #075d8d;
}
.hz-j-item-list{
    padding: 0 18px;
}
.hz-j-item-li{
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    line-height: 1.5;
}
.hz-j-item-li-num{
    width: 55px;
    font-size: 18px;
    color: #333333;
    margin-right: 60px;
}
.hz-j-item-li-text{
    flex: 1;
    font-size: 18px;
    color: #333333;
}
.hz-j-item:last-child{
    margin-bottom: 0;
}

.hz-k{
    margin: 100px auto;
    overflow: hidden;
}
.hz-k-tit{
    margin-bottom: 55px;
}
.hz-k-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.hz-k-nav-tab{
    width: 150px;
    height: 58px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 2px;
    color: #000000;
    transition: all 0.5s;
    margin: 0 8px;
}
.hz-k-nav-active{
    background-color: #006591;
    color: #fcfcfc;
}
.hz-k-nav-tab:hover{
    background-color: #006591;
    color: #fcfcfc;
}
.hz-k-li{
    display: flex;
    align-items: stretch;
    margin-bottom: 60px;
}
.hz-k-li:last-child{
    margin-bottom: 0;
}
.hz-k-li-img{
    width: 738px;
    display: flex;
    align-items: center;
}
.hz-k-li-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hz-k-li-con{
    width: calc(100% - 738px);
    background-color: #f5f5f5;
    padding: 22px 54px;
    display: flex;
}
.hz-k-li-line{
    width: 9px;
    height: 100%;
    background-color: #006591;
    border-radius: 5px;
    margin-right: 35px;
}
.hz-k-li-box{
    flex: 1;
    padding: 10px 0;
}
.hz-k-li-tit{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.hz-k-li-tit span{
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    color: #006591;
    border-bottom: 2px solid #006591;
    padding-bottom: 4px;
}
.hz-k-li-desc p{
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}

.hz-h-ipt-item-2{
    width: 100%;
    margin-bottom: 130px;
}

.hz-l{
    width: 1255px;
    max-width: 95%;
    margin: 100px auto;
}
.hz-l-tit{
    margin-bottom: 120px;
}
.hz-l-list{
    margin-bottom: 40px;
}
.hz-l-li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: dashed 1px rgba(160,160,160,0.5);
    margin-bottom: 24px;
    padding-bottom: 24px;
}
.hz-l-li-tit{
    width: 80%;
    font-size: 18px;
    line-height: 1;
    color: #666666;
    transition: all 0.4s;
}
.hz-l-li-download{
    font-size: 18px;
    line-height: 1;
    color: #666666;
    transition: all 0.4s;
}
.hz-l-li:hover .hz-l-li-tit{
    color: #075d8d;
}
.hz-l-li:hover .hz-l-li-download{
    color: #075d8d;
}
.hz-page{

}
.hz-page ul{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hz-page li{
    height: 30px;
    border: solid 1px #7d7d7d;
    font-size: 12px;
    line-height: 1;
    color: #666;
    margin: 0 2px;
    transition: all 0.5s;
}
.hz-page li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 12px;
}
.hz-page li span{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 12px;
}
.hz-page li:hover{
    color: #fff;
    background: #075d8d;
}
.hz-page li:hover a{
    color: #fff;
}
.hz-page .active{
    color: #fff;
    background: #075d8d;
}

.hz-m{
    width: 776px;
    max-width: 95%;
    margin: 100px auto;
    padding: 0 50px;
}
.hz-m-tit{
    margin-bottom: 40px;
}
.hz-m-li{
    margin-bottom: 80px;
    border-left: 4px solid #006591;
    padding-left: 30px;
}
.hz-m-li-tit{
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 15px;
}
.hz-m-li-desc p{
    font-size: 22px;
    line-height: 1.5;
}
.hz-m-li-phone{
    font-size: 20px;
    margin-top: 20px;
}
.hz-m-li-en{
    font-size: 24px;
}

/* footer */
.footer-top{
    width: 100%;
    padding: 80px 0 50px;
    background: url("../img/bg1.jpg") no-repeat center center;
    background-size: cover;
}
.footer-bottom{
    height: 50px;
    background-color: #000d13;
}
.footer-bottom-box{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-beian{
    font-size: 12px;
    color: #ffffff;
}
.footer-beian a{
    font-size: 12px;
    color: #ffffff;
}
.footer-beian a:hover{
    text-decoration: underline;
}
.footer-link span, .footer-link a{
    font-size: 12px;
    color: #ffffff;
}
.footer-link{
    display: flex;
    align-items: center;
}
.footer-link a{
    margin-right: 5px;
}
.footer-link a:last-child{
    margin-right: 0;
}
.footer-link a:hover{
    text-decoration: underline;
}
.footer-top-1{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.footer-top-1-left{
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.footer-top-list{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-top-1-line{
    width: 1px;
    height: 100px;
    background: #fff;
    opacity: 0.2;
    margin: 48px 50px 0;
}
.footer-top-list a{
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 15px;
}
.footer-top-list a:first-child{
    font-size: 18px;
    margin-bottom: 30px;
}
.footer-top-list a:hover{
    text-decoration: underline;
}
.footer-top-1-right{
    margin-top: 90px;
    display: flex;
    align-items: center;
}
.footer-top-2{
    display: flex;
    justify-content: space-between;
}
.footer-top-2-tit{
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 30px;
}
.footer-top-2-line{
    width: 140px;
    height: 4px;
    background-color: #ffffff;
    margin-bottom: 30px;
}
.footer-top-2-text{
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 20px;
}
.footer-top-2-text:last-child{
    margin-bottom: 0;
}
.footer-top-2-right{
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}
.footer-top-2-right img{
    max-width: 100%;
}
.footer-top-2-right span{
    font-size: 14px;
    line-height: 1;
    color: #ffffff;
    margin-top: 10px;
}
.footer-top-2-info-list{
    display: flex;
    flex-wrap: wrap;
}
.footer-top-2-info-li{
    margin-right: 30px;
}
.footer-top-2-info-li:last-child{
    margin-right: 0;
}

/* 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;
    margin-right: 10px;
}
.mobile-top-lan span{
    font-size: 14px;
    color: #ffffff;
}

.zcmt-box{
    height: 100%;
    padding: 60px 20px 50px 60px;
    overflow: hidden;
}
.zcmt-list{
    height: 100%;
    padding-right: 40px;
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
    align-content: flex-start;
}
.zcmt-li{
    width: calc((100% - 130px)/6);
    height: 108px;
    margin-right: 26px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}
.zcmt-li:nth-child(6n){
    margin-right: 0;
}
.zcmt-li img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s;
}
.zcmt-li:hover img{
    transform: scale(1.1);
}

.search-a{
    width: 1250px;
    max-width: 95%;
    margin: 90px auto;
}
.search-a-tit{
    margin-bottom: 50px;
}
.search-a-top{
    background: #edeff2;
    padding: 35px;
    margin-bottom: 50px;
}
.search-a-top-ipt{
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.search-a-top-ipt form{
    display: flex;
    align-content: center;
}
.search-a-top-ipt input{
    width: 300px;
    height: 42px;
    background-color: #ffffff;
    border: solid 1px #c9c9c9;
    margin-right: 10px;
    font-size: 16px;
    color: #333333;
    padding: 0 10px;
}
.search-a-top-ipt button{
    width: 70px;
    height: 42px;
    background-color: #ffffff;
    border: solid 1px #c9c9c9;
    font-size: 16px;
    color: #333333;
    transition: all 0.5s;
    cursor: pointer;
}
.search-a-top-ipt button:hover{
    background: #1d8cc4;
    color: #ffffff;
    border-color: #1d8cc4;
}
.search-a-con{
    margin-bottom: 80px;
}
.search-a-li{
    display: block;
    width: 100%;
    margin-bottom: 40px;
}
.search-a-li-tit{
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    transition: all 0.4s;
}
.search-a-li-tit span{
    font-size: 18px;
    font-weight: bold;
    margin-left: 40px;
    transition: all 0.4s;
    flex: 1;
}
.search-a-li-desc{
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    text-indent: 2em;
}
.search-a-li:hover .search-a-li-tit{
    color: #075d8d;
}
.search-a-li:hover .search-a-li-tit span{
    color: #075d8d;
}
.search-b-top{
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 40px;
}
.search-b-tit{
    font-size: 42px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 4px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 25px;
}
.search-b-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search-b-info-date{
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    color: #333333;
}
.search-b-return{
    display: flex;
    align-items: center;
}
.search-b-return span{
    font-size: 18px;
    line-height: 1;
    color: #174c95;
    margin-left: 5px;
}
.search-b-return:hover{
    text-decoration: underline;
}
.search-b-info-left{
    width: 95px;
}
.search-b-con{
    border-bottom: 1px dashed rgba(0,0,0,0.5);
    padding-bottom: 60px;
    margin-bottom: 30px;
}
.search-b-con p{
    font-size: 16px;
    line-height: 2;
    color: #333333;
    text-indent: 2em;
    text-align: justify;
}
.search-b-bottom-item{
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    margin-bottom: 5px;
}
.search-b-bottom-item span{
    font-size: 16px;
    color: #333333;
}
.search-b-bottom-item a{
    flex: 1;
    font-size: 16px;
    color: #333333;
}
.search-b-bottom-item:hover a{
    text-decoration: underline;
    color: #174c95;
}
.search-b-bottom-none span{
    color: #999999;
}
.search-b-bottom-none a{
    color: #999999;
}
.search-b-bottom-none:hover a{
    text-decoration: none;
    color: #999999;
}

.hz-d-select{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 40px;
}
.hz-d-select select{
    width: 150px;
    height: 40px;
    font-size: 18px;
    background: none;
    background-color: #ffffff;
    border-color: #006591;
    /*padding: 0 10px;*/
    border-radius: 6px;
    color: #006591;
    text-align: center;
}
.hz-d-select option{
    font-size: 16px;
}