﻿/* 全局样式重置与基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: #333;
    background-color: #f9f7f2; /* 象牙白/米白色背景 */
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #b22222; /* 中国红 */
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #d4af37; /* 金色 */
}

.section-subtitle {
    font-size: 1.1rem;
    color: #777;
    font-weight: 300;
    max-width: 600px;
    margin: 20px auto 0;
}

/* 按钮通用样式 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn i {
    font-size: 1rem;
}

.btn-call {
    background-color: #b22222; /* 中国红 */
    color: white;
    border: 2px solid #b22222;
}

.btn-call:hover {
    background-color: #9a1c1c;
    border-color: #9a1c1c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(178, 34, 34, 0.3);
}

.btn-register {
    background-color: #d4af37; /* 金色 */
    color: white;
    border: 2px solid #d4af37;
}

.btn-register:hover {
    background-color: #bf9b2c;
    border-color: #bf9b2c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-exclusive, .btn-enjoyment, .btn-privilege, .btn-guide {
    background-color: #b22222; /* 中国红 */
    color: white;
    border: 2px solid #b22222;
}

.btn-exclusive:hover, .btn-enjoyment:hover, .btn-privilege:hover, .btn-guide:hover {
    background-color: #9a1c1c;
    border-color: #9a1c1c;
    transform: translateY(-3px);
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #b22222; /* 中国红 */
    font-size: 1.5rem;
    font-weight: 700;
    gap: 10px;
}

.logo i {
    font-size: 1.8rem;
    color: #d4af37; /* 金色 */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
    color: #b22222;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #b22222;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    position: relative;
}

.search-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #555;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #b22222;
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-box input {
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 4px;
    width: 200px;
    margin-right: 5px;
}

.search-submit {
    background: none;
    border: none;
    color: #b22222;
    cursor: pointer;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
    font-weight: 600;
    cursor: pointer;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #b22222;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: #9a1c1c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(178, 34, 34, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #555;
    cursor: pointer;
}

/* 搜索区域 */
.search-bar-section {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 0;
    margin-top: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-bar {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid #eee;
    padding-right: 15px;
}

.search-field:last-child {
    border-right: none;
    padding-right: 0;
}

.search-field label {
    color: #b22222;
    font-size: 1.1rem;
}

.search-field input, .search-field select {
    border: none;
    background: none;
    font-size: 1rem;
    width: 100%;
    color: #555;
    outline: none;
}

.search-field select {
    cursor: pointer;
}

.search-submit-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #b22222;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit-btn:hover {
    background-color: #9a1c1c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(178, 34, 34, 0.3);
}

/* 主视觉横幅 */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(178, 34, 34, 0.7), rgba(212, 175, 55, 0.3));
}

.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: #d4af37;
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 900px;
    z-index: 2;
}

.hero-text {
    margin-bottom: 40px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-decorations {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.decoration {
    width: 150px;
    opacity: 0.8;
}

.decoration img {
    width: 100%;
    height: auto;
}

/* 主题分类导航 */
.category-section {
    background-color: white;
    padding: 60px 0;
}

.category-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    text-align: left;
}

.more-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #b22222;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.more-link:hover {
    gap: 10px;
    color: #9a1c1c;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background-color: #f9f7f2;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: #b22222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.category-card p {
    color: #777;
    font-size: 0.95rem;
}

/* 福布斯专享内容区 */
.exclusive-section {
    padding: 80px 0;
    background-color: #f9f7f2;
}

.exclusive-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.exclusive-card.reverse {
    flex-direction: row-reverse;
}

.exclusive-card:last-child {
    margin-bottom: 0;
}

.exclusive-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.exclusive-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.exclusive-text {
    flex: 1;
}

.exclusive-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #b22222;
}

.exclusive-text p {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* 舒逸静享板块 */
.serenity-section {
    background-color: white;
    padding: 80px 0;
}

.serenity-text {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.serenity-images {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.serenity-image {
    flex: 1;
    max-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.serenity-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* 佳肴荟萃板块 */
.cuisine-section {
    padding: 80px 0;
    background-color: #f9f7f2;
}

.cuisine-reserved {
    text-align: center;
    padding: 60px 0;
}

.cuisine-reserved p {
    font-size: 1.3rem;
    color: #777;
    margin-bottom: 15px;
}

/* 畅享生活板块 */
.enjoyment-section {
    padding: 80px 0;
    background-color: white;
}

.enjoyment-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.enjoyment-text {
    flex: 1;
}

.enjoyment-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 25px;
    color: #b22222;
}

.enjoyment-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.enjoyment-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.enjoyment-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* 自在之旅板块 */
.journey-section {
    padding: 80px 0;
    background-color: #f9f7f2;
}

.journey-slider {
    position: relative;
    padding: 0 50px;
}

.journey-slide {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slide-image {
    /*height: 250px;*/
    overflow: hidden;
}

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

.journey-slide:hover .slide-image img {
    transform: scale(1.05);
}

.slide-content {
    padding: 25px;
}

.slide-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.slide-content p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
}

.swiper-button-next, .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #b22222;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: #b22222;
    color: white;
}

/* 福布斯尊享板块 */
.privilege-section {
    padding: 80px 0;
    background-color: white;
}

.privilege-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.privilege-card {
    background-color: #f9f7f2;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.privilege-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #b22222;
}

.card-content p {
    color: #555;
    line-height: 1.7;
}

.card-action {
    margin-top: 20px;
}

/* 探索福布斯板块 */
.explore-section {
    padding: 80px 0;
    background-color: #f9f7f2;
}

.explore-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.explore-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.explore-image {
    height: 200px;
    overflow: hidden;
}

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

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

.explore-content {
    padding: 25px;
}

.explore-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.explore-content p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* 度假攻略板块 */
.guide-section {
    padding: 80px 0;
    background-color: white;
}

.guide-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.guide-card {
    background-color: #f9f7f2;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid #b22222;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.guide-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.guide-card h3 i {
    color: #b22222;
}

.guide-card p {
    color: #555;
    line-height: 1.7;
}

.guide-contact {
    text-align: center;
    padding: 40px;
    background-color: #f9f7f2;
    border-radius: 15px;
}

.guide-contact h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #b22222;
}

.guide-contact p {
    margin-bottom: 25px;
    color: #555;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* 页脚 */
.footer {
    background-color: #ffd700; /* 金黄色背景 */
    color: #333;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/20251226emAWphlF.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 40px;
}

.footer-brand {
    flex: 1;
}

.footer-brand .logo {
    margin-bottom: 20px;
    color: #b22222;
}

.footer-description {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #555;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #b22222;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #9a1c1c;
    transform: translateY(-3px);
}

.link-group h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #b22222;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 12px;
    color: #555;
}

.link-group a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #b22222;
}

.link-group i {
    margin-right: 10px;
    color: #b22222;
    width: 20px;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    border-top: 1px solid rgba(178, 34, 34, 0.2);
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #b22222;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #9a1c1c;
    transform: translateY(-5px);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .category-cards, .privilege-cards, .explore-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guide-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .exclusive-card, .enjoyment-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .serenity-images {
        flex-direction: column;
        align-items: center;
    }
    
    .serenity-image {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .search-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-field {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 15px;
    }
    
    .search-field:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-actions .action-btn span {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .search-box {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        border-radius: 0;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 220px;
    }
    
    .decoration {
        width: 80px;
    }
    
    .category-cards, .privilege-cards, .explore-cards {
        grid-template-columns: 1fr;
    }
    
    .journey-slider {
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .decoration {
        display: none;
    }
}