/* /skin/css/css.css */
/* ===== 重置 & 基础 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #222;
    line-height: 1.5;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

.container, .an1115-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 金黄色主色 */
.an1115-gold, .an1115-section-title {
    color: #D4AF37;
}

/* 按钮 */
.an1115-btn-gold {
    display: inline-block;
    background: #D4AF37;
    color: #1E1E1E;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}
.an1115-btn-gold:hover {
    background: #b58f2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* ===== 头部导航 ===== */
.an1115-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #1E1E1E;
    width: 100%;
}
.an1115-top-bar {
    background: #2C2C2C;
    padding: 8px 0;
    font-size: 13px;
    color: #ccc;
}
.an1115-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.an1115-left-links a, .an1115-right-info a {
    margin-right: 12px;
    color: #e0e0e0;
}
.an1115-left-links a:hover, .an1115-right-info a:hover {
    color: #D4AF37;
}
.an1115-divider {
    margin: 0 6px;
    color: #5a5a5a;
}
.an1115-search {
    display: inline-flex;
    background: #3a3a3a;
    border-radius: 30px;
    padding: 4px 12px;
    margin-left: 15px;
}
.an1115-search input {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    padding: 5px 0;
}
.an1115-search button {
    background: none;
    border: none;
    color: #D4AF37;
    cursor: pointer;
    font-size: 16px;
}
.an1115-main-nav {
    background: #1E1E1E;
    padding: 12px 0;
    border-top: 1px solid #2c2c2c;
}
.an1115-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.an1115-nav-left, .an1115-nav-right {
    display: flex;
    gap: 32px;
}
.an1115-nav-left li a, .an1115-nav-right li a {
    color: #f0f0f0;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 8px 0;
}
.an1115-nav-left li a:hover, .an1115-nav-right li a:hover,
.an1115-nav-link.active {
    color: #D4AF37;
    border-bottom: 2px solid #D4AF37;
}
.an1115-logo-center {
    flex-shrink: 0;
}
.an1115-logo-img {
    height: 48px;
    width: auto;
}
.an1115-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 28px;
    cursor: pointer;
}
.an1115-mobile-menu {
    display: none;
    background: #1E1E1E;
    padding: 20px;
    border-top: 1px solid #333;
}
.an1115-mobile-menu ul li a {
    display: block;
    padding: 12px;
    color: #eee;
    border-bottom: 1px solid #2c2c2c;
}

/* ===== Hero Section ===== */
.an1115-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.an1115-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.an1115-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.an1115-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}
.an1115-hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}
.an1115-hero-sub {
    font-size: 1.3rem;
    color: #f5e2a3;
    margin: 15px 0 8px;
}
.an1115-hero-desc {
    color: #ddd;
    font-size: 1rem;
    margin-bottom: 30px;
}
.an1115-cta-group {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 25px 0 40px;
    flex-wrap: wrap;
}
.an1115-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #D4AF37;
    color: #1E1E1E;
    font-weight: bold;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: 0.25s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.an1115-cta-btn:hover {
    background: #c6a02e;
    transform: scale(1.02);
}
.an1115-cta-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0.2);
}
.an1115-booking-bar {
    background: rgba(30,30,30,0.85);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    padding: 16px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.an1115-booking-item {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: white;
}
.an1115-booking-item label {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.an1115-booking-item input, .an1115-booking-item select {
    background: white;
    border: none;
    padding: 8px 12px;
    border-radius: 40px;
    font-family: inherit;
}
.an1115-booking-btn {
    background: #D4AF37;
    border: none;
    padding: 0 28px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}
.an1115-booking-btn:hover {
    background: #b58f2a;
}

/* ===== 公共板块样式 ===== */
.an1115-section {
    padding: 80px 0;
}
.an1115-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.an1115-section-sub, .an1115-section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}
.an1115-about-text {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.05rem;
}
.an1115-video-placeholder {
    max-width: 1000px;
    margin: 30px auto 0;
    aspect-ratio: 16/9;
    background: #F3C623;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.an1115-video-cover {
    text-align: center;
}
.an1115-video-logo {
    width: 120px;
    margin: 0 auto;
}
.an1115-play-symbol {
    width: 70px;
    height: 70px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    margin: 20px auto;
}
/* 左右分割布局 */
.an1115-split-layout, .an1115-split-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 60px 0;
}
.an1115-split-reverse {
    flex-direction: row-reverse;
}
.an1115-split-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
}
.an1115-split-image img {
    width: 100%;
    height: auto;
    display: block;
}
.an1115-split-content {
    flex: 1;
}
.an1115-split-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1E1E1E;
}
.an1115-split-content p {
    margin-bottom: 30px;
    color: #4a4a4a;
}
/* 分割线标题 */
.an1115-divider-title {
    text-align: center;
    margin: 40px 0 50px;
    position: relative;
    font-size: 1.8rem;
    font-weight: 500;
    color: #D4AF37;
}
.an1115-divider-title span {
    background: white;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}
.an1115-divider-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
    z-index: 1;
}
.an1115-travel-grid, .an1115-double-grid, .an1115-review-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
    margin-top: 30px;
}
.an1115-travel-card, .an1115-dining-card, .an1115-review-card {
    background: #fafaf9;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.25s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.an1115-travel-card img, .an1115-dining-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.an1115-travel-card h4, .an1115-dining-card h4 {
    padding: 20px 20px 10px;
    font-size: 1.4rem;
}
.an1115-travel-card p, .an1115-dining-card p {
    padding: 0 20px 20px;
    color: #555;
}
.an1115-link-yellow {
    display: inline-block;
    margin: 0 20px 20px;
    color: #D4AF37;
    font-weight: 600;
}
.an1115-review-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
}
.an1115-review-card p {
    font-style: italic;
    margin-bottom: 20px;
}
/* 社会责任 */
.an1115-social-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}
.an1115-social-img {
    flex: 1;
    border-radius: 28px;
    max-height: 320px;
    object-fit: cover;
}
.an1115-social-text {
    flex: 1;
}
/* 代理加盟 */
.an1115-franchise-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}
.an1115-franchise-info {
    flex: 1;
}
.an1115-franchise-img {
    flex: 1;
}
.an1115-franchise-img img {
    border-radius: 28px;
}
/* APP */
.an1115-app-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #F9F5EB;
    border-radius: 48px;
    padding: 50px;
}
.an1115-app-qrcode {
    text-align: center;
}
.an1115-qr-placeholder {
    background: #eee;
    padding: 20px;
    border-radius: 20px;
}
.an1115-qr-sim, .an1115-qr-sim-small {
    width: 100px;
    height: 100px;
    background: repeating-linear-gradient(45deg, #aaa, #aaa 10px, #ccc 10px, #ccc 20px);
    margin: 15px auto 0;
}
.an1115-qr-sim-small {
    width: 70px;
    height: 70px;
}
.an1115-store-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.an1115-store {
    background: #1E1E1E;
    color: white;
    padding: 10px 25px;
    border-radius: 40px;
}
/* Footer */
.an1115-partners {
    background: #f5f5f5;
    padding: 30px 0;
    text-align: center;
}
.an1115-partners img {
    display: inline-block;
    height: 40px;
    margin: 0 20px;
    opacity: 0.6;
    filter: grayscale(0.3);
}
.an1115-footer-main {
    background: #1E1E1E;
    color: #ccc;
    padding: 50px 0 20px;
}
.an1115-footer-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}
.an1115-footer-col h4 {
    color: #D4AF37;
    margin-bottom: 20px;
}
.an1115-footer-col ul li {
    margin-bottom: 10px;
}
.an1115-social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #ccc;
}
.an1115-copyright {
    text-align: center;
    padding-top: 40px;
    font-size: 12px;
    border-top: 1px solid #333;
    margin-top: 30px;
}
/* 响应式 */
@media (max-width: 1024px) {
    .an1115-container {
        padding: 0 24px;
    }
    .an1115-nav-left, .an1115-nav-right {
        display: none;
    }
    .an1115-mobile-menu-btn {
        display: block;
    }
    .an1115-mobile-menu.show {
        display: block;
    }
    .an1115-split-layout, .an1115-split-reverse,
    .an1115-social-content, .an1115-franchise-wrapper,
    .an1115-app-flex {
        flex-direction: column;
    }
    .an1115-travel-grid, .an1115-double-grid, .an1115-review-grid {
        grid-template-columns: 1fr;
    }
    .an1115-hero-title {
        font-size: 2.5rem;
    }
    .an1115-booking-bar {
        border-radius: 30px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .an1115-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .an1115-cta-group {
        gap: 15px;
    }
    .an1115-section {
        padding: 50px 0;
    }
}
@media (max-width: 768px) {
    .an1115-top-flex {
        flex-direction: column;
        gap: 8px;
    }
    .an1115-booking-item input, .an1115-booking-item select {
        width: 100%;
    }
    .an1115-booking-btn {
        padding: 12px;
    }
}