/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    background-color: #fefefe;
    color: #1e2a3a;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* 全局深海军蓝主题色 */
:root {
    --navy: #0a192f;
    --navy-light: #112240;
    --gold: #c9a03d;
    --white: #ffffff;
    --gray-bg: #f8f9fc;
    --text-dark: #1f2a3e;
    --text-muted: #4a5b6e;
}

/* 公用容器 */
.zjj886-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 顶部超窄条 (黑色底纹) */
.zjj886-topbar {
    background: #0a0c10;
    color: #ddd;
    font-size: 13px;
    padding: 8px 0;
}
.zjj886-topbar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}
.zjj886-topbar a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 13px;
}
.zjj886-topbar a:hover { color: var(--gold); }
.zjj886-topbar .zjj886-icon-text i { margin-right: 6px; }

/* 主导航栏 */
.zjj886-main-nav {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.zjj886-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 16px 40px;
    max-width: 1440px;
    margin: 0 auto;
}
.zjj886-logo img {
    height: 48px;
    width: auto;
    display: block;
}
.zjj886-nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    transition: all 0.3s ease;
}
.zjj886-nav-links li a {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    padding: 8px 0;
    transition: 0.2s;
    letter-spacing: 0.5px;
    position: relative;
}
.zjj886-nav-links li a:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--navy);
    transition: 0.3s;
}
.zjj886-nav-links li a:hover:after,
.zjj886-nav-links li a.zjj886-active:after {
    width: 100%;
}
.zjj886-nav-links li a.zjj886-active {
    color: var(--navy);
    font-weight: 700;
}
/* 移动端汉堡菜单 */
.zjj886-hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--navy);
}
@media (max-width: 992px) {
    .zjj886-nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 75%;
        height: calc(100vh - 80px);
        padding: 40px 32px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.1);
        gap: 28px;
        transition: 0.3s;
        z-index: 999;
        overflow-y: auto;
    }
    .zjj886-nav-links.zjj886-nav-open {
        left: 0;
    }
    .zjj886-hamburger {
        display: block;
    }
    .zjj886-nav-wrapper {
        padding: 12px 24px;
    }
    .zjj886-container {
        padding: 0 24px;
    }
}
@media (max-width: 640px) {
    .zjj886-topbar-inner { justify-content: center; gap: 16px; padding: 0 16px; font-size: 11px; }
    .zjj886-nav-wrapper { padding: 12px 20px; }
}

/* 板块通用间距 */
.zjj886-section {
    padding: 80px 0;
}
.zjj886-section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 48px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}
.zjj886-section-title:after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--gold);
    position: absolute;
    bottom: -12px;
    left: 0;
    border-radius: 2px;
}

/* HERO 首屏区 */
.zjj886-hero {
    height: 85vh;
    min-height: 620px;
    background-image: url('/skin/img/banner20260329wvpHb.webp');
    background-size: cover;
    background-position: center 30%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.zjj886-hero-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.45);
}
.zjj886-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px;
}
.zjj886-hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}
.zjj886-hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin: 24px 0 36px;
    font-weight: 400;
}
.zjj886-btn-group {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.zjj886-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: white;
    border: none;
    padding: 14px 38px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}
.zjj886-btn-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.zjj886-btn-light:hover {
    background: white;
    color: var(--navy);
    border-color: white;
}
.zjj886-btn:hover {
    background: #0c2b4b;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .zjj886-hero-content h1 { font-size: 2.4rem; }
    .zjj886-section { padding: 60px 0; }
    .zjj886-section-title { font-size: 2rem; }
    .zjj886-btn { padding: 10px 24px; font-size: 0.9rem;}
}

/* 集团简介 (左右图文) */
.zjj886-about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}
.zjj886-about-text {
    flex: 1.2;
}
.zjj886-about-text p {
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 1.05rem;
}
.zjj886-about-img {
    flex: 1;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.15);
}
.zjj886-about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}
.zjj886-about-img:hover img { transform: scale(1.02); }

/* 主营业务 六列卡片栅格(响应式) */
.zjj886-grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}
.zjj886-service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.zjj886-service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);}
.zjj886-service-img {
    height: 220px;
    overflow: hidden;
}
.zjj886-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.zjj886-service-card:hover .zjj886-service-img img { transform: scale(1.05);}
.zjj886-service-info {
    padding: 24px 20px;
}
.zjj886-service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--navy);
}

/* 酒店住宿板块 (卡片风格) */
.zjj886-hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}
.zjj886-hotel-item {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.25s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}
.zjj886-hotel-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.zjj886-hotel-info {
    padding: 22px;
}
.zjj886-hotel-info h3 { font-size: 1.4rem; margin-bottom: 8px;}
.zjj886-hotel-info p { color: var(--text-muted);}

/* 用户评价 (卡片交错) */
.zjj886-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.zjj886-review-card {
    background: var(--gray-bg);
    border-radius: 32px;
    padding: 32px 28px;
    transition: 0.2s;
}
.zjj886-review-card i {
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.zjj886-review-card p {
    font-style: italic;
    color: #2c3e4e;
    line-height: 1.5;
}
.zjj886-reviewer {
    margin-top: 24px;
    font-weight: 700;
    color: var(--navy);
}

/* 游戏娱乐板块 (左右交替图文) */
.zjj886-game-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.zjj886-game-text, .zjj886-game-img {
    flex: 1;
}
.zjj886-game-img img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 18px 28px -12px rgba(0,0,0,0.2);
}

/* 联系我们 */
.zjj886-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.zjj886-contact-info {
    flex: 1.2;
    background: var(--gray-bg);
    padding: 36px;
    border-radius: 32px;
}
.zjj886-contact-info p { margin: 18px 0; display: flex; align-items: center; gap: 12px;}
.zjj886-contact-info i { width: 32px; color: var(--navy); font-size: 1.4rem;}
.zjj886-contact-form {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 32px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    border: 1px solid #eee;
}
.zjj886-input-group {
    margin-bottom: 20px;
}
.zjj886-input-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 60px;
    font-size: 1rem;
}
.zjj886-subscribe-btn {
    background: var(--navy);
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 60px;
    font-weight: bold;
    cursor: pointer;
}

/* 底部 */
.zjj886-footer {
    background: var(--navy);
    color: #cfdfed;
    padding: 60px 0 30px;
    margin-top: 20px;
}
.zjj886-footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}
.zjj886-footer-col {
    flex: 1;
    min-width: 160px;
}
.zjj886-footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.zjj886-footer-col a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.2s;
}
.zjj886-footer-col a:hover { color: var(--gold); }
.zjj886-subscribe-box {
    display: flex;
    margin-top: 12px;
}
.zjj886-subscribe-box input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 40px 0 0 40px;
    outline: none;
}
.zjj886-subscribe-box button {
    background: var(--gold);
    border: none;
    padding: 0 18px;
    border-radius: 0 40px 40px 0;
    cursor: pointer;
    font-weight: bold;
}
.zjj886-social-icons a {
    display: inline-block;
    margin-right: 18px;
    font-size: 1.6rem;
    color: #ddd;
}
.zjj886-copyright {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .zjj886-footer-grid { flex-direction: column; }
    .zjj886-btn-group { gap: 16px; }
}
img {
    max-width: 100%;
    height: auto;
}