

/* 背景图片 (只给标题区域用) */
.down-header-background {
    width: 100%;
    height: 1120px;
    background-image: url('../images/down_top_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; /* 确保独立性 */
}

@supports (background-image: url("data:image/webp;base64,UklGRiIAAABXRUJQVlA4TAYAAAAvAAAAAAfQ//73v/+BiOh/AAA=")) {
    .down-header-background {
        background-image: url('../images/down_top_bg.webp');
    }
}

/* Part1 背景 (父容器) */
.down-part1-background {
    width: 100%;
    min-height: 800px; /* 确保足够高度 */
    background-image: url('../images/message-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; /* 关键：确保子元素相对定位 */
    display: flex; /* 保留 flex，用于居中整个 down-part1-config */
    justify-content: center; /* 水平居中 */
    align-items: flex-start; /* 从顶部开始排列，避免垂直居中挤压 */
}

/* 支持 webp 格式 */
@supports (background-image: url("data:image/webp;base64,UklGRiIAAABXRUJQVlA4TAYAAAAvAAAAAAfQ//73v/+BiOh/AAA=")) {
    .down-part1-background {
        background-image: url('../images/message-bg.webp');
    }
}

.down-part1-box {
    width: 500px; /* 容器宽度，可调整 */
    height: 150px; /* 容器高度，可调整 */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 200px; /* 默认 200px，可调整 */

    display: flex;
    justify-content: space-around; /* 让按钮横向排列 */
    align-items: center;
    text-align: center;
    padding: 10px;
}

/* 按钮样式 */
.down-part1-box-down {
    width: 200px; /* 按钮宽度 */
    height: 45px; /* 按钮高度 */
    border: 1px solid #c0a050; /* 金色边框 */
    background-color: rgba(0, 0, 0, 0); /* 默认透明 */
    color: #e6c15b; /* 按钮文字颜色 */
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    
    /* 让按钮内容水平 & 垂直居中 */
    display: flex;
    align-items: center; /* 垂直居中 */


    /* 防止内容超出 */
    text-align: center;
    white-space: nowrap; /* 防止文字换行 */

    /* 去掉下划线 */
    text-decoration: none;

    /* 去掉点击后默认的虚线框 */
    outline: none;
}

/* 鼠标悬停时，背景变成金黄色，文字变黑 */
.down-part1-box-down:hover {
    background-color: #c0a050; /* 金色 */
    color: #000000; /* 文字变黑 */
    text-decoration: none; /* 确保无下划线 */
}

/* 去掉点击后的默认样式，保持原样 */
.down-part1-box-down:active {
    background-color: #c0a050; /* 保持悬停状态 */
    color: #000000;
    text-decoration: none;
}


/* 按钮容器 */
.down-part1-box-item {
    display: flex;
    flex-direction: column; /* 纵向排列 */
    align-items: flex-start; /* 左对齐 */
}

/* 按钮说明文本（两行 + 左对齐 + 左侧缩进） */
.down-part1-box-down-text {
    font-size: 14px; /* 说明文字大小，可调整 */
    color: #817451; /* 文字颜色，默认金色，可调整 */
    margin-top: 10px; /* 与按钮的间距 */
    max-width: 200px; /* 限制最大宽度 */
    word-wrap: break-word; /* 允许换行 */
    white-space: normal; /* 自动换行 */
    line-height: 1.5; /* 行距 */
    text-align: left; /* 文字左对齐 */
    
    padding-left: 8px; /* 左侧缩进（推荐） */
    /* 或者使用 margin-left 也可以，但 padding 更适合文字排版 */
}

.down-part1-box-down-img {
    width: 25px; /* 图标默认宽度，可调整 */
    height: 25px; /* 图标默认高度，可调整 */
    object-fit: contain; /* 确保图标完整显示 */
    
    /* 控制图标与按钮左侧的距离 */
    margin-left: 10px; /* 默认 10px，可调整 */
    margin-right: 20px; /* 右侧边距，防止贴得太紧，可调整 */
}



.split-line-container {
    width: 500px;
    height: 100px;
    background-image: url('../images/split-line.png');
    background-size: contain; /* 避免拉伸 */
    background-position: center;
    background-repeat: no-repeat;
    position: absolute; /* 绝对定位，让 HTML 代码控制 top */
    left: 50%;
    transform: translateX(-50%); /* 水平居中 */

    /* 让文本居中 */
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    text-align: center; /* 让多行文本也居中 */
    
    /* 文字样式 */
    color: rgb(206, 190, 102); /* 金色字体 */
    font-size: 14px; /* 适当放大 */
}

@supports (background-image: url("data:image/webp;base64,UklGRiIAAABXRUJQVlA4TAYAAAAvAAAAAAfQ//73v/+BiOh/AAA=")) {
    .split-line-container {
        background-image: url('../images/split-line.webp');
    }
}
.down-logo-container {
    width: 460px;  /* 保持不变 */
    height: 230px; /* 保持不变 */
    background-image: url('../images/wotlk_zhcn.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    /* 绝对定位 */
    position: absolute;
    top: 350px; /* 距离顶部 500px */
    left: 50%;
    transform: translateX(-50%); /* 让 LOGO 完全水平居中 */
}


.down-button-container {
    width: 320px; /* 按钮宽度 */
    height: 70px; /* 按钮高度 */
    background: linear-gradient(145deg, #913939, #9c0101); /* 深色渐变背景 */
    text-align: center;
    line-height: 65px; /* 让文字垂直居中 */
    font-size: 24px;
    font-weight: bold;
    color: #e9d524; /* 文字颜色 */
    text-decoration: none; /* 取消下划线 */
    display: block;

    /* 让按钮水平居中 */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    /* 可调节的顶部距离 */
    top: 600px;

    /* 添加正红色边框 */
    border: 1px solid #ff0000; /* 正红色 */

    /* 默认透明度 75% */
    opacity: 0.70;
    transition: opacity 0.1s ease-in-out, border-color 0.1s ease-in-out;
}

/* 鼠标悬停时透明度100% 并高亮边框 */
.down-button-container:hover {
    opacity: 1;
    border-color: #ff4444; /* 变浅一点的红色，增强交互感 */
}

/* 点击后（已访问状态）保持样式不变 */
.down-button-container:visited {
    color: #e9d524; /* 与默认颜色一致 */
    text-decoration: none; /* 确保无下划线 */
    border-color: #ff0000; /* 保持默认边框颜色 */
    opacity: 0.70; /* 保持默认透明度 */
}

/* down-part1-box-2 通用容器 */
.down-part1-box-2 {
    width: 100%; /* 默认全宽，可调整 */
    max-width: 800px; /* 限制最大宽度，防止内容过宽 */
    background-color: transparent; /* 默认透明，可调整 */
    position: absolute; /* 绝对定位，允许调整顶部距离 */
    left: 50%;
    transform: translateX(-50%); /* 水平居中 */

    /* 顶部距离（默认 100px，可在 HTML 里调整） */
    top: 100px;
    
    /* 文字样式 */
    font-size: 18px; /* 默认字体大小，可调整 */
    color: #d8d4d4; /* 文字颜色，可调整 */
    text-align: left; /* **修改为左对齐** */

    /* 行距 */
    line-height: 1.8; /* 默认行距，可调整 */
    
    /* 让容器内文字可以换行 */
    word-wrap: break-word;
    white-space: normal;

    /* 左侧内边距，防止文字贴边 */
    padding-left: 240px; /* 默认 15px，可调整 */
}

/* 文字链接样式 */
.down-part1-box-link {
    color: #d8d4d4; /* 默认字体颜色（白色，可调整） */
    text-decoration: none; /* 去掉下划线 */
    transition: color 0.3s ease-in-out; /* 平滑过渡 */
}

/* 鼠标悬停时，字体变为金色，不出现下划线 */
.down-part1-box-link:hover {
    color:  #e0d209 !important; /* 金色 */
    text-decoration: none; /* 保持无下划线 */
}

/* 点击后，保持颜色不变 */
.down-part1-box-link:active,
.down-part1-box-link:visited {
    color: #d8d4d4; /* 仍然是白色 */
    text-decoration: none; /* 无下划线 */
}

/* 通用可调容器 */
.down-part1-config {
    width: 100%; /* 默认全宽，可调整 */
    max-width: 1000px; /* 限制最大宽度，防止内容过宽 */
    min-height: 800px; /* 最小高度，自适应内容 */
    position: absolute; /* 绝对定位，允许调整顶部距离 */
    left: 50%;
    transform: translateX(-50%); /* 水平居中 */
    top: 50px; /* 默认顶部距离，可在 HTML 里修改 */
    padding: 10px; /* 内边距，防止内容贴边 */
    box-sizing: border-box; /* 确保 padding 不撑大容器 */
    overflow: auto; /* 如果内容超出，添加滚动条 */
}

/* 容器内的第一个字体区域 */
.down-part1-config-text1 {
    font-size: 32px; /* 字体大小，可调整 */
    color: #ffffff; /* 文字颜色，可调整 */
    margin-top: 10px; /* 上边距，可调整 */
    margin-bottom: 10px; /* 下边距，可调整 */
    text-align: center; /* 文字居中对齐 */
    line-height: 1.5; /* 行距，可调整 */
    display: block; /* 强制块级显示，确保独占一行 */
    font-weight: bold; /* 文字加粗 */
}

/* 容器内的第二个字体区域 */
.down-part1-config-text2 {
    font-size: 18px; /* 字体大小，可调整 */
    color: #c0a050; /* 文字颜色（默认金色），可调整 */
    margin-top: 15px; /* 上边距，可调整 */
    margin-bottom: 15px; /* 下边距，可调整 */
    text-align: center; /* 文字居中对齐 */
    line-height: 1.6; /* 行距，可调整 */
    display: block; /* 强制块级显示，确保独占一行 */
}


/* 表格样式 */
.down-part1-config-table {
    width: 100%; /* 表格占满容器宽度 */
    border-collapse: collapse; /* 去除单元格间距 */
    margin-top: 50px; /* 与上方文字的间距，可调整 */
    border: 1px solid #978b63; /* 淡金色边框 */
}

/* 表头样式 */
.down-part1-config-th {
    font-size: 24px; /* 字体大小，可调整 */
    color: #ffffff; /* 文字颜色，可调整 */
    padding: 10px; /* 内边距，可调整 */
    text-align: center; /* 居中对齐 */
    border: 1px solid #978b63; /* 淡金色边框 */
}

/* 标签列样式 */
.down-part1-config-label {
    font-size: 20px; /* 字体大小，可调整 */
    color: #ffffff; /* 白色，可调整 */
    padding: 10px; /* 基础内边距，可调整 */
    padding-left: 20px; /* 左侧缩进，可调整 */
    text-align: left; /* 左对齐 */
    border: 1px solid #978b63; /* 淡金色边框 */
    width: 15%; /* 设置固定宽度，防止过窄 */
    white-space: nowrap; /* 禁止文字自动换行 */
}

/* 最低配置列样式 */
.down-part1-config-min {
    font-size: 18px; /* 字体大小，可调整 */
    color: #ffffff; /* 白色，可调整 */
    padding: 10px; /* 内边距，可调整 */
    text-align: center; /* 居中对齐 */
    border: 1px solid #978b63; /* 淡金色边框 */
    width: 40%; /* 分配宽度 */
}

/* 推荐配置列样式 */
.down-part1-config-recommended {
    font-size: 18px; /* 字体大小，可调整 */
    color: #c0a050; /* 金色，可调整 */
    padding: 10px; /* 内边距，可调整 */
    text-align: center; /* 居中对齐 */
    border: 1px solid #978b63; /* 淡金色边框 */
    width: 45%; /* 分配宽度 */
}