        /* ================= 基础重置与变量 ================= */
        :root {
            --primary-red: #c61d23;
            --bg-gray: #f5f5f5;
            --text-main: #333333;
            --text-light: #666666;
            --content-width: 1420px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }

        body {
            background-color: var(--bg-gray);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .wrapper {
            max-width: var(--content-width);
            margin: 0 auto;
            padding: 0 15px;
            box-sizing: border-box;
        }

        /* ================= 顶部导航 ================= */
        .header {
            /* background-color: var(--primary-red); */
            background-image: linear-gradient(90deg, #b82a2f 0%, #dd4f4f 35%, #b82a2f  100%);

            color: #fff;
            padding: 7px 0;
        }

        .header .wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1650px;
        }

        .logo-box {
            display: flex;
            align-items: center;
            gap: 18px;
            /* background:url(asset/logo.png) no-repeat left center; */
        }

        .logo-box img {
            height: 74px;
            transition: height 0.2s ease;
        }

        /* 预留logo位置 */
        .logo-text {
            font-size: 22px;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .head-right {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-end;
            width: 70%;
            min-width: 480px;
        }

        .top-tools {
            display: flex;
            align-items: center;
            gap: 22px;
            font-size: 15px;
            margin-bottom: 18px;
        }

        .search-box {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 22px;
            padding: 2px 13px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            display: flex;
            align-items: center;
        }

        .search-box input {
            background: transparent;
            border: none;
            outline: none;
            color: #fff;
            font-size: 12px;
            width: 120px;
        }

        .search-box input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .nav-links {
            display: flex;
            gap: 10px;
            font-size: 18px;
            width: 100%;
            justify-content: space-between;
            align-items: center;
        }

        .nav-item {
            position: relative;
            flex: 1;
            text-align: center;
            padding-bottom: 20px;
        }

        .nav-item::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 20px;
            background: transparent;
            z-index: 1;
        }

        .nav-item::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -10px;
            width: 140px;
            height: 24px;
            transform: translateX(-50%);
            background: transparent;
            z-index: 2;
        }

        .nav-item > a {
            position: relative;
            display: block;
            padding: 10px 8px;
            color: #fff;
            border-radius: 4px;
        }

        .nav-item > a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -8px;
            width: 0;
            height: 2px;
            background: #fff;
            transform: translateX(-50%);
        }

        .nav-item.active > a {
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
        }

        .nav-item:hover > a {
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
        }

        .nav-item.active > a::after,
        .nav-item:hover > a::after {
            width: 60%;
        }

        .nav-links:hover .nav-item.active:not(:hover) > a {
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
        }

        .nav-links:hover .nav-item.active:not(:hover) > a::after {
            width: 0;
        }

        .nav-item.active > a {
            font-weight: 600;
        }

        .submenu {
            position: absolute;
            top: calc(100% + 4px);
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            min-width: 160px;
            padding: 6px 0;
            background: var(--primary-red);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 4px;
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
            color: #fff;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
            z-index: 20;
        }

        .submenu::before {
            display: none;
        }

        .submenu li {
            list-style: none;
        }

        .submenu a {
            display: block;
            padding: 14px 18px;
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            text-align: left;
            white-space: nowrap;
            position: relative;
            transition: background 0.18s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        }

        .submenu li:last-child a {
            border-bottom: none;
        }

        .submenu a:hover {
            background: rgba(255, 255, 255, 0.14);
            color: #fff;
        }

        .nav-item:hover .submenu,
        .nav-item:hover .submenu:hover {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        /* ================= 轮播大图 ================= */
        .hero {
            width: 100%;
            height: 480px;
            position: relative;
            overflow: hidden;
            background: #ddd;
        }

        .hero-track {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            clip-path: circle(0% at 50% 50%);
            transition: opacity 0.5s ease, clip-path 1s cubic-bezier(0.65, 0, 0.35, 1);
            will-change: clip-path, opacity;
        }

        .hero-slide.active {
            opacity: 1;
            clip-path: circle(100% at 50% 50%);
        }

        .hero-slide.leaving {
            opacity: 0;
            clip-path: circle(0% at 50% 50%);
            transition: opacity 0.4s ease 0.1s, clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .hero-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.12);
            transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .hero-slide.active img {
            transform: scale(1);
        }

        .hero-slide.leaving img {
            transform: scale(1.08);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.2) 100%);
            z-index: 0;
        }

        .hero-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 2;
        }

        .hero-dot {
            display: inline-block;
            width: 30px;
            height: 4px;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            border: 0;
            padding: 0;
            border-radius: 999px;
            transition: background 0.3s ease, width 0.3s ease;
        }

        .hero-dot.active {
            width: 44px;
            background: #fff;
        }

        .hero-arrow {
            position: absolute;
            top: 50%;
            width: 42px;
            height: 88px;
            transform: translateY(-50%);
            border-radius: 0 48px 48px 0;
            border: 1px solid rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.18);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            transition: background 0.3s ease, transform 0.3s ease;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            backdrop-filter: blur(6px);
        }

        .hero-arrow:hover {
            background: rgba(255, 255, 255, 0.36);
            transform: translateY(-50%) scale(1.02);
        }

        .hero-arrow span {
            font-size: 24px;
            line-height: 1;
            pointer-events: none;
        }

        .hero-arrow.prev {
            left: 0;
            border-radius: 0 60px 60px 0;
        }

        .hero-arrow.next {
            right: 0;
            border-radius: 60px 0 0 60px;
        }

        @media (max-width: 900px) {
            .nav-links {
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 8px 12px;
            }

            .nav-item {
                flex: 0 0 calc(50% - 6px);
            }

            .submenu {
                left: 0;
                transform: translateY(6px);
                min-width: 140px;
            }

            .nav-item:hover .submenu {
                transform: translateY(0);
            }

            .hero {
                height: 320px;
            }

            .hero-arrow {
                width: 34px;
                height: 68px;
            }

            .hero-dot {
                width: 22px;
            }

            .hero-dot.active {
                width: 34px;
            }
        }

        /* ================= 公共模块标题 ================= */
        .section-title {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            width: 100%;
            position: relative;
            font-size: 28px;
            font-weight: bold;
            color: var(--primary-red);
            padding: 50px 0 40px;
        }

        .section-title-more {
            position: absolute;
            right: 0;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 16px;
            color: #666;
            font-weight: normal;
        }

        .section-title-more img {
            width: 18px;
            height: 18px;
            display: inline-block;
        }

        /* .section-title::before,
        .section-title::after {
            content: "";
            display: block;
            width: 150px;
            height: 1px;
            position: relative;
        } */

        .section-title::before {
            background: linear-gradient(to left, var(--primary-red), transparent);
        }

        .section-title::after {
            background: linear-gradient(to right, var(--primary-red), transparent);
        }
.mobile-menu-toggle{
    display: none;
}
        /* ================= 1. 学院动态 ================= */
        .news-module {
            display: flex;
            justify-content: space-between;
            margin-bottom: 50px;
            gap: 24px;
            align-items: stretch;
        }

        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1.2s ease, transform 1.2s ease;
            will-change: opacity, transform;
        }

        .scroll-animate.from-left {
            transform: translateX(-60px);
        }

        .scroll-animate.from-right {
            transform: translateX(60px);
        }

        .scroll-animate.from-bottom {
            transform: translateY(46px);
        }

        .scroll-animate.from-top {
            transform: translateY(-40px);
        }

        .research-grid {
            opacity: 0;
            transition: opacity 1.2s ease;
            will-change: opacity;
        }

        .research-grid.visible {
            opacity: 1;
        }

        .research-card {
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(24px) scale(0.96);
            transform-origin: center;
            transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
            will-change: opacity, transform;
        }

        .research-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .research-card-blinds {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 2px;
            pointer-events: none;
        }

        .research-slat {
            background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
            transform: translateY(0) rotateX(0deg);
            transform-origin: center top;
            opacity: 1;
            transition: transform 0.65s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.45s ease;
            will-change: transform, opacity;
        }

        .research-card.visible .research-slat {
            transform: translateY(120%) rotateX(70deg);
            opacity: 0;
        }

        .research-card:nth-child(1) {
            transition-delay: 0.05s;
        }

        .research-card:nth-child(2) {
            transition-delay: 0.15s;
        }

        .research-card:nth-child(3) {
            transition-delay: 0.25s;
        }

        .research-card:nth-child(4) {
            transition-delay: 0.35s;
        }

        .scroll-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-animate.from-left.visible,
        .scroll-animate.from-right.visible {
            transform: translateX(0);
        }

        .scroll-animate.zoom-up.visible {
            transform: scale(1);
        }

        .notice-list {
            opacity: 0;
            transform: translateY(-24px);
            transition: opacity 1.2s ease, transform 1.2s ease;
        }

        .notice-list.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .notice-list li {
            opacity: 0;
            transform: translateY(-24px);
            transition: opacity 1.2s ease, transform 1.2s ease;
        }

        .notice-list.visible li {
            opacity: 1;
            transform: translateY(0);
        }

        .notice-list.visible li:nth-child(1) {
            transition-delay: 0.1s;
            
        }

        .notice-list.visible li:nth-child(2) {
            transition-delay: 0.2s;
        }

        .notice-list.visible li:nth-child(3) {
            transition-delay: 0.3s;
        }

        .notice-list.visible li:nth-child(4) {
            transition-delay: 0.4s;
        }

        .notice-list.visible li:nth-child(5) {
            transition-delay: 0.5s;
        }

        .notice-list.visible li:nth-child(6) {
            transition-delay: 0.6s;
        }

        .scroll-animate.zoom-up {
            transform: translateY(20px) scale(0.95);
        }

        .news-focus,
        .news-list {
            opacity: 0;
            animation-duration: 1.4s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .news-focus {
            transform: translateX(-50px);
            animation-name: slideInFromLeft;
        }

        .news-list {
            transform: translateX(50px);
            animation-name: slideInFromRight;
            animation-delay: 0.22s;
        }

        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* 左侧大图比例约 45% */
        .news-focus {
            width: 55%;
            position: relative;
            overflow: hidden;
            height: 500px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .news-focus img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.25s ease;
        }

        .news-focus:hover img {
            transform: scale(1.04);
        }

        .news-focus-title {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 14px 16px 14px 36px;
            font-size: 19px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
        }

        .news-text {
            font-weight: 550;
            flex: 1;
            font-size: 19px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: transform 0.2s ease, color 0.2s ease;
        }
.news-focus-title{
                color: #ffffff;

}
        .news-focus:hover ,
        .news-list li:hover .news-text,
        .notice-list li:hover .news-text {
            color: var(--primary-red);
            transform: translateY(-3px);
        }

        /* 右侧列表比例约 53% */
        .news-list {
            width: 43%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 500px;
        }

        .news-list li {
            display: flex;
            align-items: center;
            border-bottom: 1px dashed #ddd;
            padding-bottom: 14px;
        }

        /* .news-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        } */

        .date-box {
            width: 64px;
            height: 68px;
            background-color: var(--primary-red);
            color: #fff;
            text-align: center;
            border-radius: 4px;
            position: relative;
            margin-right: 21px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .date-box-bg {
                        width: 87px;
            height: 61px;
            color: #fff;
            text-align: center;
            border-radius: 4px;
            position: relative;
            /* margin-right: 21px; */
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-image: url(sbtb.png);
            background-repeat: no-repeat;
            background-position: center center;
            background-size: contain;
            margin-right: 15px;
        }
                .date-box-bg .day {
            font-size: 19px;
            font-weight: bold;
            line-height: 0.8;
        }

        .date-box-bg .year-month {
            font-size: 13px;
            transform: scale(0.9);          
              position: relative;

        }
        .date-box::after {
            content: "";
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            border: 1px dashed red;
            border-radius: 8px;
            pointer-events: none;
        }

        .date-box .day {
            font-size: 20px;
            font-weight: bold;
            line-height: 1;
        }

        .date-box .year-month {
            font-size: 15px;
            transform: scale(0.9);          
              position: relative;
            padding-top: 6px;
        }

        .date-box .year-month::before {
            content: "";
            position: absolute;
            top: 3px;
            left: 6px;
            right: 6px;
            height: 1px;
            background: #fff;        }

        .news-text {
            font-weight: 550;
            flex: 1;
            font-size: 19px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ================= 2. 中部红底区域 ================= */
        .red-bg-section {
            /* background-color: var(--primary-red); */
            background-image: url(bg2.png);
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            color: #fff;
            padding: 40px 0 60px;
            /* background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px); */
        }

        .red-module-container {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            align-items: stretch;
        }

        .half-col {
            width: 50%;
            display: flex;
            flex-direction: column;
        }

        .red-module-container > .half-col:last-child {
            justify-content: space-between;
        }

        .sub-title {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            padding-bottom: 10px;
            margin-bottom: 25px;
        }

        .sub-title h3 {
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sub-title h3::before {
            content: "◆";
            font-size: 14px;
        }

        .sub-title a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 9px;
        }

        .sub-title a img {
            width: 19px;
            height: 19px;
            display: inline-block;
            vertical-align: middle;
        }

        /* 左侧通知公告（白底红字日历） */
        .notice-list{
      background: #fff;
      border-radius: 4px;
      /* padding: 15px 10px;
       */
      padding: 30px 15px 20px 25px;

        }
        .notice-list li {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
      
        }

        .notice-list .date-box {
            background: #c7302c;
            /* color: var(--primary-red); */
            color: #fff;
        }

        .notice-list .news-text {
            font-weight: 550;
            color: #666666;
            font-size: 19px;
        }

        .notice-list a:hover {
            /* color: rgba(255, 255, 255, 0.7); */
            color: var(--primary-red);
        }

        /* 右侧学术活动（白色卡片） */
        .activity-card {
            /* background: #fff; */
            background: url(xshd.png) no-repeat center center;
            background-size: cover;
            color: var(--text-main);
            border-radius: 4px;
            padding: 22px 24px;
            margin-bottom: 20px;
            transition: transform 0.3s;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .activity-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .act-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 14px;
            border-bottom: 1px dashed #eee;
            padding-bottom: 12px;
            gap: 10px;
        }

        .act-speaker {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .act-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #ddd;
            overflow: hidden;
            display: inline-block;
        }

        .act-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 50%;
        }

        .act-speaker p {
            font-weight: bold;
            font-size: 20px;
            margin-bottom: 4px;
            line-height: 1.2;
        }

        .act-speaker span {
            font-size: 16px;
            color: var(--text-light);
        }

        .act-date-tag {
            color: var(--primary-red);
            font-size: 18px;
            font-weight: bold;
        }

        .act-date-tag span {
            font-size: 13px;
            font-weight: normal;
        }

        .act-title {
            font-weight: 500;
            color: var(--primary-red);
            font-size: 19px;
            margin-bottom: 12px;
            line-height: 1.4;
            min-height: 42px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .act-info {
            font-size: 14px;
            color: var(--text-light);
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            /* justify-content: center; */
            text-align: center;
        }

        .act-info span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .act-info span img {
            display: inline-block;
            width: 16px;
            height: 16px;
            vertical-align: middle;
        }

        /* ================= 3. 教学科研 ================= */
        .research-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 50px;
        }

        .research-card {
            /* background: #fff; */
            background: url(jxkybg.png) no-repeat center center;
            /* background-size: cover; */
                        /* border-bottom: 2px solid #c7332f; */

            padding: 20px;
            position: relative;
            border-radius: 4px;
            border: 1px solid #eaeaea;
            transition: box-shadow 0.3s;
        }

        .research-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            border-color: transparent;
        }

        .rs-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .rs-date {
            font-weight: bold;
            /* color: var(--text-main); */
            color: #c7332f;
            font-size: 22px;
        }

        .rs-date span {
            font-size: 12px;
            font-weight: normal;
            color: #ca1d23;
        }

        .rs-tag {
            background: linear-gradient(90deg, #d24743 0%, #ef7a78 100%);
            /* color: var(--primary-red); */
            color: #FFFFFF;
            padding: 2px 15px;
            font-size: 16px;
            border-radius: 4px;
        }

        .rs-title {
            font-weight: 500;
            font-size: 22px;
            margin-bottom: 15px;
            line-height: 1.5;
            min-height: 42px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .rs-meta {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 8px;
            display: block;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .rs-meta img {
            width: 16px;
            height: 16px;
            display: inline-block;
            vertical-align: middle;
        }

        .rs-author {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }

        .rs-author-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: #ddd;
            overflow: hidden;
            display: inline-block;
        }

        .rs-author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 50%;
        }

        .rs-author-name {
            font-size: 22px;
            font-weight: bold;
        }

        .rs-author-title {
            font-size: 16px;
            color: #666666;
        }

        /* ================= 4. 底部圆形导航区 ================= */
        .quick-links {
            display: flex;
            justify-content: space-between;
            max-width: 900px;
            margin: 40px auto 70px;
        }

        .q-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: transform 0.3s ease, filter 0.3s ease;
        }
        .q-item img {
            width: 140px;
            height: 140px;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .q-item:hover {
            transform: translateY(-6px);
            filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.12));
        }

        .q-item:hover img {
            transform: scale(1.05);
        }

        .q-item:hover .q-text {
            color: var(--primary-red);
        }

        .q-item:hover .q-circle {
            transform: scale(1.05);
        }

        /* 带有同心圆环的图标效果 */
        .q-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 36px;
            color: #fff;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        /* 利用伪元素做半透明外圈 */
        .q-circle::before {
            content: "";
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            border-radius: 50%;
            z-index: -1;
            opacity: 0.2;
        }

        .bg-orange {
            background-color: #ff9800;
        }

        .bg-orange::before {
            background-color: #ff9800;
        }

        .bg-green {
            background-color: #4caf50;
        }

        .bg-green::before {
            background-color: #4caf50;
        }

        .bg-pink {
            background-color: #e91e63;
        }

        .bg-pink::before {
            background-color: #e91e63;
        }

        .bg-blue {
            background-color: #03a9f4;
        }

        .bg-blue::before {
            background-color: #03a9f4;
        }

        .q-text {
            margin-top: 10px;
            font-size: 18px;
            font-weight: bold;
            color: var(--text-main);
        }

        /* ================= 页脚 ================= */
        .footer {
            /* background-color: var(--primary-red); */
                        background-image: linear-gradient(90deg, #b82a2f 0%, #dd4f4f 35%, #b82a2f  100%);

            color: rgba(255, 255, 255, 0.7);
            padding: 40px 0;
            text-align: center;
            /* border-top: 5px solid #a3151b; */
            font-size: 13px;
        }

        .footer-logo {
            font-size: 20px;
            color: #fff;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .footer-nav {
            margin-bottom: 20px;
            font-size: 16px;
        }

        .footer-nav a {
            color: rgba(255, 255, 255, 0.8);
            margin: 0 12px;
        }

        .footer-nav a:hover {
            color: #fff;
        }

        .footer-info {
            line-height: 2;
            font-size: 16px;
        }

        .footer-info > div {
            border-top: 2px solid #edc1c0;
            margin-top: 16px;
            padding-top: 14px;
        }

        .footer-info img {
            height: 35px;
            margin-left: 16px;
            vertical-align: middle;
        }
        .xyxwbg{
            position: relative;
            overflow: hidden;
        }

        .xyxwbg::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(xyxwbg.png);
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            z-index: -1;
        }

        .xyxwbg > * {
            position: relative;
            z-index: 1;
        }