
        :root {
            --primary-color: #0066ff;
            --primary-dark: #0052cc;
            --dark-color: #1a1a2e;
            --dark-light: #2d2d44;
            --light-color: #f8f9fa;
            --accent-color: #00d4ff;
            --gray-light: #f5f7fa;
            --gray-medium: #e1e5eb;
        }
        
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
            color: #333;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* 预加载动画 */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .preloader-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(0, 102, 255, 0.2);
            border-top-color: var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* 导航栏 */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            padding: 18px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.92);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 26px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        
        .navbar-brand img {
            height: 36px;
            margin-right: 10px;
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 12px;
            color: var(--dark-color) !important;
            position: relative;
            font-size: 15px;
            padding: 8px 0 !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease, left 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
            left: 0;
        }
        
        .nav-link.active:after {
            width: 100%;
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            margin-top: 10px;
            padding: 10px 0;
        }
        
        .dropdown-item {
            padding: 8px 20px;
            font-size: 14px;
            transition: all 0.2s;
        }
        
        .dropdown-item:hover {
            background-color: rgba(0, 102, 255, 0.05);
            color: var(--primary-color);
            padding-left: 25px;
        }
        
        /* 英雄区域 */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 222px 0 120px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.4;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 35px;
            opacity: 0.9;
            font-weight: 300;
            max-width: 600px;
        }
        
        .hero-buttons .btn {
            margin-right: 15px;
            margin-bottom: 15px;
        }
        
        .btn-primary {
                background-color: #2f57ae;
                color: #f5f7fa;
                border: none;
                padding: 14px 32px;
                font-weight: 600;
                /* border-radius: 30px; */
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                letter-spacing: 0.5px;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
             background-color: #2f57ae;
            color: #f5f7fa;
        }
        
        .btn-outline-white {
                border: 2px solid #2f57ae;
    color: #2f57ae;
    background: transparent;
    padding: 12px 30px;
    font-weight: 600;
    /* border-radius: 30px; */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .btn-outline-white:hover {
            background: transparent;
            color: #2f57ae;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .hero-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            /*transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);*/
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .hero-image:hover {
            transform: perspective(1000px) rotateY(0) rotateX(0);
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .hero-stats {
            display: flex;
            margin-top: 60px;
            flex-wrap: wrap;
        }
        
        .hero-stat {
            margin-right: 40px;
            margin-bottom: 20px;
        }
        
        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: white;
        }
        
        .hero-stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* 通用部分样式 */
        .section {
            padding: 120px 0;
            position: relative;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 60px;
            position: relative;
            color: var(--dark-color);
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 60px;
            line-height: 1.7;
        }
        
        .text-gradient {
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* 关于我们 */
        .about-section {
            background-color: white;
        }
        
        .about-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.03);
        }
        
        .about-image:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 212, 255, 0.2));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .about-image:hover:after {
            opacity: 1;
        }
        
        .about-content {
            padding-left: 40px;
        }
        
        .about-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--dark-color);
        }
        
        .about-content p {
            margin-bottom: 20px;
            color: #555;
            font-size: 1.05rem;
        }
        
        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
            transition: height 0.4s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .feature-card:hover:before {
            height: 100%;
        }
        
        .feature-icon {
            font-size: 2.8rem;
            margin-bottom: 25px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }
        
        .feature-card h4 {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-color);
            font-size: 1.3rem;
        }
        
        .feature-card p {
            color: #666;
            font-size: 0.95rem;
        }
        
        /* 团队介绍 */
        .team-section {
            background-color: var(--gray-light);
        }
        
        .team-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 30px;
            position: relative;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .team-img-container {
            position: relative;
            overflow: hidden;
        }
        
        .team-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-card:hover .team-img {
            transform: scale(1.05);
        }
        
        .team-social {
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            background: rgba(0, 102, 255, 0.9);
            padding: 15px;
            display: flex;
            justify-content: center;
            transition: bottom 0.3s ease;
        }
        
        .team-card:hover .team-social {
            bottom: 0;
        }
        
        .team-social a {
            color: white;
            margin: 0 10px;
            font-size: 16px;
            transition: transform 0.3s ease;
        }
        
        .team-social a:hover {
            transform: translateY(-3px);
            color: white;
        }
        
        .team-info {
            padding: 25px;
            text-align: center;
        }
        
        .team-name {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 1.2rem;
            color: var(--dark-color);
        }
        
        .team-position {
            color: var(--primary-color);
            font-size: 0.9rem;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .team-bio {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        
        /* 软著成果 */
        .software-section {
            background-color: white;
        }
        
        .software-tabs {
            margin-bottom: 40px;
            border-bottom: 1px solid var(--gray-medium);
            justify-content: center;
        }
        
        .software-tabs .nav-link {
            border: none;
            color: #666;
            font-weight: 500;
            padding: 12px 25px !important;
            margin: 0 5px;
            position: relative;
            background: transparent;
        }
        
        .software-tabs .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transition: width 0.3s ease;
        }
        
        .software-tabs .nav-link:hover:after,
        .software-tabs .nav-link.active:after {
            width: 100%;
        }
        
        .software-tabs .nav-link.active {
            color: var(--primary-color);
            background: transparent;
        }
        
        .software-item {
            padding: 25px;
            border-left: 3px solid var(--primary-color);
            margin-bottom: 25px;
            background: var(--gray-light);
            border-radius: 0 8px 8px 0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .software-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .software-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .software-item:hover:before {
            opacity: 1;
        }
        
        .software-name {
            font-weight: 700;
            margin-bottom: 8px;
            font-size: 1.1rem;
            color: var(--dark-color);
        }
        
        .software-number {
            color: var(--primary-color);
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 10px;
            display: block;
        }
        
        .software-desc {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        
        /* 项目展示 */
        .projects-section {
            background-color: var(--gray-light);
        }
        
        .project-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 30px;
            background: white;
            position: relative;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .project-img-container {
            position: relative;
            overflow: hidden;
        }
        
        .project-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .project-card:hover .project-img {
            transform: scale(1.1);
        }
        
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 102, 255, 0.8), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }
        
        .project-card:hover .project-overlay {
            opacity: 1;
        }
        
        .project-overlay a {
            color: white;
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }
        
        .project-overlay a i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .project-overlay a:hover i {
            transform: translateX(5px);
        }
        
        .project-info {
            padding: 25px;
        }
        
        .project-title {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.2rem;
            color: var(--dark-color);
        }
        
        .project-desc {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        .project-badge {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 30px;
            background: rgba(0, 102, 255, 0.1);
            color: var(--primary-color);
            display: inline-block;
        }
        
        /* 新闻动态 */
        .news-section {
            background-color: white;
        }
        
        .news-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 30px;
            height: 100%;
            position: relative;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .news-img-container {
            position: relative;
            overflow: hidden;
        }
        
        .news-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-card:hover .news-img {
            transform: scale(1.1);
        }
        
        .news-date {
            background: var(--primary-color);
            color: white;
            padding: 10px 18px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            position: absolute;
            top: 15px;
            left: 15px;
            border-radius: 5px;
            z-index: 2;
        }
        
        .news-info {
            padding: 25px;
        }
        
        .news-title {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.2rem;
            color: var(--dark-color);
        }
        
        .news-excerpt {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            font-size: 0.85rem;
            color: #999;
        }
        
        .news-meta i {
            margin-right: 5px;
        }
        
        .news-meta span {
            margin-right: 15px;
        }
        
        .read-more {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover {
            color: var(--primary-dark);
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* 合作伙伴 */
        .clients-section {
            background-color: var(--gray-light);
            padding: 80px 0;
        }
        
        .client-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            padding: 20px;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }
        
        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        .client-logo img {
            max-height: 60px;
            max-width: 100%;
            width: auto;
        }
        
        /* 联系我们 */
        .contact-section {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .contact-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.3;
        }
        
        .contact-content {
            position: relative;
            z-index: 2;
        }
        
        .contact-info {
            margin-bottom: 35px;
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: white;
            margin-right: 15px;
            flex-shrink: 0;
            margin-top: 3px;
        }
        
        .contact-text h5 {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .contact-text p {
            opacity: 0.9;
            margin-bottom: 0;
            font-size: 0.95rem;
        }
        
        .contact-text a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        
        .contact-text a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-align: center;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .contact-form .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .contact-form .form-control:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: white;
            box-shadow: none;
            color: white;
        }
        
        .contact-form textarea.form-control {
            min-height: 150px;
        }
        
        .contact-form ::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .contact-form .btn {
            width: 100%;
            padding: 14px;
            font-weight: 600;
            border-radius: 8px;
            background: white;
            color: var(--primary-color);
            border: none;
            transition: all 0.3s ease;
        }
        
        .contact-form .btn:hover {
            background: var(--dark-color);
            color: white;
            transform: translateY(-3px);
        }
        
        /* 页脚 */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 80px 0 30px;
            position: relative;
        }
        
        .footer-wave {
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%231a1a2e" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%231a1a2e" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%231a1a2e"/></svg>');
            background-size: cover;
            background-repeat: no-repeat;
        }
        
        .footer-logo {
            font-size: 26px;
            font-weight: 700;
            color: white;
            margin-bottom: 25px;
            display: inline-block;
        }
        
        .footer-logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .footer-about {
            margin-bottom: 25px;
            opacity: 0.8;
            font-size: 0.95rem;
        }
        
        .footer-links h5 {
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            font-size: 1.1rem;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--primary-color);
            bottom: -12px;
            left: 0;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-right: 8px;
            font-size: 0.8rem;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-newsletter .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .footer-newsletter .form-control:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: white;
            box-shadow: none;
            color: white;
        }
        
        .footer-newsletter ::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-newsletter .btn {
            width: 100%;
            padding: 12px;
            font-weight: 600;
            border-radius: 8px;
            background: var(--primary-color);
            color: white;
            border: none;
            transition: all 0.3s ease;
        }
        
        .footer-newsletter .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 50px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            text-align: center;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
            color: white;
        }
        
        /* 响应式调整 */
        @media (max-width: 1199.98px) {
            .hero-title {
                font-size: 3.2rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .hero-section {
                padding: 140px 0 100px;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .section {
                padding: 100px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
                margin-bottom: 50px;
            }
            
            .about-content {
                padding-left: 0;
                margin-top: 40px;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero-section {
                padding: 120px 0 80px;
                text-align: center;
            }
            
            .hero-title {
                font-size: 2.4rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .hero-stat {
                margin-right: 30px;
                margin-left: 30px;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }
            
            .navbar-brand {
                font-size: 22px;
            }
            
            .footer-wave {
                top: -70px;
                height: 70px;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-stat {
                margin-right: 20px;
                margin-left: 20px;
            }
            
            .hero-stat-number {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .back-to-top {
                width: 40px;
                height: 40px;
                font-size: 16px;
                bottom: 20px;
                right: 20px;
            }
        }
/* 新增样式 - 新闻和软著页面 */
.news-list-section {
    background-color: var(--gray-light);
    padding: 80px 0;
}

.news-list-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.news-main {
    flex: 0 0 70%;
    padding-right: 30px;
}

.news-sidebar {
    flex: 0 0 30%;
    padding-left: 30px;
}

.news-list-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    display: flex;
}

.news-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-list-img {
    flex: 0 0 35%;
    overflow: hidden;
}

.news-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-list-item:hover .news-list-img img {
    transform: scale(1.05);
}

.news-list-content {
    flex: 0 0 65%;
    padding: 25px;
}

.news-list-date {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.news-list-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.news-list-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-list-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #999;
}

.news-list-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.news-list-meta i {
    margin-right: 5px;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.sidebar-title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.popular-news-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.popular-news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-news-img {
    flex: 0 0 80px;
    margin-right: 15px;
    border-radius: 6px;
    overflow: hidden;
}

.popular-news-img img {
    width: 100%;
    height: 60px;
    object-fit: cover;
}

.popular-news-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.popular-news-date {
    font-size: 0.8rem;
    color: #999;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.categories-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.categories-list a span {
    background: var(--gray-light);
    padding: 3px 8px;
    border-radius: 30px;
    font-size: 0.8rem;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px !important;
    color: #666;
    font-weight: 600;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.page-link:hover {
    color: var(--primary-color);
    background: rgba(0, 102, 255, 0.05);
    border-color: rgba(0, 102, 255, 0.1);
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* 新闻详情页 */
.news-detail-section {
    padding: 80px 0;
    background-color: white;
}

.news-detail-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.news-detail-main {
    flex: 0 0 70%;
    padding-right: 30px;
}

.news-detail-header {
    margin-bottom: 30px;
}

.news-detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.3;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #999;
}

.news-detail-meta span {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.news-detail-meta i {
    margin-right: 5px;
}

.news-detail-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-detail-content {
    line-height: 1.8;
    color: #444;
}

.news-detail-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
    margin: 30px 0 20px;
    color: var(--dark-color);
}

.news-detail-content h2 {
    font-size: 1.6rem;
}

.news-detail-content h3 {
    font-size: 1.4rem;
}

.news-detail-content h4 {
    font-size: 1.2rem;
}

.news-detail-content blockquote {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0;
    color: #666;
    font-style: italic;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.news-detail-tags {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
}

.news-detail-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.news-detail-tag:hover {
    background: var(--primary-color);
    color: white;
}

.news-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.news-nav-link {
    display: flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 45%;
}

.news-nav-link:hover {
    color: var(--primary-color);
}

.news-nav-link.prev {
    text-align: left;
}

.news-nav-link.next {
    text-align: right;
    margin-left: auto;
}

.news-nav-link i {
    margin: 0 10px;
}

/* 软著列表页 */
.software-list-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.software-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.software-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.software-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.software-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.software-card:hover .software-card-image img {
    transform: scale(1.05);
}

.software-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 102, 255, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.software-card-content {
    padding: 25px;
}

.software-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.software-card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #999;
}

.software-card-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.software-card-meta i {
    margin-right: 5px;
}

.software-card-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.software-card-btn {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.software-card-btn:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* 软著详情页 */
.software-detail-section {
    padding: 80px 0;
    background-color: white;
}

.software-detail-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.software-detail-main {
    flex: 0 0 70%;
    padding-right: 30px;
}

.software-detail-header {
    margin-bottom: 30px;
}

.software-detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.3;
}

.software-detail-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.software-meta-item {
    margin-right: 30px;
    margin-bottom: 10px;
}

.software-meta-label {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 5px;
}

.software-meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.software-detail-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.software-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.software-detail-content {
    line-height: 1.8;
    color: #444;
}

.software-detail-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.software-detail-content h2,
.software-detail-content h3,
.software-detail-content h4 {
    margin: 30px 0 20px;
    color: var(--dark-color);
}

.software-detail-content h2 {
    font-size: 1.6rem;
}

.software-detail-content h3 {
    font-size: 1.4rem;
}

.software-detail-content h4 {
    font-size: 1.2rem;
}

.software-detail-content ul,
.software-detail-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.software-detail-content li {
    margin-bottom: 10px;
}

.software-features {
    margin: 40px 0;
}

.software-feature-item {
    display: flex;
    margin-bottom: 20px;
}

.software-feature-icon {
    flex: 0 0 50px;
    height: 50px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
}

.software-feature-content h4 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.software-detail-sidebar {
    flex: 0 0 30%;
    padding-left: 30px;
}

.software-download-card {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.software-download-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.software-download-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.software-download-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.software-download-btn:hover {
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
}

.related-software-card {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.related-software-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-software-img {
    flex: 0 0 80px;
    margin-right: 15px;
    border-radius: 6px;
    overflow: hidden;
}

.related-software-img img {
    width: 100%;
    height: 60px;
    object-fit: cover;
}

.related-software-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.related-software-type {
    font-size: 0.8rem;
    color: #999;
}

/* 响应式调整 */
@media (max-width: 991.98px) {
    .news-list-container,
    .news-detail-container,
    .software-detail-container {
        flex-direction: column;
    }
    
    .news-main,
    .news-sidebar,
    .news-detail-main,
    .news-detail-sidebar,
    .software-detail-main,
    .software-detail-sidebar {
        flex: 0 0 100%;
        padding: 0;
    }
    
    .news-sidebar,
    .news-detail-sidebar,
    .software-detail-sidebar {
        margin-top: 50px;
    }
    
    .news-list-item {
        flex-direction: column;
    }
    
    .news-list-img {
        flex: 0 0 auto;
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .software-grid {
        grid-template-columns: 1fr;
    }
    
    .news-detail-title,
    .software-detail-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .news-detail-meta,
    .software-detail-meta {
        flex-direction: column;
    }
    
    .news-detail-meta span,
    .software-meta-item {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .news-navigation {
        flex-direction: column;
    }
    
    .news-nav-link {
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .news-nav-link.next {
        margin-left: 0;
    }
}
/* 文章目录导航样式 */
.toc-container {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.toc-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.toc-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.toc-list li:hover:before {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.toc-list a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.4;
}

.toc-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.toc-list .h2 {
    padding-left: 15px;
}

.toc-list .h3 {
    padding-left: 30px;
}

.toc-list .active {
    color: var(--primary-color);
    font-weight: 600;
}

/* 高亮当前阅读位置 */
.section-highlight {
    position: relative;
}

.section-highlight:before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-highlight.active:before {
    opacity: 1;
}

/* 代码块样式 */
pre {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid #eee;
}

code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: #333;
}

/* 图片说明样式 */
.img-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* 引用样式 */
.blockquote {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin: 25px 0;
    color: #555;
    font-style: italic;
}

.blockquote-footer {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #777;
}

/* 表格样式 */
.table-custom {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.table-custom th,
.table-custom td {
    padding: 12px 15px;
    border: 1px solid #eee;
}

.table-custom th {
    background-color: #f8f9fa;
    font-weight: 600;
    text-align: left;
}

.table-custom tr:nth-child(even) {
    background-color: #fcfcfc;
}

/* 警告框样式 */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid;
}

.alert-primary {
    background-color: rgba(0, 102, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-dark);
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #218838;
}

/* 时间线样式 (用于发展历程等) */
.timeline {
    position: relative;
    padding-left: 30px;
    margin: 30px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    opacity: 0.2;
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-color);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-content {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* 打印样式 */
@media print {
    .navbar, .back-to-top, .toc-container, .news-detail-sidebar {
        display: none !important;
    }
    
    body {
        padding: 20px;
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .news-detail-title {
        font-size: 18pt;
    }
    
    .news-detail-content img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* 右侧图片区域样式 */
.navbar-right-image {
    flex-shrink: 0;
    margin-left: auto;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* 节气按钮 */
.solar-term-btn {
    background-color: #00BBA4;
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 650;
    margin-bottom: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 2px;
    position: absolute;
    top: 29px;
    left: 67%;
    transform: translateX(-50%);
    z-index: 10;
}

.solar-term-btn:hover {
    background-color: #00BBA4;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* 右侧图片 */
.navbar-right-image img {
        margin-left: -97px;
        
        margin-top:2px;
    height: 96px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin-bottom: -29px;
}

/* 日期显示 */
.date-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Microsoft YaHei', sans-serif;
    line-height: 1.2;
    margin-top: 2px;
}

.date-year {
    font-size: 12px;
    font-weight: 400;
    color: #333;
    margin-bottom: 1px;
}

.date-month {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1px;
}

.date-week {
    font-size: 11px;
    font-weight: 500;
    color: #666;
}

/* 滚动时的调整 */
.navbar.scrolled .navbar-right-image img {
    height: 85px;
}

.navbar.scrolled .solar-term-btn {
    font-size: 11px;
    padding: 3px 10px;
    top: 29px;
}

.navbar.scrolled .date-year {
    font-size: 11px;
}

.navbar.scrolled .date-month {
    font-size: 13px;
}

.navbar.scrolled .date-week {
    font-size: 10px;
}

/* 响应式调整 */
@media (max-width: 1199.98px) {
    .navbar-right-image img {
        height: 60px;
        max-width: 140px;
    }
    
    .solar-term-btn {
        font-size: 11px;
        padding: 3px 10px;
        top: -22px;
    }
    
    .date-year {
        font-size: 11px;
    }
    
    .date-month {
        font-size: 13px;
    }
    
    .date-week {
        font-size: 10px;
    }
}

@media (max-width: 991.98px) {
    .navbar-right-image {
        padding-right: 10px;
    }
    
    .navbar-right-image img {
        height: 55px;
        max-width: 120px;
    }
    
    .solar-term-btn {
        font-size: 10px;
        padding: 2px 8px;
        top: -20px;
        border-radius: 15px;
    }
    
    .date-year {
        font-size: 10px;
    }
    
    .date-month {
        font-size: 12px;
    }
    
    .date-week {
        font-size: 9px;
    }
}

@media (max-width: 767.98px) {
    .navbar-right-image {
        padding-right: 8px;
    }
    
    .navbar-right-image img {
        height: 50px;
        max-width: 100px;
    }
    
    .solar-term-btn {
        font-size: 9px;
        padding: 2px 6px;
        top: -18px;
    }
    
    .date-year {
        font-size: 9px;
    }
    
    .date-month {
        font-size: 11px;
    }
    
    .date-week {
        font-size: 8px;
    }
}

@media (max-width: 575.98px) {
    .navbar-right-image {
        padding-right: 5px;
    }
    
    .navbar-right-image img {
        height: 45px;
        max-width: 90px;
    }
    
    .solar-term-btn {
        font-size: 8px;
        padding: 1px 5px;
        top: -16px;
        letter-spacing: 0.5px;
    }
    
    .date-display {
        display: none; /* 在很小屏幕上隐藏日期 */
    }
}



    
    /* 导航模块  */
.posre {
    position: relative;
    
     /* 在平板和手机隐藏 */
    @media (max-width: 1024px) {
        display: none;
    }
}

.ml10p {
    /* 基础值 */
    margin-left: 15%;
    
    /* 高分辨率屏幕调整 */
    @media (min-resolution: 192dpi) and (max-width: 1440px) {
        margin-left: 5%;
    }
    
    /* 响应式断点 */
    @media (max-width: 1366px) {  /* MacBook Air常见宽度 */
        margin-left: 5%;
    }
    
    @media (max-width: 768px) {
        margin-left: 5%;
    }
    
    @media (max-width: 480px) {
        margin-left: 2%;
    }
}

/*.ml10p {*/
/*    margin-left: 15%;*/
    /* 添加响应式调整 */
/*    @media (max-width: 768px) {*/
/*        margin-left: 5%;*/
/*    }*/
/*    @media (max-width: 480px) {*/
/*        margin-left: 2%;*/
/*    }*/
/*}*/

.top_27 {
    top: -83px;
    /* 改为相对单位 */
    @media (max-width: 768px) {
        top: -40px;
    }
}

.mr15p {
    margin-right: 21%;
    @media (max-width: 768px) {
        margin-right: 10%;
    }
    @media (max-width: 480px) {
        margin-right: 5%;
    }
}

.el-image {
    display: inline-block;
    /*overflow: hidden;*/
    /* 添加响应式 */
    max-width: 100%;
    height: auto;
}

.h85 {
    height: 170px;
    /* 改为相对单位 */
    @media (max-width: 768px) {
        height: 120px;
    }
    @media (max-width: 480px) {
        height: 80px;
    }
}

/* 使用视口单位或百分比 */
.w100p {
    width: 100%;
    max-width: 100%;
}

/* 图标/小元素使用相对单位 */
.w16 {
    width: 2rem; /* 改为rem单位 */
    min-width: 32px; /* 设置最小宽度 */
    @media (max-width: 480px) {
        width: 1.5rem;
    }
}

.top27 {
    margin-top: -120px;
    @media (max-width: 768px) {
        margin-top: -80px;
    }
    @media (max-width: 480px) {
        margin-top: -50px;
    }
}

/* 字体大小使用相对单位 */
.fs10 {
    font-size: 1.25rem; /* 20px */
    @media (max-width: 768px) {
        font-size: 1rem; /* 16px */
    }
    @media (max-width: 480px) {
        font-size: 0.875rem; /* 14px */
    }
}

/* 高度使用相对单位 */
.h15 {
    height: 1.875rem; /* 30px */
    @media (max-width: 768px) {
        height: 1.5rem;
    }
}

.h16 {
    height: 2rem; /* 32px */
    @media (max-width: 768px) {
        height: 1.75rem;
    }
}

/* 弹性容器优化 */
.disflex {
    display: flex;
    flex-wrap: wrap; /* 添加换行 */
}

.jsaround {
    justify-content: space-around;
    @media (max-width: 480px) {
        justify-content: space-between;
    }
}

.align-cen {
    align-items: center;
}

.textc {
    text-align: center;
}

.point_hand {
    cursor: pointer;
}

.fb400 {
    font-weight: 400;
}




/*底部介绍*/

.fot1{
    @media (max-width: 1024px) {
        display: none;
    }
    
    }.pr10p {
    padding-right: 13%;
}
        .h53 {
    height: 106px
}.jsbet {
    justify-content: space-between
}.pl10p {
    padding-left: 13%
}

.double-circle-icon[data-v-11a5b675] {
    position: relative;
    width: 30px;
    height: 20px;
    margin-right: 8px
}

.circle-back[data-v-11a5b675] {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #d5e7ff;
    right: 0;
    z-index: 2
}

.circle-front[data-v-11a5b675] {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #1e78ff;
    left: 0;
    z-index: 1
}

.bgF0F3F6 {
    background: #F0F3F6
}


.c0E359A {
    color: #0e359a
}

.fbold {
    font-weight: 700
}

.fs14 {
    font-size: 28px
}