* {
    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 5s;
}
.swiper2 img {
    transition: all 1s;
}

.banner img:hover,
.swiper2 img:hover {

    transform: scale(1.2);
}

/* 特效end */
.container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    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:45%;
}

.header-left h1 {

    font-size: 1.3rem;
    padding-left: 0.5rem;
}

.logo {
    width: clamp(200px, 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: 55%;
}

.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: 4px 16px;
    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-slide {
    text-align: center;
    font-size: 18px;
    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: 40vh;
    overflow: hidden;
}
.banner .swiper-slide a{height: 100%; width: 100%;}
.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: 4rem;
    height: 4rem;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 1rem;
    line-height: 4rem;

}

.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: 3.6rem !important;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets,
.banner .swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 3rem;
    left: 60%;
    width: auto;

}

/*banner ----end*/

/* ----------------------------------------------*/
.news {
    width: 80%;
    margin: 0.5rem auto;
    display: flex;
    justify-content: space-between;
}

.section {
    width: 50%;
    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-family: "微软雅黑";
    font-weight: bold;
}

.more-link {
    font-size: 0.87rem;
    color: #a1a1a1;
    text-decoration: none;
}




/* 意向公开 */


.announcement-item {
    display: flex;
    gap: 1.2rem;

    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: 2.15rem;
    font-weight: bold;
    color: #0068b7;
}

.date-month {
    font-size: 0.92rem;
    color: #858585;
}

.announcement-content {
    flex-grow: 1;
    position: relative;
}

.announcement-title {
    border-left: 1px solid #a0cdf4;

    padding: 2rem 2rem;
}

.announcement-title::before {
    content: "";
    display: block;
    width: 0.35rem;
    height: 0.35rem;
    background-color: #0a6bb8;
    border-radius: 50%;
    margin-left: -2.2rem;
    top: 50%;
    position: absolute;
}

/*去掉意向公开边框的一半*/
.announcement-item:first-of-type .announcement-title::after {
    content: "";
    display: block;
    width: 1px;
    height: 50%;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
}

.announcement-item:first-of-type:hover .announcement-title::after {
    top: -0.3rem;

}

.announcement-item:last-of-type .announcement-title::after {
    content: "";
    display: block;
    width: 1px;
    height: 50%;
    background-color: #ffffff;
    position: absolute;
    left: 0px;
    bottom: -0.35rem;


}

.announcement-item:last-of-type:hover .announcement-title::after {
    bottom: -0.65rem;

}

/*去掉单一来源公开边框的一半*/
.announcement2-item:first-child::after {
    content: "";
    display: block;
    width: 1px;
    height: 1rem;
    background-color: #ffffff;
    position: absolute;
    left: -1px;
    top: 0px;
}

.announcement2-item:last-child::after {
    content: "";
    display: block;
    width: 1px;
    height: 4.55rem;
    background-color: #ffffff;
    position: absolute;
    left: -1px;
    bottom: 0px;
}



.announcement-title a {
    font-size: 1.05rem;
    color: #141414;
    line-height: 1.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.announcement-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.announcement-title:hover a {
    color: #ffffff;
    font-weight: bold;
    font-size: 1rem;
}

.announcement-title:hover {

    background: #0068b7;
}

.announcement-title:hover::before {
    background-color: #a0cdf4;
    outline: 0.3rem solid #0068b7;
}

/***-------------------------*end**/
/***--------2.2单一来源公示---**/
.announcement2-list {
    padding: 0 2.5rem;
    position: relative;
}

.announcement2-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
}



.announcement2-date {
    background: #d1e9fd;
    padding: 0.3rem 1rem;
}

.announcement2-date::before {
    content: "";
    position: absolute;
    left: 1.5rem;
    top: 1.2rem;
    border-right: 0.6rem solid #d1e9fd;
    border-bottom: 0.3rem solid #ffffff00;
    border-top: 0.3rem solid #ffffff00;
}

.announcement2-item:hover .announcement2-date::before {
    border-right: 0.6rem solid #0068b7;

}

.date-month2 {
    font-size: 0.9rem;
    color: #0a6bb8;
}

.announcement2-content {
    flex-grow: 1;
    position: relative;
}

.announcement2-item {
    border-left: 1px solid #a0cdf4;
    padding: 0.5rem 0rem 0.5rem 2rem;
    
}

.announcement2-item::before {
    content: "";
    display: block;
    width: 0.35rem;
    height: 0.35rem;
    background-color: #a0cdf4;
    outline: 0.3rem solid #0068b7;
    border-radius: 50%;
    margin-left: -2.2rem;
    position: absolute;
    margin-top: 0.8rem;
}

.announcement2-title a {
    font-size: 1.05rem;
    color: #141414;
    line-height: 1.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.announcement2-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.announcement2-item:hover .date-month2 {
    color: #ffffff;
}

.announcement2-item:hover .announcement2-date {

    background: #0068b7;
}

.announcement2-item:hover .announcement2-title a {
    color: #0068b7;
    font-weight: bold;
    font-size: 1rem;
}

.announcement2-item:hover::before {
    background-color: #0068b7;
    outline: 0.3rem solid #a0cdf4;
    ;
}

/***------------单一来源公示end-------------**/





/***--------3----**/
.zhengcefagui,
.fuwwzhence {
    width: 50%;
    padding: 2rem;
}


/* 3.1 */

.zhengcefagui .zcfg-item {
    display: flex;
    padding: 0.9rem 0;
    background: #e5f3ff;
    align-items: center;
    margin-bottom: 0.82rem;
    gap: 1rem;
}


.zhengcefagui .zcfg-item:hover {

    background: #0068b7;
}

.zhengcefagui .zcfg-item:hover .zcfg-title a {

    color: #ffffff;
    font-weight: 900;
    font-size: 1.02rem;

}

.zhengcefagui .zcfg-item:hover .date-month {
    color: #ffffff;
}

.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: 1.02rem;
    color: #838383;
}

.zhengcefagui .zcfg-content {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zhengcefagui .zcfg-title {

    padding-left: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zhengcefagui .zcfg-title a {
    font-size: 1.05rem;
    color: #141414;
    line-height: 1.6rem;    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.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: 1.02rem;
    color: #818181;
}

.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: 1.05rem;
    color: #141414;
    line-height: 1.6rem;    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.fuwwzhence .fuzn-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.fuwwzhence .date-month .rqbj {
    background-image: url(../images/rqbj21.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 1rem;
    display: inline-block;
    height: 0.8rem;
    margin-right: 0.85rem;
}

.fuwwzhence .fuzn-item:hover .date-month .rqbj {
    background-image: url(../images/rqbj22.png);
}

.fuwwzhence .fuzn-item:hover .fuzn-title a {
    color: #146eba;
    font-size: 1.03rem;
    font-weight: 900;
}

.fuwwzhence .fuzn-item:hover .date-month {
    color: #146eba;

}

/***-------------------------*政策法规服务指南end**/

/**----4.办事流程下载专区---**/

.banshiliuchen,
.xiazaizhuanqu {
    width: 50%;
    padding: 2rem;
}

.sanjiao {
    width: 0px;
    height: 0px;
    border-top: 1.12rem solid #ffffff;
    border-left: 1.95rem solid #ffffff00;
    right: -1px;
    position: absolute;
    top: -1px;
}

.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-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: 1.06rem;
    color: #0068b7;
    font-weight: 900;
}

.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;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.banshiliuchen .banshiliuchen-title a {
    font-size: 1.05rem;
    color: #141414;
    line-height: 1.6rem;    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.banshiliuchen .banshiliuchen-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.banshiliuchen .banshiliuchen-item:hover .banshiliuchen-title a {
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: bold;
}

.banshiliuchen .banshiliuchen-item:hover .date-month {
    color: #ffffff;
}

/* 4.2 */


.xiazaizhuanqu .xiazaizhuanqu-item {
    display: flex;
    padding: 0.9rem 0;
    margin-bottom: 0.82rem;
    align-items: baseline;
    gap: 1.3rem;
}



.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: 1.02rem;
    color: #7d7d7d;
}

.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: 1.05rem;
    color: #000000; line-height: 1.6rem;   overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.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.33rem;
    display: inline-block;
    height: 1.275rem;
    background-size: 100%;
    vertical-align: middle;
    margin-right: 0.6rem;
}

.xiazaizhuanqu .xiazaizhuanqu-item:hover .xiazaizhuanqu-title a {
    color: #0068b7;
    font-size: 1.02rem;
    font-weight: 900;
}

.xiazaizhuanqu .xiazaizhuanqu-item:hover .date-month {
    color: #0068b7;
}


/**----办事流程下载专区-end--**/

.yuanquan {
    width: 14rem;
    height: 14rem;


    border-radius: 50%;
    background: #0068b7;
    font-size: 1rem;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    outline: 2px #0068b7;
    outline-offset: 0.5rem;
    outline-style: dotted;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(50%);
}

.yuanquan a {
    color: white;
    width: 1rem;
    font-size: 1.5rem;
    font-weight: 900;
    transform: translateX(-300%);
}


/**底部**/
footer {
    background: #0068b7;
    color: #fff;

}

.footern1 {
    width: 80%;
    margin: auto;
    display: flex;
}

/**底部**/
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: #146eba;
}

.list .pc_nav .dropdown-content a {
    color: #146eba;

}

.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: 74%;
    margin: auto;
}

.list .pc_nav ul {

    display: flex;
    justify-content: space-around;
    align-items: center;
}


.list .pc_nav li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    margin-top: 5px;
    background: #146eba;
    transition: width .3s;
}

.list .pc_nav li a:hover::after {
    width: 100%;
}

.list .pc_nav .dropdown-content {
    display: none;
    position: absolute;
    background-color: #d1e9fd;
    width: 110%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 17px 0px;
    text-align: center;
}

.list .pc_nav .dropdown-content a {
    display: inline-block;
}

.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;
}

.list .list_banner img {
    width: 100%;
    max-height: 21rem;
    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;
    align-items: center;
}
.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;
}
.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;
}

/* ------------------列表页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 .t2 span {
    margin-right: 1.5rem;
}

.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;
}

/* ------------------内容页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 1rem;
    }

    .pc_nav li a:not(.dropdown-content a)::before {
        right: 0.1rem;
    }
}

/*--------------------手机端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;


    }
.banner .swiper-slide{height:35vh;}

    .header-left {
        width: 86%;
    }

    .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-container .swiper-slide {

        object-fit: cover;
        height: 50vw;
    }

    /**列表页**/
    .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;
    }

    .list .pc_nav .dropdown-content {
        position: relative;
        width: 100%;
        background-color: #023267;
    }

    .list .pc_nav .dropdown-content a {
        display: block;
    }

    .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;
    }

    .list .list_banner {
        margin-top: 4.8rem;height: 35vw;
    }

    .banner .swiper-container .swiper-slide {

        object-fit: cover;
        height: 60vw;
    }

    .banner .swiper-container-horizontal>.swiper-pagination-bullets,
    .banner .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: 2rem;
        left: 0;
        width: 100%;
        transform: scale(0.7);
    }

    .news {
        width: 100%;
        flex-direction: column;
    }

    .section {
        width: 100%;
    }

    .zhengcefagui,
    .fuwwzhence {
        width: 100%;

    }

    .banshiliuchen,
    .xiazaizhuanqu {
        width: 100%;
        padding: 2rem;
    }

    .yuanquan {
        width: 5rem;
        height: 8rem;
        border-radius: 0;
    }

    .yuanquan a {
        font-size: 1rem;
        transform: translateX(-120%);
    }

    .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 .header-left {
        padding: 0.8rem 0;width:86%;
    }

    .list .liebiao {
        width: 90%;
    }

    .list .liebiao_right {
        width: 100%;
    }

    .list .liebiao_right .dangqianweizhi {
        flex-direction: column-reverse;
        gap: 1rem;
    }


    .list .wenzhangleibiao li a p {
        width: 70%;
    }

    .list .wenzhangleibiao li a span {
        width: 27%;
    }

}





/*--------------------350-----------------------------*/
@media screen and (max-width: 350px) {}