@charset "UTF-8";
@import url(./public.css);
@import url(./footer.css);
@import url(./header.css);
@import url(./Navlist.css);

.main{
    width: 100%;
    /* min-width: 1550px; */
    background: #F9F9F9;
}
@media (max-width: 1800px) and (min-width:768px){
    .main {
        zoom:78%;
    }
    /* @-ms-viewport { width: 1920px; } */
}

@media screen and (min-width: 1921px) {
/* 在屏幕宽度至少为1921px时（即2K分辨率宽屏幕），应用以下样式 */
    .main {
        zoom:136%;
    }
    .zsb_topcenter div{
        font-size: 12px;
    }
}
/* 菜单栏 */

.maint_top{
    width: 100%;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
    margin-top: 20px;
}
.banner{
    width: 100%;
    height:100%;
    position: relative;
}
.mainTop-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.topList{
    width: 240px;
    height: 99%;
    background: rgba(33,41,122,0.7);
    position: absolute;
    top: 0;
    left: 15%;
    z-index: 999;
}
.topList .topList_ul{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 0px;
    position: relative;
}
.topList .topList_ul li{
    display: flex;
    margin-bottom:13px;
    padding: 0 33px;
    padding: 10px 33px;
}
.topList .topList_ul li:last-child{
    margin-bottom: 0;
}
.topList .topList_ul li .aa_01{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topList .topList_ul li .aa_01:hover span{
    color: #fff;
    cursor: pointer;
}
.topList .topList_ul li .aa_01 span{
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #ffffffde;
}
.topList .topList_ul li .aa_01 img{
    width:18px;
    height:18px;
}

.topList_active{
    width: 240px;
    height: 100%;
    background: rgba(33,41,122,1);
    display: none;
    position: absolute;
    top: 0px;
    right: -240px;
    z-index: 1;
    overflow: hidden;
    transition: all 2s ease-in-out;
}

.topList_active .topList_active_aa{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 0;
}
.topList_active .topList_active_aa div{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    /* margin-bottom: 20px; */
}
.topList_active .topList_active_aa div:hover{
    background: #ffffff2b;
}
.topList .topList_ul li:hover{
    background: #ffffff2b;
}
.topList_active .topList_active_aa div a{
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size:16px;
    color: #ffffffde;
    padding: 0 30px;
}

/* 分类 */
.box01{
    width: 100%;
    height: 100%;
    background: url(../images/list_banner01.png) no-repeat;
    background-size: 100% 100%;
    padding: 45px 0;
}
.box01_info{
    width: 70%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.box01_item{
    width: 15.5%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 22px;
    background: url(../images/list_banner.png) no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
.box01_item a{
    width: 100%;
    display: flex;
    height: 100%;
    align-items: center;
}
.box01_item .box01_item_left{
    display: flex;
    flex-direction: column;
}
.box01_item_left span:nth-child(1){
    font-size: 16px;
    color: #fff;
    margin-bottom: 3px;
    font-weight: 900;
}
.box01_item_left span:nth-child(2){
    font-size:12px;
    color: #fff;
}
.box01_item_right{
    width: 25px;
    height: 25px;
}


/* 统招专升本 */
.zsb{
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    margin-top:60px;
}
.zsb_top{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 20px;
    margin-bottom:30px;
}
.zsb_top_left{
    width: 75%;
    padding-right: 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.zsb_top_left:hover{cursor: pointer;}

.zsb_top_left_text{
    font-family: PingFang SC, PingFang SC;
    font-weight: 800;
    font-size: 24px;
    color: #06348A;
    position: relative;
    padding-left: 20px;
    white-space: nowrap;
}
.zsb_top_left_text::after{
    content: "";
    width: 2.5px;
    height: 100%;
    background: #06348A;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
.zsb_topcenter{
    /* width: 65%; */
    display: flex;
    align-items: center;
    font-size: 16px;
    /* justify-content: space-between; */
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    padding-bottom: 10px;
    margin-left: 2.5%;
}

/* 滚动条整体样式 */
.zsb_topcenter::-webkit-scrollbar {
    height: 6px; /* 滚动条高度 */
}

/* 滚动条轨道 */
.zsb_topcenter::-webkit-scrollbar-track {
    background: #f1f1f1; /* 轨道背景色 */
    border-radius: 3px;
}

/* 滚动条滑块 */
.zsb_topcenter::-webkit-scrollbar-thumb {
    background: #e6f0ff; /* 滑块颜色 */
    border-radius: 3px;
    transform: translateX(10px);
}

/* 滚动条滑块悬停效果 */
.zsb_topcenter::-webkit-scrollbar-thumb:hover {
    background: #c0d8f0; /* 悬停时颜色稍深 */
}

.zsb_topcenter div{
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size:16px;
    color: #333333;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-right:10px;
}
.zsb_topcenter div a{
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size:12px;
    color: #333333;
    white-space: nowrap;
}
.zsb_topcenter :hover{cursor: pointer;}
.zsb_top_right{
    width: 25%;
    font-family: PingFang SC, PingFang SC;
    font-weight: 800;
    font-size: 20px;
    color: #1E1E1E;
    position: relative;
    padding-left: 20px;
}
.zsb_top_right::after{
    content: "";
    width: 2.5px;
    height: 100%;
    background: #06348A;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
.zsb_info{
    width:100%;
    display: flex;
}
.zsb_left{
    width: 75%;
    height:383px;
    display: flex;
    padding-right: 2%;
}
.zsb_left_01{
    width: 26%;
    height:100%;
    display: flex;
    flex-direction: column;
    /* padding-top: 40px; */
}
.zsb_left_01 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.zsb_left_01:hover,.zsb_left_item:hover,.box01_item:hover{
    transition: all .3s ease;
    cursor: pointer;
}
.zsb_left_01:hover,.zsb_left_item:hover,.box01_item:hover{
    transform: translateY(-5px);
}
/* .zsb_banner{
    background: url(../images/zsb_ban.png) no-repeat;
    background-size: 100% 100%;
}
.zsb_left_01 p{
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    font-size: 20px;
    color: #333333;
    text-align: center;
    margin-bottom: 8px;
}
.zsb_left_01 span{
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 13px;
    color: #696969;
    text-align: center;
} */
.zsb_left_list{
    width: 72%;
    height:100%;
    padding-left: 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.zsb_left_item{
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-bottom: 15px; */
}
.zsb_left_item:nth-child(4),.zsb_left_item:nth-child(5),.zsb_left_item:nth-child(6){
    margin-bottom: 0;
}
.zsb_left_item img{
    width: 100%;
    height: 137px;
    object-fit: cover;
    /* margin-bottom: 10px; */
   border-radius:5px;
}
.zsb_left_item span{
    width: 100%;
    padding: 10px;
    display: inline-block;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 15px;
    color: #4f4e4e;
    text-align-last: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: #fff;
}

.zsb_right{
    width: 25%;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 20px 25px;
    box-shadow: 0 0px 15px 3px rgb(0 0 0 / 1%);
}
.zsb_right_title{
    width: 100%;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin-bottom:13px;
    text-align: center;
    white-space: nowrap;
}
.zsb_right_day{
    width: 100%;
    display: flex;
    align-items: center;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    justify-content: center;
}
.zsb_right_day div{
    padding: 1px 9px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    font-size: 24px;
    color: #FBB075;
    margin-right: 10px;
    background: #444444;
    border-radius: 8px;
    letter-spacing: 5px;
}
.zsb_right_rq{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top:20px;
}
.zsb_right_rq_item{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom:15px;
}
.henx{
    position: relative;
}
.henx::after{
    content: "";
    width: 1px;
    height: 57px;
    background-color: #D9D9D9;
    position: absolute;
    top: 28px;
    left: 5px;
    z-index: 9;
}
.zsb_right_rq_item .zsb_rq_yuan{
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    border-radius: 50%;
    margin-right:15px;
}
.zsb_rq_text{
    display: flex;
    flex-direction: column;
}
.zsb_rq_t_01{
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}
.zsb_rq_t_01 span{
    font-family: Roboto, Roboto;
    font-weight: 600;
    font-size:22px;
    color: #000000;
    margin-right:14px;
}
.zsb_rq_t_01 div{
    width: 35px;
    height: 24px;
    background: url(../images/zsb_icon.png) no-repeat;
    background-size: 100% 100%;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 13px;
    color: #542F04;
    text-align: center;
    line-height: 24px;
}
.zsb_rq_t_02{
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 12px;
    color: #00000078;
}
.zsb_rq_t_02 b{
    color: #000000 !important;
}
.zsb_right_btn{
    width: 230px;
    height: 40px;
    background: #06348A;
    line-height: 40px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 15px;
    color: #FFFFFF;
    text-align: center;
    border-radius: 43px;
    margin: 0 auto;
    margin-top: 10px;
}
.zsb_right_btn:hover{
    opacity: 0.5;
    cursor: pointer;
}

/* 新高考选科 */
/* .xk_banner{
    background: url(../images/xgkxk_ban.png) no-repeat;
    background-size: cover;
} */
.xk_topcenter{
    /* width:80%; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}
.xk_topcenter div{
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size:15px;
    color: #333333;
    white-space: nowrap;
    margin-left: 10px
}
.xk_right{
    width: 25%;
    display: flex;
    flex-direction: column;
    padding:20px 25px;
    background: #fff;
    box-shadow: 0 0px 15px 3px rgb(0 0 0 / 1%);
}
.xk_right_top{
    width: 100%;
    display: flex;
    align-items: center;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size:18px;
    color: #06348A;
    margin-bottom:15px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 15px;
}
.xk_right_top img{
    width: 25px;
    height: 25px;
    margin-right: 10px;
}
.xk_right_item{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom:15px;
}
.xk_right_item span:nth-child(1){
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #06348A;
    margin-bottom:6px;
}
.xk_right_item span:nth-child(2){
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #6B6B6B;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xk_right_btn{
    width: 230px;
    height: 40px;
    background: #06348A;
    line-height: 40px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 15px;
    color: #FFFFFF;
    text-align: center;
    border-radius: 43px;
    margin: 0 auto;
    margin-top: 20px;
}
.xk_right_btn:hover{
    opacity: 0.5;
    cursor: pointer;
}

/* 志愿填报 */
/* .zytb_banner{
    background: url(../images/zsb01_img.png) no-repeat;
    background-size:cover;
}
.xk_banner{
    background: url(../images/xgk01_img.png) no-repeat;
    background-size:100% 100%;
}

.ky_banner{
    background: url(../images/byky01_img.png) no-repeat;
    background-size:100% 100%;
}
.dz_banner{
    background: url(../images/gzdz01_img.png) no-repeat;
    background-size:100% 100%;
}
.xxl_banner{
    background: url(../images/xygh01_img.png) no-repeat;
    background-size:100% 100%;
}

.zy_banner{
    background: url(../images/zy01_img.png) no-repeat;
    background-size:100% 100%;
} */
.zytb_topcenter{
    /* width:66%; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    /* font-size: 14px; */
}
.zytb_topcenter div{
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 12px;
    color: #333333;
    white-space: nowrap;
    margin-left: 17px;
}
.zytb_right{
    width: 25%;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 0px 15px 3px rgb(0 0 0 / 1%);
}
.zytb_right_img{
    width: 100%;
    /* height: 193px; */
    object-fit: cover;
}
.zytb_right_list{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 9px;
    background: #fff;
    height: 190px;
    overflow: hidden; 

}
.zytb_right_item{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom:0px;
}
.zytb_right_item:last-child{
    margin-bottom: 0;
}
.zytb_right_item img{
    width: 30px;
    height: 30px;
    margin-right:6px;
}
.zytb_right_item div{
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.zytb_right_item:hover{cursor: pointer;}
/* 高中学业规划 */
.xygh_banner{
    background: url(../images/xygh_ban.png) no-repeat;
    background-size: 100% 100%;
}
.xygh_topcenter{
    /* width:78%; */
    display: flex;
    align-items: center;
    /* font-size: 14px;
    justify-content: space-between; */
}
.xygh_topcenter div{
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    white-space: nowrap;
    margin-left: 10px;
}
.xygh_right_top{
    width: 100%;
    display: flex;
    align-items: center;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 22px;
    color: #06348A;
    margin-bottom:10px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 10px;
}
.xygh_right_top img{
    width: 25px;
    height: 25px;
    margin-right: 10px;
}
.xygh_right_item{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.xygh_right_item span:nth-child(1){
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 17px;
    color: #06348A;
    margin-bottom: 5px;
}
.xygh_right_item span:nth-child(2){
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 12px;
    color: #6B6B6B;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.xygh_right_btn{
    width: 199px;
    height: 45px;
    background: #06348A;
    line-height: 45px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    border-radius: 30px;
    margin: 0 auto;
    margin-top: 19px;
}
.xygh_right_btn:hover{
    opacity: 0.5;
    cursor: pointer;
}
.xygh_right{
    width: 25%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0px 15px 3px rgb(0 0 0 / 1%);  
}
.xygh_right_list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.xygh_right_item{
    width: 46%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 1px 2px 0px rgba(67,67,67,0.25);
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    padding: 9px;
    margin-bottom: 15px;
}
.xygh_right_item img{
    width: 60px;
    height: 60px;
}
.xygh_right_item span{
    display: inline-block;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #1E1E1E;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}



/* 高职单招 */
.gzdz_topcenter{
    width:75%;
    display: flex;
    font-size: 14px;
    align-items: left;
    /* justify-content: space-between; */
}
.gzdz_topcenter div{
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    white-space: nowrap;
    margin-left: 16px;
}
.gzdz_banner{
    background: url(../images/gzdz_ban.png) no-repeat;
    background-size: 100% 100%;
}

/* 保研考研 */
.byky_topcenter{
    /* width:56%; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}
.byky_topcenter div{
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    white-space: nowrap;
    margin-left: 16px;
}
.byky_banner{
    background: url(../images/byky_ban.png) no-repeat;
    background-size: 100% 100%;
}

/* 分校地址 */
.fx_address{
    width: 100%;
    background: url(../images/fx_banner.png) no-repeat;
    background-size: 100% 100%;
    margin-top: 40px;
    padding-bottom: 35px;
}
.fx_address_box{
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.fx_top{
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    position: relative;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    border-bottom: 1px solid #fff;
    margin-bottom: 28px;
    padding-bottom: 28px;
    margin-top: 40px;
}
.fx_top::after{
    content: "";
    width: 2.5px;
    height: 25px;
    background-color: #fff;
    position: absolute;
    top: 6px;
    left: 0;
    z-index: 9;
}
.fx_list{
    width: 100%;
    display: flex;
    /* align-items: flex-end; */
    justify-content: space-between;
    position: relative;
}
.fx_left{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top:230px;
}
.fx_left div{
    width: 19%;
    height: 35px;
    line-height: 35px;
    border-radius: 3px;
    border: 1px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    margin-right: 1%;
    margin-bottom: 12px;
    cursor: pointer;
}
.active{
    border: 1px solid #d9dbe1 !important; 
    color: #d9dbe1 !important;
}
.fx_con{
    width:50%;
    padding-left: 5%;
}
.fx_tabItem{
    width: 100%;
    display:none;
}
.fx_rgiht{
    width:100%;
    display: flex;
    flex-direction: column;
}
.fx_rgiht_top{
    width: 50%;
    height: 310px;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    padding-left: 5%;
}
.fx_rgiht_top #allmap{
    width: 100%;
    height: 310px;
    object-fit: cover;
    overflow: hidden;
    margin:0;
}
.BMap_bubble_title{
    margin-bottom: 10px;
}
.BMap_bubble_content{
    line-height: 24px;
    font-size: 14px;
}
#allmap .anchorBL img {
    display: none;
}
  #allmap .BMap_cpyCtrl span {
    display: none !important;
}
.fx_rgiht_text{
    width: 90%;
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.3);
    padding: 10px 20px 3px 20px;
    box-sizing: border-box;
}
.fx_rgiht_text_it{
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
    margin-bottom: 7px;
}
.fx_rgiht_text_it div{
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
}
.fx_rgiht_text_it div img{
    width: 18px;
    margin-right:5px;
}

.fx_js{
    width:50%;
    height: 230px;
    display: flex;
    flex-direction: column;
    position:absolute;
    top: 0px;
    left: 0%;
    z-index: 9;
}
.fx_js_title{
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:4;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}
.fx_js_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    position: absolute;
    bottom: 0;
    left: 77%;
    transform: translate(-50%, 0%);
}
.fx_js_btn div{
    width: 130px;
    height: 40px;
    border-radius: 6px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}
.fx_js_btn01{
    background: rgb(9 90 225);
    margin-right: 60px;
    cursor: pointer;
}
.fx_js_btn02{
    background: rgb(238,51,62);
    cursor: pointer;
}
.fx_js_btn div:hover{
    opacity: 0.5;
}


/* 统招专升本列表 */
.zsb_left_list01{
    width: 72%;
    height: 100%;
    margin-left: 2%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 20px 15px 15px 15px;
}
.zsb_ul01{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.zsb_ul01_li{
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 15px;
    margin-bottom: 10px;
}
.zsb_ul01_li .zsb_ul01_li_tt{
    width: 50px;
    /* height: 30px; */
    display: flex;
    /* text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #fff; */
    /* background: url(../images/td_anner.png) no-repeat;
    background-size: 100% 100%; */
}
.zsb_ul01_li .zsb_ul01_li_tt img{
    width: 100%;
}
.zsb_ul01_li_title{
    font-size:18px;
    color: #299dea;
    margin-left: 10px;
}
.zsb_ul01_list{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.zsb_ul01_list div{
    font-weight: 400;
    font-size: 14px;
    color: #333;
}
.zsb_ul01_list div:hover{
    opacity: 0.5;
    cursor: pointer;
}
.zsb_ul02{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: rgb(249,249,249);
    padding: 18px 8px 10px 8px;
}
.zsb_ul03{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.zsb_ul03_item{
    width:23%;
    display: flex;
}
.zsb_ul03_item a{
    width:100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size:15px;
    color: #333;
    background: rgb(225,245,255);
}
.zsb_ul03_item a img{
    width: 27px;
    height: 27px;
    margin-right: 5px;
}
.zsb_ul03_item:hover{
    transition: all .3s ease;
    transform: translateY(-5px);
    cursor: pointer;
}
