/* 基础重置 */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: #4b311f url("https://pic2.ziyuan.wang/user/eeolive/2024/12/bg_b597bb25dff3d.jpg") no-repeat top center;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    color: #000;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* 主容器 */
.mian {
    width: 1000px;
    margin: 0 auto;
}

/* 导航栏 */
.nav {
    background: url("https://pic2.ziyuan.wang/user/eeolive/2024/12/head_7c45fed601e13.png") no-repeat top center;
    height: 170px;
    margin-top: 250px;
    position: relative;
}

.navs {
    margin-left: 200px;
    padding-top: 35px;
    display: flex;
}

.navs li a {
    padding: 20px 40px;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: #fff2e8;
}

.navs li a:hover { color: #ffff00; }
.nav-highlight { color: #ffff00 !important; }

/* 内容区 */
.content {
    background: #ffe8d7 url("https://pic2.ziyuan.wang/user/eeolive/2024/12/content_fcaaa62d3a7b7.png") no-repeat top center;
    min-height: 340px;
    border-left: 3px solid #000;
    border-right: 3px solid #000;
    padding-bottom: 20px;
}

.download-btns {
    text-align: center;
    padding: 30px 0 10px 0;
}

.down-d {
    margin: 0 15px;
    display: inline-block;
    transition: transform 0.2s;
}

.down-d:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.down-d img {
    border: 0;
    width: 400px;
    height: 90px;
}

/* 文字内容区域 */
.txt-container {
    padding: 20px 60px;
    background-color: #ffcc99;
    margin: 0 20px;
}

h3 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

h3 img {
    margin-right: 10px;
}

.time-highlight { color: #ff0000; margin: 0 5px; }
.warning-text { color: #ff0000; margin: 20px 0; }
.section-gap { margin-top: 25px; }

.game-rules p, .rule-details p, .vip-info p {
    line-height: 32px;
    font-size: 15px;
}

.highlight-red {
    color: #ff0000;
    font-weight: bold;
}

.link-blue {
    color: #0066ff;
    text-decoration: underline;
}

.charge-ratio {
    margin-top: 20px;
    font-weight: bold;
}

/* 页脚 */
.foot {
    background: url("https://pic2.ziyuan.wang/user/eeolive/2024/12/foot_d32f4b018cb66.png") no-repeat top center;
    height: 28px;
    margin-bottom: 50px;
}

/* --- 手机端自适应样式 --- */
@media screen and (max-width: 1000px) {
    .mian {
        width: 100% !important;
        overflow-x: hidden;
    }

    .nav {
        margin-top: 50px; /* 手机端头部留白缩小 */
        height: auto;
        min-height: 120px;
        background-size: cover;
    }

    .navs {
        margin-left: 0;
        padding-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navs li a {
        padding: 10px 15px;
        font-size: 14px;
    }

    .content {
        padding-bottom: 20px;
        background-size: cover;
        border: none;
    }

    .txt-container {
        padding: 15px 15px;
        margin: 0 10px;
    }

    .download-btns {
        padding: 20px 0;
    }

    .down-d {
        margin: 10px 0;
        width: 90%;
    }

    .down-d img {
        width: 100% !important;
        height: auto !important;
    }

    h3 {
        font-size: 16px;
        flex-wrap: wrap;
    }

    h3 img {
        width: 20px;
        height: auto;
    }

    .game-rules p, .rule-details p, .vip-info p {
        font-size: 13px;
        line-height: 24px;
        word-break: break-all;
    }
}