:root {
    --primary-color: #0B268F;
    --primary-light: #2C47B0;
    --secondary-color: #1976D2;
    --accent-color: #4EAEFF;
    --accent-secondary: #FFB74D;
    --text-color: #303133;
    --text-secondary: #606266;
    --light-text: #909399;
    --border-color: #E4E7ED;
    --background-color: #F5F7FA;
    --white: #fff;
    --shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    --card-shadow: 0 8px 24px rgba(11, 38, 143, 0.09);
    --hover-shadow: 0 12px 32px rgba(11, 38, 143, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-sm: 4px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --header-height: 80px;
    --footer-color: #0B268F;
    --gradient-primary: linear-gradient(135deg, #0B268F 0%, #1976D2 100%);
    --gradient-secondary: linear-gradient(135deg, #1976D2 0%, #4EAEFF 100%);
    --gradient-accent: linear-gradient(135deg, #4EAEFF 0%, #81D4FA 100%)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: "Microsoft YaHei",sans-serif;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 130px;
    z-index: 1000;
    background: linear-gradient(to bottom,rgba(11,38,143,.9),rgba(255,255,255,0));
    border-bottom: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    box-sizing: border-box;
    max-width: 100vw
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box
}

.logo img {
    height: 60px
}

.nav-item {
    position: relative;
    color: #fff;
    margin: 0 15px
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    padding: 10px 0;
    display: block;
    transition: color .3s ease
}

.nav-link:hover {
    color: #1e88e5
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255,255,255,.95);
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    width: 100%
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-menu a {
    color: #464646;
    text-decoration: none;
    padding: 10px 20px;
    transition: background .3s ease;
    display: block;
    width: 100%;
    border-bottom: #fff 1px solid
}

.dropdown-menu a:last-child {
    border-bottom: none
}

.dropdown-menu a:hover {
    background: rgba(135,206,235,.2)
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    position: relative;
    background-color: rgba(0,0,0,.1);
    border-radius: 4px;
    padding: 8px;
    margin-right: 5px
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 2px 0;
    transition: all .3s ease;
    border-radius: 2px
}

.mobile-menu-btn.active {
    background-color: rgba(0,0,0,.2)
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px)
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px)
}

.nav-menu.desktop-menu {
    display: flex !important;
}

.nav-menu.mobile-menu {
    display: none !important;
}

@media screen and (max-width:768px) {
    .nav-menu.desktop-menu {
        display: none !important;
    }
    .nav-menu.mobile-menu {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
    }
}

.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    max-width: 100vw
}

.slider-container {
    width: 100%;
    height: 100%;
    max-width: 100vw
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s ease;
    max-width: 100vw
}

.slide.active {
    opacity: 1
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slider-controls {
    display: none
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2
}

.dot {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: all .3s ease
}

.dot.active {
    background: #fff;
    width: 50px
}

.quick-nav {
    padding: 30px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.05)
}

.quick-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform .3s ease
}

.quick-nav-item:hover {
    transform: translateY(-5px)
}

.quick-nav-icon {
    width: 60px;
    height: 60px;
    background: #0b268f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: background .3s ease
}

.quick-nav-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain
}

.quick-nav-item:hover .quick-nav-icon {
    background: #1e3fbb
}

.quick-nav-item span {
    font-size: 16px;
    font-weight: 500
}


.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.news-section {
    background: rgba(255,255,255,.95);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    padding: 20px
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #0b268f;
    padding-bottom: 10px
}

.sidebar-header {
    display: flex;
    justify-content: center;}

.sidebar-header h2{
    display: flex;
    margin:0 auto;
}

.section-title {
    display: flex;
    align-items: center
}

.section-title h2 {
    font-size: 24px;
    color: #004797;
    margin: 0;
    font-weight: 700;
    position: relative
}

.section-title-img {
    width: 24px;
    height: 24px;
    margin-right: 10px
}

.section-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 10px
}

.more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: .9rem;
    display: flex;
    margin-top: 10px;
    align-items: center;
    transition: all .3s ease
}

.more-link i {
    margin-left: 5px;
    transition: transform .3s ease
}

.more-link:hover {
    color: var(--secondary-color)
}

.more-link:hover i {
    transform: translateX(5px)
}

.featured-news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.featured-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 4px
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease
}

.featured-image:hover img {
    transform: scale(1.05)
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.news-item {
    border-bottom: 1px dashed #ddd;
    padding-bottom: 15px
}

.news-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 15px;
    font-size: 16px
}

.notice-list {
    padding: 10px
}

.notice-item {
    border-bottom: 1px dashed #e0e0e0;
    padding: 10px 0;
    transition: all .3s ease
}

.notice-item:last-child {
    border-bottom: none
}

.notice-item:hover {
    transform: translateX(5px)
}

.notice-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all .3s ease
}

.notice-link:hover {
    color: var(--primary-color)
}

.news-title,.notice-content {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 500px
}

.notice-date {
    background: #fff;
    min-width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all .3s ease
}

.notice-item:hover .notice-date {
    background: var(--primary-color);
    color: #fff
}

.date-day {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1
}

.date-year {
    font-size: .8rem;
    margin-top: 5px
}

.news-section.full-width {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 20px;
    background: rgba(255,255,255,.95);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    box-sizing: border-box;
    overflow: hidden
}

.news-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    box-sizing: border-box
}

.news-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-sizing: border-box
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s ease;
    z-index: 0
}

.news-slide.active {
    opacity: 1;
    z-index: 1
}

.news-slide-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden
}

.news-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease
}

.news-slider:hover .news-slide-image img {
    transform: scale(1.05)
}

.news-slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: rgba(128,128,128,.5);
    transform: translateY(0);
    transition: transform .3s ease;
    color: #fff
}

.news-slider:hover .news-slide-title {
    transform: translateY(-10px)
}

.news-slider-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2
}

.news-slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    opacity: 0
}

.news-slider:hover .news-slider-controls button {
    opacity: 1
}

.news-prev {
    left: 20px
}

.news-next {
    right: 20px
}

.news-slider-controls button:hover {
    background: rgba(0,0,0,.8);
    transform: translateY(-50%) scale(1.1)
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px
}

.news-item {
    border-bottom: 1px dashed #ddd;
    padding-bottom: 15px;
    transition: all .3s ease
}

.news-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all .3s ease
}

.news-link:hover {
    color: #0b268f
}

.news-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 15px;
    font-size: 16px
}

.modules-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 300px!important;
    gap: 30px
}

.module-item {
    background-image: url(../images/xiaobeijingyi.jpg);
    background-size: cover;
    padding: 20px;
    transition: transform .3s ease;
    position: relative;
    z-index: 2;
    width: 420px
}

.module-item:hover {
    transform: translateY(-5px)
}

.third {
    width: 300px
}

.quick-links-list-container ul li {
    margin-top: -10px;
    padding-bottom: 35px
}

.quick-links-list-container ul li a{
    background-color: #fff;
}

.quick-links-list-container ul li a:hover{
    background-color: #004797;
}

@media screen and (max-width:768px) {
    body,html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw
    }

    aside,div,footer,header,main,nav,section {
        max-width: 100vw;
        box-sizing: border-box
    }

    a,h1,h2,h3,h4,h5,h6,p,span {
        overflow-wrap: break-word;
        word-wrap: break-word;
        -ms-word-break: break-all;
        word-break: break-all;
        word-break: break-word
    }

    .navbar {
        height: 80px;
        width: 100%;
        max-width: 100vw;
        padding: 0;
        overflow-x: hidden
    }

    .nav-container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px
    }

    .logo img {
        height: 40px
    }

    .news-section.full-width {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        box-sizing: border-box;
        overflow: hidden
    }

    .news-content {
        width: 100%;
        max-width: 100%;
        padding: 0
    }

    .news-slider {
        max-width: 100%;
        overflow: hidden
    }

    .news-slide {
        max-width: 100%
    }

    .news-slide-image {
        max-width: 100%
    }

    .news-slide-title {
        max-width: 100%
    }

    .modules-container {
        width: 100%;
        max-width: 100%;
        padding: 10px;
        box-sizing: border-box;
        overflow: hidden
    }

    .module-item {
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        overflow-x: hidden;
    }

    .content-container,.content-section,.grassroots-container,.grassroots-union,.quick-links-container,.quick-links-section,.quick-nav,.quick-nav-container,.slide,.slider,.slider-container {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box
    }

    .content-container,.grassroots-container,.modules-container,.news-section.full-width,.quick-nav {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden
    }

    body {
        overflow-x: hidden;
        max-width: 100vw
    }

    * {
        box-sizing: border-box
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0b268f;
        padding: 10px 0;
        z-index: 9999;
        box-shadow: 0 5px 10px rgba(0,0,0,.2)
    }

    .nav-menu.active {
        display: block!important
    }

    .nav-link {
        padding: 12px 15px;
        display: block;
        width: 100%;
        text-align: center;
        font-size: 15px
    }

    .dropdown-menu {
        width: 100%;
        padding: 0;
        margin: 0;
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        display: none;
        background: rgba(0,0,0,.2)
    }

    .dropdown.active .dropdown-menu {
        display: block
    }

    .dropdown-menu a {
        padding: 10px 15px;
        color: #fff;
        text-align: center
    }

    .content-container {
        grid-template-columns: 1fr
    }

    .featured-news {
        grid-template-columns: 1fr
    }

    .featured-image {
        height: 200px
    }

    .slider-controls button {
        padding: 10px;
        font-size: 16px
    }

    .quick-nav-container {
        flex-wrap: wrap;
        gap: 15px
    }

    .quick-nav-item {
        width: calc(50% - 15px)
    }

    .quick-nav-icon {
        width: 50px;
        height: 50px
    }

    .quick-nav-icon img {
        width: 30px;
        height: 30px
    }

    .news-content {
        grid-template-columns: 1fr
    }

    .news-slider {
        height: 300px
    }

    .modules-container {
        grid-template-columns: 1fr!important;
        gap: 20px
    }

    .news-section.full-width {
        margin-bottom: 20px
    }

    .news-slide-title h3 {
        font-size: 16px
    }

    .news-slider-controls button {
        padding: 10px;
        font-size: 16px
    }

    .content-section,.grassroots-union,.modules-section,.quick-links-section {
        padding: 20px 0
    }

    .content-container,.grassroots-container,.modules-container,.news-section.full-width,.quick-nav {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        margin-left: auto;
        margin-right: auto
    }

    .module-item {
        margin-left: 0;
        margin-right: 0;
        width: 100%
    }

    .news-content {
        padding: 0
    }

    .slider {
        height: 200px;
        margin-top: 80px;
        max-width: 100vw;
        overflow: hidden
    }

    img {
        max-width: 100%;
        height: auto
    }

    .news-slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 100%
    }

    .news-slider-controls button {
        width: 30px;
        height: 30px
    }

    .news-title,.notice-content {
        max-width: 400px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .mobile-menu-btn {
        display: flex;
        padding: 8px;
        z-index: 1002
    }

    .desktop-menu {
        display: none
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,.1)
    }

    .mobile-menu.active {
        display: block
    }

    .quick-links-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    .quick-link-item {
        padding: 14px 6px !important;
    }
    .quick-link-icon {
        width: 40px !important;
        height: 40px !important;
    }
    .quick-link-icon i, .quick-link-icon img {
        font-size: 18px !important;
        width: 18px !important;
        height: 18px !important;
    }
    .quick-link-title {
        font-size: 13px !important;
    }
}

@media screen and (max-width:480px) {
    .content-container,.main-container,.module-item,.modules-container,.nav-container,.navbar,.news-section {
        width: 100%!important;
        max-width: 100vw!important;
        padding-left: 5px!important;
        padding-right: 5px!important;
        margin-left: 0!important;
        margin-right: 0!important;
        box-sizing: border-box!important;
        overflow-x: hidden!important
    }

    .module-item {
        padding-left: 0 !important;
        padding-right: 0 !important;
        font-size: 14px;
    }

    .news-title,.notice-content {
        max-width: 300px
    }

    .featured-image {
        width: 100%;
        height: auto;
        max-height: 150px
    }

    .news-list {
        gap: 10px
    }

    .news-title {
        font-size: 14px
    }

    .main-container {
        width: 100%;
        max-width: 100vw!important;
        overflow-x: hidden
    }

    .quick-link-item {
        padding: 10px 2px !important;
    }
    .quick-link-title {
        font-size: 12px !important;
    }
    .quick-link-icon {
        width: 32px !important;
        height: 32px !important;
    }
    .quick-link-icon i, .quick-link-icon img {
        font-size: 14px !important;
        width: 14px !important;
        height: 14px !important;
    }
}

.grassroots-union {
    background-image: url(../images/shuangtaba.jpg);
    height: 400px;
    background-size: 100% 95%;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 0;
    position: relative
}

.grassroots-union .tower {
    position: absolute;
    margin-top: -10px;
    width: 100%
}

.section-header1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    margin-bottom: 40px;
    border-bottom: 2px solid #0b268f;
    padding-bottom: 10px
}

.modules-section .big {
    position: absolute;
    display: block;
    width: 100%;
    height: 580px;
    margin-left: -110px;
    margin-top: -70px
}


.grassroots-union::before {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.grassroots-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    height: 306px;
    margin: 0 auto;
    padding: 0 20px
}

.grassroots-slider {
    position: relative;
    margin-top: 20px;
    overflow: hidden
}

.grassroots-wrapper {
    display: flex;
    margin-left: 90px;
    transition: transform .5s ease;
    gap: 20px
}

.grassroots-item {
    flex: 0 0 calc(33.333% - 14px);
    text-decoration: none;
    color: #333;
    transition: transform .3s ease
}

.grassroots-item:hover {
    transform: translateY(-5px)
}

.grassroots-image {
    width: 444px;
    height: 250px;
    overflow: hidden;
    margin-bottom: 10px
}

.grassroots-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease
}

.grassroots-item:hover .grassroots-image img {
    transform: scale(1.05)
}

.grassroots-title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px
}



.grassroots-next,.grassroots-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    z-index: 2
}

.grassroots-next:hover,.grassroots-prev:hover {
    background: rgba(0,0,0,.8)
}

.grassroots-prev {
    left: -50px
}

.grassroots-next {
    right: -50px
}

.grassroots-container:hover .grassroots-prev {
    left: 10px
}

.grassroots-container:hover .grassroots-next {
    right: 10px
}

.footer {
    background: var(--footer-color);
    color: var(--white);
    margin-top: 0px;
    padding-top: 0px;
    position: relative
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl)
}

.footer-logo {
    margin-bottom: 30px;
    margin-right: 20px
}

.footer-logo img {
    height: 60px
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color .3s ease;
    font-size: 14px
}

.footer-links a:hover {
    color: #fff
}

.footer-info p {
    margin: var(--spacing-sm) 0;
    opacity: .9;
    line-height: 1.8
}

.footer-bottom {
    background-color: rgba(0,0,0,.2);
    padding: var(--spacing-md) 0;
    margin-top: var(--spacing-xl);
    text-align: center
}

.footer-bottom p {
    margin: 0;
    opacity: .8;
    font-size: .9rem
}

@media screen and (max-width:768px) {

    .footer-logo {
        margin-top: 20px
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center
    }

    .footer-left {
        align-items: center
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap
    }

    .footer-info {
        text-align: center
    }


    .quick-links-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 20px
    }

    .slider {
        margin-top: 80px
    }

    .grassroots-image {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 250px
    }

    .grassroots-image video {
    object-fit:cover;
    height:250px;
    margin:0 auto;

}
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s ease
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0)
}

.quick-links-section {
    height: 300px;
    background-image: url(../images/shuangtaba.jpg);
    background-size: cover;
    padding: 10px 0;
    margin: 10px 0;
    position: relative
}



.quick-links-container {
    display:felx;
    justify-content: space-around;
    max-width: 1200px;
    height: 300px;
    margin: 80px auto;
    padding: 0 20px;
    position: relative;
    z-index: 1
}

.quick-links-header {
    text-align: center;
    margin-bottom: var(--spacing-xl)
}

.quick-links-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-md)
}

.quick-links-grid {
    display: flex;
    height:200px;
    justify-content: space-around;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: var(--spacing-xl)
}

.quick-link-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 150px;
    width: 300px;
    padding: var(--spacing-lg);
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition)
}

.quick-link-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow)
}

.quick-link-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.8);
    border-radius: 50%;
    transition: all .3s ease;
    color: var(--primary-color)
}

.quick-link-item:hover .quick-link-icon {
    background: var(--primary-color);
    transform: scale(1.1);
    color: #fff
}

.quick-link-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: var(--transition)
}

.quick-link-item:hover .quick-link-icon img {
    filter: brightness(0) invert(1)
}

.quick-link-title {
    color: var(--text-color);
    font-weight: 500;
    text-align: center;
    transition: var(--transition)
}

.quick-link-item:hover .quick-link-title {
    color: var(--primary-color)
}

@media screen and (max-width:768px) {
    .quick-links-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 15px
    }

}

.modules-section {
    padding: 40px 0;
    background-image: url(../images/dabeijinger.jpg);
    position: relative
}



.modules-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px
}


@media screen and (max-width:768px) {
    .content-section,.grassroots-union,.modules-section,.quick-links-section {
        padding: 20px 0
    }

    .modules-container {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

@media screen and (max-width:1200px) {
    .main-container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%
    }

    .grassroots-union {
        background-image: url(../images/shuangtaba.jpg);
        background-size: 100% 50%;
        background-position: center center;
        padding: 0;
        position: relative
    }

    .nav-link {
        padding: 0;
        display: block;
        width: 100%;
        text-align: center;
        font-size: 17px
    }

    .content-container {
        gap: 20px;
        max-width: 100%;
        width: 100%
    }

    .news-container {
        width: 100%;
        max-width: 100%
    }

    .news-slider {
        width: 100%;
        max-width: 100%
    }

    .news-item {
        width: 100%;
        max-width: 100%
    }

    .news-content {
        width: 100%;
        max-width: 100%
    }

    .news-image {
        width: 100%;
        max-width: 100%
    }

    .news-text {
        width: 100%;
        max-width: 100%
    }

    .news-title {
        font-size: 1.1rem
    }

    .news-description {
        font-size: .9rem
    }

    .news-date {
        font-size: .8rem
    }

    .modules-container {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 20px
    }

    .module-item {
        margin-left: 20px;
        padding: 0;
        width: 95%;
        max-width: 95%
    }
    .modules-container {
        width: 95% !important;
        max-width: 95vw !important;
        left: 2% !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    .module-item {
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-x: hidden !important;
    }

    .grassroots-union {
        background-size: cover;
    }

    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
    .quick-link-item {
        padding: 20px 12px !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    .quick-link-icon {
        width: 64px !important;
        height: 64px !important;
    }
    .quick-link-icon i, .quick-link-icon img {
        font-size: 32px !important;
        width: 32px !important;
        height: 32px !important;
    }
    .quick-link-title {
        font-size: 16px !important;
    }
}

@media screen and (max-width:900px) {
    .quick-links-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .quick-link-item {
        padding: 16px 8px !important;
    }
    .quick-link-icon {
        width: 52px !important;
        height: 52px !important;
    }
    .quick-link-icon i, .quick-link-icon img {
        font-size: 24px !important;
        width: 24px !important;
        height: 24px !important;
    }
    .quick-link-title {
        font-size: 15px !important;
    }
}

@media screen and (max-width:768px) {
    .main-container {
        padding: 0 10px;
        max-width: 100%;
        width: 100%
    }

    .grassroots-container {
        height: 200px;
    }

    .grassroots-union {
        background-image: url(../images/shuangtaba.jpg);
        background-size: 100% 90%;
        background-position: center bottom;
        background-repeat: no-repeat;
        padding: 0;
        position: relative
    }

    .content-container {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
        width: 100%
    }

    .news-container {
        width: 100%;
        max-width: 100%
    }

    .news-slider {
        width: 100%;
        max-width: 100%
    }

    .news-item {
        width: 100%;
        max-width: 100%
    }

    .news-content {
        width: 100%;
        max-width: 100%
    }

    .news-image {
        width: 100%;
        max-width: 100%;
        height: 180px
    }

    .news-text {
        width: 100%;
        max-width: 100%;
        padding: 12px
    }

    .news-title {
        font-size: 1rem
    }

    .news-description {
        font-size: .85rem
    }

    .news-date {
        font-size: .75rem
    }

    .article-item {
       padding:10px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px
    }

    .article-link {
        font-size: .9rem
    }

    .article-date {
        font-size: .75rem
    }

    .module {
        width: 100%;
        max-width: 100%
    }

    .module-header h2 {
        font-size: 1.1rem
    }

    .module-content {
        padding: 12px
    }

    .module-item {
        padding: 8px 0;
        width: 100%;
        max-width: 100%
    }

    .module-link {
        font-size: .9rem
    }

    .module-date {
        font-size: .75rem
    }

    .modules-container {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 15px
    }
}

@media screen and (max-width:480px) {
    .main-container {
        padding: 0 8px;
        max-width: 100%;
        width: 100%
    }

    .news-image {
        height: 150px
    }

    .news-text {
        padding: 10px
    }

    .news-title {
        font-size: .95rem
    }

    .news-description {
        font-size: .8rem
    }

    .article-link {
        font-size: .85rem
    }

    .module-header h2 {
        font-size: 1rem
    }

    .module-link {
        font-size: .85rem
    }

    .modules-container {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 10px
    }
}
.quick-link-item1 {
            transition: all 0.2s cubic-bezier(.4,0,.2,1);
            transform: translateY(0);
            box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
            flex: 1;
            min-width: 0;
        }
        .quick-link-item1:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.13);
        }
        .quick-link-icon1 {
            transition: all 0.2s cubic-bezier(.4,0,.2,1);
        }
        .quick-link-item1:hover .quick-link-icon1 {
            transform: scale(1.13) rotate(-3deg);
        }
        .background-overlay1 {
            background-image: url(../images/bgi.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }
        .background-overlay1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(224, 242, 254, 0.92);
            z-index: 0;
        }
        .quick-links-container1 {
            display: flex;
            flex-wrap: nowrap;
            gap: 0.5rem;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .quick-links-container1::-webkit-scrollbar {
            display: none;
        }
}
.search {
    position: absolute;
    top: 20%;
    right: 10%;
}
@media screen and (max-width: 768px) {
    .search {
    display:none;
}

  .quick-links-container1 {
                gap: 1.5rem;
            }

  .nav-link {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    min-height: 48px !important;
    line-height: 1.5 !important;
    font-size: 18px;
  }
}


        .search-container {
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(8px);
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 9999px;
            overflow: hidden;
        }
        .search-container:hover {
            background-color: rgba(255, 255, 255, 0.25);
        }
        .search-container:focus-within {
            background-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
        }
        .search-input {
            transition: all 0.3s ease;
            padding-right: 40px;
            background-color: transparent;
            color: white;
            caret-color: white;
        }
        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        .search-input:focus {
            outline: none;
        }
        .search-btn {
            transition: all 0.2s ease;
            color: rgba(255, 255, 255, 0.8);
        }
        .search-btn:hover {
            color: white;
            transform: scale(1.1);
        }