
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: #333;
            overflow: hidden;
            min-height: 100vh;
        }

        .swiper {
            width: 100%;
            height: 100vh;
        }

        .swiper-slide {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 20px;
            height: 100%;
        }

        /* 首页样式 */
        .page-home {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            text-align: center;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('hero-bg.jpg') center/cover;
            /* 此处放图片：办公会所外景全貌.jpg */
            opacity: 0.3;
            z-index: -1;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 8vw, 4rem);
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-content .subtitle {
            font-size: clamp(1.2rem, 4vw, 1.8rem);
            font-weight: 300;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        /* 向右跳动箭头 */
        /* .scroll-hint {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: white;
            opacity: 0.8;
            animation: bounce 4s infinite;
        }
        
        .scroll-hint i {
            font-size: 1rem;
            margin-top: 0.5rem;
           
        }
    
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(50%) translateY(0); }
            60% { transform: translateX(-40%) translateY(0); }
        } */


        .scroll-hint {
            position: absolute;
            bottom: 20px;
            left: 70%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0.8;
            pointer-events: none;
            /* 避免干扰滑动 */
            animation: fade-swipe 1.5s ease-in-out infinite;
        }

        .scroll-hint i {
            font-size: 1rem;
        }

        /* 关键动画：左右滑动并闪现 */
        @keyframes fade-swipe {
            0% {
                transform: translateX(-50%) translateX(0);
                opacity: 0.2;
            }

            30% {
                transform: translateX(-50%) translateX(10px);
                opacity: 1;
            }

            60% {
                transform: translateX(-50%) translateX(0);
                opacity: 0.4;
            }

            100% {
                transform: translateX(-50%) translateX(0);
                opacity: 0.2;
            }
        }

        /* 通用页面样式 */
        .page-content {
            background: #f8f9fa;
            width: 100%;
            height: 100%;
            overflow-y: auto;
            padding: 60px 20px 40px;
        }

        .page-title {
            font-size: clamp(2rem, 6vw, 2.8rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: #2c3e50;
            position: relative;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #3498db, #2980b9);
            border-radius: 2px;
        }

        .content-section {
            max-width: 800px;
            margin: 0 auto;
        }

        /* 图片展示样式 */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }

        .image-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .image-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* 图片轮播容器 */
        .image-swiper-container {
            position: relative;
            width: 100%;
            height: 200px;
            cursor: pointer;
        }

        .image-swiper {
            width: 100%;
            height: 100%;
        }

        .image-swiper .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }

        .image-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-placeholder {
            width: 100%;
            height: 200px;
            background: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            font-size: 0.9rem;
            text-align: center;
            padding: 20px;
            cursor: pointer;
        }

        /* 图片轮播导航 */
        .image-swiper .swiper-pagination {
            bottom: 10px !important;
            left: 50% !important;
            transform: translateX(-50%);
            width: 100% !important;
        }

        .image-swiper .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.7) !important;
            opacity: 1 !important;
            width: 8px !important;
            height: 8px !important;
            margin: 0 3px !important;
        }

        .image-swiper .swiper-pagination-bullet-active {
            background: white !important;
        }

        /* 图片数量指示器 */
        .image-count {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            z-index: 10;
        }

        .image-caption {
            padding: 0.8rem;
            text-align: center;
        }

        .image-caption h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #2c3e50;
        }

        .image-caption p {
            color: #6c757d;
            line-height: 1.3;
            font-size: 0.95rem;
        }

        /* 特色列表样式 */
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .feature-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .feature-item i {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 1rem;
        }

        .feature-item h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: #2c3e50;
        }

        .feature-item p {
            color: #6c757d;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        /* 地图样式 */
        .map-container {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .map-placeholder {
            width: 100%;
            height: 250px;
            background: #e9ecef;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            flex-direction: column;
            text-align: center;
        }

        .location-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .location-item {
            text-align: center;
            padding: 1rem;
        }

        .location-item i {
            font-size: 2rem;
            color: #3498db;
            margin-bottom: 0.8rem;
        }

        .location-item h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .location-item p {
            color: #6c757d;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* 联系页面样式 */
        .contact-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .contact-item {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .contact-item i {
            font-size: 3rem;
            color: #3498db;
            margin-bottom: 1.5rem;
        }

        .contact-item h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .contact-item p {
            color: #6c757d;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .contact-btn {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .contact-btn:hover {
            background: linear-gradient(135deg, #2980b9, #1f5f99);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
        }

        /* Swiper 导航样式 */
        .swiper-pagination {
            bottom: 20px !important;
        }

        .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.5) !important;
            opacity: 1 !important;
            width: 12px !important;
            height: 12px !important;
            margin: 0 6px !important;
        }

        .swiper-pagination-bullet-active {
            background: white !important;
            transform: scale(1.2);
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .page-content {
                padding: 40px 15px 30px;
            }

            .image-gallery {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .feature-list {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .location-info {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .contact-methods {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* 文字描述样式 */
        .description-text {
            background: white;
            padding: 1rem;
            border-radius: 15px;
            margin: 0 0 2rem;
            box-shadow: 0 5px 20px rgba(128, 24, 24, 0.08);
            line-height: 1.8;
            color: #1f030a;
            font-size: 1rem;
        }

        .highlight {
            color: #3498db;
            font-weight: 600;
        }

        .qr-code {
            width: 120px;
            height: 120px;
            background: #e9ecef;
            margin: 1rem auto;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            font-size: 0.9rem;
            text-align: center;
            padding: 10px;
        }

        /* 图片放大查看样式 */
        .image-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .image-modal.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-swiper {
            width: 100%;
            height: 100%;
            max-width: 90%;
            max-height: 90%;
        }

        .modal-swiper .swiper-slide {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        

        .modal-image-container {
            position: relative;
            max-width: 100%;
            max-height: 70%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 5px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
        }

        .modal-caption {
            margin-top: 2rem;
            text-align: center;
            color: white;
            max-width: 600px;
        }

        .modal-caption h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .modal-caption p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        /* 关闭按钮 */
        .modal-close {
            position: absolute;
            top: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }

        /* 模态框导航按钮 */
        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .modal-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-50%) scale(1.1);
        }

        .modal-nav.prev {
            left: 30px;
        }

        .modal-nav.next {
            right: 30px;
        }

        /* 模态框分页器 */
        .modal-swiper .swiper-pagination {
            bottom: 30px !important;
        }

        .modal-swiper .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.5) !important;
            opacity: 1 !important;
            width: 12px !important;
            height: 12px !important;
            margin: 0 6px !important;
        }

        .modal-swiper .swiper-pagination-bullet-active {
            background: white !important;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .modal-close {
                top: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .modal-nav {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .modal-nav.prev {
                left: 20px;
            }

            .modal-nav.next {
                right: 20px;
            }

            .modal-caption h3 {
                font-size: 1.5rem;
            }

            .modal-caption p {
                font-size: 1rem;
            }
        }
      


        .hero-bg {
          position: absolute;
          top: 0; left: 0;
          width: 100%;
          height: 100%;
          /* background: url('imgs/001.jpg') center/cover no-repeat; */
          opacity: 0.25;
          z-index: -1;
        }
        
        .hero-content {
          max-width: 700px;
          margin: 0 auto;
          /* padding-top: 10vh; */
        }
        
        .hero-title {
          font-size: clamp(2.8rem, 6vw, 4rem);
          font-weight: 800;
          text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
          margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
          font-size: clamp(1.2rem, 4vw, 1.6rem);
          font-weight: 300;
          opacity: 0.9;
          margin-bottom: 1rem;
        }
        
        .hero-tagline {
          font-size: 1rem;
          font-style: italic;
          color: #ecf0f1;
          margin-bottom: 2.5rem;
        }
        
        .hero-image-card {
          background: white;
          border-radius: 16px;
          overflow: hidden;
          max-width: 90%;
          margin: 0 auto;
          box-shadow: 0 10px 30px rgba(0,0,0,0.2);
          transition: transform 0.3s ease;
        }
        
        .hero-image-cards img{
          background: white;
          border-radius: 10px;
          overflow: hidden;
          max-width: 100%;
          margin: 0 auto;
          box-shadow: 0 20px 10px rgba(0,0,0,0.2);
          transition: transform 0.3s ease;
        }
        
        
        .hero-image-card img {
          width: 100%;
          height: auto;
          display: block;
        }
        
        .slide-hint {
          position: absolute;
          right: 30px;
          top: 50%;
          transform: translateY(-50%);
          color: rgba(255, 255, 255, 0.6);
          font-size: 1.8rem;
          animation: slide-right 1.5s infinite ease-in-out;
          z-index: 10;
        }
        
        @keyframes slide-right {
          0%   { transform: translateY(-50%) translateX(0); }
          50%  { transform: translateY(-50%) translateX(8px); }
          100% { transform: translateY(-50%) translateX(0); }
        }
        
        
      