* {
    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,
.announcement-img img {
    transition: all 1s;
}

.banner img:hover,
.swiper2 img:hover {

    transform: scale(1.2);
}

.announcement-img img:hover {
    transform: scale(1.2);
}
.jianbian{background-image: linear-gradient(72deg, #ff8f17 31%, #ffffff 34%, #003e92 37%);
    -webkit-background-clip: text;
    color: transparent !important;
    display: inline-block;}
/* 特效end */
.container {
    width: 100%;
    margin: 0 auto;

    min-width: 320px;
    overflow: hidden;
    position: relative;

}

.top_line {
    width: 100%;
    height: 0.4rem;
    background-color: #0066cc;
    margin-bottom: 0.2rem;
}

/* 顶部导航栏 */

.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: 88%;
    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(151px, 95%, 494px);

    margin-right: 1.5rem;
}

.department {
    font-size: 1.89rem;
    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.8rem;
    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: 0.2rem;
    font-size: 0.8rem;
    line-height: 2rem;
    color: #ffffffcf;
}

.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;
}
.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: 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:1.8rem;
    left: 60%;
    width: auto;
}

/*banner ----end*/

/* ------------------新闻和公告----------------------------*/
.news {
    width: 82%;
    margin: 1rem auto;
    display: flex;
    justify-content: space-between;
}

.news-warp {
    flex-wrap: wrap;
}

.section {
    width: 50%;
    padding: 0.2rem 1.5rem;
}

.section-title {
    font-size: 1.7rem;
    color: #000000;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title-mddle {
    justify-content: center;
    width: 100%;
    position: relative;
}

.title1 {
    display: flex;
    align-items: center;
}

.title1_1 {
    font-size: 5rem;
    font-family: fangsong;
    color: #4076d5;
}

.section-title .title3 {

    font-weight: bold;
}

.section-title .title3 span {
    color: #023f94;
}

.section-title .title3 .white {
    color: #ffffff;
}

.title4 {
    font-size: 1.5rem;
    color: #4076d5;
    line-height: 1.5rem;
    font-family: fangsong;
}

.title4 img {
    vertical-align: middle;
}

.more-link {
    font-size: 0.87rem;
    color: #0061ae;
    text-decoration: none;
    border-bottom: 4px double #aecbe1;
    padding: 0.4rem 1px;

}

.more-link:hover {
    color: #ffa443;
    border-bottom: 4px double #ffd68c;
}

.more-right {
    position: absolute;
    right: 0;
}

/* 新闻动态样式 */
.news-slider {
    position: relative;

}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.news-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 93%;
    height: 22%;
    background-color: #0068b7;
    color: white;
    padding: 0rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}


.news-month {
    font-size: 1.05rem;
}

.news-title {
    font-size: 1.1rem;
    flex-grow: 0;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    line-height: 1.5;
    font-weight: 900;

}

.news-slider:hover .news-title,
.news-slider:hover .news-date,
.news-slider:hover .news-desc {
    color: #b4b4b4;

}

.news-desc {
    font-size: 0.9rem;
    line-height: 2rem;
    margin-bottom: 4rem;
    color: #ebebebc7;
}

.swiper2 .swiper-slide {
    position: relative;
    padding-bottom:48%;
    height: 0;
}

.swiper2.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {

    right: 0;
    left: auto;

}

.swiper2 .swiper-pagination {
    width: 100%;


}

.swiper2 .swiper-pagination-bullet {
    width: 0.4rem;
    height: 0.4rem;
    display: inline-block;
    border-radius: 100%;
    background: #ffffff;
    opacity: 1;
}

.swiper2 .swiper-slide.news-slider.swiper-slide-next {
    margin-left: 1px;
}

.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-button-prev,
.swiper2 .swiper-button-next {

    background-color: #e3f2ff;
    width: 7%;
    height: 9%;
    background-size: 2rem 2rem;
    bottom: 0;
    top: auto;
    transform: rotate(90deg);
    right: 0;
}

.swiper2 .swiper-button-prev:hover,
.swiper2 .swiper-button-next:hover {

    background-color: #ffa443;
}

.swiper2 .swiper-button-prev {
    left: auto;

    bottom: 3rem;
}



.announcement-list {
    background: #f0f9ff;
}

.announcement-item {
    display: flex;
    padding: 0.6rem 1rem;
min-height: 66px;
    align-items: center;
}

.announcement-item:not(:last-child) {
    border-bottom: 1px solid #9ac7ea;
}


.announcement-date {
    display: flex;
    justify-content: flex-start;
}

.date-day {
    font-size: 1.52rem;
    font-weight: bold;
    color: #0068b7;
}

.date-month {
    font-size: 0.9rem;
    color: #00000087
}

.announcement-content {
    width: 80%;

}

.announcement-img {
    width: 20%;
    overflow: hidden;
    color: #636363;
    position: relative;
}

.announcement-list :hover .announcement-img{
color: white;}

.announcement-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.announcement-title a {
    font-size: 1rem;
    color: #141414;
    line-height: 1.5;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.announcement-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}




.announcement-item:hover .announcement-title a {
    color: #ffffff;
    /* 可替换为目标颜色值 */
}

.announcement-item:hover .date-month {
    color: #d6d6d6;
}

.announcement-item:hover {
    background: #346bc8;
}

/***-------------------------*新闻end**/



/***----------3.1--------------**/
.banshiliuchen3-1 {
    width: 98%;
    margin: auto;
}

.banshiliuchen3-1-list {
    display: flex;
    gap: 2.5rem;
    flex-wrap: nowrap;
    margin-top: 2.5rem;
    align-items: flex-start;
}

.banshiliuchen3-1 .banshiliuchen3-1-item {
    display: flex;
    flex-wrap: wrap;
    padding: 2.25rem 1.5rem;
    background-color: #def1ff;
    align-items: center;
    gap: 0.3rem;
    position: relative;
}

.banshiliuchen3-1-item:nth-child(even) {
    margin-top: 5rem;

}

.banshiliuchen3-1 .banshiliuchen3-1-item:hover {

    background: #ffa443;
}
.banshiliuchen3-1 .banshiliuchen3-1-item:hover .banshiliuchen3-1-title a , 

.banshiliuchen3-1 .banshiliuchen3-1-item:hover .date-day,
.banshiliuchen3-1 .banshiliuchen3-1-item:hover .date-month{

    color:white;
}
.banshiliuchen3-1 .banshiliuchen3-1-item:hover .banshiliuchen3-1-desc{color: #ffffffad;}

.banshiliuchen3-1 .banshiliuchen3-1-date {
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

.banshiliuchen3-1 .date-day {
    font-size: 1.4rem;
    font-weight: bold;
    color: #023f94;
}

.banshiliuchen3-1 .date-month {
    font-size: 0.9rem;
    color: #0068b7;
}

.banshiliuchen3-1 .banshiliuchen3-1-content {
    flex-grow: 1;

    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    background-image: url(../images/btbj2.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto;
    padding-top: 2rem;
}

.banshiliuchen3-1 .banshiliuchen3-1-title {

    padding-bottom: 1rem;
}

.banshiliuchen3-1 .banshiliuchen3-1-title a {
    font-size: 1rem;
    color: #141414;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.banshiliuchen3-1 .banshiliuchen3-1-desc {
    font-size: 0.88rem;
    color: #757575;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}



.n1 {
    background-image: url(../images/n1bj.jpg);
    overflow: hidden;
    background-size: cover;background-position: center;
    padding-bottom: 1rem;

}

.n2 {
    background-image: url(../images/n2bj.png);
    overflow: hidden;
    background-size: 100% 100%;
    margin-top: -1.45rem;

    background-repeat: no-repeat;
    padding-bottom: 4rem;
    background-position: center;
    z-index: 2;
    position: relative;

}

.n3 {
    background-image: url(../images/n3bj.jpg);
    overflow: hidden;
    background-size: 100% 100%;


    background-repeat: no-repeat;
    padding-bottom: 4rem;
    background-position: center;

}

.n4 {
    background-image: url(../images/n4bj.png);
    overflow: hidden;
    background-size: 100% 100%;
    margin-top: -1.5rem;

    background-repeat: no-repeat;

    background-position: center;

}

/***-------- ----**/

/***--------4.政策法规服务指南----**/
.zhengcefagui,
.fuwwzhence {
    width: 50%;
    padding:0 2rem;
}


/* 4.1 */

.zhengcefagui .zcfg-item {
    display: flex;
    padding: 0.5rem 1rem;
    border-top: 1px solid #e5e5e5;
    align-items: center;
    position: relative;
}




.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: 2rem;
    font-weight: bold;
    color: #1050bd;
}

.zhengcefagui .date-month {
    font-size: 1.05rem;
    color: #1050bd;
}

.zhengcefagui .zcfg-content {
    flex-grow: 1;width: 100%;
    overflow: hidden;

}

.zhengcefagui .zcfg-title {

    padding-left: 1rem;

}

.zhengcefagui .zcfg-title a {
    font-size: 1rem;
    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-1-desc {
    font-size: 0.9rem;
    color: #a5a5a5;
    padding-left: 1rem;
    padding-top: 0.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-content::before {
    content: "";
    width: 1px;
    height: 2rem;
    background-color: #0068b7;

    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.zhengcefagui.zc1 .zcfg-item:hover{

    background: #ffa443;
}
.zhengcefagui.zc1 .zcfg-item:hover .zcfg-1-desc{

  color:#e7e7e7a8;
}
.zhengcefagui.zc1 .zcfg-item:hover .zcfg-content::before{    background-color: #ffffff;}

.zhengcefagui .zcfg-item:hover {

    background: linear-gradient(to right, #4076d5, #013f93);
}

.zhengcefagui .zcfg-item:hover .zcfg-title a,
.zhengcefagui .zcfg-item:hover .date-day,
.zhengcefagui .zcfg-item:hover .date-month {
    color: #ffffff;
}

/* 4.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;
}

/* 4.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: #212121;
}

.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;
}

.fuwwzhence .fuzn-item:hover .fuzn-title a,
.fuwwzhence .fuzn-item:hover .date-month {
    color: #0068b7;
}

/***-------------------------*政策法规服务指南end**/

/**----5.办事流程下载专区---**/

.banshiliuchen,
.xiazaizhuanqu {
    width: 50%;
    padding: 0rem 2rem
}



.xiantiao {
    width: 1.55rem;
    height: 0;
    border-top: 3px solid #ffa443;
    left: 1.5rem;
    position: absolute;
    top: 0;

}




/* 5.1 */


.xiazaizhuanqu .xzzx-item {
    display: flex;
    padding: 0.5rem 0;
       border-bottom: 1px solid #d5d5d5;
    align-items: center;
    position: relative;
}




.xiazaizhuanqu .xzzx-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    flex-shrink: 0;
    position: relative;
    padding-left: 1.5rem;
}

.xiazaizhuanqu .date-day {
    font-size: 2rem;
    font-weight: bold;
    color: #323232;
}

.xiazaizhuanqu .date-month {
    font-size: 1.05rem;
    color: #323232;
}

.xiazaizhuanqu .xzzx-content {
    flex-grow: 1;
    padding-right: 3rem;overflow: hidden;
}

.xiazaizhuanqu .xzzx-title {

    padding-left: 1rem;

}

.xiazaizhuanqu .xzzx-title a {
    font-size: 1rem;
    color:#161616;
    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;
}

.xiazaizhuanqu .xzzx-1-desc {
    font-size: 0.9rem;
    color: #818181fa;
    padding-left: 1rem;
    padding-top: 0.6rem;
    text-overflow: ellipsis;
    word-break: keep-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    white-space: normal;
}

.xiazaizhuanqu .xzzx-date::before {
    content: "";
    width: 1px;
    height: 2rem;
    background-color: #dfdfdf;
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.xiazaizhuanqu .xzzx-item:hover {

    background: white;
}

.xiazaizhuanqu .xzzx-item:hover .xzzx-1-desc {
    color: #6363635e;
}

.xiazaizhuanqu .xzzx-item:hover .xzzx-title a,

.xiazaizhuanqu .xzzx-item:hover .date-day,
.xiazaizhuanqu .xzzx-item:hover .date-month {
    color: #124ea5;
}

/* 5.2 */
.xiazaizhuanqu_right {

    width: 50%;

}

.xiazaizhuanqu_right .fangwu,.xiazaizhuanqu_right .zichan {
   
     transition: 0.3s;
width: 45%;
    text-align: center;
 
}
.xiazaizhuanqu_right .fangwu{

}
.xiazaizhuanqu_right .zichan{

}
.xiazaizhuanqu_right .fangwu:hover,.xiazaizhuanqu_right .zichan:hover {
    transition: 0.3s;
      transform: scale(1.03);
}

.xiazaizhuanqu_right .fangwu a,.xiazaizhuanqu_right .zichan a {
    color: #4e4e4e;
    font-size: 1.5rem;
    display: block;
}
.xiazaizhuanqu_right .section-title{
align-self: start;
    padding-left: 1.5rem;}

.xiazaizhuanqu_right .xitong{
display: flex;
    justify-content: space-evenly;
gap: 2rem;
padding-left: 1rem;
}

.xiazaizhuanqu_right .xitong img{
   
   padding-bottom: 4rem;
    margin-top: 0.8rem;
    display: block;
}

/* 5.2end */



.white {
    color: white;
}



/**----办事流程下载专区-end--**/


/**----友情链接--**/
.youlian {
    width: 70%;
    margin: auto;
    padding: 1rem 0;
    margin-top: 1rem;
}

.youlian .youlian1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.youlian .youlian1 div {
    font-weight: 900;
    font-size: 1.05rem;
    color: #000000;;

}

.youlian a {
    color:#414141;
    font-size: 1.05rem;
    padding: 0.2rem 1rem;
    border-radius: 10px;
    border: 1px solid #ffffff;

}

.youlian a:hover {
border: 1px solid #f9cd9d;
    color: #ffa443;
}

.yuanquan {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: #325ebb;
    font-size: 1rem;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    outline: 2px #325ebb;
    outline-offset: 0.3rem;
    outline-style: dotted;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(50%);
    z-index: 3;
}

.yuanquan a,
.yuanquan2 a {
    color: #efefef;
    width: 2.6rem;
    font-size: 1.2rem;

    transform: translateX(-80%);
}

.yuanquan2 {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: #325ebb;
    font-size: 1rem;
    position: absolute;
    right: 0;
    top: 22rem;
    bottom: 0;
    margin: auto;
    outline: 2px #325ebb;
    outline-offset: 0.3rem;
    outline-style: dotted;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(50%);
    z-index: 3;
}


/**底部**/
footer {
    background-image: url(../images/foonerbj.jpg);
    color: #fff;

    overflow: hidden;
    background-size: cover;


    background-repeat: no-repeat;

    background-position: center;

}

.footern1 {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    padding-top: 2.2rem;
    align-items: center;

}

footer .footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .footer-logo .divwenzi {
    font-size: 1.5rem;
    font-weight: 900;
    margin-left: 1.5rem;
}

footer .footer-logo img {
    width: clamp(188px, 71%, 430px);
}

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;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #ebebeb;
    padding:1rem 0;
    flex-direction: column;
    align-items: center;
    
}

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;
}

footer .footer-logo1 {
    display: flex;
    align-items: center;
}

.footer-lj {
    text-align: center;
}

.footer-lj2 {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-lj1 {
    font-size: 1rem;
    padding-bottom:0.9rem;
}

footer .footer-lj a {
    color: #ffffffad;
    font-size: 0.7rem;

}

/* ------------------首页样式 end----------------------------*/


/* ------------------列表页start----------------------------*/

.list {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.list .headerw1 {

    position: absolute;
    z-index: 10;
    width: 100%;
    top: 0;
    background: #285fc3;
}

.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: #285fc3;
}

.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: #285fc3;
    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: #285fc3;
}

.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 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: #285fc3;
    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:10px;
}
.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: 17px;
    }
}

@media (max-width: 1800px) {
    html {
        font-size: 17px;
    }
}

@media (max-width: 1700px) {
    html {
        font-size: 16px;
    }

.xiazaizhuanqu_right .xitong{flex-direction: column;padding-left: 4rem;}
.xiazaizhuanqu_right .xitong img{    padding-bottom: 0rem;margin-top: 0rem;}
}

@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: 13px;
    }

    .container {
        width: 100%;
    }

    .headerw1 {
        display: none;
    }
.banner .swiper-slide{  height:35vh;}

    .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: 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;
    }

  

    .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);
    }

    .banshiliuchen3-1-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .banshiliuchen3-1 .banshiliuchen3-1-item {
        width: 100%;
        max-width: 25rem;

    }

    .banshiliuchen3-1-item:nth-child(even) {
        margin-top: 0rem;
    }
.n2{background-size: 100% 110%;margin-top: -3.45rem;background-position: left;}
.xiazaizhuanqu_right .section-title{padding-left: 0rem;}
.xiazaizhuanqu_right{width: 100%;}

.youlian .youlian1 div{width: 100%;text-align: center;padding-bottom: 1rem;font-size: 1.17rem;}
.youlian .youlian1{flex-wrap: wrap;}

.xiazaizhuanqu_right .xitong img{width:100%;}

    .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: 30vw;
    }

    .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: 50%;
    }

    .swiper2 .swiper-pagination {
        width: 100%;bottom: 6px;
    }
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{left: auto;width: 100%;}
    .news-info {

        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: 1;
        overflow: hidden;
        line-height: 1.5;
        
    }

.xiazaizhuanqu_right{margin-top: 2rem;}
footer .footer-logo .divwenzi{font-size: 1rem;margin-left:0.5rem;}




    .list .header-left {
        padding: 0.8rem 0;width:86%;
    }

    .list .list_banner {
        height: 33vw;
        margin-top: 3.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: 25%;
    }
.xiazaizhuanqu_right .fangwu, .xiazaizhuanqu_right .zichan{width:50%;}
.xiazaizhuanqu_right .xitong{padding-left: 0.5rem;}

}

/*--------------------350-----------------------------*/
@media screen and (max-width: 350px) {}