* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFangSC', 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    color: #444444;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


.shenglue1,.shenglue2,.shenglue3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.shenglue2{
    -webkit-line-clamp: 2;
}
.shenglue3{
    -webkit-line-clamp: 3;
}

.container {
    width: 1560px !important;
    margin: 0 auto;
    position: relative;
    padding: 0;
}

header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    background: url(rjyjs_headgb.png) top center no-repeat;
    background-size: 100% 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin-top: 44px;
    margin-bottom: 50px;
}

.logo img {
    height: 60px;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-links {
    display: flex;
    gap: 20px;
    font-size: 16px;
    color: #444444;
    align-items: center;
}

.header-links a:hover {
    color: #EC6E00;
}
.header-link-line {
    width: 1px;
    height: 16px;
    background: #e0e0e0;
}

.search-btn {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.search-btn:hover{
    filter: brightness(1.2);
}

.header-search-area{
    background: rgba(236, 110, 0, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}
.header-search-area.active{
    top: 0;
}
.header-search-area .container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.header-search-area input{
    width: 60%;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    padding: 0 20px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #444444;
}
.header-search-area input::placeholder{
    color: #666;
    font-size: 16px;
}
.header-search-area input.empty::placeholder{
    color: #EC6E00;
}
.header-search-area img{
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    box-sizing: content-box;
    cursor: pointer;
}
.header-search-area img:hover{
    background-color: #fff;
}
.search-close{
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}


nav {
    background: #EC6E00;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    padding: 15px 28px;
    color: #fff;
    font-size: 24px;
    transition: background 0.3s;
    font-weight: 600;
}

.nav-item > a:hover {
    /* background: rgba(255,255,255,0.2); */
    background: #FFAA68;
}
.nav-item.active > a {
    background: #FFAA68;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 210px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    border-top: 3px solid #EC6E00;
}

.nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu a {
    display: block;
    padding: 12px 20px;
    color: #022233;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.sub-menu a:hover {
    background: #FFE9D6;
    color: #EC6E00;
}

.sub-menu-item {
    position: relative;
}

.sub-menu-item > a {
    display: block;
    padding: 12px 36px 12px 20px;
    color: #022233;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    position: relative;
}

.sub-menu-item > a::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: translateY(-50%) rotate(45deg);
}

.sub-menu-item > a:hover::after {
    border-color: #EC6E00;
}

.sub-menu-item > a:hover {
    background: #FFE9D6;
    color: #EC6E00;
}

.sub-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s;
    border-top: 3px solid #EC6E00;
    z-index: 10;
}

.sub-menu-item:hover .sub-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-sub-menu a {
    display: block;
    padding: 12px 20px;
    color: #022233;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.sub-sub-menu a:hover {
    background: #FFE9D6;
    color: #EC6E00;
}

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
}

.section {
    padding: 40px 0;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 33px;
    position: relative;
}

.section-title h2 {
    font-size: 30px;
    color: #002860;
    font-weight: 600;
}

.more-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #002860;
    font-size: 16px;
    padding-bottom: 5px;
    border-bottom: 1px solid #979797;
    margin-right: 20px;
    min-width: 52px;
}

.more-link:hover {
    color: #EC6E00;
    border-bottom-color: #EC6E00;
}
.more-link img{
    width: 12px;
    height: 10px;
}
.hero-section {
    display: flex;
    background: #fff;
    /* border: 1px solid #e0e0e0; */
    overflow: hidden;
}

.hero-left {
    width: 1026px;
    position: relative;
    /* border-right: 1px solid #e0e0e0; */
}

.hero-swiper {
    width: 100%;
    height: 578px;
    max-height: 578px;
}

.hero-swiper .swiper-slide {
    position: relative;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-swiper .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient( 270deg, rgba(0,40,96,0) 0%, #002860 99.96%);
    color: #fff;
    padding: 20px 22px;
    font-size: 26px;
    font-weight: 800;
}
.swiper-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: none;
    flex-shrink: 0;
}
.hero-left .swiper-btn{
    background: rgba(22, 70, 148, 0.5);
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
}
.hero-left .swiper-btn:hover {
    background: #F1F7FA;
}
.swiper-btn#heroPrev{
    border-radius: 0px 4px 4px 0px;
}
.swiper-btn#heroNext{
    border-radius: 4px 0px 0px 4px;
    right: 0;
    left: auto;
}
.swiper-btn img{
    width: 13px;
    height: 12px;
}

.swiper-pagination-custom {
    display: flex;
    gap: 8px;
    margin-left: 8px;
    position: absolute;
    bottom: 30px;
    padding-right: 20px;
    z-index: 10;
    justify-content: flex-end;
}

.swiper-pagination-custom .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #DCDCDC;
    cursor: pointer;
}

.swiper-pagination-custom .dot.active {
    background: #EC6E00;
    width: 33px;
    border-radius: 5px;
}

.hero-right {
    flex: 1;
    background-image: url('item-list-bg.png');
    background-size: cover;
    padding-left: 40px;
}

.news-header {
    background: #EC6E00;
    color: #fff;
    padding: 14px 24px;
    font-size: 24px;
    font-weight: 800;
    display: inline-block;
}
.news-title-first{
    font-size: 19px;
    font-weight: 800;
    line-height: 40px;
    margin-top: 15px;
    padding-right: 20px;
}
.news-title-first:hover{
    color: #EC6E00;
}
.news-list {
    padding: 15px;
    flex: 1;
    overflow-y: auto;
}

.news-item {
    /* padding: 12px 0; */
    position: relative;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-item::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    left: -20px;
    top: 5px;
    position: absolute;
    background-image: url(list-icon3.png);
    background-size: cover;
}

.news-item:last-child {
}

.news-date {
    color: #888;
    font-size: 14px;
    white-space: nowrap;
    display: inline-block;
    margin-left: 5px;
    float: right;
}
.news-date2{
    color: #888;
    font-size: 16px;
    white-space: nowrap;
    display: inline-block;
    font-weight: 600;
    float: left;
}

.news-title {
    color: #022233;
    font-size: 18px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.news-item:hover .news-title {
    color: #EC6E00;
}

.hero-right .more-link{
    position: absolute;
    bottom: 20px;
    right: 0px;
}

.column-left .more-link,.special-controls .more-link{
    margin-right: 0px;
}

.two-column {
    display: flex;
    gap: 30px;
}

.column-left {
    width: 1026px;
}

.column-right {
    flex: 1;
    background-image: url(notice-bg.png);
    background-size: cover;
}

.tabs-header {
    display: flex;
}

.tab-item {
    color: #022233;
    padding: 11px 24px;
    font-size: 24px;
    font-weight: 800;
    display: inline-block;
    transition: color 0.3s;
    cursor: pointer;
}

/* .tab-item:hover,.tab-item.active {
    background: #EC6E00;
    color: #fff;
} */
.tabs-header .special-title,.notice-header .special-title{
    cursor: pointer;
}
.tabs-header .special-title::before,.notice-header .special-title::before{
    background: transparent;
}
.tabs-header .special-title.active::before,.notice-header .special-title.active::before{
    background: #EC6E00;
}
.tabs-header .special-title:nth-child(2),.notice-header .special-title:nth-child(2){
    margin-left: 20px;
}
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.media-list {
    display: flex;
    gap: 30px;
}

.media-left {
    width: 300px;
}

.media-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.media-card img {
    width: 100%;
    height: 243px;
    object-fit: cover;
}

.media-caption {
    background: #fff;
    position: relative;
}

.media-caption h4 {
    font-size: 18px;
    color: #444;
    line-height: 1.5;
}
.media-caption .news-date{
    position: absolute;
    bottom: 0px;
    right: 10px;
}

.media-right {
    flex: 1;
}

.text-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.text-list .kyjz-lists{
    gap: 0;
}
.kyjz-lists .text-item a{
    color: #022233;
}
.kyjz-lists .text-item::before{
    top: 5px;
}
.kyjz-lists .text-item{
    padding-top: 0;
}
.text-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    gap: 10px;
}
.text-item::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    left: 0px;
    top: 13px;
    position: absolute;
    background-image: url('list-icon3.png');
    background-size: cover;
}

.text-item a {
    color: #444;
    flex: 1;
}

.text-item a:hover {
    color: #EC6E00;
}

.text-item .date {
    color: #888;
    font-size: 14px;
}

.notice-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.notice-header {
    display: flex;
    padding-left: 20px;
}


.notice-content {
    padding: 0 20px;
}

.notice-item {
    display: flex;
    gap: 10px;
    padding: 12px 0;
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-date-tag {
    background: #aeaeaf;
    color: #fff;
    white-space: nowrap;
    border: 1px solid #dedede;
    width: 70px;
    text-align: center;
    /* font-weight: 800; */
}
.notice-date-tag div:last-child{
    background: #fff;
    color: #444;
    font-size: 16px;
}

.notice-item a {
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex: 1;
}

.notice-item:hover a {
    color: #EC6E00;
}

.section-3 .column-left .text-list {
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 37px;
    align-items: flex-start;
}
.section-3 .text-item{
    padding: 0;
    background-color: #F7F7F7;
}
.section-3 .text-item:before {
    display: none;
}
.data-tag2{
    background: #FFE9D6;
    border-left: #FFAA68 solid 5px;
    height: 100%;
    padding: 40px 10px;
    font-size: 20px;
    color: #EC6E00;
    text-align: center;
    font-weight: 400;
    flex-shrink: 0;
    /* display: none;*/
}
.data-tag2 > div:last-child{
    font-size: 24px;
    line-height: 1;
}
.section-3 .text-item > div:last-child{
    padding: 10px 17px;
    flex: 1;
}
.section-3 .text-item a{
    color: #1A1A1A;
    margin-bottom: 5px;
    font-weight: 800;
}
.section-3 .text-item a:hover{
    color: #EC6E00;
}
.section-3 .text-item .people, .section-3 .text-item .location {
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}
.section-3 .text-item .people img,.section-3 .text-item .location img{
    width: 10px;
    height: 11px;
    margin-top: 8px;
}

.section.special{
    background-image: url(item4-bg.png);
    background-size: cover;
}
.special-section {
    display: flex;
    gap: 30px;
    max-width: 100%;
}

.special-left {
    width: 1026px;
    max-width: 100%;
}

.special-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 33px;
}

.special-title,.quick-title {
    font-size: 24px;
    color: #fff;
    color: #022233;
    padding-top: 12px;
    position: relative;
    font-weight: 800;
}
.special-title::before,.quick-title::before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 7px;
    background: #EC6E00;
    left: 0px;
    top: 0px;
    position: absolute;
}

.special-controls {
    display: flex;
    align-items: center;
    gap: 34px;
    position: relative;
}
.special-controls .swiper-pagination-custom{
    gap: 0;
    align-items: center;
    transform: translateX(-110%);
    top: 50%;
}
.special-controls .swiper-pagination-custom .dot,.special-controls .swiper-pagination-custom .dot.active{
    border-radius: 0;
    height: 1px;
    width: 70px;
}
.special-controls .swiper-pagination-custom .dot.active{
    height: 4px;
}
.special-controls .more-link{
    flex-shrink: 0;
}
.swiper-btn path{
    fill: #002860;
}

.special-swiper {
    width: 100%;
    overflow: hidden;
}

.special-swiper .swiper-slide {
    /* width: 340px; */
}

.special-card {
    /* border-radius: 8px; */
    overflow: hidden;
    position: relative;
    display: block;
}

.special-card img {
    width: 100%;
    height: 115px;
    object-fit: contain;
}

.special-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(transparent, rgba(236, 110, 0, 0.9)); */
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 24px;
    height: 100%;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
}

.special-right {
    flex: 1;
    border-left: 1px dashed #979797;
    padding-left: 37px;
    min-width: 0;
}

.quick-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}


.quick-swiper {
    width: 100%;
    /* height: 120px; */
    overflow: hidden;
}
.quick-swiper .swiper-wrapper {
    width: auto !important;
}
.quick-swiper .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}

.quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.quick-img{
    width: 113px;
    height: 113px;
    background-image: url(dbx-blue.png);
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.quick-card:hover .quick-img{
    background-image: url(dbx-green.png);
}
.quick-card img {
    width: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -44%);
}

.quick-card .quick-title1 {
    font-size: 18px;
    color: #022233;
    text-align: center;
}

.quick-card:hover .quick-title1 {
    color: #EC6E00;
}

footer {
    background: linear-gradient( 225deg, #C44123 0%, #46648D 100%);
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px 35px;
}

.footer-logo img {
    height: 66px;
}
.footer-logo img:last-child{
    height: 56px;
}

.footer-info p {
    font-size: 16px;
    color: #fff;
    margin: 10px 0;
}

.footer-right {
    display: flex;
    gap: 20px 40px;
    align-items: center;
}

.footer-right img {
    height: 80px;
}
.footer-right a img{
    margin-bottom: -10px;
}
.footer-right > img{
    height: 60px;
}

@media (max-width: 1560px) {
    .nav-item > a{
        padding: 15px 20px;
    }
    .container,.header-search-area .container {
        width: 100% !important;
        padding: 0 20px;
    }
    .hero-left,.column-left,.special-left{
        width: 949px;
    }
    .hero-right .more-link{
        margin-right: 40px;
    }
    footer {
        padding: 30px 0;
    }
    .footer-left {
        gap: 20px;
    }
    .footer-logo {
        gap: 10px 20px;
    }
    .footer-logo img {
        height: 56px;
    }
    .footer-logo img:last-child {
        height: 46px;
    }
    .footer-info p {
        font-size: 14px;
    }
    .footer-right {
        gap: 15px 30px;
    }
    .footer-right img {
        height: 66px;
    }
    .footer-right > img {
        height: 50px;
    }
}

@media (max-width: 1440px) {
    .nav-item > a{
        font-size: 22px;
    }
    .hero-left,.column-left,.special-left{
        width: 800px;
    }
    .nav-item > a{
        padding: 15px 10px;
    }
    .hero-swiper .slide-caption{
        padding-bottom: 50px;
    }
    .special-controls .swiper-pagination-custom .dot,.special-controls .swiper-pagination-custom .dot.active{
        border-radius: 0;
        height: 1px;
        width: 28px;
    }
    .special-card .overlay{
        font-size: 20px;
    }
    footer {
        padding: 25px 0;
    }
    .footer-logo {
        gap: 10px 15px;
    }
    .footer-logo img {
        height: 48px;
    }
    .footer-logo img:last-child {
        height: 40px;
    }
    .footer-info p {
        font-size: 13px;
    }
    .footer-right img {
        height: 56px;
    }
    .footer-right > img {
        height: 44px;
    }
}

@media (max-width: 1240px) {
    .hero-left,.column-left,.special-left{
        width: 60%;
    }
    
    .nav-item > a{
        font-size: 19px;
    }
    .header-links{
        gap: 6px;
    }
    .media-list{
        gap: 20px;
    }
    .media-caption h4{
        margin-top: 10px;
    }
    .media-card img{
        height: 365px;
    }
    .media-caption .news-date{
        right: 0;
    }
    .data-tag2{
        padding: 37px 10px;
    }
    .section-3 .text-item > div:last-child{
        padding: 10px 0px;
    }
    footer {
        padding: 25px 0;
    }
    .footer-left {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .footer-info p {
        font-size: 13px;
        margin: 5px 0;
    }
    .footer-right {
        gap: 10px 20px;
    }
    .footer-right img {
        height: 50px;
    }
    .footer-right > img {
        height: 40px;
    }
}


@media (max-width: 1024px) {
    .logo{
        margin: 50px 0 40px 0;
    }
    .logo img{
        height: auto;
        width: 94%;
    }
    .section{
        padding-bottom: 0;
    }
    .news-header{
        font-size: 16px;
        padding: 10px 15px;
    }
    .header-links{
        position: absolute;
        top: 10px;
        right: 20px;
    }
    .hero-right .more-link{
        /* right: 20px; */
        top: 8px;
        bottom: auto;
    }
    .media-card img{
        height: auto;
    }
    .column-left .more-link,.special-controls .more-link{
        margin-right: 20px;
    }
    .hero-section,
    .two-column,
    .special-section {
        flex-direction: column;
    }

    .hero-left,
    .column-left,
    .special-left {
        width: 100%;
    }

    .hero-swiper {
        height: 400px;
    }

    .media-list {
        flex-direction: column;
    }
    .column-right,.hero-right{
        background-image: none;
    }
    .notice-content,.hero-right{
        padding: 0;
        position: relative;
    }
    .hero-section{
        border: none;
    }

    .hero-left{
        margin-bottom: 40px;
    }
    
    .hero-swiper .slide-caption{
        padding-bottom: 20px;
    }

    .media-left {
        width: 100%;
    }

    
    .section-3 .text-item > div:last-child{
        padding: 10px;
    }

    
    .special-right{
        margin-bottom: 40px;
    }

    .nav-menu {
        display: none;
    }

    .special-right {
        padding: 0;
        border: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    footer {
        padding: 30px 0;
    }
    .footer-content {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        text-align: center;
    }
    .footer-left {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-info p {
        font-size: 14px;
        margin: 8px 0;
    }
    .footer-right {
        gap: 15px 30px;
    }
    .footer-right img {
        height: 60px;
    }
    .footer-right > img {
        height: 46px;
    }
}

@media (max-width: 768px) {

    .hero-swiper {
        height: 250px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .tabs-header {
        flex-wrap: wrap;
    }

    .tab-item {
        padding: 10px 15px;
        font-size: 16px;
    }

    .section-3 .column-left .text-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .special-controls .swiper-pagination-custom{
        display: none;
    }
    footer {
        padding: 25px 15px;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    .footer-left {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .footer-logo {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-logo img {
        height: 42px;
    }
    .footer-logo img:last-child {
        height: 36px;
    }
    .footer-info p {
        font-size: 12px;
        margin: 5px 0;
        line-height: 1.6;
    }
    .footer-info p br {
        display: none;
    }
    .footer-right {
        gap: 10px 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-right img {
        height: 48px;
    }
    .footer-right > img {
        height: 38px;
    }
    .special-right {
        border-left: none;
        padding-left: 0;
    }
    .news-item{
        flex-wrap: wrap;
    }
    .news-title{
        display: block;
    }
    .kyjz-lists .text-item a{
        display: block;
    }
    .kyjz-lists .text-item{
        flex-direction: column;
        align-items: flex-start;
    }
    .notice-date-tag{
        height: fit-content;
    }
    .section-3 .text-item a,.notice-item a{
        -webkit-line-clamp: 5;
    }
}

@media (max-width: 480px) {
    .special-controls{
        gap: 15px;
    }
    .hero-swiper .slide-caption{
        font-size: 22px;
    }
    .section-title{
        position: relative;
    }
    .section-3 .section-title{
        margin-bottom: 43px;
    }
    .section-3 .more-link{
        position: absolute;
        top: 100%;
        right: 0;
    }
    .tab-item{
        padding: 8px 8px;
    }
    .media-card img {
        height: 243px;
    }
    footer {
        padding: 20px 10px;
    }
    .footer-logo img {
        height: 36px;
    }
    .footer-logo img:last-child {
        height: 30px;
    }
    .footer-info p {
        font-size: 11px;
    }
    .footer-right img {
        height: 40px;
    }
    .footer-right > img {
        height: 32px;
    }
    .footer-right {
        gap: 8px 15px;
    }
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #C44123;
    z-index: 2000;
    transition: left 0.3s;
    overflow-y: auto;
}

.mobile-sidebar.open {
    left: 0;
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.sidebar-menu a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-item-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #fff;
    position: relative;
}

.sidebar-item-link::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s;
    margin-left: 10px;
}

.sidebar-item.active .sidebar-item-link::after,
.sidebar-item.has-sub.active .sidebar-item-link::after {
    transform: rotate(180deg);
}

.sidebar-sub {
    background: rgba(255,255,255,0.05);
    display: none;
}

.sidebar-item.active .sidebar-sub {
    display: block;
}

.sidebar-sub a {
    padding-left: 40px;
    font-size: 16px;
    border-bottom: none;
}

.sidebar-sub-item {
    border-bottom: none;
}

.sidebar-sub-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #fff;
    font-size: 16px;
    position: relative;
}

.sidebar-sub-link::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s;
    margin-left: 10px;
}

.sidebar-sub-item.active .sidebar-sub-link::after {
    transform: rotate(180deg);
}

.sidebar-sub-sub {
    background: rgba(255,255,255,0.05);
    display: none;
}

.sidebar-sub-item.active .sidebar-sub-sub {
    display: block;
}

.sidebar-sub-sub a {
    padding-left: 60px;
    font-size: 14px;
    border-bottom: none;
}