* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    background-color: #efefef;
    line-height: 1.6;
    font-size: .16rem;
}

a {
    text-decoration: none;
    color: black;
}

img {
    display: block;
}

select,
input,
button {
    outline: none;
}

a {
    text-decoration: none;
}



.container {
    max-width: 11rem;
    margin: 0 auto;
}

/* Top Header */
.top-header {
    font-size: .16rem;
}

.header-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .06rem 0;
    position: relative;
}

.welcome-text {
    color: #374151;
}





.accessibility-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /* gap fallback */
    margin-left: -.16rem;
    color: #374151;
}

.accessibility-links>* {
    margin-left: .16rem;
}

.accessibility-links span {
    cursor: pointer;
}

.social-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 100;
}



.social-icon {
    cursor: pointer;
    position: relative;

}

.social-icon.weibo {
    background: url(wb.jpg);
    width: .33rem;
    height: .32rem;
    background-size: .32rem;
}

.social-icon.wechat {
    background: url(wx.jpg);
    width: .4rem;
    height: .32rem;
    margin-right: .47rem;
    background-size: .4rem;
}

/* 悬停效果 - 显示二维码图片 */
.social-icon::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1rem;
    height: 1rem;
    background-color: white;
    border: 10px solid #a7d7fd;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: .12rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 箭头指向图标 */
.social-icon::before {
    content: '';
    position: absolute;
    top: 80%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: .1rem solid transparent;
    border-right: .1rem solid transparent;
    border-bottom: .1rem solid #a7d7fd;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: .08rem;
}

.social-icon:hover::after {
    opacity: 1;
    visibility: visible;
}

.social-icon:hover::before {
    opacity: 1;
    visibility: visible;
}

/* 微博二维码图片 */
.social-icon.weibo::after {
    background-image: url(wbnr.jpg);
}

/* 微信二维码图片 */
.social-icon.wechat::after {
    background-image: url(wxnr.jpg);
}

/* Hero Banner */
.hero-banner {
    background-color: #fff;
}

.hero-banner .container {
    max-width: 12.25rem;
}

.hero-banner .container img {
    width: 12.25rem;
}

/* Main Navigation */
.main-nav {
    background-color: #af0b0b;
    color: white;
}

.nav-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-links {
    width: 7.31rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.nav-link {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: white;
    text-decoration: none;
    font-size: .20rem;
    padding: .12rem 0;
    text-align: center;
}

.nav-link:hover {
    background-color: #960002;
}


.search-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: url(search-bg.jpg) no-repeat;
    background-size: 3.69rem;
    padding: .12rem 0 .12rem .5rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.search-select {
    background: white;
    color: #374151;
    font-size: .15rem;
    border: none;
    height: .32rem;
}

.search-input {
    width: 1.28rem;
    height: .32rem;
    color: black;
    font-size: .14rem;
    border: none;
    padding: 0 .08rem;
}

.search-btn {
    height: .32rem;
    padding: 0 .12rem;
    background-color: #b91c1c;
    color: white;
    border: none;
    cursor: pointer;
}

.mobile-menu {
    display: none;
}

/* Main Content */
.main-content .container {
    background: #fff;
    padding: .2rem;
}

.content-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr .2rem 1fr;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: .2rem;
    margin-bottom: .2rem;
}

/* IE Grid fallback */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .content-row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .content-row>*:first-child {
        margin-right: .16rem;
    }

    .content-row>*:last-child {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.card {

    overflow: hidden;
}

/* Carousel */
.carousel-section {
    position: relative;
    width: 5.38rem;
}

/* 🎯 Swiper轮播样式 */
.swiper {
    position: relative;
    width: 100%;
    height: 3.58rem;
    overflow: hidden;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 3.58rem;
    background-color: #e5e7eb;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: .16rem;
}

.carousel-overlay p {
    color: white;
    font-weight: 500;
    margin: 0;
}

/* 🎯 Swiper圆点样式 */
.swiper-pagination {
    position: absolute !important;
    bottom: .14rem !important;
    right: .12rem !important;
    left: auto !important;
    width: auto !important;
    text-align: right;
    z-index: 10;
}


/* 进度条样式 */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: .02rem;
    z-index: 11;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: rgb(21, 157, 207);
    transition: none;
}

/* 🎯 Swiper IE兼容性样式 */
.swiper-slide {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* IE8-9 兼容 */
.swiper-slide img {
    width: 100%;
    height: auto;
    max-width: none;
    -ms-interpolation-mode: bicubic;
}

/* IE兼容性修复 */
/* 🎯 Swiper IE兼容性修复 */
/* IE8兼容性 */
.ie8 .swiper {
    position: relative;
    overflow: hidden;
}

.ie8 .swiper-slide {
    float: left;
    width: 100%;
}

.ie8 .swiper-pagination {
    position: absolute;
    bottom: 14px;
    right: 12px;
}

.ie8 .swiper-pagination-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.ie8 .swiper-pagination-bullet-active {
    background-color: white;
}

/* IE9兼容性 */
.ie9 .carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.ie9 .progress-bar {
    height: 100%;
    width: 0%;
    background-color: rgb(21, 157, 207);
    -ms-transition: none;
}

/* IE10+通用修复 */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .swiper-slide {
        float: left;
        width: 100%;
    }

    .swiper-slide img {
        width: 100%;
        height: 100%;
        -ms-interpolation-mode: bicubic;
    }

    .swiper-pagination {
        position: absolute;
        bottom: 14px;
        right: 12px;
        display: -ms-flexbox;
        -ms-flex-direction: row;
    }

    .swiper-pagination-bullet {
        -ms-flex: none;
        margin-right: 4px;
    }
}

#hero-swiper .swiper-pagination-bullet {
    width: .12rem !important;
    height: .12rem !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    background-color: #d4d4d4 !important;
    opacity: 1 !important;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

#hero-swiper .swiper-pagination-bullet-active,
#hero-swiper .swiper-pagination-bullet:hover {
    background-color: #20a6d9 !important;
    transform: scale(1) !important;
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    -o-transform: scale(1) !important;
}

/* News Tabs */
.news-tabs {
    margin-bottom: .05rem;
}

.tab-headers {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-bottom: #dfe6e8 solid .02rem;
    margin-bottom: .12rem;
}

.tab-header {
    padding: .08rem .2rem;
    background: none;
    border: none;
    font-size: .18rem;
    font-weight: bold;
    color: rgb(51, 51, 51);
    cursor: pointer;
    text-align: center;
    position: relative;
}

.tab-header.active {
    color: rgb(175, 11, 11);
}

.tab-header:not(:last-of-type)::after {
    content: '';
    display: block;
    width: .02rem;
    height: 45%;
    background: #9b0103;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
}

.tab-headers div:last-child {
    margin-left: auto;
}

.more-link {
    display: block;
    padding: .08rem .12rem;
    font-size: .15rem;
    color: #000;
    text-decoration: none;
}


.tab-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    display: none;
}

.tab-content.active {
    display: block;
}

.news-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    /* IE11不支持gap，使用margin替代 */
    height: 100%;
}

/* gap fallback for IE11 */
.news-list .news-item+.news-item {
    margin-top: .12rem;
}

.news-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.news-item a {
    color: #000;
    text-decoration: none;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: .08rem;
}

.news-item a:hover {
    color: #dc2626;
}

.news-item .date {
    font-size: .15rem;
    color: #252525;
    white-space: nowrap;
}

.news-item a span {
    color: rgb(175, 11, 11);
}

/* Service Cards */
.service-cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr .15rem 1fr;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: .15rem;
    /* IE11不支持gap，移除gap属性，改用grid-column-gap */
    margin-top: .08rem;
}

/* IE Grid fallback for service-cards */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .service-cards {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -.075rem;
        margin-right: -.075rem;
    }

    .service-cards .service-card {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 calc(50% - .15rem);
        -ms-flex: 0 0 calc(50% - .15rem);
        flex: 0 0 calc(50% - .15rem);
        margin: 0 .075rem .15rem;
    }
}

/* IE不支持calc()时的fallback */
@supports not (width: calc(50% - .15rem)) {
    .service-cards .service-card {
        width: 48%;
        margin: 0 1% .15rem;
    }
}

.service-cards img {
    width: 2.4rem;
}



/* Promotional Cards */
.promo-cards {
    display: flex;
    align-items: stretch;
    margin-bottom: .2rem;
    gap: 0;
}

.promo-cards .promo-card:first-of-type {
    /* 左边专题卡片 */
    flex: 0 0 auto;
}

.promo-cards .promo-card:nth-of-type(3) {
    /* 中间红色轮播图卡片 */
    flex: 1;
    margin-right: auto;
}

.promo-cards .promo-card:last-of-type {
    /* 右边蓝色卡片 */
    flex: 0 0 auto;
    width: 3.2rem;
    margin-left: .2rem;
}

/* IE Grid fallback */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .promo-cards {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .promo-cards .promo-card:first-of-type {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        margin-right: .08rem;
    }

    .promo-cards .promo-card:nth-of-type(3) {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: auto;
    }

    .promo-cards .promo-card:last-of-type {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 3.2rem;
    }
}

.promo-card {
    height: 1.18rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.zhuanti {
    background: url(zthd.jpg) no-repeat;
    width: 1.75rem;
    background-size: 1.8rem;
}

.zhuanti a {
    position: absolute;
    top: 56%;
    left: 14%;
    color: #0b74ab;
    font-size: .14rem;
    letter-spacing: .02rem;
}

.promo-card.red .promo-title {
    font-size: .14rem;
    line-height: 1.3;
}

/* 红色卡片轮播图样式 */
.red-card-swiper {
    width: 100%;
    height: 1.18rem;
    position: relative;
    overflow: hidden;
}

.red-card-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.red-card-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}



.red-card-swiper .swiper-slide img {
    width: 5.45rem;
    height: 1.18rem;
    display: block;
}

/* 红色卡片圆点导航样式 - 右上角 */
.red-card-pagination {
    position: absolute !important;
    top: 0 !important;
    right: .12rem !important;
    left: auto !important;
    bottom: auto !important;
    width: auto !important;
    text-align: right;
    z-index: 10;
}

.red-card-pagination .swiper-pagination-bullet {
    width: .12rem !important;
    height: .12rem !important;
    background: rgba(255, 255, 255) !important;
    opacity: 1 !important;
    margin: 0 .04rem !important;
    border-radius: 50% !important;
}

.red-card-pagination .swiper-pagination-bullet-active {
    background: #de3a3a !important;
}

/* 左右箭头样式 */
.red-card-next,
.red-card-prev {
    width: .5rem !important;
    height: .45rem !important;
    cursor: pointer;
    background-size: .5rem !important;
    margin-top: 0 !important;
    transform: translateY(-50%) !important;
    -webkit-transform: translateY(-50%) !important;
    -moz-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    -o-transform: translateY(-50%) !important;
}

.red-card-next {
    right: 0 !important;
    background: url(next.png) no-repeat;
}

.red-card-prev {
    left: 0 !important;
    background: url(prev.png) no-repeat;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    display: none;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    display: none;
}

.blue img {
    width: 3.2rem;
}

.ztbd,
.xsdw {
    display: none !important;
}

@media (max-width: 800px) {

    .red-card-next,
    .red-card-prev {
        width: .28rem !important;
        height: .28rem !important;
    }

    .red-card-next::after,
    .red-card-prev::after {
        font-size: .16rem !important;
    }

    .red-card-pagination {
        top: .08rem !important;
        right: .08rem !important;
    }

    .red-card-pagination .swiper-pagination-bullet {
        width: .06rem !important;
        height: .06rem !important;
        margin: 0 .02rem !important;
    }
}

/* Notice and Service Hall Row */
.notice-service-row {
    display: flex;
    align-items: stretch;
    margin-bottom: .2rem;
    gap: 20px;
    /* 中间20px间隔 */
}

.notice-service-row .notice-section {
    flex: 1;
    /* 占据剩余空间 */
}


/* Notice and Service Hall */
.notice-section,
.service-hall {
    width: 100%;
}



.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: .02rem solid #dfe6e8;
}

.section-header>div {
    margin-bottom: -.04rem;
    text-align: center;
    padding: .04rem .14rem;
    border-bottom: .02rem solid #b92324;
}

.section-header h3 {
    font-size: .18rem;
    color: #ad0d0f;
}

.notice-section .card .news-list {
    padding: .1rem;
}

.notice-section .card .news-item a:hover {
    color: #650101;
    font-weight: bold;
}

/* Service Hall */
.service-hall {
    background: #f8f8f8;
    border: 1px solid #e1e1e1;
    width: 3.18rem;
}

.service-hall .section-header {
    padding-top: .03rem;
}

.service-hall .section-header>div {
    margin-bottom: -.02rem;
    position: relative;
}

.service-hall .section-header>div::after {
    content: '';
    display: block;
    width: .06rem;
    height: .18rem;
    background-color: #b92324;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.service-buttons {
    background: url(zwfw.png) no-repeat;
    background-size: 3.02rem;
    height: .98rem;
    background-position: center;
    margin-top: .06rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-evenly;
}


.service-buttons a {
    color: white;
    margin-right: .6rem;
}

.platform-cards a {
    margin: .06rem 0 0 .08rem;
    display: block;
    box-sizing: border-box;
}

.platform-cards img:hover {
    border: 1px solid #39C;
}

.platform-cards img {
    width: 3.02rem;
}



/* Government Buttons */
.gov {
    border: 1px solid #e1e1e1;
    padding: .1rem .21rem .2rem;
    margin-bottom: .2rem;
}

.gov-buttons {
    display: flex;
    margin-bottom: .2rem;
    justify-content: space-between;
}

.gov-btn {
    cursor: pointer;
    overflow: hidden;
}

.gov-btn:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.gov-btn img {
    width: 2.47rem;
    transition: transform 0.6s;
    -webkit-transition: transform 0.6s;
    -moz-transition: transform 0.6s;
    -ms-transition: transform 0.6s;
    -o-transition: transform 0.6s;
}

.gov>div>img {
    width: 10.16rem;
}

/* Culture Tourism and Subordinate Units */

.culture-tourism,
.subordinate-units {
    width: 100%;
}

.vertical-tabs {
    background: url(whly.jpg) no-repeat;
    background-size: 7.18rem;
    display: flex;
    flex-direction: column;
    height: 3.56rem;
    width: 7.18rem;
}

/* 文化旅游标题样式 */
.culture-title {
    color: #ad0d0f;
    text-align: left;
    padding: .12rem .16rem;
}

.culture-title h3 {
    font-size: .18rem;
    font-weight: bold;
}

/* 标签和内容的水平布局容器 */
.tabs-content-container {
    display: flex;
    flex: 1;
    margin: .1rem .16rem;
}

.tab-nav {
    width: 2.16rem;
    flex-shrink: 0;
}

.vertical-tab {
    display: block;
    width: 100%;
    height: .4rem;
    line-height: .4rem;
    color: #333333;
    border: none;
    cursor: pointer;
    text-align: center;
    background: url(xxgklibg1.gif) no-repeat;
    background-size: 2.16rem;
    margin: .06rem 0 0;
}

.vertical-tab:not(:first-child) {
    margin-top: .06rem;
}

.vertical-tab.active {
    background-position-y: -0.4rem;
    color: white;
}

.tab-content-area {
    flex: 1;
    padding-left: .08rem;
}

.culture-tab-content {
    transition: opacity 0.3s ease;
}

.culture-news {
    display: flex;
    flex-direction: column;
}

.culture-news-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: .046rem 0;
}

.culture-news-item a {
    color: #252525;
    text-decoration: none;
    flex: 1;
}

.culture-news-item a span {
    margin-right: .06rem;
}

.culture-news-item a:hover {
    color: #dc2626;
}

.culture-news-item .date {
    font-size: .15rem;
    color: #252525;
    white-space: nowrap;
}


/* Subordinate Units */
.section-header-red {
    background: url(xsdw-t.jpg) no-repeat;
    background-size: 3.23rem;
    color: #ad0d0f;
    text-align: left;
    padding: .12rem .16rem;
    height: .52rem;
    width: 3.23rem;
    font-size: .18rem;
    font-weight: bold;
}

.units-content {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e2e2e2;
    border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    align-items: center;
}

.units-content a {
    margin-top: .08rem;
    overflow: hidden;

}

.units-content a:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.units-content a:last-child {
    margin-bottom: .08rem;
}

.units-content img {
    width: 3rem;
    transition: transform 0.6s;
    -webkit-transition: transform 0.6s;
    -moz-transition: transform 0.6s;
    -ms-transition: transform 0.6s;
    -o-transition: transform 0.6s;
}

.interaction-btn {
    width: 100%;
    display: block;
    margin-top: .1rem;
}

.interaction-btn img {
    width: 3.24rem;
}

/* Footer */
.footer {
    background: url(footer.jpg) repeat-x center top;
    color: white;
    height: 1.3rem;
}


/* Responsive Design */
@media (max-width: 800px) {
    .content-row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .notice-service-row {
        flex-direction: column;
        gap: .16rem;
    }

    .notice-service-row .notice-section,
    .notice-service-row .service-hall {
        flex: none;
        width: 100%;
    }

    .culture-units-row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: .16rem;
    }

    /* IE Grid fallback for responsive */
    @media screen and (-ms-high-contrast: active),
    (-ms-high-contrast: none) {
        .content-row {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
        }

        .content-row>*:first-child {
            margin-right: 0;
            margin-bottom: .16rem;
        }

        .notice-service-row {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
        }

        .notice-service-row .notice-section,
        .notice-service-row .service-hall {
            -webkit-box-flex: 0;
            -webkit-flex: none;
            -ms-flex: none;
            flex: none;
            width: 100%;
            margin-right: 0;
        }

        .notice-service-row .notice-section {
            margin-bottom: .16rem;
        }

        .culture-units-row {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
        }

        .culture-units-row>*:first-child {
            margin-right: 0;
            margin-bottom: .16rem;
        }
    }

    .promo-cards {
        flex-direction: column;
        gap: .16rem;
    }

    .promo-cards .promo-card:first-child,
    .promo-cards .promo-card:nth-child(2),
    .promo-cards .promo-card:last-child {
        flex: none;
        width: 100%;
        margin-right: 0;
    }

    /* IE Grid fallback for responsive */
    @media screen and (-ms-high-contrast: active),
    (-ms-high-contrast: none) {
        .promo-cards {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
        }

        .promo-cards .promo-card:first-child,
        .promo-cards .promo-card:nth-child(2),
        .promo-cards .promo-card:last-child {
            -webkit-box-flex: 0;
            -webkit-flex: none;
            -ms-flex: none;
            flex: none;
            width: 100%;
            margin-right: 0;
        }
    }

    .gov-buttons {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .footer-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        /* gap fallback */
        margin-top: -.08rem;
        text-align: center;
    }

    .footer-content>* {
        margin-top: .08rem;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

/* 🎯 自定义滑动动画效果 */
/* 定义滑动动画 */
@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideOutRight {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0);
    }
}

/* 淡入淡出动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* WebKit前缀兼容 */
@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

/* 应用动画的类 */
.owl-carousel .animated {
    animation-duration: 0.6s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-fill-mode: both;
}

.owl-carousel .slideInRight {
    animation-name: slideInRight;
    -webkit-animation-name: slideInRight;
}

.owl-carousel .slideOutLeft {
    animation-name: slideOutLeft;
    -webkit-animation-name: slideOutLeft;
}

.owl-carousel .slideInLeft {
    animation-name: slideInLeft;
    -webkit-animation-name: slideInLeft;
}

.owl-carousel .slideOutRight {
    animation-name: slideOutRight;
    -webkit-animation-name: slideOutRight;
}

.owl-carousel .fadeIn {
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
    -webkit-animation-name: fadeOut;
}

/* Culture Tourism and Subordinate Units Row */
.culture-units-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr .2rem 1fr;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: .2rem;
}

/* IE Grid fallback for culture-units-row */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .culture-units-row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .culture-units-row>*:first-child {
        -webkit-box-flex: 2;
        -webkit-flex: 2;
        -ms-flex: 2;
        flex: 2;
        margin-right: .2rem;
    }

    .culture-units-row>*:last-child {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}