* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    display: block;
}

input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

.container {
    width: 1200px;
    margin: 0 auto;
}


/* /////// 顶部工具栏 /////// */
.topbar {
    background: #285B9D;
}

.topbar__inner {
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #fff;
}

.topbar__info {
    display: flex;
    gap: 20px;
}

.topbar__nav {
    display: flex;
}

.topbar__nav a {
    height: 100%;
    display: flex;
    position: relative;
    padding: 2px 14px;
}

.topbar__nav a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 1px;
    height: 10px;
    background-color: #999;
}

.topbar__nav a:last-child::after {
    content: none;
}

.topbar__nav a:last-child {
    background-color: #fff;
    border-radius: 30px;
    color: #cc0000;
    margin-left: 20px;
}

/* ////// 页头：Logo + 搜索 ///// */
.site-header {
    height: 300px;
    background: url(./images/banner-hbg.png) no-repeat;
    background-size: cover;
    background-position: center center;

}

.site-header__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.site-header__logo {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.search-box {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 556px;
    height: 46px;
    padding: 2px;
    background-color: #fff;
    border-radius: 10px;
}

.search-box__input {
    margin-left: 20px;
}

.search-box__btn {
    background-color: #579BEB;
    width: 110px;
    height: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    color: #fff;
    font-size: 18px;
}

/* //////  主导航  //////// */
.main-nav {
    background-color: #F0F0F0;
}

.main-nav__list {
    display: flex;
    height: 80px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #b0b0b0;
}

.main-nav__item {
    margin: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav__link {
    display: block;
    height: 100%;
    line-height: 80px;
    padding: 0 20px;

    font-size: 22px;
    font-weight: bold;
    color: #333;

    white-space: nowrap;
}

.main-nav__link.active {
    border-bottom: 6px solid #0196FF;
}

.main-nav__link:hover {
    border-bottom: 6px solid #0196FF;
}

/* 要闻动态区 */
/* ////////////////// */
.news-hero {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 420px;
    /* border: 1px solid #000; */
}

/*  左：轮播图 */
.banner {
    position: relative;
    width: 585px;
    height: 420px;
}

.banner__img-wrap {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner__img-wrap img {
    width: 585px;
    height: 420px;
}


/* 悬浮标题 */
.banner__caption-inner {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

.banner__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 40px;
    width: 100%;
    color: #fff;
    padding: 20px 20px;
    background-color: #000000c0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner__caption-title {
    font-weight: bold;
}

.banner__caption-desc {
    margin-top: 5px;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.banner__caption-inner {
    width: 100%;
    font-size: 16px;
}

.banner__caption-inner-out {
    display: block;
    height: 100%;
    width: 100%;
}

/* 圆点 */
.banner-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
}

.banner-dot.active {
    background-color: #FE0000;
}

/*  右：新闻列表  */
.news-panel {
    flex: 1;
    padding-left: 30px;
    height: 100%;
}

.news-panel__tabs {
    height: 40px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #E6E6E6;
    font-size: 18px;
    font-weight: bold;
}

.news-panel__tabs li.active {
    border-bottom: 4px solid #1296DB;
    color: #1296DB;
}

.news-panel__tabs li {
    border-bottom: 4px solid transparent;
    line-height: 40px;
    padding: 0 30px;
    white-space: nowrap;
}

.news-panel__tabs li:hover {
    border-bottom: 4px solid #1296DB;
    color: #1296DB;
}

.news-panel__list {
    padding-top: 15px;
}


.news-panel__item {
    display: flex;
    justify-content: space-between;
    height: 36px;
    font-size: 16px;
    color: #333;
}

.news-panel__item a {
    display: block;
    line-height: 36px;
    position: relative;
    padding-left: 20px;
}

.news-panel__item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #9EB6C4;
}

.news-panel__date {
    color: #bcbcbc;
}

.gov-open {
    padding: 20px 0 30px;
}


/* /////  政府信息公开 ///// */
.service-interaction__inner {
    padding: 40px 0;
    padding-bottom: 25px;
}

/* 政府信息公开 */
.gov-open .section-header {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

.section-header h2 {
    font-size: 24px;
    font-weight: bold;
    white-space: nowrap;
}

.section-header__line {
    width: 100%;
    height: 2px;
    background: #D8D8D8;
}

.gov-open__tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gov-open__tabs li {
    height: 256px;
    width: 175px;
    background: url(./images/bg-szf.png);
    display: flex;
    justify-content: center;
    align-items: end;
}

.gov-open__tabs li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 100px;
    color: #2e67ab;
    font-weight: bold;
    margin-bottom: 10px;
}

.gov-open__content {
    display: flex;
    gap: 80px;
    padding: 40px 20px 0;
}

.gov-open__list {
    width: 735px;
}

.gov-open__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
}

.gov-open__item a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 20px;
    font-size: 16px;
    color: #333;
}

.gov-open__item a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #9EB6C4;
}

/* 右：找政策 */
.policy-search {
    background-color: #F5F5F5;
    width: 388px;
    padding: 20px;
    padding-right: 30px;
}

.policy-search__header {
    height: 70px;
    background: url(./images/bg-wyzzc.png) no-repeat;
    font-size: 36px;
    color: #555;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: end;
}

.policy-search__selects {
    height: 40px;
    border: 1px solid #dedede;
    background: #fff;
    display: flex;
}

.policy-search__select {
    height: 100%;
    font-size: 16px;
    text-indent: 5px;
    width: 50%;
    cursor: pointer;
}

#city1 {
    border-right: 1px solid #dedede;
}

.policy-search__input-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 41px;
    font-size: 14px;
    margin-top: 10px;
    background-color: #fff;
}

.policy-search__input {
    border: 1px solid #dedede;
    width: 100%;
    height: 100%;
    padding: 0 40px 0 20px;
}

.policy-search__btn {
    white-space: nowrap;
    background-color: #FFBF62;
    height: 100%;
    padding: 0 12px;
    color: #fff;
}

.policy-search__tags {
    margin-top: 10px;
    font-size: 14px;
    color: #777;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    place-items: center;
    row-gap: 4px;
    white-space: nowrap;
}

.policy-search__tags a {
    padding: 0 5px;
    border-right: 1px solid #bfbfbf;
}

/* /////////  办事服务  ////////// */
.service-interaction {
    background-color: #F0F0F0;
}

.section-header {
    white-space: nowrap;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.gov-service {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gov-service__tabs {
    display: flex;
    border: 1px solid #bfbfbf;
    padding: 0 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    gap: 30px;
    background-color: #fff;
    transform: translateY(50%);
}

.gov-service__tabs li {
    height: 100%;
    border-bottom: 3px solid transparent;
    padding: 8px 0;
}

.gov-service__tabs li.active {
    color: #1296DB;
    border-bottom: 3px solid #1296DB;
}

.gov-service__tabs li:hover {
    color: #1296DB;
    border-bottom: 3px solid #1296DB;
}

/* 服务图标入口 */
.gov-service__entry-list {
    background-color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border: 1px solid #d3d3d3;
    border-radius: 2px;
    padding: 40px 30px 30px;
}

.gov-service__entry-item {
    transition: all 0.5s ease;
}

.gov-service__entry-item:hover {
    transform: translateY(-8px);
    color: #5698D2;
}

/* ////////// 政民互动标题 ///////// */
.zmhd {
    padding: 30px 0;
}

.interaction {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.interaction__letters,
.interaction__interview {
    width: 33%;
    background-color: #fff;
    padding: 0px 15px;
    border: 1px solid #e2e2e2;
}

.interaction__letters-header {
    height: 40px;
    font-size: 16px;
    border-bottom: 1px solid #e2e2e2;

    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1296db;
    font-weight: bold;
}

.interaction__letters-header a {
    color: #909090;
    font-weight: normal;
}

.interaction__letters-header span {
    display: block;
    height: 100%;
    line-height: 40px;
    border-bottom: 3px solid #1296DB;
}

.interaction__letters-list {
    padding: 10px 0;
}

.interaction__letter-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px dashed #e2e2e2;
    padding-bottom: 8px;
}

.interaction__letter-meta {
    display: flex;
    padding: 4px 0;
}

.interaction__letter-type {
    font-size: 16px;
    color: #ff8033;
}

.interaction__letter-date {
    margin-left: auto;
    color: #a8a8a8;
    font-size: 16px;
}

.interaction__letter-link {
    padding-top: 4px;
}

/*  中：在线访谈  */
.interaction__interview-content {
    padding-top: 10px;
}

.interaction__interview-title {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: #333;
}

.interaction__interview-time {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #a8a8a8;
    padding: 5px;
}

.interaction__interview-guest-label {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

/* /////// 专题专栏 //////// */
.special-topics__inner {
    padding: 30px 0 20px;
}

.special-topics__list {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    padding: 0 50px;
}

.special-topics__link img {
    width: 260px;
    height: 100px;
}

/* 悬浮按钮 */
.special-topics__prev-btn {
    background-color: #f7f7f7;
    width: 25px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #dcdcdc;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

    font-size: 20px;
    font-weight: bold;
    color: #868686;
    line-height: 30px;
}

.special-topics__next-btn {
    background-color: #f7f7f7;
    width: 25px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #dcdcdc;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);

    font-size: 20px;
    font-weight: bold;
    color: #868686;
    line-height: 30px;
}


/* ////// 页脚 /////// */
/* 上：导航链接 */
.site-footer__nav-wrap {
    background-color: #426CA6;
    padding: 12px 0;
}

.site-footer__nav {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.site-footer__nav a {
    display: block;
    height: 100%;
    line-height: 36px;
    background-color: #fff;
    padding: 0 20px;
}

.site-footer__nav a:first-child {
    background-color: #487DB4;
    color: #fff;
    font-weight: bold;
}

/* 下：版权信息  */
.site-footer__copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.site-footer__links a {
    position: relative;
    padding: 0 10px;
}

.site-footer__links a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 1px;
    height: 10px;
    background-color: #999;
}

.site-footer__links a:last-child::after {
    content: none;
}

.site-footer__links span {
    padding-left: 10px;
}

.site-footer__host {
    font-size: 16px;
}

.site-footer__qrcode {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ////// 浮动信息 /////// */
.float-info {
    width: 260px;
    height: 130px;
    position: fixed;
    left: 0;
    bottom: 0;
    margin-bottom: 2px;
}

.close-box {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-140%);

    border: 1px solid #c7c7c7;
    padding: 2px 2px;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-x {
    display: block;
    background-color: #b5b5b5;
    font-size: 15px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: #fff;
}

.close-btn {
    font-size: 12px;
    padding: 0 4px;
    color: #5e5e5e;
}

.info-link {
    display: block;
    width: 100%;
    height: 100%;
}

.info-link img {
    height: 100%;
    object-fit: contain;
}