<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
            overflow-x: hidden;
        }
        
        /* 头部样式 - 文字居中 */
        header {
            background: linear-gradient(rgba(0, 80, 120, 0.8), rgba(0, 40, 80, 0.2)), url('https://wlj.lasa.gov.cn/lsslyfzj/xhtml/images/index/bg.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 1rem 5%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 2rem;
            margin-left: 10px;
            font-weight: 700;
        }
        
        .logo-icon {
            font-size: 2.5rem;
            color: #ffd700;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 2rem;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
        }
        
        nav a:hover {
            color: #ffd700;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffd700;
            transition: width 0.3s;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        /* 英雄区域居中 */
        .hero {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            max-width: 100%;
            padding: 2rem 0;
        }
        
        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 800px;
        }
        
        .btn {
            display: inline-block;
            background: #ff6b35;
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }
        
        .btn:hover {
            background: #ff8c5a;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
        }
        
        .btn-secondary {
            background: #00537a;
            box-shadow: 0 4px 15px rgba(0, 83, 122, 0.4);
        }
        
        .btn-secondary:hover {
            background: #006da0;
            box-shadow: 0 6px 20px rgba(0, 83, 122, 0.6);
        }
        
        /* 主要内容区 */
        section {
            padding: 5rem 10%;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #00537a;
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: #ffd700;
            border-radius: 3px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 2rem auto 0;
            font-size: 1.2rem;
        }
        
        /* 服务特点 */
        .features {
            background: white;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: #fff;
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: #ff6b35;
            margin-bottom: 1.5rem;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #00537a;
        }
        
        /* 热门景点 - 6个景点 */
        .attractions {
            background: linear-gradient(to bottom, #e6f7ff 0%, #cceeff 100%);
        }
        
        .attractions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }
        
        .attraction-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s;
        }
        
        .attraction-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .attraction-img {
            height: 250px;
            width: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .attraction-content {
            padding: 1.8rem;
        }
        
        .attraction-content h3 {
            font-size: 1.5rem;
            color: #00537a;
            margin-bottom: 0.8rem;
        }
        
        .attraction-content p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        
        /* 开发时间样式 */
        .development-info {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
            border-left: 4px solid #ff6b35;
        }
        
        .development-title {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #00537a;
        }
        
        .development-title i {
            margin-right: 10px;
            color: #ff6b35;
        }
        
        .development-details {
            display: grid;
            grid-template-columns: auto auto;
            gap: 10px;
        }
        
        .dev-item {
            display: flex;
            align-items: center;
        }
        
        .dev-item i {
            margin-right: 8px;
            color: #0086b3;
        }
        
        /* 套餐部分 */
        .packages {
            background: white;
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        
        .package-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            transition: all 0.3s;
        }
        
        .package-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            transform: translateY(-10px);
        }
        
        .package-header {
            background: linear-gradient(to right, #00537a, #0086b3);
            color: white;
            padding: 1.5rem;
            text-align: center;
        }
        
        .package-header h3 {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
        }
        
        .package-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffd700;
        }
        
        .package-price span {
            font-size: 1rem;
            color: rgba(255,255,255,0.8);
            font-weight: normal;
        }
        
        .package-body {
            padding: 2rem;
        }
        
        .package-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .package-features li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            align-items: center;
        }
        
        .package-features li:last-child {
            border-bottom: none;
        }
        
        .package-features i {
            color: #ff6b35;
            margin-right: 10px;
        }
        
        /* 联系方式部分 */
        .contact {
            background: linear-gradient(rgba(0, 83, 122, 0.9), rgba(0, 40, 80, 0.3)), url('https://www.visitsanya.com/upload/2024-12/173313299513043300.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        
        .contact .section-title h2 {
            color: white;
        }
        
        .contact .section-title p {
            color: rgba(255,255,255,0.9);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2.5rem;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.4s;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .contact-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #ffd700;
        }
        
        .contact-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .contact-info {
            font-size: 1.3rem;
            margin-bottom: 1.8rem;
            font-weight: 500;
        }
        
        .contact-info a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-info a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        
        .social-contact {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 2rem;
        }
        
        .social-contact a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
            font-size: 1.8rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .social-contact a:hover {
            background: #ffd700;
            color: #00537a;
            transform: translateY(-5px);
        }
        
        .qr-code {
            margin: 25px auto 15px;
            width: 160px;
            height: 160px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: #00537a;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .qr-note {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            margin-top: 10px;
        }
        
        /* 工作时间 */
        .business-hours {
            max-width: 800px;
            margin: 3rem auto 0;
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .hours-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffd700;
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            text-align: left;
        }
        
        .day-hours {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed rgba(255,255,255,0.2);
        }
        
        /* 页脚 */
        footer {
            background: #00334d;
            color: white;
            padding: 3rem 10% 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #ffd700;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #ffd700;
        }
        
        /*.contact-info {*/
        /*    display: flex;*/
        /*    align-items: flex-start;*/
        /*    margin-bottom: 1rem;*/
        /*}*/
        
        .contact-info i {
            color: #ffd700;
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: #ffd700;
            color: #00537a;
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2.8rem;
            }
            
            section {
                padding: 4rem 5%;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .menu-toggle {
                display: block;
                font-size: 1.5rem;
                color: white;
                cursor: pointer;
            }
            
            .hero h2 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .package-price {
                font-size: 2rem;
            }
            
            .contact-card {
                padding: 2rem 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h2 {
                font-size: 2rem;
            }
            
            .contact-grid {
                gap: 1.5rem;
            }
            
            .contact-icon {
                font-size: 2.8rem;
            }
            
            .contact-card h3 {
                font-size: 1.5rem;
            }
            
            .contact-info {
                font-size: 1.1rem;
            }
            
            .qr-code {
                width: 130px;
                height: 130px;
            }
        }
    </style>