html,body{
    font-size: 16px;
    font-family:  "Microsoft YaHei UI";
    color: #333;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
html{
    overflow-x: hidden;
}
*{
    box-sizing: border-box;
}
div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,img{
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
    font-weight: normal;
}
a{
    text-decoration:none;
    color: #333;
}
img{
    display: block;
}
.clear_both:after{
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
}

.width1230{
    width: 1230px;
    margin: 0 auto;
}
.logo_box{
    height: 130px;
    display: flex;
    align-items: center;
}

.line_box{
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
}

ul.nav_box{
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    text-align: center;
}
ul.nav_box li{
    position: relative;
}
ul.nav_box li>a{
    display: block;
    line-height: 60px;
}
ul.nav_box li a:hover{
    color: #2b74cc;
}
ul.nav_box li a.active{
    color: #2b74cc;
}
ul.nav_box li dl{
    position: absolute;
    left: 50%;
    top: 60px;
    z-index: 99;
    margin-left: -65px;
    width: 130px;
    background-color: #fff;
    line-height: 36px;
    padding: 10px 0;
    box-shadow: 0 0 13px rgba(48, 47, 47, .3);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 16px;
}
ul.nav_box li dl a{
    display: block;
}
ul.nav_box li:hover dl{
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/*焦点图*/
.focus_row {
    width: 100%;
    height: 740px;
    overflow: hidden;
    position: relative;
}
.focus_row .hd {
    width: 100%;
    height: 12px;
    position: absolute;
    z-index: 1;
    bottom: 76px;
    left: 0;
}
.focus_row .hd ul {
    display: flex;
    justify-content: center;
    gap: 0 10px;
}
.focus_row .hd ul li {
    cursor: pointer;
    width: 12px;
    height: 12px;
    background: #beb082;
    border-radius: 6px;
}
.focus_row .hd ul li.on {
    width: 30px;
    background: #2b74cc;
}
.focus_row .bd {
    position: relative;
    height: 100%;
    z-index: 0;
}
.focus_row .bd li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.focus_row .bd img {
    width: 2560px;
    height: 740px;
    animation: focusAnimate 8s linear infinite;
}
@keyframes focusAnimate {
    0%{
        transform: scale(1.2);
    }
    70%{
        transform: scale(1);
    }
}
.search_box{
    width: 1230px;
    height: 100px;
    background-color: #fff;
    position: relative;
    top: -40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 30px;
    box-sizing: border-box;
    box-shadow: 0 1px 30px rgba(0, 0, 0, .1);
}
.search_box input{
    flex: 1;
    line-height: 100px;
    border: 0;
    outline: none;
    font-size: 16px;
}
.search_box a{
    width: 120px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    background-color: #2b74cc;
    text-align: center;
    border-radius: 20px;
    font-size: 16px;
}
.search_box a:hover{
    background-color: #2061b0;
}

.title_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.title_box span{
    font-size: 32px;
    position: relative;
}
.title_box span::before{
    width: 2em;
    height: 3px;
    content: '';
    position: absolute;
    left: 0px;
    bottom: -10px;
    background-color: #2b74cc;
}
.title_box a{
    font-size: 16px;
    display: flex;
    align-items: center;
    color: #a6a6a6;
}
.title_box a img{
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: all .3s linear;
}
.title_box a:hover{
    color: #2b74cc;
}
.title_box a:hover img{
    width: 0;
    margin-left: 0;
}
.news_focus{
    margin-top: 30px;
}
.news_focus .bd li{
    display: flex;
    justify-content: space-between;
}
.news_focus_left{
    width: 650px;
    height: 400px;
    overflow: hidden;
}
.news_focus_left img{
    width: 650px;
    height: 400px;
    transition: all .3s linear;
}
.news_focus_left img:hover{
    transform: scale(1.05);
}
.news_focus_right{
    width: 550px;
}
.news_time{
    width: 76px;
    height: 86px;
    background-color: #2b74cc;
    text-align: center;
    color: #fff;
    margin-top: 10px;
}
.news_time h1{
    font-size: 34px;
    line-height: 60px;
}
.news_time p{
    background-color: #beb082;
    line-height: 26px;
    font-size: 14px;
}
.news_title{
    font-size: 28px;
    line-height: 42px;
    padding-top: 30px;
}
.news_title a{
    height: 84px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news_title a:hover{
    color: #2b74cc;
}
.news_text{
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
    height: 95px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    padding: 0px 20px 0 10px;
    text-indent: 2em;
}
.news_focus .hd{
    width: 550px;
    height: 12px;
    position: absolute;
    right: 40px;
    bottom: 35px;
    z-index: 1;
}
.news_focus .hd ul{
    display: flex;
    justify-content: right;
    gap: 0 10px;
}
.news_focus .hd li{
    width: 12px;
    height: 12px;
    background-color: #cccccc;
    border-radius: 50%;
    cursor: pointer;
}
.news_focus .hd li.on{
    background-color: #2b74cc;
}

.news_box{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.news_box_left{
    width: 810px;
}
.news_box_left_nav{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
ul.news_left_nav{
    display: flex;
    line-height: 16px;
}
ul.news_left_nav li{
    transition: all .5s;
    cursor: pointer;
}
ul.news_left_nav li+li{
    border-left: 1px solid #c9c9c9;
    margin-left: 10px;
    padding-left: 10px;
}
ul.news_left_nav li.active{
    font-size: 24px;
}

a.more1 {
    position: relative;
    display: inline-block;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    padding: 0 25px;
    border: 1px solid #ddd;
    border-radius: 30px;
    color: #333;
    text-decoration: none;
    overflow: hidden;
    z-index: 0;
    transition: color 0.3s ease;
}
a.more1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: #2b74cc;
    z-index: -1;
    transition: width 0.3s ease;
    border-radius: 30px;
}
a.more1:hover::before {
    width: 100%;
}
a.more1:hover {
    color: #fff;
    border-color: #2b74cc;
}
ul.news_left_content li{
    height: 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
ul.news_left_content li+li{
    border-top: 1px solid #eee;
}
ul.news_left_content li a:hover{
    color: #2b74cc;
}
ul.news_left_content li p a{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
ul.news_left_content li span{
    font-size: 12px;
    color: #999;
    padding-top: 10px;
}

.news_box_right{
    width: 380px;
}
.news_box_right_nav{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.news_box_right_nav h1{
    font-size: 24px;
}

ul.news_icon_box{
    margin: 50px 0 90px;
    display: flex;
    justify-content: space-between;
}
ul.news_icon_box li a{
    display: flex;
    flex-direction: column;
    align-items: center;
}
ul.news_icon_box img{
    width: 72px;
    height: 72px;
    transition: all .3s linear;
}
ul.news_icon_box p{
    padding-top: 28px;
    font-size: 20px;
}
ul.news_icon_box li:hover img{
    transform: scale(1.2);
}
ul.news_icon_box li:hover p{
    color: #2b74cc;
}

.ksdh_box{
    width: 100%;
    height: 857px;
    background: url(../img/ksdh-bg.jpg) center no-repeat;
}
ul.ksdh_box_in{
    height: 250px;
    display: flex;
    justify-content: right;
    margin-top: 120px;
}
ul.ksdh_box_in li{
    width: 330px;
    height: 250px;
    text-align: center;
}
ul.ksdh_box_in li a{
    color: #fff;
}
ul.ksdh_box_in li:nth-child(1){
    background-color: #00479d;
}
ul.ksdh_box_in li:nth-child(2){
    background-color: #c3b383;
}
ul.ksdh_box_in li h1{
    font-size: 24px;
    padding-top: 56px;
}
ul.ksdh_box_in li span{
    font-size: 14px;
    padding-top: 10px;
    display: block;
}
ul.ksdh_box_in li i{
    display: block;
    background-color: #fff;
    width: 60px;
    height: 1px;
    margin: 75px auto 0;
    transition: all .3s linear;
}
ul.ksdh_box_in li p{
    font-size: 14px;
    padding-top: 10px;
}
ul.ksdh_box_in li:hover i{
    width: 100px;
}

.tsyljs_box{
    width: 100%;
    height: 422px;
    background: url(../img/tsyljs-bg.jpg) center no-repeat;
    padding-top: 60px;
    box-sizing: border-box;
}
.tsyljs_box_in{
    width: 1230px;
    position: relative;
    margin: 60px 0 0 0;
}
.tsyljs_box_in .hd .prev,
.tsyljs_box_in .hd .next{
    display: block;
    width: 46px;
    height: 46px;
    cursor: pointer;
    position: absolute;
    top: -100px;
    right: 0;
}
.tsyljs_box_in .hd .prev{
    background: url("../img/tsyljs-arrow-prev.png") no-repeat;
    right: 66px;
}
.tsyljs_box_in .hd .next{
    background: url("../img/tsyljs-arrow-next.png") no-repeat;
    right: 0;
}
.tsyljs_box_in .bd{
    width: 1250px;
    height: 236px;
    float: left;
    overflow: hidden;
    margin-left: -5px;
}
.tsyljs_box_in .bd ul{
    overflow: hidden;
    zoom: 1;
    height: 236px;
}
.tsyljs_box_in .bd ul li{
    width: 390px;
    height: 202px;
    margin: 10px 20px 0 10px;
    float: left;
    _display: inline;
    overflow: hidden;
    background-color: #fff;
    border-bottom: 3px solid #c3b383;
    box-shadow: 0 0 10px rgba(122, 122, 122, .3);
}
.tsyljs_box_in .bd ul li a{
    display: block;
    height: 100%;
    padding: 20px 30px;
    transition: all .3s linear;
    position: relative;
    top: 0;
}
.tsyljs_box_in .bd ul li i{
    font-style: normal;
    color: #3077cd;
}
.tsyljs_box_in .bd ul li p{
    font-size: 22px;
    margin-top: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all .3s linear;
}
.tsyljs_box_in .bd ul li:hover a{
    top: -8px;
}
.tsyljs_box_in .bd ul li a:hover p{
    color: #3077cd;
}
.tsyljs_box_in .bd ul li span{
    display: block;
    margin-top: 18px;
    font-size: 14px;
    line-height: 24px;
    height: 72px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.kyjx_bg{
    height: 886px;
    background: url(../img/kyjx-bg.jpg) center no-repeat;
}
.kyjx_box{
    position: relative;
    height: 886px;
}
.kyjx_box li{
    width: 274px;
    height: 274px;
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.kyjx_box li p{
    color: #fff;
    font-size: 24px;
    padding-top: 10px;
}
.kyjx_box li img{
    transition: all .5s linear;
}
.kyjx_box li:hover img{
    transform: scale(1.1);
}
.kyjx_box li:nth-child(1){
    background-color: #020403;
    top: 174px;
    left: 92px;
}
.kyjx_box li:nth-child(2){
    background-color: #c3b383;
    top: 174px;
    left: 366px;
}
.kyjx_box li:nth-child(3){
    background-color: #858383;
    top: 448px;
    left: 366px;
}

.kyjx_left{
    width: 578px;
    height: 523px;
    overflow: hidden;
    position: absolute;
    left: -408px;
    bottom: 0;
    z-index: 1;
}
.kyjx_left img{
    width: 578px;
    height: 523px;
    transition: all .3s linear;
}
.kyjx_left img:hover{
    transform: scale(1.2);
}
.kyjx_right{
    width: 1255px;
    height: 600px;
    overflow: hidden;
    position: absolute;
    left: 639px;
    top: 122px;
    z-index: 1;
}
.kyjx_right img{
    width: 1255px;
    height: 600px;
    transition: all .3s linear;
}
.kyjx_right img:hover{
    transform: scale(1.2);
}

ul.jczt_box{
    padding-top: 60px;
    display: flex;
    justify-content: space-between;
}
ul.jczt_box li{
    width: 390px;
    height: 310px;
    box-shadow: 0 0 10px rgba(122, 122, 122, .3);
    background-color: #fff;
}
ul.jczt_box li span{
    width: 390px;
    height: 220px;
    overflow: hidden;
    display: block;
}
ul.jczt_box li img{
    width: 390px;
    height: 220px;
    transition: all .3s linear;
}
ul.jczt_box li p{
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
    padding: 0 30px;
}
ul.jczt_box li:hover img{
    transform: scale(1.1);
}
ul.jczt_box li:hover p{
    color: #2b74cc;
}

.footer_box{
    margin-top: 80px;
    background-color: #00479d;
}
.footer_top{
    border-bottom: 1px solid #4d7fbb;
}
.footer_top_text{
    display: flex;
    align-items: center;
    min-height: 70px;
    color: #fff;
}
.footer_top_text h1{
    font-size: 14px;
}
.footer_top_text ul{
    display: flex;
    font-size: 14px;
    line-height: 14px;
}
.footer_top_text ul li{
    border-left: 1px solid #80a3ce;
    padding: 0 26px;
}
.footer_top_text ul li:nth-child(1){
    border-left: 0;
    padding-left: 16px;
}
.footer_top_text ul a{
    color: #fff;
}

.footer_bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 264px;
}
.footer_left{
    width: 344px;
    height: 56px;
}
.footer_center{
    width: 370px;
    font-size: 14px;
    color: #fff;
}
.footer_center p{
    line-height: 30px;
}
.footer_center ul{
    display: flex;
    line-height: 16px;
    padding-top: 8px;
}
.footer_center ul li{
    border-left: 1px solid #fff;
    padding: 0 10px;
}
.footer_center ul li:nth-child(1){
    border: 0;
    padding-left: 0;
}
.footer_center ul li a{
    color: #fff;
}

ul.footer_right{
    width: 440px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    text-align: center;
    color: #fff;
}
ul.footer_right p{
    padding-top: 10px;
}

.search_box_ksdh{
    top: 0;
    margin-top: 40px;
}


.ksdh_banner{
    width: 100%;
    height: 380px;
    background: url(../img/ksdh-banner.jpg) center no-repeat;
    position: relative;
}
.banner_text{
    text-align: center;
    color: #fff;
}
.banner_text h1{
    font-size: 34px;
    padding-top: 102px;
}
.banner_text p{
    font-size: 18px;
    padding-top: 20px;
}

.ksdh_menu{
    width: 100%;
    height: 60px;
    background-color: #2268bf;
    position: absolute;
    left: 0;
    bottom: 0;
}
.ksdh_menu ul{
    display: flex;
    height: 60px;
    align-items: center;
    font-size: 16px;
}
.ksdh_menu ul li{
    margin-right: 20px;
}
.ksdh_menu ul li a{
    display: block;
    line-height: 60px;
    padding: 0 20px;
}
.ksdh_menu ul li.active{
    background-color: #c3b383;
}
.ksdh_menu ul li a:hover{
    background-color: #c3b383;
}
.ksdh_menu ul a{
    color: #fff;
}

.ksdh_title{
    font-size: 24px;
    margin-top: 40px;
}
ul.ksdh_text_box, ul.ksdh_text_box2, ul.zdks_sdd_box{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
ul.ksdh_text_box li{
    width: 238px;
    height: 40px;
    border: 1px solid #c3b383;
    cursor: pointer;
    position: relative;
    transition: all .3s linear;
}
ul.ksdh_text_box2 li{
    width: 238px;
    height: 40px;
    border: 1px solid #2b74cc;
    cursor: pointer;
    position: relative;
    transition: all .3s linear;
}
ul.zdks_sdd_box li{
    width: 608px;
    height: 40px;
    border: 1px solid #dae2e6;
    padding: 5px 5px 5px 40px;
    line-height: 28px;
    background-color: #f0f7fb;
}
ul.ksdh_text_box li:hover, ul.ksdh_text_box2 li:hover{
    background-color: #2b74cc;
    border-color: #2b74cc;
    color: #fff;
}
ul.ksdh_text_box li p, ul.ksdh_text_box2 li p{
    display: flex;
    align-items: center;
    height: 40px;
}
ul.ksdh_text_box li p img, ul.ksdh_text_box2 li p img, ul.zdks_sdd_box li p img{
    margin: 0 9px 0 14px;
}
ul.ksdh_text_box li>div, ul.ksdh_text_box2 li>div, ul.zdks_sdd_box li>div{
    position: absolute;
    left: -1px;
    top: 40px;
    z-index: 10;
    width: 486px;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    opacity: 0;
}
ul.ksdh_text_box li:hover>div, ul.ksdh_text_box2 li:hover>div{
    display: block;
    opacity: 1;
    transform: translateY(-1px);
    pointer-events: auto;
}
ul.ksdh_text_box li>div span, ul.ksdh_text_box2 li>div span, ul.zdks_sdd_box li>div span{
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #c3b383;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 10px 0;
    margin-top: 10px;
}
ul.ksdh_text_box li>div span::before, ul.ksdh_text_box2 li>div span::before{
    content: '';
    display: block;
    width: 15px;
    height: 8px;
    background: url(../img/ksdh-arrow.png) center no-repeat;
    position: absolute;
    top: 3px;
    left: 36px;
}
ul.ksdh_text_box li>div a, ul.ksdh_text_box2 li>div a{
    width: 50%;
    display: flex;
    align-items: center;
    margin: 8px 0;
}
ul.ksdh_text_box li>div a:hover, ul.ksdh_text_box2 li>div a:hover{
    color: #2b74cc;
}
ul.ksdh_text_box li>div a img, ul.ksdh_text_box2 li>div a img{
    margin: 0 6px 0 20px;
}

.kszr_banner{
    width: 100%;
    height: 376px;
    background: url(../img/kszr-banner.jpg) center no-repeat;
    padding-top: 110px;
    box-sizing: border-box;
}
.kszr_banner_in{
    position: relative;
    display: flex;
    justify-content: space-between;
}

.kszr_head_box{
    width: 350px;
    height: 478px;
    overflow: hidden;
}
.kszr_head_box img{
    width: 350px;
    height: 478px;
    transition: all .3s linear;
}
.kszr_head_box img:hover{
    transform: scale(1.1);
}
.kszr_head_right{
    width: 800px;
}
.name_box{
    display: flex;
    align-items: flex-end;
}
.name_box h1{
    font-size: 45px;
    color: #fff;
    margin-right: 50px;
}
.name_box p{
    color: #fff;
    font-size: 28px;
    line-height: 38px;
}
.zhiwu_box{
    border-bottom: 1px solid #fff;
    color: #fff;
    padding: 26px 0 20px;
}
.techang_box{
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    margin-top: 20px;
}

.kszr_content{
    display: flex;
    justify-content: space-between;
}
.kszr_content_left{
    width: 350px;
    padding-top: 262px;
}
.kszr_content_left_in{
    border: 1px solid #2b74cc;
    margin-bottom: 20px;
}
.kszr_left_title{
    text-align: center;
    background-color: #2b74cc;
    color: #fff;
    font-size: 24px;
    line-height: 60px;
}
.wxyy_box{
    display: flex;
    justify-content: center;
    padding: 40px 0;
}
ul.zxyygh_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 40px;
}
ul.zxyygh_box li{
    width: 268px;
    line-height: 30px;
    text-align: center;
    background-color: #2b74cc;
    margin-top: 20px;
    font-size: 14px;
}
ul.zxyygh_box li a{
    color: #fff;
    display: block;
}

.kszr_content_right{
    width: 800px;
}
.kszr_right_title{
    text-align: center;
    font-size: 24px;
    padding: 40px 0 30px;
}
.kszr_right_box{
    box-shadow: 0 0 15px rgba(122, 122, 122, .3);
    padding: 20px 40px 40px;
}
.kszr_xxjs_text{
    font-size: 16px;
    line-height: 30px;
    padding-top: 20px;
}

.kszj_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 130px;
}
.kszj_top_left{
    height: 130px;
    display: flex;
    align-items: center;
}
.kszj_top_left img{
    width: 169px;
    height: 80px;
}
.kszj_top_left span{
    font-size: 34px;
    border-left: 1px solid #ccd0db;
    line-height: 74px;
    display: block;
    padding: 0 0 0 20px;
    margin-left: 25px;
}

.kszj_top_right{
    display: flex;
}
.return_btn a{
    display: block;
    width: 98px;
    line-height: 40px;
    text-align: center;
    border-radius: 6px;
    background-color: #2b74cc;
    color: #fff;
    font-size: 14px;
}
.menu_btn{
    position: relative;
    margin-left: 10px;
}
.menu_btn_top{
    width: 130px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}
.menu_btn_top img{
    margin-left: 12px;
}
.menu_btn_bottom{
    width: 380px;
    position: absolute;
    right: 0;
    top: 40px;
    z-index: 99;
    padding-top: 15px;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    opacity: 0;
}
.menu_btn:hover .menu_btn_bottom{
    display: block;
    opacity: 1;
    transform: translateY(-1px);
    pointer-events: auto;
}
.menu_btn_bottom_in{
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 0 10px;
}
.menu_btn_bottom_in::before{
    content: '';
    display: block;
    width: 17px;
    height: 10px;
    background: url(../img/ksdh-arrow-top.jpg) center no-repeat;
    position: absolute;
    top: 6px;
    right: 68px;
}
ul.menu_btn_nav{
    display: flex;
    justify-content: space-between;
    padding: 16px 0 0;
    border-bottom: 1px solid #ddd;
}
ul.menu_btn_nav li{
    cursor: pointer;
    position: relative;
    padding: 0 10px 12px;
    font-weight: bold;
}
ul.menu_btn_nav li.active::after{
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    bottom: -1px;
    left: 0;
    border-bottom: 2px solid #2b74cc;
}

ul.menu_btn_content{
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    padding: 10px;
    line-height: 32px;
    display: none;
}
ul.menu_btn_content li{
    margin-right: 10px;
}
ul.menu_btn_content li a:hover{
    color: #2b74cc;
}
ul.menu_btn_content.active{
    display: flex;
}

.kszj_menu{
    height: 60px;
    background-color: #00479d;
}
ul.kszj_menu_in{
    display: flex;
    justify-content: space-between;
    line-height: 60px;
}
ul.kszj_menu_in li.active{
    background: url(../img/kszj-menu-arrow.jpg) center bottom no-repeat;
}
ul.kszj_menu_in li:hover{
    background: url(../img/kszj-menu-arrow.jpg) center bottom no-repeat;
}
ul.kszj_menu_in li a{
    color: #fff;
    display: block;
}

.kszj_title_box{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 40px 0 10px;
}
.kszj_title_left{
    font-size: 24px;
}
.kszj_title_right{
    font-size: 14px;
    color: #999;
}
.kszj_title_right a{
    color: #999;
}
.kszj_title_right a:hover{
    color: #2b74cc;
}

ul.kszj_box{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 35px;
}
ul.kszj_box li{
    width: 222px;
}
ul.kszj_box li i{
    display: block;
    width: 222px;
    height: 302px;
    overflow: hidden;
}
ul.kszj_box li i img{
    width: 222px;
    height: 302px;
    transition: all .3s linear;
}
ul.kszj_box li i:hover img{
    transform: scale(1.1);
}
ul.kszj_box li p{
    text-align: center;
    font-size: 16px;
    padding-top: 15px;
}
ul.kszj_box li span{
    display: block;
    text-align: center;
    font-size: 14px;
    padding-top: 6px;
}
ul.kszj_box li a:hover p{
    color: #2b74cc;
}

.ksjj_box{
    display: flex;
    margin-top: 30px;
}
.ksjj_box_left{
    width: 600px;
    height: 370px;
    box-shadow: 0 0 15px rgba(122, 122, 122, .3);
    padding: 0 35px;
    box-sizing: border-box;
}
.ksjj_box_title{
    font-size: 24px;
    padding-top: 30px;
}
.ksjj_box_text{
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    line-height: 26px;
    padding: 16px 0 15px;
}
.ksjj_box_text_bottom{
    font-size: 14px;
    padding-top: 20px;
}
.ksjj_box_text_bottom span{
    color: #2b74cc;
}
.ksjj_more{
    display: flex;
    justify-content: right;
    padding-top: 20px;
}
.ksjj_box_right{
    width: 630px;
    height: 370px;
}
.ks_index_kszj_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
}
.ks_index_kszj_title p{
    font-size: 24px;
}

.ks_index_kszj_in{
    width: 1230px;
    position: relative;
    margin: 28px 0 0 0;
}
.ks_index_kszj_in .hd .prev,
.ks_index_kszj_in .hd .next{
    display: block;
    width: 34px;
    height: 70px;
    cursor: pointer;
    position: absolute;
    top: 115px;
    right: 0;
}
.ks_index_kszj_in .hd .prev{
    background: url("../img/kszj-arrow-prev.png") no-repeat;
    left: -64px;
}
.ks_index_kszj_in .hd .next{
    background: url("../img/kszj-arrow-next.png") no-repeat;
    right: -64px;
}
.ks_index_kszj_in .bd{
    width: 1230px;
    height: 302px;
    float: left;
    overflow: hidden;
}
.ks_index_kszj_in .bd ul{
    overflow: hidden;
    zoom: 1;
    height: 302px;
}
.ks_index_kszj_in .bd ul li{
    width: 222px;
    height: 302px;
    margin: 0 30px 0 0;
    float: left;
    _display: inline;
    overflow: hidden;
    background-color: #fff;
}
.ks_index_kszj_in .bd ul li a{
    display: block;
    height: 100%;
    position: relative;
    left: 0;
    top: 0;
}
.ks_index_kszj_in .bd ul li img{
    width: 222px;
    height: 302px;
}
.ks_index_kszj_in .bd ul li div{
    width: 222px;
    height: 64px;
    background-color: rgba(0, 0, 0, .4);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .3s linear;
}
.ks_index_kszj_in .bd ul li a:hover div{
    background-color: rgba(43, 116, 204, .8);
}
.ks_index_kszj_in .bd ul li p{
    font-size: 16px;
    text-align: center;
    margin-top: 12px;
    color: #fff;
}
.ks_index_kszj_in .bd ul li span{
    display: block;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}

.ks_index_news{
    display: flex;
    justify-content: space-between;
}
.news_left{
    width: 590px;
}
.news_left_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
}
.news_left_title{
    display: flex;
    align-items: center;
}
.news_left_title h1{
    font-size: 24px;
    padding-right: 20px;
}
.news_left_title ul{
    display: flex;
}
.news_left_title ul li{
    margin-right: 10px;
    padding: 0 8px;
    cursor: pointer;
    line-height: 26px;
    border-radius: 4px;
}
.news_left_title ul li.active{
    background-color: #2b74cc;
    color: #fff;
}
a.news_left_more{
    display: none;
}
a.news_left_more.active{
    display: block;
}

ul.news_box_ul{
    display: none;
    line-height: 40px;
    padding-top: 20px;
}
ul.news_box_ul_right{
    line-height: 40px;
    padding-top: 20px;
}
ul.news_box_ul.active{
    display: block;
}
ul.news_box_ul li,
ul.news_box_ul_right li{
    display: flex;
    justify-content: space-between;
}
ul.news_box_ul li a,
ul.news_box_ul_right li a{
    flex: 1;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
ul.news_box_ul li a::before,
ul.news_box_ul_right li a::before{
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #ddd;
    border-radius: 50%;
    margin-right: 7px;
    float: left;
    margin-top: 18px;
}
ul.news_box_ul li span,
ul.news_box_ul_right li span{
    width: 80px;
    text-align: right;
    font-size: 14px;
    color: #999;
}
ul.news_box_ul li a:hover,
ul.news_box_ul_right li a:hover{
    color: #2b74cc;
}

.lxwm_box{
    padding-top: 30px;
}
.lxwm_title{
    font-size: 24px;
}
.lxwm_bottom{
    margin-top: 30px;
    box-shadow: 0 0 15px rgba(122, 122, 122, .3);
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0 40px;
}
.lxwm_bottom p{
    width: 50%;
    line-height: 32px;
    padding: 16px 0 0 50px;
}
.lxwm_bottom p b{
    display: block;
}

.kwjj_nav{
    font-size: 14px;
    color: #999;
    padding: 30px 0 0;
}
.kwjj_nav a{
    color: #999;
}
.kwjj_nav a:hover{
    color: #2b74cc;
}
.ksjj_title{
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    padding: 30px 0 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.ksjj_text{
    font-size: 16px;
    line-height: 30px;
}
.ksjj_text p{
    text-indent: 2em;
    padding-top: 15px;
}
.ksjj_text img{
    margin: 30px auto 16px;
}

.kpxj_time{
    text-align: center;
    font-size: 14px;
    color: #999;
    padding-bottom: 10px;
}

.ksjj_bottom{
    border-bottom: 1px solid #ddd;
    margin: 60px 0 10px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding-bottom: 6px;
}
.ksjj_bottom_left{
    color: #999;
    display: flex;
}
.ksjj_bottom_left span+span{
    margin-left: 12px;
}
.ksjj_bottom_right{
    display: flex;
    align-items: center;
}
.ksjj_bottom_right p{
    color: #999;
}
.ksjj_bottom_right img{
    margin-left: 8px;
}
.prev_next_text{
    font-size: 14px;
    line-height: 30px;
}
.prev_next_text a:hover{
    color: #2b74cc;
}

ul.ksxwxq_icon{
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
}
ul.ksxwxq_icon li{
    width: 238px;
    height: 164px;
    box-shadow: 0 0 15px rgba(122, 122, 122, .3);
}
ul.ksxwxq_icon li a{
    width: 238px;
    height: 164px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
ul.ksxwxq_icon li a p{
    font-size: 18px;
    padding-top: 20px;
}
ul.ksxwxq_icon li a img{
    transition: all .3s linear;
}
ul.ksxwxq_icon li a:hover img{
    transform: scale(1.1);
}
ul.ksxwxq_icon li a:hover p{
    color: #2b74cc;
}

ul.kpxj_menu{
    display: flex;
    align-items: center;
    padding: 30px 0;
    font-size: 17px;
}
ul.kpxj_menu li{
    display: flex;
    align-items: center;
    cursor: pointer;
}
ul.kpxj_menu li.active{
    font-size: 24px;
}
ul.kpxj_menu li+li{
    margin-left: 12px;
}
ul.kpxj_menu li+li::before{
    content: '';
    display: block;
    width: 1px;
    height: 16px;
    background-color: #ddd;
    margin-right: 12px;
}

.list_content{
    display: none;
}
.list_content.active{
    display: block;
}
.search_row_gjc{
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}
.search_row_gjc form{
    display: flex;
    align-items: center;
}
.search_row_gjc p{
    font-size: 14px;
}
.search_row_gjc a{
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    line-height: 30px;
    padding: 0 10px;
    margin-right: 20px;
}
.search_row_gjc a:hover{
    color: #2b74cc;
}
.search_row_gjc input.search_type{
    width: 316px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    padding: 0 10px;
    box-sizing: border-box;
    background: none;
}
.search_row_gjc input{
    border: 0;
    outline: none;
    width: 32px;
    height: 32px;
    background: url(../img/search-img.png) no-repeat;
    margin-left: 10px;
}

ul.list_ul{
    line-height: 40px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}
ul.list_ul li{
    display: flex;
    justify-content: space-between;
    line-height: 58px;
    border-bottom: 1px solid #eee;
}
ul.list_ul li a{
    flex: 1;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
ul.list_ul li a::before{
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #ddd;
    border-radius: 50%;
    float: left;
    margin: 28px 7px 0 0;
}
ul.list_ul li span{
    width: 80px;
    text-align: right;
    font-size: 14px;
    color: #999;
}
ul.list_ul li a:hover{
    color: #2b74cc;
}

.pageNav{
    margin: 60px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 14px;
}
.pageNav a{
    display: block;
    padding: 6px 11px;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    margin: 0 3px;

}
.pageNav .active {
    background: #2b74cc!important;
    color: #fff;
    border-color: #2b74cc;
}
.pageNav a:hover {
    background: #eee;
}
.pagination li { float: left; min-width: 35px; line-height: 24px; text-align: center; }
.pagination li span { display: block;padding: 6px 11px;margin: 0 3px;line-height: 28px;height: 37px; }

/* 新增 */
.search_top{
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 10px;
}
.search_top h1{
    font-size: 24px;
}
.search_right_title{
    display: flex;
    font-size: 14px;
    color: #999;
}
.search_right_title a{
    color: #999;
}
.search_right_title a.blue{
    color: #2b74cc;
}
.search_right_title a:hover{
    color: #2b74cc;
}

.search_center{
    width: 100%;
    height: 70px;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.search_center input{
    flex: 1;
    height: 70px;
    border: 0;
    font-size: 16px;
    box-sizing: border-box;
    padding: 0 30px;
    outline: none;
    color: #333;
}
.search_center button{
    margin-right: 30px;
    width: 100px;
    height: 32px;
    font-size: 16px;
    color: #fff;
    border: 0;
    border-radius: 16px;
    background-color: #2b74cc;
    cursor: pointer;
}
.no_search_img{
    display: flex;
    justify-content: center;
    padding: 100px 0 20px;
}
.search_data_box{
    margin-top: 30px;
}
.search_data_top{
    background-color: #f5f5f5;
    line-height: 54px;
    font-size: 14px;
    color: #999;
    padding: 0 14px;
}
.search_data_top span{
    color: #e62129;
}

ul.search_data_list li{
    height: 120px;
    border-bottom: 1px solid #e9e9e9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
ul.search_data_list li h1{
    font-size: 18px;
    font-weight: bold;
}
ul.search_data_list li h1 span{
    color: #e62129;
}
ul.search_data_list li div{
    font-size: 14px;
    color: #333;
    padding-top: 20px;
}

.xwzx_top_left{
    height: 130px;
    display: flex;
    align-items: center;
}
.xwzx_top_left img{
    width: 500px;
    height: 80px;
}
.xwzx_top_left span{
    font-size: 34px;
    border-left: 1px solid #ccd0db;
    line-height: 74px;
    display: block;
    padding: 0 0 0 20px;
    margin-left: 25px;
}

.yyyw_box{
    display: flex;
    justify-content: space-between;
    padding: 26px 0 0;
}
.yyyw_focus {
    width: 600px;
    height: 390px;
    overflow: hidden;
    position: relative;
}
.yyyw_focus .hd {
    height: 12px;
    position: absolute;
    z-index: 1;
    bottom: 18px;
    right: 20px;
}
.yyyw_focus .hd ul {
    display: flex;
    justify-content: center;
    gap: 0 10px;
}
.yyyw_focus .hd ul li {
    cursor: pointer;
    width: 10px;
    height: 10px;
    background: #b3b3b1;
    border-radius: 5px;
}
.yyyw_focus .hd ul li.on {
    width: 22px;
    background-color: #2b74cc;
}
.yyyw_focus .bd {
    position: relative;
    height: 100%;
    z-index: 0;
}
.yyyw_focus .bd li {
    position: relative;
}
.yyyw_focus .bd img {
    width: 600px;
    height: 390px;
    transition: all .3s linear;
}
.yyyw_focus .bd img:hover{
    transform: scale(1.05);
}
.yyyw_focus .bd p{
    width: 100%;
    height: 50px;
    line-height: 50px;
    color: #fff;
    background-color: rgba(0, 0, 0, .3);
    position: absolute;
    left: 0;
    bottom: 0;
}
.yyyw_focus .bd p span{
    display: block;
    width: 440px;
    margin: 0 0 0 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.yyyw_right{
    width: 595px;
}
.yyyw_right_top h1{
    font-size: 17px;
    margin-top: 2px;
}
.yyyw_right_top h1 a{
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.yyyw_right_top h1 a:hover{
    color: #2b74cc;
}
.yyyw_right_top p{
    font-size: 12px;
    color: #999;
    padding: 8px 0 6px;
}
.yyyw_right_top span{
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    max-height: 72px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

ul.yyyw_right_bottom{
    line-height: 40px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}
ul.yyyw_right_bottom li{
    display: flex;
    justify-content: space-between;
    line-height: 50px;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
}
ul.yyyw_right_bottom li a{
    flex: 1;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
ul.yyyw_right_bottom li a::before{
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #ddd;
    border-radius: 50%;
    float: left;
    margin: 22px 7px 0 0;
}
ul.yyyw_right_bottom li span{
    width: 80px;
    text-align: right;
    font-size: 14px;
    color: #999;
}
ul.yyyw_right_bottom li a:hover{
    color: #2b74cc;
}

ul.zhxw_list{
    line-height: 40px;
    margin-top: 10px;
}
ul.zhxw_list li{
    display: flex;
    justify-content: space-between;
    line-height: 50px;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
}
ul.zhxw_list li a{
    flex: 1;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
ul.zhxw_list li a::before{
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #ddd;
    border-radius: 50%;
    float: left;
    margin: 22px 7px 0 0;
}
ul.zhxw_list li span{
    width: 80px;
    text-align: right;
    font-size: 14px;
    color: #999;
}
ul.zhxw_list li a:hover{
    color: #2b74cc;
}

.rwzf_box{
    width: 100%;
    height: 494px;
    position: relative;
    margin-top: 50px;
}
.rwzf_left_bg{
    width: 40%;
    height: 430px;
    background-color: #858383;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.rwzf_right_bg{
    width: 50%;
    height: 178px;
    background-color: #2b74cc;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.rwzf_center{
    position: relative;
    z-index: 2;
    background-color: #fff;
}
.rwzf_center_title{
    width: 490px;
    height: 132px;
    background-color: #858383;
    padding-right: 26px;
    box-sizing: border-box;
}
.rwzf_center_title p{
    color: #fff;
}
.rwzf_center_title a{
    color: #fff;
}

.rwzf_box_in{
    width: 1230px;
    height: 364px;
    position: relative;
    background-color: #fff;
}
.rwzf_box_in .hd .prev,
.rwzf_box_in .hd .next{
    display: block;
    width: 46px;
    height: 46px;
    cursor: pointer;
    position: absolute;
    top: 282px;
    z-index: 10;
}
.rwzf_box_in .hd .prev{
    background: url("../img/rwzf-arrow-prev.png") no-repeat;
    right: 162px;
}
.rwzf_box_in .hd .next{
    background: url("../img/rwzf-arrow-next.png") no-repeat;
    right: 96px;
}
.rwzf_box_in .bd{
    width: 1230px;
    float: left;
    overflow: hidden;
}
.rwzf_box_in .bd ul{
    overflow: hidden;
    zoom: 1;
}
.rwzf_box_in .bd ul li{
    width: 1230px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
}
.rwzf_box_in .bd ul li .rwzf_img{
    width: 490px;
    height: 364px;
    overflow: hidden;
}
.rwzf_box_in .bd ul li img{
    width: 490px;
    height: 364px;
    transition: all .3s linear;
}
.rwzf_box_in .bd ul li a:hover img{
    transform: scale(1.05);
}
.rwzf_box_in .bd ul li .rwzf_text{
    width: 586px;
    margin-left: 50px;
}
.rwzf_box_in .bd ul li p{
    font-size: 18px;
    margin-top: 12px;
    line-height: 30px;
    max-height: 60px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.rwzf_box_in .bd ul li i{
    font-style: normal;
    font-size: 14px;
    color: #858383;
    padding: 10px 0 0;
}
.rwzf_box_in .bd ul li a:hover{
    color: #3077cd;
}
.rwzf_box_in .bd ul li span{
    display: block;
    margin-top: 18px;
    font-size: 14px;
    line-height: 24px;
    height: 96px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.news_video_box{
    position: relative;
    height: 478px;
}
.news_video_bg{
    width: 50%;
    height: 478px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #c3b383;
}
.news_video_row{
    display: flex;
    justify-content: space-between;
}
.news_video_half{
    width: 590px;
    position: relative;
    z-index: 1;
}

ul.news_video_list{
    margin-top: 10px;
}
ul.news_video_list li{
    height: 78px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
ul.news_video_list li+li{
    border-top: 1px solid #eee;
}
ul.news_video_list li a{
    display: block;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all .3s linear;
}
ul.news_video_list li span{
    font-size: 12px;
    color: #999;
    display: block;
    margin-top: 10px;
}
ul.news_video_list li a:hover{
    color: #2b74cc;
}

.yygg_box .ks_index_kszj_title,
.yygg_box .ks_index_kszj_title a,
.yygg_box ul.news_video_list a,
.yygg_box ul.news_video_list li span{
    color: #fff;
}
.yygg_box ul.news_video_list li+li{
    border-top: 1px solid #fff;
}
.yygg_box ul.news_video_list li a:hover{
    color: #fff;
    transform: translateY(-3px) translateX(6px);
}

.jczt_swiper_box{
    background-color: #f2f2f2;
    margin-top: 60px;
    padding-bottom: 60px;
}
.jczt_swiper_title{
    text-align: center;
    font-size: 24px;
    padding: 50px 0 40px;
}
.jczt_out{
    position: relative;
}
.jczt_in{
    width: 1230px;
    height: 280px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    overflow: hidden;
    padding-top: 20px;
}
.jczt_in .swiper-slide {
    transform: scale(.9);
    transition: transform 1.0s;
    position: relative;
    width: 410px;
	height: 231px;
    overflow: hidden;
}
.jczt_in .swiper-slide-active,
.jczt_in .swiper-slide-duplicate-active {
    transform: scale(1.1);
    width: 410px;
	height: 231px;
    z-index: 1002;
}
.jczt_in .swiper-slide a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.jczt_in .swiper-slide img {
    width: 410px;
	height: 231px;
    transition: all .3s linear;
}
.jczt_in .swiper-slide a:hover img{
    transform: scale(1.05);
}
.jczt_in .swiper-slide p{
    width: 100%;
    height: 48px;
    line-height: 48px;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, .36);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.jczt_out .swiper-button-prev,
.jczt_out .swiper-button-next{
    position: absolute;
    top: 138px;
    width: 28px;
    height: 50px;
    cursor: pointer;
    z-index: 100;
    background-size: 100% 100%!important;
}
.jczt_out .swiper-button-prev {
    background: url("../img/jczt-prev.png") no-repeat;
    left: -40px;
}
.jczt_out .swiper-button-next {
    background: url("../img/jczt-next.png") no-repeat;
    right: -40px;
}


.jczt_top_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0 12px;
    border-bottom: 1px solid #ddd;
}
.jczt_top_title ul{
    display: flex;
}
.jczt_top_title ul li{
    font-size: 17px;
    color: #333;
    line-height: 18px;
}
.jczt_top_title ul li+li{
    border-left: 1px solid #c9c9c9;
    margin-left: 12px;
    padding-left: 12px;
}
.jczt_top_title ul li.active{
    font-size: 24px;
}
ul.pointer li{
    cursor: pointer;
}

ul.jczt_list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 0 20px;
}
ul.jczt_list li{
    width: 390px;
    height: 310px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    background-color: #fff;
}
ul.jczt_list li img{
    width: 390px;
    height: 220px;
}
ul.jczt_list li p{
    padding: 18px 20px 0;
    text-align: center;
    line-height: 24px;
}
ul.jczt_list li a:hover{
    color: #2b74cc;
}

ul.yygg_ul{
    border-top: 0;
}

ul.yyyw_ul{
    padding: 20px 0 0;
}
ul.yyyw_ul li{
    padding: 30px 20px;
    border-bottom: 1px solid #ddd;
}
ul.yyyw_ul li:hover{
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}
ul.yyyw_ul li:hover h1{
    color: #2b74cc;
}
ul.yyyw_ul li a{
    display: flex;
    justify-content: space-between;
}
ul.yyyw_ul li a img{
    width: 220px;
    height: 124px;
    margin-right: 30px;
}
ul.yyyw_ul li a div{
    flex: 1;
}
ul.yyyw_ul li a h1{
    font-size: 16px;
    margin-top: 6px;
}
ul.yyyw_ul li a span{
    font-size: 14px;
    color: #999;
    padding: 8px 0 0;
    display: block;
}
ul.yyyw_ul li a p{
    font-size: 14px;
    line-height: 24px;
    color: #858383;
    margin-top: 18px;
    max-height: 48px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.xsjl_banner{
    width: 100%;
    height: 380px;
    background: url("../img/xsjl-banner.jpg") center no-repeat;
    position: relative;
}
.xsjl_banner_title{
    text-align: center;
    color: #fff;
}
.xsjl_banner_title p{
    font-size: 34px;
    padding-top: 126px;
}
.xsjl_banner_title span{
    font-size: 18px;
    display: block;
    padding-top: 12px;
}
.xsjl_banner_nav{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: rgba(43, 116, 204, 0.8);
}
.xsjl_banner_nav ul{
    width: 1230px;
    display: flex;
    margin: 0 auto;
    font-size: 16px;
    color: #fff;
}
.xsjl_banner_nav ul li{
    padding: 0 18px;
    margin-right: 10px;
    transition: all .3s linear;
}
.xsjl_banner_nav ul li a{
    color: #fff;
    display: block;
}
.xsjl_banner_nav ul li.active,
.xsjl_banner_nav ul li:hover{
    background-color: #c3b383;
}

.yjjg_text p{
    font-size: 16px;
    line-height: 30px;
    padding-top: 20px;
}

.jzxz_banner{
    width: 100%;
    height: 380px;
    background: url("../img/jzxz-banner.jpg") center no-repeat;
    position: relative;
}

.ylfw_box{
    width: 1230px;
    height: 740px;
    background: url("../img/ylfw-bg.jpg") no-repeat;
    margin-top: 40px;
}
.ylfw_box a:hover{
    text-decoration: underline;
}
.ylfw_box a{
    color: #fff;
}
.ylfw_top{
    display: flex;
    justify-content: space-between;
}
ul.ylfw_top_left{
    width: 300px;
}
ul.ylfw_top_left li{
    width: 300px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
ul.ylfw_top_left li+li{
    margin-top: 10px;
}

.ylfw_top_center{
    width: 300px;
    height: 490px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.ylfw_top_center p{
    font-size: 24px;
    padding-bottom: 20px;
}
.ylfw_top_center ul{
    font-size: 14px;
    line-height: 36px;
}

.ylfw_top_right{
    width: 610px;
}
ul.ylfw_top_right_list{
    display: flex;
    justify-content: space-between;
}
ul.ylfw_top_right_list>li{
    width: 300px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 24px;
}
ul.ylfw_top_right_list p{
    font-size: 24px;
    padding-bottom: 20px;
}
ul.ylfw_top_right_list ul{
    font-size: 14px;
    line-height: 36px;
}
.ylfw_top_right_bottom{
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-top: 10px;
}

ul.ylfw_bottom{
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    margin-top: 10px;
}
ul.ylfw_bottom li{
    width: 300px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yygk_banner{
    width: 100%;
    height: 380px;
    background: url("../img/yygk-banner.jpg") center no-repeat;
    position: relative;
}

.yygk_title{
    text-align: center;
    margin-top: 58px;
    padding-bottom: 20px;
    font-size: 32px;
    position: relative;
}
.yygk_title::after{
    content: '';
    display: block;
    width: 58px;
    height: 3px;
    background-color: #2b74cc;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.yyjj_box{
    margin-top: 40px;
    position: relative;
}
.yyjj_box_img{
    width: 770px;
    height: 452px;
    overflow: hidden;
}
.yyjj_box_img img{
    width: 770px;
    height: 452px;
    cursor: pointer;
    transition: all .3s linear;
}
.yyjj_box_img img:hover{
    transform: scale(1.05);
}
.yyjj_box_right{
    width: 584px;
    height: 308px;
    padding: 0 40px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    position: absolute;
    right: 0;
    top: 102px;
}
.yyjj_box_right_title{
    padding: 40px 0 0;
    display: flex;
    align-items: baseline;
}
.yyjj_box_right_title p{
    font-size: 24px;
    color: #2268c0;
}
.yyjj_box_right_title i{
    font-size: 16px;
    color: #c3b383;
    margin-left: 14px;
}
.yyjj_box_right_text{
    font-size: 14px;
    line-height: 26px;
    text-align: justify;
    padding: 20px 0 0;
}
.yyjj_box_right_more{
    padding-top: 35px;
    display: flex;
    justify-content: right;
}

.ldtd_box{
    display: flex;
    justify-content: space-between;
    padding: 40px 0 0;
}
.ldtd_in{
    width: 590px;
    height: 480px;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 40px 30px 0;
    box-sizing: border-box;
    position: relative;
}
.ldtd_in_title{
    font-size: 24px;
    padding-bottom: 10px;
}
.ldtd_in ul li{
    border-bottom: 1px solid #ddd;
}
.ldtd_in ul li a{
    min-height: 65px;
    display: flex;
    align-items: center;
}
.ldtd_in ul li a p{
    font-size: 18px;
    margin-right: 20px;
    min-width: 60px;
}
.ldtd_in ul li a span{
    font-size: 14px;
}
.ldtd_in ul li a:hover{
    color: #2b74cc;
}
.ldtd_in_more{
    position: absolute;
    bottom: 30px;
    right: 30px;
}

ul.xzld_list li a{
    min-height: 42px;
}

.zzjg_banner{
    width: 100%;
    height: 264px;
    margin-top: 60px;
    color: #fff;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.zzjg_banner a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.zzjg_banner img{
    width: 2560px;
    height: 264px;
    transition: all .3s linear;
}
.zzjg_banner:hover img{
    transform: scale(1.1);
}
.banner_title{
    width: 100%;
    text-align: center;
    font-size: 32px;
    position: relative;
    position: absolute;
    left: 0;
    z-index: 1;
    color: #fff;
}
.banner_title::after{
    content: '';
    display: block;
    width: 58px;
    height: 3px;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    background-color: #fff;
}
.yyls_title{
    color: #333;
}
.yyls_title::after{
    background-color: #2b74cc;
}

ul.yywh_img_list{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
ul.yywh_img_list li{
    width: 398px;
    height: 226px;
    border: 1px solid #c3b383;
    transition: all .3s linear;
}
ul.yywh_img_list li a{
    height: 226px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
ul.yywh_img_list li a img{
    transition: all .3s linear;
}
ul.yywh_img_list li a p{
    font-size: 24px;
    padding-top: 20px;
}
ul.yywh_img_list li a:hover img{
    transform: translateY(-10px);
}
ul.yywh_img_list li a:hover p{
    color: #2b74cc;
}
ul.yywh_img_list li:hover{
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

ul.ddjs_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    gap: 30px 0;
}
ul.ddjs_list li{
    width: 600px;
    height: 146px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    border-bottom: 3px solid #c3b383;
}
ul.ddjs_list li a{
    height: 146px;
    display: flex;
    align-items: center;
    padding: 0 30px;
}
.ddjs_left{
    width: 70px;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #c3b383;
    margin-right: 20px;
}
.ddjs_left p{
    font-size: 36px;
}
ul.ddjs_list li a h1{
    font-size: 16px;
}
ul.ddjs_list li a:hover h1{
    color: #2b74cc;
}

.ddjs_top_border{
    border-color: #2b74cc;
    padding-bottom: 20px;
}

.ldtd_img_list{
    width: 756px;
    margin: 30px auto 0;
}
.ldtd_img_list ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 60px;
}
.ldtd_img_list ul li{
    margin-top: 30px;
}
.ldtd_img_list ul li div{
    width: 192px;
    height: 254px;
    overflow: hidden;
}
.ldtd_img_list ul li img{
    width: 192px;
    height: 254px;
    transition: all 0.3s linear;
}
.ldtd_img_list ul li p{
    text-align: center;
    font-size: 20px;
    padding-top: 12px;
    transition: all 0.3s linear;
}
.ldtd_img_list ul li span{
    display: block;
    text-align: center;
    font-size: 14px;
    color: #3a3a3a;
    line-height: 22px;
    padding-top: 8px;
    transition: all 0.3s linear;
}
.ldtd_img_list ul li a:hover img{
    transform: scale(1.05);
}
.ldtd_img_list ul li a:hover p,
.ldtd_img_list ul li a:hover span{
    color: #2b74cc;
}

ul.ld_list_bottom{
    gap: 0 90px;
}

.yyjj_text{
    padding-top: 20px;
}
.yyjj_text p{
    font-size: 16px;
    line-height: 30px;
    text-indent: 2em;
    padding-top: 20px;
}
.yyjj_text p.yyjj_text_right{
    text-align: right;
    text-indent: 0;
}

ul.yyls_box{
    margin: 60px 0 0;
    position: relative;
}
ul.yyls_box::before{
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background-color: #2b74cc;
    position: absolute;
    left: 286px;
    top: 0;
}
ul.yyls_box li{
    padding-top: 20px;
    display: flex;
    position: relative;
}
ul.yyls_box li b{
    width: 250px;
    font-size: 20px;
    color: #2b74cc;
    text-align: right;
}
ul.yyls_box li::before{
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url("../img/yyls-icon.png") no-repeat;
    position: absolute;
    left: 277px;
    top: 22px;
}
ul.yyls_box li div{
    width: 500px;
    margin-left: 100px;
}
ul.yyls_box li div img{
    width: 500px;
}
ul.yyls_box li div p{
    font-size: 14px;
    line-height: 24px;
    padding: 12px 0 20px;
}

.zzjg_box{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.zzjg_box:nth-child(1){
    margin-top: 60px;
}
.zzjg_left{
    width: 60px;
    font-size: 18px;
    color: #fff;
    background-color: #6295d2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    letter-spacing: 6px;
}
.zzjg_box ul{
    width: 1120px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.zzjg_box ul li{
    width: 360px;
    line-height: 50px;
    border-radius: 4px;
    background-color: #e9e9e9;
    text-align: center;
    font-size: 16px;
}

.ldxq_box{
    padding-top: 60px;
    display: flex;
    justify-content: space-between;
}
.ldxq_box img{
    width: 332px;
}
.ldxq_right{
    width: 840px;
}
.ldxq_name{
    display: flex;
    align-items: baseline;
}
.ldxq_name h1{
    font-size: 45px;
    color: #3a3a3a;
    padding-right: 28px;
}
.ldxq_name p{
    font-size: 24px;
    color: #666;
}
.ldxq_data{
    font-size: 16px;
    line-height: 30px;
    color: #666;
    border-bottom: 1px solid #ddd;
    padding: 18px 0 28px;
    margin-bottom: 6px;
}
.ldxq_text{
    font-size: 16px;
    line-height: 30px;
    color: #666;
}
.ldxq_text p{
    padding-top: 18px;
    text-indent: 2em;
}

.show{display:block;}
.hide{ display: none;}
