* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    background-color: #ffffff;
    min-width: 320px;
    /* 先不做移动适配*/
}

ul {
    list-style: none;
}

a {
    text-decoration: none;

}

/* 特效 */
.banner img{
    transition: all 3s;
}
.swiper2 img {
    transition: all 1s;
}

.banner img:hover,
.swiper2 img:hover {

    transform: scale(1.2);
}

/* 特效end */
.container {
    width: 100%;
    margin: 0 auto;

    min-width: 320px;

}

/* 顶部导航栏 */

.headerw1 {
    background-image: url(../images/headerbj.png);
    background-repeat: repeat-x;
    background-size: contain;
    background-position: top;
    position: absolute;
    z-index: 10;
    width: 100%;
    top: 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 0px;

    color: #fff;
    width: 80%;
    margin: auto;

}

.header-left {

    display: flex;
    align-items: center;

    width: 50%;
}

.header-left h1 {

    font-size: 1.3rem;
    padding-left: 0.5rem;
}

.logo {
    width: clamp(151px, 95%, 494px);

    margin-right: 1.5rem;
}

.department {
    font-size: 1.8rem;
    white-space: nowrap;
    border-left: 1px solid white;
    padding-left: 1.5rem;
    font-weight: 900;
    color: white;
}

.header-right {

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    width:50%;
}

.lianjie {
    COLOR: #e7e7e76b;
    margin-bottom: 0.3rem;
}

.lianjie .btn {

    text-decoration: none;
    padding: 5px 5px;
    margin: 0px 5px;
    color: #ffffffbd;
    font-size: 0.85rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.lianjie .btn:not(:last-child){
display: none;
}
.lianjie .btn .iconfont {
    font-size: 1.2rem;
}

.lianjie .btn:hover {
    border: 1px solid #ffffffbd;

}

.lianjie .sousuo {
    position: relative;
}

.lianjie .sousuokuang {
    width: 11rem;
    height: 1.8rem;
    border: 1px solid #ffffffbd;
    position: absolute;
    border-radius: 5px;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 3px;
    display: none;
}

.lianjie .sousuokuang:focus {
    outline: none;
}

.lianjie .sousuo:hover .sousuokuang {
    display: block;
}


/* pc端导航 */

.pc_nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;


}

.pc_nav li {
    float: left;
    position: relative;
}

.pc_nav li a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 0.5rem 0.6rem;
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 2rem;
}

.pc_nav li a:not(.dropdown-content a):hover {
    font-weight: 700;
}

.pc_nav li a:not(.dropdown-content a)::before {
    content: '∨';
    display: block;
    position: absolute;
    right: 0rem;
    font-size: 0.8rem;
    line-height: 2rem;
    color: #ffffff73;
}

.pc_nav li a::after {

    content: '';
    display: block;
    width: 0;
    height: 2px;
    margin-top: 5px;
    background: #fff;
    transition: width .3s;
}

.pc_nav li a:not(.dropdown-content a):hover::after {
    width: 100%;
}


.pc_nav .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 110%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 17px 0px;
}

.pc_nav .dropdown-content a {
    color: black;
    padding: 8px 5px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    line-height: 1rem;
}

.pc_nav .dropdown-content a:hover {

    color: #03859c;
}

.pc_nav .dropdown:hover .dropdown-content {
    display: block;
}

/* pc端导航end */

/* 菜单显示按钮start*/

.burger {
    position: absolute;
    top: 15px;
    right: 5px;
    width: 35px;
    height: 25px;
    background: transparent;
    cursor: pointer;
    z-index: 99;
    display: none;

}

.burger input {
    display: none;
}

.burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: rgb(255, 255, 255);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
}

.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}

.burger input:checked~span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
}

.burger input:checked~span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}

.burger input:checked~span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 25px;
    left: 4px;
}

/*菜单显示按钮end */

.header_yd {
   
    display: none;
    position: absolute;
    z-index: 9;
    width: 100%;
    top: 0;
    padding: 0.5rem 0;
    background-image: url(../images/headerbj.png);
    background-repeat: repeat-x;
    background-size: contain;
    background-position: top;
}

/*banner*/
.banner .swiper-container {
    width: 100%;
    height: 100%;
}

.banner .swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.banner .swiper-container .swiper-slide a{
	     width: 100%; 
    height: 100%;
}
.banner .swiper-slide {
    text-align: center;
    
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 34vh;
}

.banner .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    text-align: center;
    line-height: 2rem;
    font-size: 0px;
    color: #000;
    opacity: 1;
    background: rgb(255 255 255 / 58%);
    position: relative;
}

.banner .swiper-pagination-bullet-active {
    color: #fff;
    background: url(../images/bannerbj.png);
    width: 3rem;
    height: 3rem;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 1rem;
    line-height: 3rem;

}

.banner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 1.8rem;
}

.banner .swiper-pagination-bullet:not(.swiper-pagination-bullet:last-of-type)::after {
    content: "• • •";
    position: absolute;
    right: -3rem;
    top: 0;
    color: #c9c9c9;
    font-size: 1rem;
    line-height: 0.8rem;
}

.banner .swiper-pagination-bullet-active::after {
    line-height: 2.8rem !important;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 2.8rem;
    left: 0;
    width: 100%;
}

/*banner ----end*/

/* ------------------新闻和公告----------------------------*/

.news_1{
background-image: url(../images/xinwenbj1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0.1rem 0;
}
.news_2{
background-image: url(../images/zhengcebj.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
 padding: 6rem 0;
}
.news_3{
background-image: url(../images/banshibj.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 2rem 0;
}
.white{ color: white;}
.white_60{ color:#e5e5e5c7 !important;}
.news {
    width: 82%;
    margin:0rem auto 0rem;
    display: flex;
    justify-content: space-between;
}

.section {
    width: 65%;
    padding: 2rem;
}

.section-title {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title span {
    
    font-weight: bold;
}

.more-link {
    font-size: 0.87rem;
    color: #a1a1a1;
    text-decoration: none;
}

/* 新闻动态样式 */
.news-slider {
    position: relative;

}

.news-image {
    width: 70%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.news-info {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background-color: #0068b7;
    color: white;
      padding: 2rem 1.5rem 5rem;
    display: flex;
    flex-direction: column;
   justify-content: space-around;
gap:1rem;
}

.news-date {
    font-size: 2rem;
   
    line-height: 1.4rem;
    color: #f3f3f3;
}

.news-month {
    font-size: 1.1rem;
}

.news-title {
  
    font-size: 1rem;
    flex-grow: 0;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 1.5;
     
}

.news-slider:hover .news-title,
.news-slider:hover .news-date,
.news-slider:hover .news-desc {
    color: #b4b4b4;

}

.news-desc {
    font-size: 0.9rem;
    
    color: #ebebebc7;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.5;
}

.swiper2 .swiper-slide {
    position: relative;
    padding-bottom: 49%;
    height: 0;
}

.swiper2.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {

    right: 0;
    left: auto;

}

.swiper2 .swiper-pagination {
    bottom: 2rem;
    width: 30%;
    right: 0;
    left: auto;

}

.swiper2 .swiper-pagination-bullet {
    width: 0.4rem;
    height: 0.4rem;
    display: inline-block;
    border-radius: 100%;
    background: #ffffff;
    opacity: 1;
}

.swiper2.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 1rem;
}

.swiper2 .swiper-pagination-bullet-active {
    opacity: 1;
    background: #f7f7f7;
    outline-color: white;
    outline-offset: 0.4rem;
    outline-style: solid;
    outline-width: 1px;
}
.swiper2 .swiper-slide.news-slider.swiper-slide-next {
    margin-left: 1px;
}
/* 通知公告样式 */
.tongzhi {
    width: 35%;
}

.announcement-list {
    border-top: 1px solid #d7eaf7;
}

.announcement-item {
    display: flex;
    padding: 0.9rem 0;
    border-bottom: 1px solid #d7eaf7;
    align-items: center;
}



.announcement-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.date-day {
    font-size: 1.52rem;
    font-weight: bold;
    color: #0068b7;
}

.date-month {
    font-size: 0.96rem;
    color: #858585;
}

.announcement-content {
    flex-grow: 1;
}

.announcement-title {
    border-left: 1px solid #d7eaf7;
    padding-left: 1rem;
text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.announcement-title a {
    font-size: 0.96rem;
    color: #141414;
    line-height: 1.6rem;
}

.announcement-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}


.announcement-title a:hover {
    color: #0068b7;
}

/***-------------------------*新闻end**/

/***--------3.政策法规服务指南----**/
.zhengcefagui,
.fuwwzhence {
    width: 50%;
    padding:0 2rem;
}


/* 3.1 */

.zhengcefagui .zcfg-item {
    display: flex;
    padding: 0.9rem 0;
    background: #e5f3ff;
    align-items: center;
    margin-bottom: 0.82rem;
}


.zhengcefagui .zcfg-item:hover {
background: #ffffff;
     
}

.zhengcefagui .zcfg-item:hover .zcfg-title a,
.zhengcefagui .zcfg-item:hover .date-month {
    color:  #0068b7;
}

.zhengcefagui .zcfg-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.zhengcefagui .date-day {
    font-size: 1.55rem;
    font-weight: bold;
    color: #0068b7;
}

.zhengcefagui .date-month {
    font-size: 0.9rem;
    color: #878787;
}

.zhengcefagui .zcfg-content {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;padding-right: 1rem;
}

.zhengcefagui .zcfg-title {

    padding-left: 1rem;
   
}

.zhengcefagui .zcfg-title a {
    font-size: 0.96rem;
    color: #141414;
    line-height: 1.6rem;  
  text-overflow: ellipsis;
    word-break: keep-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    white-space: normal;
}

.zhengcefagui .zcfg-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}


/* 3.2 */


.fuwwzhence .fuzn-item {
    display: flex;
    padding: 0.9rem 0;
    margin-bottom: 0.82rem;
    align-items: center;
}



.fuwwzhence .fuzn-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.fuwwzhence .date-day {
    font-size: 1.55rem;
    font-weight: bold;
    color: #0068b7;
}

.fuwwzhence .date-month {
    font-size: 0.9rem;
    color: #878787;
}

.fuwwzhence .fuzn-content {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fuwwzhence .fuzn-title {

    padding-left: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fuwwzhence .fuzn-title a {
    font-size: 0.96rem;
    color: #141414;
    line-height: 1.6rem;
}

.fuwwzhence .fuzn-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.fuwwzhence .date-month .rqbj {
    background-image: url(../images/rqbj.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 1rem;
    display: inline-block;
    height: 0.8rem;
    margin-right: 0.85rem;
}

.fuzn-list {
    background: #c4dff5;
    padding: 0 1rem;
}
.fuwwzhence .fuzn-item:hover{
    background: white;
}

.fuwwzhence .fuzn-item:hover .fuzn-title a,
.fuwwzhence .fuzn-item:hover .date-month {
    color: #0068b7;
}

/***-------------------------*政策法规服务指南end**/

/**----4.办事流程下载专区---**/

.banshiliuchen,
.xiazaizhuanqu {
    width: 50%;
    padding:0 2rem;
display:none;
}

.sanjiao {
    width: 0px;
    height: 0px;
    border-top: 1.12rem solid #ffffff;
    border-left: 1.95rem solid #ffffff00;
    right: -1px;
    position: absolute;
    top: -1px;
}
.sanjiao1 {
    width: 0px;
    height: 0px;
    border-top: 1.12rem solid #b3dcff;
    border-left: 1.95rem solid #ffffff00;
 position: absolute;
  
    transform: scale(0.7);
      transform: translate(-1.9rem, -1.05rem) scale(0.7);
}
.xiantiao {
    width: 0px;
    height: 2.2rem;
    border-left: 1px solid #0068b7;
    right: 0.88rem;
    position: absolute;
    top: -0.6rem;
    transform: rotate(119deg);
}

/* 4.1 */
.banshiliuchen-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2.5rem;
}

.banshiliuchen .banshiliuchen-item {
    display: flex;
    flex-wrap: wrap;
    padding: 0.9rem 1.7rem;
    border: 1px solid #0068b7;
    align-items: center;
    margin-bottom: 1.3rem;
    width: 48.5%;
    gap: 0.3rem;
    position: relative;
}


.banshiliuchen .banshiliuchen-item:hover {

    background: #0068b7;
}
.banshiliuchen .banshiliuchen-item:hover .sanjiao{
border-top: 1.12rem solid #b3dcff;
}


.banshiliuchen .banshiliuchen-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.banshiliuchen .date-day {
    font-size: 1.55rem;
    font-weight: bold;
    color: #0068b7;
}

.banshiliuchen .date-month {
    font-size: 0.9rem;
    color: #0068b7;
}

.banshiliuchen .banshiliuchen-content {
    flex-grow: 1;
    padding-bottom: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.banshiliuchen .banshiliuchen-title {

    border-top: 1px solid #a0cdf4;
    padding-top: 0.5rem;
   
}

.banshiliuchen .banshiliuchen-title a {
    font-size: 0.96rem;
    color: #141414;
    line-height: 1.6rem;
text-overflow: ellipsis;
    word-break: keep-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    white-space: normal;
}

.banshiliuchen .banshiliuchen-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.banshiliuchen .banshiliuchen-item:hover .banshiliuchen-title a,
.banshiliuchen .banshiliuchen-item:hover .date-month {
    color: #ffffff;
}

/* 4.2 */


.xiazaizhuanqu .xiazaizhuanqu-item {
    display: flex;
    padding: 0.9rem;
    margin-bottom: 0.82rem;
    align-items: center;
}



.xiazaizhuanqu .xiazaizhuanqu-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 0.85rem;
    flex-shrink: 0;
}

.xiazaizhuanqu .date-day {
    font-size: 1.55rem;
    font-weight: bold;
    color: #0068b7;
}

.xiazaizhuanqu .date-month {
    font-size: 0.9rem;
    color: #212121;
}

.xiazaizhuanqu .xiazaizhuanqu-content {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xiazaizhuanqu .xiazaizhuanqu-title {


    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xiazaizhuanqu .xiazaizhuanqu-title a {
    font-size: 0.96rem;
    color: #141414;
    line-height: 1.6rem;
}

.xiazaizhuanqu .xiazaizhuanqu-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.xiazaizhuanqu .date-month .rqbj {
    background-image: url(../images/chuizi.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 1.5rem;
    display: inline-block;
    height: 1.5rem;
    background-size: 100%;
}
.xiazaizhuanqu .xiazaizhuanqu-item:hover{background: #0068b7;}
.xiazaizhuanqu .xiazaizhuanqu-item:hover .xiazaizhuanqu-title a,
.xiazaizhuanqu .xiazaizhuanqu-item:hover .date-month {
    color: white;
}
.xiazaizhuanqu .xiazaizhuanqu-item:hover .date-month .rqbj{
background-image: url(../images/chuizi1.png);
}

/**----办事流程下载专区-end--**/


/**----友情链接--**/
.youqinglianjie {
    justify-content: flex-end;
    margin-bottom: 0.5rem;
    margin-top:0.5rem;
}

.youqinglianjie .section-title {
    width: 50%;
    justify-content: space-between;
}

.youqinglianjie .section-title span {
    transform: translateX(-50%);

}

.youqinglianjie .more-link {
    margin-right: 2rem;
}

.swiper3 {
    width: 82%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    padding: 0 3.1rem;
}

.swiper3 .swiper-slide {

    text-align: center;
    font-size: 0.96rem;
    background: #e5f3ff;
    height: 3.33rem;
    text-align: center;
    line-height: 3.3rem;
}

.swiper3 .swiper-button-next {
    position: absolute;
    right: 0;
    top: 50%;
    width: 2.5rem;
    height: 2.5rem;
    margin-top: -1.25rem;
    background-image: url(../images/next.png);
    background-size: contain;
}

.swiper3 .swiper-button-prev {
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.5rem;
    height: 2.5rem;
    margin-top: -1.25rem;
    background-image: url(../images/prev.png);
    background-size: contain;
}
.swiper3 .swiper-slide a{color:#333333;}
.swiper3 .swiper-slide:hover a{color:white;}
.swiper3 .swiper-slide:hover{
background:#0878cd;
}
/**底部**/
footer {
    background: #0068b7;
    color: #fff;

}

.footern1 {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    padding-top: 4.2rem;
}

footer .footer-logo {
    display: flex;
    align-items: center;
}

footer .footer-logo div {
    font-size: 1.85rem;
    font-weight: 900;
    margin-left: 2.1rem;
}

footer .footer-logo img {
    width: clamp(188px, 71%, 530px);
}

footer .footer-text p {
    padding: 0.2rem 0;
    font-size: 0.96rem;
    color: #ebebeb;
}

footer .footer-text p a {
    color: #fff;
}

footer .banquanbeian {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    font-size: 0.8rem;
    color: #ebebeb;
    padding: 2.3rem 0;
}

footer .banquanbeian .banquan,
footer .banquanbeian .beian {
    display: flex;
    align-items: center;
}

footer .banquanbeian img {
    width: clamp(15px, 100%, 24px);
    margin-right: 0.6rem;
}

footer .iconfont {
    font-size: 1.4rem;
    margin-right: 0.5rem;
}

/* ------------------首页样式 end----------------------------*/


/* ------------------列表页start----------------------------*/

.list {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.list .headerw1 {

    position: absolute;
    z-index: 10;
    width: 100%;
    top: 0;
    background: #0068b7;
}

.list .header {
    display: flex;
    padding: 0rem 0px;
    color: #fff;
    width: 100%;
    margin: auto;
    flex-wrap: wrap;
}

.list .pc_nav li a {
    color: #000;
}

.list .header-right {
    display: flex;
    gap: 10px;
    width: 100%;
    background: white;
}

.list .header-left {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0.8rem 10%;
}

.list .lianjie {
    COLOR: #e7e7e76b;
    margin-left: auto;

}

.list .pc_nav {
    width: 100%;
}

.list .pc_nav ul {

    display: flex;
    justify-content: space-around;
    align-items: center;
}

.list .lianjie .btn .iconfont {
    font-size: 1.3rem;
    color: white;
}

.list .lianjie .btn {
    text-decoration: none;
    padding: 0.8rem;
    margin: 0rem;
    font-size: 0.85rem;
    border-radius: 50%;
    transition: background-color 0.3s;
    border: 1px solid #bdbdbd;
}

.list .header_yd {
    margin: auto;
    display: none;
    position:absolute;
    z-index: 9;
    width: 100%;
    top: 0;
    background: #0068b7;
}

.list .list_banner {
    margin-top: 9.2rem;
    overflow: hidden;
    height: 21vw;
}

.list .list_banner img {
    width: 100%;

    object-fit: cover;
    height: 100%;
}


.list .liebiao {

    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 10rem;

}

.list .liebiao_left {

    width: 15%;
    margin-top: -4rem;

}

.list .erjilanmu {
    background: #0068b7;
    padding: 1.5rem 0rem;
    font-size: 1.1rem;
    color: white;
    font-weight: 900;
    text-align: center;
}

.erjidaohang {
    background: #d7eaf7;
    padding: 1.5rem 0;
}

.list .liebiao_left .erjidaohang ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
}

.list .liebiao_left .erjidaohang ul a {
    color: #0068b7;
    font-size: 1rem;
    text-align: center;
    padding: 0.6rem 3rem;
    border-radius: 17px;
}

.list .liebiao_left .erjidaohang ul li:hover a {
    background: #0068b7;
    color: white;
}

.list .liebiao_right {

    width: 80%;
}

.list .liebiao_right .dangqianweizhi {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
}

.list .liebiao_right .dangqianlanmu {
    font-size: 1.42rem;
    font-weight: 900;
    color: #0068b7;
}

.list .liebiao_right .weizhi a {
    color: #000000;
    font-size: 1.05rem;

}

.list .liebiao_right .weizhi span {
    background-image: url(../images/weizhi.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    width: 2rem;
    display: inline-block;
    height: 2rem;
    vertical-align: middle;
}

.list .liebiao_right .wenzhangleibiao ul {
    list-style: none;
    list-style: square;
    color: #b1b1b1;
    padding: 0 1rem;
}

.list .liebiao_right .wenzhangleibiao ul a {
    display: flex;
    justify-content: space-between;
    color: #3b3b3b;
    font-size: 1.05rem;
    border-bottom: 1px dashed #afafaf;
    padding: 0.7rem 0;
}

.list .liebiao_right .wenzhangleibiao ul a span {
    color: #979797;
}

.list .liebiao_right .wenzhangleibiao ul a:hover,
.list .liebiao_right .wenzhangleibiao ul a:hover span {
    color: #0068b7;
}
.list .liebiao_right .wenzhangleibiao ul a p{
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
/* ------------------列表页end----------------------------*/

/* ------------------内容页----------------------------*/


.list .wenzhang_title div {
    text-align: center;
}

.list .wenzhang_title .t1 {
    color: #0068b7;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
}

.list .wenzhang_title .t2 {
    color: #6f6f6f;
    font-size: 0.96rem;
}

.list .wenzhang_title {
    border-bottom: 1px solid #cbcbcb;
    padding: 1rem 0rem;
}

.list .wenzhang_zhengwen {
    padding: 2.5rem 0rem;
    font-size: 1rem;
    text-indent: 2rem;
    line-height: 2rem;
}
.list .wenzhang_title .t2  span{padding:0 0.6rem;}
/* ------------------内容页end----------------------------*/
/* ------------------响应式设计----------------------------*/
@media (min-width: 1801px) {
    html {
        font-size: 18px;
    }
}

@media (max-width: 1800px) {
    html {
        font-size: 17px;
    }
}

@media (max-width: 1700px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 1600px) {
    html {
        font-size: 13px;
    }
}

@media (max-width: 1300px) {
    html {
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    html {
        font-size: 12px;
    }

    .department {
        font-size: 1.5rem;
    }

    .pc_nav li a {
        padding: 0.5rem 0.6rem;
    }

    .pc_nav li a:not(.dropdown-content a)::before {
        right: 0.7rem;
    }
}

/*--------------------手机端1000-----------------------------*/
@media (max-width: 1000px) {
    html {
        font-size: 12px;
    }

    .container {
        width: 100%;
    }

    .headerw1 {
        display: none;
    }

    .header {
        flex-wrap: wrap;
        background: #054387;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        align-content: flex-start;
        gap: 1.5rem;
        z-index: 88;


    }


    .header-left {
        width:85%;
    }

    .header-right {
        width: 100%;
        gap: 2rem
    }

    .lianjie {
        display: none;
    }

    .pc_nav {
        width: 100%;
    }

    .pc_nav ul {
        display: flex;

        flex-direction: column;
        width: 100%;
    }

    .pc_nav li {
        border-bottom: 1px solid #526c95;
    }

    .pc_nav .dropdown:hover .dropdown-content {
        display: none;
    }

    .pc_nav .dropdown-content {
        position: relative;
        width: 100%;
        background-color: #023061;
    }

    .pc_nav .dropdown-content a {
        text-align: left;
        color: #dfdfdf;
    }

    .burger {
        display: block;
    }

    .header_yd {
        display: block;
    }

    .banner .swiper-slide {
        height: 35vh;

    }
.news_2{    background-size: 308% 113%;}
.news_3{    background-size: cover;}

    .news {
        flex-wrap: wrap;
    }

    .section {
        width: 100%;
        padding: 1rem 0.3rem;
    }

    .tongzhi {
        width: 100%;
    }
.section-title{    margin-bottom: 1.2rem;}
    .zhengcefagui,
    .fuwwzhence {
        width: 100%;
        padding: 1rem 0.5rem;
    }

    .banshiliuchen,
    .xiazaizhuanqu {
        width: 100%;
        padding: 1rem 0.5rem;
    }

    .youqinglianjie .section-title {
        width: 98%;
    }

    .youqinglianjie .section-title span {
        transform: translateX(0);
    }

    .footern1 {
        width: 100%;
        align-items: center;
        flex-direction: column;
        gap: 2rem;
    }

    footer .footer-logo div {
        font-size: 1rem;
        font-weight: 900;
        margin-left: 1rem;
    }

    footer .banquanbeian {
        flex-direction: column;
        gap: 1rem;
        padding: 1.3rem 0
    }

    /**列表页**/
    .list {
        position: relative;
    }

    .list .header_yd {
        display: block;
    }

    .list .header-right {
        background: none;
    }

    .list .pc_nav ul {
        align-items: stretch;
    }

    .list .pc_nav li a {
        color: #efefef;
    }

    .list .list_banner {
        margin-top: 5.8rem;
        overflow: hidden;
        height: 23vw;
    }

    .list .liebiao_left {
        display: none;
    }
.list .liebiao_right {
        width: 100%;
    }
}

/*--------------------750-----------------------------*/
@media (max-width: 750px) {
    html {
        font-size: 13px;
    }

    .logo {
        margin-right: 0.5rem;
    }

    .department {
        font-size: 1rem;
        padding-left: 0.5rem;
    }

   

    .news {
        width: 100%;
    }

    .swiper2 .swiper-slide {
        padding-bottom: 60%;
    }

    .swiper2 .swiper-pagination {
        width: 100%;
    }

    .news-info {
        padding: 1.5rem 1rem;
        overflow: hidden;
    }

    .news-desc {
        display: none;
    }

    .news-title {
        font-size: 1rem;
        flex-grow: 0;
        text-overflow: ellipsis;
        word-break: break-all;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
        line-height: 1.5;
        margin-bottom: 1rem
    }

    .list .header-left {
        padding: 0.8rem 0;width:86%;
    }

    .list .list_banner {
        height: 30vw;
        margin-top: 4.4rem;
    }

    .list .liebiao_right .dangqianweizhi {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .list .liebiao {
        width: 90%;
    }

    .list .liebiao_right {
        width: 100%;
    }

    .list .liebiao_right .wenzhangleibiao ul a p {
        width: 70%;
    }

    .list .liebiao_right .wenzhangleibiao ul a span {
        width:30%;
    }

}

/*--------------------350-----------------------------*/
@media screen and (max-width: 350px) {}