/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.modal {
    display: none; /* 默认隐藏 */
    position: fixed;
    z-index: 1001; /* 比导航栏更高 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #ff69b4;
}

/* 响应式设计 */
@media (max-width: 576px) {
    .modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .qrcode-container img {
        max-width: 150px;
        max-height: 150px;
    }
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    padding-top: 60px; /* 从70px减小到60px */
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏样式 */
nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 60px; /* 从70px减小到60px */
    transition: all 0.3s ease;
}

/* 确保导航栏容器完全水平布局并垂直居中 */
nav .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 20px;
    width: 100%;
    height: 60px;
}

/* Logo样式 - 确保垂直对齐 */
.logo {
    margin-right: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    padding: 0;
    display: inline-block;
}

/* 1. 修改导航栏链接悬停颜色 */
.logo a:hover {
    color: #ff69b4; /* 粉色替代原来的蓝色 */
}

.nav-menu a:hover {
    color: #ff69b4; /* 粉色替代原来的蓝色 */
}

/* 桌面端导航菜单容器 */
.nav-desktop {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

/* 导航菜单项 - 确保水平排列和垂直对齐 */
.nav-menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin: 0;
    min-width: 0;
    line-height: 1;
}

.nav-menu li {
    margin-left: 15px;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.nav-menu li:first-child {
    margin-left: 0;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    padding: 5px 0;
    display: inline-block;
    transition: color 0.3s;
    line-height: 1;
    vertical-align: middle;
}

/* 确保在所有屏幕尺寸下元素都垂直对齐 */
@media (max-width: 1200px) {
    .logo a {
        font-size: 22px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    nav .container {
        justify-content: space-between;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
    }
}

/* 2. 修改主要按钮颜色 */
.btn-primary {
    background-color: #ff69b4; /* 粉色替代原来的蓝色 */
    color: white;
}

.btn-primary:hover {
    background-color: #ff1493; /* 深粉色替代原来的深蓝色 */
    transform: translateY(-2px);
}

/* 3. 修改滑动指示器激活状态颜色 */
.indicator.active {
    background-color: #ff69b4; /* 粉色替代原来的蓝色 */
}

/* 4. 修改预约流程步骤指示器颜色 */
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ff69b4; /* 粉色替代原来的蓝色 */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* 5. 修改返回顶部按钮颜色 */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff69b4; /* 粉色替代原来的蓝色 */
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

#backToTop:hover {
    background-color: #ff1493; /* 深粉色替代原来的深蓝色 */
    transform: translateY(-3px);
}

.nav-menu a:hover {
    color: #ff69b4;
}

/* 下拉菜单 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: hidden;
    display: none;
    min-width: 150px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}

.dropdown-menu a {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* 移动端菜单按钮样式 */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s;
}

/* 移动端菜单 */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* 移动端下拉菜单 */
.mobile-dropdown-menu {
    display: none;
    background-color: #f9f9f9;
}

.mobile-dropdown-menu a {
    padding-left: 40px;
}

/* 首屏样式 */
.hero {
    height: calc(100vh - 70px);
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #ff69b4;
    color: white;
}

.btn-primary:hover {
    background-color: #ff1493;
    transform: translateY(-2px);
}

/* 热门城市预览样式 */
.destinations-preview {
    padding: 100px 0; /* 保持PC端间距 */
    background-color: white;
}

.destinations-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px; /* 保持PC端标题下方间距 */
    color: #333;
}

/* 修复被错误注释的样式块 */
@media (max-width: 1200px) {
    .destinations-preview {
        padding: 40px 0;
    }
    
    .destinations-preview h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }
}

/* 滑动容器基础样式 */
.destinations-slider {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.destinations-slider-container {
    width: 100%;
    overflow: hidden;
}

.destinations-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    padding: 0 5px; /* 添加左右内边距，使首末卡片与容器边缘也有间距 */
}

/* 修改热门美国模特卡片样式，使其与晒单记录图片尺寸一致 */
.destination-card {
    flex-shrink: 0;
    width: 320px; /* 与晒单记录保持一致 */
    height: 600px;
    margin: 0 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    background-color: white;
}

/* 滑动容器样式调整 */
.destinations-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    padding: 0 10px;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .destination-card {
        width: 280px;
        height: 520px;
        margin: 0 12px;
    }
}

@media (max-width: 992px) {
    .destination-card {
        width: 240px;
        height: 450px;
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .destination-card {
        width: 200px;
        height: 380px;
        margin: 0 8px;
    }
}

@media (max-width: 576px) {
    .destination-card {
        width: 180px;
        height: 340px;
        margin: 0 6px;
    }
}

/* 卡片内部元素样式 */
.destination-card img {
    width: 100%;
    height: 75%;
    object-fit: cover;
    display: block;
}

.destination-card h3 {
    font-size: 17px;
    margin: 15px 12px 8px;
    color: #333;
    text-align: center;
}

.destination-card p {
    font-size: 13px;
    margin: 0 12px 12px;
    color: #666;
    flex-grow: 1;
    line-height: 1.6;
    text-align: center;
}

/* 滑动控制按钮样式 */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    user-select: none;
}

.slider-btn:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 10px;
}

.slider-btn-next {
    right: 10px;
}

/* 滑动指示器样式 */
.slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #ff69b4;
}

/* 为触摸设备添加滑动体验优化 */
.destinations-slider-container {
    touch-action: pan-y;
}

/* 预约流程样式 */
.booking-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.booking-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ff69b4;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.step p {
    color: #666;
}

.booking-cta {
    text-align: center;
}

/* 页脚样式 */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo a {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links a,
.footer-contact a,
.footer-privacy a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-privacy a:hover {
    color: white;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-privacy {
    display: flex;
    gap: 20px;
}

/* 返回顶部按钮 */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff69b4;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background-color: #ff1493;
    transform: translateY(-3px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .destinations-grid,
    .booking-steps,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav .container {
        justify-content: space-between;
        padding: 15px 20px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .destinations-grid,
    .booking-steps,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .destination-card img {
        height: 200px;
    }
}

/* 打印样式 */
@media print {
    nav,
    .mobile-menu-btn,
    .mobile-menu,
    .btn-primary,
    .footer-social,
    #backToTop {
        display: none !important;
    }
    
    body {
        padding-top: 0;
        background-color: white;
    }
    
    .hero {
        height: auto;
        background-color: #f0f0f0;
    }
    
    .hero-image {
        max-height: 400px;
    }
}

/* 减少CSS体积的优化 */
/* 移除不必要的注释和空格，在生产环境中使用 */

/* 图片查看模态框样式 */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
}

.modal-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.modal-image {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.modal-info {
    padding: 30px;
    text-align: center;
}

.modal-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.modal-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    background: none;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 图片预览模态框样式 */
.image-preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-preview-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-preview-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.3s;
}

.close-modal-btn:hover {
    background-color: white;
    color: #ff69b4;
    transform: scale(1.1);
}

.preview-image {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    display: block;
}

.preview-text {
    padding: 30px;
    text-align: center;
    max-width: 800px;
}

.preview-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.preview-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .image-preview-content {
        max-width: 95%;
        margin: 20px;
    }
    
    .close-modal-btn {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .preview-image {
        max-height: 50vh;
    }
    
    .preview-text {
        padding: 20px;
    }
    
    .preview-text h3 {
        font-size: 20px;
    }
    
    .preview-text p {
        font-size: 14px;
    }
}

/* 确保所有可点击的图片都有光标提示 */
.destination-card img,
.blog-card img,
.testimonial-image {
    cursor: pointer;
}

/* 常见问题部分 */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-section .container {
    max-width: 900px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #333;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    margin: 0;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    background-color: #fff;
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #ff69b4;
    transition: transform 0.3s;
}

.faq-question.active:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 767px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 15px;
    }
    
    .faq-answer p {
        padding: 0 15px 15px 15px;
    }
}
/* 博客部分 */
.blog-section {
    padding: 100px 0;
    background-color: white;
}

.blog-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

/* 滑动容器样式 */
.blog-slider {
    position: relative;
    overflow: hidden;
}

.blog-slider-container {
    position: relative;
    overflow: hidden;
}

.blog-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* 博客卡片样式 */
.blog-card {
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    margin-right: 30px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.blog-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    font-size: 14px;
    color: #ff69b4; /* 使用网站主题色 */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.blog-read-more:hover {
    color: #ff1493; /* 深粉色悬停效果 */
}

/* 滑动控制按钮 */
.blog-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
    z-index: 10;
}

.blog-slider-btn:hover {
    background-color: #ff69b4;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.blog-slider-btn-prev {
    left: 20px;
}

.blog-slider-btn-next {
    right: 20px;
}

/* 滑动指示器 */
.blog-slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.blog-slider-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.blog-slider-indicator.active {
    background-color: #ff69b4;
    transform: scale(1.2);
}

/* 响应式设计 */
@media (max-width: 1199px) {
    .blog-card {
        width: calc(50% - 15px);
        margin-right: 30px;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .blog-card {
        width: 100%;
        margin-right: 0;
    }
    
    .blog-card img {
        height: 180px;
    }
    
    .blog-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .blog-slider-btn-prev {
        left: 10px;
    }
    
    .blog-slider-btn-next {
        right: 10px;
    }
}

/* 招聘页面hero区域 */
.careers-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* 公司介绍部分 */
.company-intro {
    padding: 80px 0;
    background-color: white;
}

.company-intro h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #333;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}


/* 招聘信息部分样式 */
.careers-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.careers-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: #333;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.career-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.career-header {
    background-color: #ff69b4;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.career-header h3 {
    margin: 0;
    font-size: 20px;
}

.career-type {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
}

.career-content {
    padding: 20px;
}

.career-description {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.career-requirements,
.career-benefits {
    margin-bottom: 20px;
    padding-left: 20px;
}

.career-requirements li,
.career-benefits li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.5;
}

.apply-btn {
    width: 100%;
    padding: 12px;
    background-color: #ff69b4;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.apply-btn:hover {
    background-color: #ff1493;
}

/* 工作环境部分 */
.work-environment {
    padding: 80px 0;
    background-color: white;
}

.work-environment h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #333;
}

.environment-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.environment-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.environment-gallery img:hover {
    transform: scale(1.02);
}

/* 申请流程部分 */
.application-process {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.application-process h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #ff69b4;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* 联系方式部分 */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #333;
}

.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    margin: 15px 0;
    color: #666;
    font-size: 16px;
}

/* 联系表单样式 */
.contact-form-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.section-description {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff69b4;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* 简洁美观的文件上传样式 */
.file-upload {
    position: relative;
    overflow: hidden;
}

.file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 2px dashed #ff0066;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    background-color: #f0f2f5;
    border-color: #e6005c;
}

.file-upload-label i {
    font-size: 1.8rem;
    color: #ff0066;
    margin-right: 0.75rem;
}

.form-note {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.75rem;
    text-align: center;
}

/* 简洁的照片预览样式 */
.photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ddd;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-preview {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 0, 102, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-preview:hover {
    background-color: rgba(230, 0, 92, 0.9);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .file-upload-label {
        padding: 1rem;
    }
    
    .file-upload-label i {
        font-size: 1.5rem;
    }
    
    .preview-item {
        width: 90px;
        height: 90px;
    }
}

/* 提交按钮样式 */
.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 767px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-section h2 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .preview-item {
        width: 100px;
        height: 100px;
    }
}

/* 晒单记录部分样式 */
.testimonials-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

/* 添加响应式样式，在移动端隐藏滑动控制按钮 - 增加优先级 */
@media (max-width: 768px) {
    .testimonials-slider .testimonial-slider-btn {
        display: none !important;
    }
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 105, 180, 0.05) 0%, rgba(255, 255, 255, 0) 70.7%);
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

/* 滑动容器样式 */
.testimonials-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
}

.testimonials-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    gap: 30px;
    padding: 20px 0;
}

/* 图片包装器 */
.testimonial-image-wrapper {
    flex-shrink: 0;
    width: 320px;
    height: 600px;
    position: relative;
    perspective: 1000px;
}

/* 手机截图样式 */
.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
    border: 12px solid #333;
}

.testimonial-image:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* 滑动控制按钮 */
.testimonial-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    user-select: none;
}

.testimonial-slider-btn:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
    color: #ff69b4;
}

.testimonial-slider-btn-prev {
    left: 10px;
}

.testimonial-slider-btn-next {
    right: 10px;
}

/* 滑动指示器 */
.testimonial-slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.testimonial-indicator:hover {
    transform: scale(1.2);
}

.testimonial-indicator.active {
    background-color: #ff69b4;
    transform: scale(1.2);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .testimonial-image-wrapper {
        width: 280px;
        height: 520px;
    }
}

@media (max-width: 992px) {
    .testimonial-image-wrapper {
        width: 240px;
        height: 450px;
    }
    
    .testimonial-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .testimonial-image-wrapper {
        width: 200px;
        height: 380px;
    }
    
    .testimonial-image {
        border-width: 8px;
    }
    
    .testimonials-slider-track {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .testimonial-image-wrapper {
        width: 180px;
        height: 340px;
    }
    
    .testimonial-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* 导航链接高亮 */
.nav-menu a.active {
    color: #ff69b4;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 767px) {
    .careers-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .careers-section,
    .company-intro,
    .work-environment,
    .application-process,
    .contact-section {
        padding: 60px 0;
    }
    
    .careers-section h2,
    .company-intro h2,
    .work-environment h2,
    .application-process h2,
    .contact-section h2 {
        font-size: 28px;
    }
    
    .careers-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .environment-gallery {
        padding: 0 20px;
    }
    
    .process-steps {
        padding: 0 20px;
    }
}

/* 招聘板块样式 */
.recruitment-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 600px;
}

/* 添加背景装饰元素 */
.recruitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 20%),
                      radial-gradient(circle at 90% 80%, rgba(255, 105, 180, 0.05) 0%, transparent 30%);
    z-index: 0;
}

.recruitment-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 15px;
}

.recruitment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.recruitment-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.recruitment-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.recruitment-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #ff69b4;
    border-radius: 2px;
}

.recruitment-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 100%;
}

/* 美化按钮样式 */
.recruitment-content .btn-primary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    background-color: #ff69b4;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    position: relative;
    z-index: 1;
}

.recruitment-content .btn-primary:hover {
    background-color: #ff1493;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .recruitment-section {
        padding: 80px 0;
        min-height: auto;
    }
    
    .recruitment-content {
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .recruitment-content h2 {
        font-size: 28px;
    }
    
    .recruitment-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .recruitment-content .btn-primary {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .recruitment-section {
        padding: 60px 0;
    }
    
    .recruitment-content h2 {
        font-size: 24px;
    }
    
    .recruitment-content h2::after {
        width: 40px;
        bottom: -10px;
    }
    
    .recruitment-content {
        padding: 30px 15px;
    }
}
/* 成人内容警告弹窗样式 */
#adultWarningModal {
    z-index: 9999; /* 确保在所有其他元素之上 */
}

#adultWarningModal .modal-content {
    max-width: 500px;
    text-align: center;
}

#adultWarningModal h2 {
    color: #ff3e3e;
    margin-bottom: 20px;
}

#adultWarningModal p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* 确保背景页面在弹窗显示时不能滚动 */
body.modal-open {
    overflow: hidden;
}