/* /skin/css/css.css */
/* ===== RESET & 基础变量 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --an-black: #1a1a1a;
    --an-dark-gray: #2c2c2c;
    --an-gray: #6c6c6c;
    --an-light-gray: #f7f7f7;
    --an-border: #eaeaea;
    --an-gold: #c7a55b;
    --an-gold-light: #e0c38c;
    --an-white: #ffffff;
    --an-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
    --an-transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--an-black);
    background-color: var(--an-white);
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container, .an1115-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== 顶部工具栏 ===== */
.an1115-top-bar {
    background: var(--an-black);
    color: #ccc;
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}
.an1115-top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.an1115-top-left span, .an1115-top-right span {
    cursor: pointer;
    margin-right: 24px;
    transition: var(--an-transition);
}
.an1115-top-left span:hover, .an1115-top-right span:hover {
    color: var(--an-gold);
}
.an1115-top-right span:last-child {
    margin-right: 0;
}

/* ===== 主导航栏 (sticky) ===== */
.an1115-header {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.2s;
}
.an1115-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}
.an1115-logo-img {
    height: 48px;
    width: auto;
}
.an1115-nav-list {
    display: flex;
    gap: 28px;
    list-style: none;
}
.an1115-nav-link {
    text-decoration: none;
    font-weight: 500;
    color: var(--an-dark-gray);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding: 8px 0;
    position: relative;
    transition: var(--an-transition);
}
.an1115-nav-link:hover, .an1115-nav-link.an1115-active {
    color: var(--an-gold);
}
.an1115-nav-link.an1115-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--an-gold);
    border-radius: 2px;
}
.an1115-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}
.an1115-mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--an-black);
    transition: 0.2s;
}

/* ===== HERO 区域 (轮播+居中双CTA) ===== */
.an1115-hero-section {
    position: relative;
    height: 85vh;
    min-height: 580px;
    overflow: hidden;
}
.an1115-hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.an1115-carousel-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    transition: background-image 0.8s ease;
}
.an1115-carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 5;
}
.an1115-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.2s;
}
.an1115-dot.an1115-active-dot {
    background: var(--an-gold);
    transform: scale(1.2);
}
.an1115-hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
}
.an1115-hero-cta-box {
    text-align: center;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    padding: 2rem 3rem;
    border-radius: 28px;
    border: 1px solid rgba(255,215,140,0.3);
}
.an1115-cta-logo img {
    height: 70px;
    margin: 0 auto 20px;
    filter: brightness(1.1);
}
.an1115-button-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.an1115-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 48px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.an1115-btn-primary {
    background: var(--an-gold);
    color: #1a1a1a;
    border: none;
}
.an1115-btn-primary:hover {
    background: #dab066;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(199,165,91,0.3);
}
.an1115-btn-secondary {
    background: transparent;
    border: 1.5px solid var(--an-white);
    color: var(--an-white);
}
.an1115-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--an-gold);
    color: var(--an-gold);
}
.an1115-btn-outline {
    background: transparent;
    border: 1.5px solid var(--an-gold);
    color: var(--an-gold);
    padding: 10px 28px;
    border-radius: 48px;
    font-weight: 500;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
}
.an1115-btn-sm {
    padding: 10px 28px;
    font-size: 0.9rem;
}
/* 优惠条 */
.an1115-offer-strip {
    background: var(--an-black);
    color: #ddd;
    text-align: center;
    padding: 12px;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    border-bottom: 1px solid #3a3a3a;
}

/* 通用section */
.an1115-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--an-border);
}
.an1115-section-title {
    font-size: 2.3rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    text-align: center;
    margin-bottom: 52px;
    position: relative;
}
.an1115-section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--an-gold);
    margin: 16px auto 0;
    border-radius: 4px;
}
.an1115-card-grid, .an1115-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.an1115-card, .an1115-review-card {
    background: var(--an-white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--an-transition);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.an1115-card img, .an1115-review-card img {
    width: 100%;
    aspect-ratio: 1.2 / 0.9;
    object-fit: cover;
}
.an1115-card h3, .an1115-review-card p:first-child {
    padding: 20px 20px 0 20px;
    font-weight: 600;
}
.an1115-card p, .an1115-review-card .an1115-reviewer {
    padding: 8px 20px 24px;
    color: var(--an-gray);
}
.an1115-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--an-shadow);
}
.an1115-about-grid, .an1115-travel-wrapper, .an1115-social-grid, .an1115-franchise-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.an1115-about-text p, .an1115-travel-content p, .an1115-social-text p {
    margin-bottom: 1rem;
}
.an1115-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.an1115-feature-item {
    padding: 20px;
    background: #fbfbfb;
    border-radius: 28px;
    transition: 0.2s;
}
.an1115-feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}
.an1115-travel-img img, .an1115-about-img img, .an1115-social-img img, .an1115-franchise-img img {
    border-radius: 24px;
    width: 100%;
    object-fit: cover;
}
/* 横向滚动 (娱乐休闲) */
.an1115-scroll-wrapper {
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 12px;
}
.an1115-scroll-container {
    display: flex;
    gap: 24px;
    width: max-content;
}
.an1115-scroll-card {
    width: 280px;
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
    background: var(--an-white);
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}
.an1115-scroll-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.an1115-scroll-card h4, .an1115-scroll-card p {
    padding: 12px 16px;
}
/* 代理加盟联系方式 */
.an1115-contact-info {
    margin: 24px 0;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 24px;
}
.an1115-contact-info a {
    color: var(--an-gold);
    text-decoration: none;
}
/* app板块 */
.an1115-app-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}
.an1115-app-showcase {
    border-radius: 28px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}
.an1115-badge {
    background: var(--an-black);
    color: white;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    display: inline-block;
    margin-right: 12px;
}
/* 页脚 */
.an1115-footer {
    background: #111;
    color: #aaa;
    padding: 56px 0 32px;
}
.an1115-footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}
.an1115-footer-brand img {
    height: 42px;
    filter: brightness(0.8);
    margin-bottom: 16px;
}
.an1115-footer-links {
    display: flex;
    justify-content: space-between;
}
.an1115-footer-col h4 {
    color: #ddd;
    margin-bottom: 20px;
    font-weight: 500;
}
.an1115-footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.85rem;
}
.an1115-footer-col a:hover {
    color: var(--an-gold);
}
.an1115-social-icons span {
    background: #222;
    padding: 6px 14px;
    border-radius: 30px;
    margin-right: 12px;
    cursor: pointer;
}
.an1115-copyright {
    text-align: center;
    font-size: 0.75rem;
    border-top: 1px solid #2a2a2a;
    padding-top: 28px;
}
/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .an1115-nav-list {
        gap: 18px;
    }
    .an1115-section {
        padding: 60px 0;
    }
    .an1115-card-grid, .an1115-grid-3, .an1115-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .an1115-about-grid, .an1115-travel-wrapper, .an1115-social-grid, .an1115-franchise-wrap, .an1115-app-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
@media (max-width: 768px) {
    .an1115-nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 28px 24px;
        box-shadow: 0 12px 20px rgba(0,0,0,0.05);
        gap: 20px;
    }
    .an1115-nav-list.an1115-mobile-open {
        display: flex;
    }
    .an1115-mobile-toggle {
        display: flex;
    }
    .an1115-hero-section {
        height: 70vh;
    }
    .an1115-button-group {
        gap: 16px;
    }
    .an1115-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .an1115-section-title {
        font-size: 1.8rem;
    }
    .an1115-card-grid, .an1115-feature-grid {
        grid-template-columns: 1fr;
    }
    .an1115-footer-grid {
        grid-template-columns: 1fr;
    }
    .an1115-footer-links {
        flex-wrap: wrap;
        gap: 28px;
    }
    .an1115-container {
        padding: 0 20px;
    }
}
@media (max-width: 480px) {
    .an1115-top-bar-inner {
        font-size: 0.7rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .an1115-hero-cta-box {
        padding: 1.5rem;
        width: 90%;
    }
}