/*
 * Theme Style A - 专业版起名网站样式
 * 设计目标：建立信任、提升转化率、展现专业性
 * 配色方案：中国传统红色系 + 金色 营造温暖、专业、可信赖的氛围
 */

/* ==========================================
   全局变量定义
   ========================================== */
:root {
    --primary-red: #B41420;
    --secondary-red: #A02224;
    --accent-red: #cd0000;
    --light-red: #e74c3c;
    --gold: #CCA177;
    --gold-dark: #e78c2f;
    --text-dark: #333;
    --text-light: #666;
    --text-gray: #999;
    --bg-light: #f9f9f9;
    --bg-white: #fff;
    --border-color: #e0e0e0;
    --success-green: #27ae60;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.15);
}

/* ==========================================
   Banner区域样式
   ========================================== */
.banner-style-a {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.banner-style-a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/banner_fish.gif') center center no-repeat;
    background-size: auto;
    opacity: 0.2;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.banner-content {
    text-align: center;
    color: var(--bg-white);
    position: relative;
    z-index: 3;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 0.8s ease-out;
}

.banner-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.banner-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.banner-features span {
    font-size: 18px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.banner-features span:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.banner-features i {
    color: var(--gold);
    margin-right: 8px;
    font-style: normal;
}

/* ==========================================
   核心起名区域样式
   ========================================== */
.style-a-container {
    background: var(--bg-light);
}

.main-naming-section {
    padding: 10px 0;
    background: var(--bg-white);
}

.naming-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;  /* 从60px减小到50px */
    align-items: flex-start;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);  /* 更精致的双层阴影 */
    border-radius: 16px;  /* 从20px减小到16px，更现代 */
    background: var(--bg-white) url('../picture/m1.png') center center no-repeat;  /* 更换为本地图片 */
    background-size: cover;
    position: relative;
    border: 1px solid rgba(204, 161, 119, 0.15);  /* 添加金色边框 */
}

.naming-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);  /* 半透明白色图层 */
    border-radius: 16px;
    z-index: 0;
}

.naming-container > * {
    position: relative;
    z-index: 1;
}

/* 左侧图片区域 */
.naming-left {
    flex: 0 0 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.naming-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.naming-image-wrapper img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    display: block;
}

.naming-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-white);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-medium);
    animation: pulse 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-size: 16px;
    font-weight: 600;
}

/* 右侧表单区域 */
.naming-right {
    flex: 1;
}

/* 居中展示的表单区域 - 优化后的样式 */
.naming-centered {
    max-width: 700px;  /* 设置最大宽度，使表单更聚焦 */
    margin: 0 auto;  /* 左右居中 */
    padding: 40px 50px;  /* 增加内边距，提升呼吸感 */
    background: none;  /* 去除背景 */
    border-radius: 0;  /* 去除圆角 */
    box-shadow: none;  /* 去除阴影 */
    border: none;  /* 去除边框 */
}

/* 参考 section-header 的样式优化 */
.naming-header {
    width: 100%;
    text-align: center;  /* 标题居中 */
    margin-bottom: 50px;  /* 参考 section-header，增加底部间距 */
}

.naming-title {
    font-size: 36px;  /* 参考 section-title，增大字体 */
    color: var(--text-dark);  /* 使用统一的颜色变量 */
    margin-bottom: 15px;  /* 参考 section-title */
    font-weight: 700;
    position: relative;
    display: inline-block;
    line-height: 1.3;
}

/* 添加装饰线 - 参考 section-title::after */
.naming-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 2px;
}

.naming-subtitle {
    font-size: 18px;  /* 参考 section-subtitle，增大字体 */
    color: var(--text-light);  /* 使用统一的颜色变量 */
    margin-top: 20px;  /* 参考 section-subtitle */
    line-height: 1.4;
    font-weight: 400;
}

/* 表单样式 */
.naming-form-style-a {
    /* 表单基础样式 */
}

.form-group {
    margin-bottom: 18px;  /* 增加行间距到18px，使每行更清晰 */
    display: flex;  /* 改为flex布局，实现左右排列 */
    align-items: center;  /* 垂直居中对齐 */
    gap: 15px;  /* 增加标题和输入框之间的间距到15px */
}

.form-label {
    flex-shrink: 0;  /* 标签不收缩 */
    width: 90px;  /* 固定标签宽度，保持对齐 */
    text-align: right;  /* 右对齐 */
    font-size: 15px;  /* 从14px增大到15px，更突出 */
    font-weight: 600;
    color: #2c3e50;  /* 更深的颜色，更醒目 */
    margin-bottom: 0;  /* 取消下边距，因为现在是左右布局 */
    padding-right: 8px;  /* 添加右边距 */
}

.form-label .required {
    color: var(--accent-red);
    margin-left: 4px;
}

.form-input-wrapper {
    position: relative;
    flex: 1;  /* 让输入框区域占据剩余空间 */
}

/* 姓氏输入框包装器 - 相对定位 */
.surname-input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;  /* 从90%改为100%，因为现在由flex: 1控制宽度 */
    padding: 12px 16px;  /* 增加内边距，更舒适 */
    font-size: 15px;  /* 从14px增大到15px */
    border: 2px solid #e0e0e0;  /* 更柔和的边框颜色 */
    border-radius: 10px;  /* 增大圆角，更现代 */
    transition: all 0.3s ease;
    background: var(--bg-white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.04);  /* 轻微阴影 */
}

.form-input:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 4px rgba(204, 161, 119, 0.15), 0 2px 8px rgba(0,0,0,0.1);  /* 更明显的焦点效果 */
    transform: translateY(-1px);  /* 轻微上浮效果 */
}

.form-input:hover {
    border-color: var(--gold-dark);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);  /* 悬停时的阴影效果 */
}

/* 单选按钮组 */
.form-radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex: 1;  /* 让单选按钮组占据剩余空间 */
}

.radio-button {
    flex: 0 0 auto;
    padding: 9px 20px;  /* 增大到9px 20px，更易点击 */
    border: 2px solid #dcdcdc;  /* 更柔和的边框颜色 */
    border-radius: 25px;  /* 从20px增大到25px，更圆润 */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;  /* 增大字体 */
    font-weight: 500;  /* 添加字重 */
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);  /* 添加轻微阴影 */
    background: linear-gradient(to bottom, #ffffff, #fafafa);  /* 添加渐变背景 */
    user-select: none;
}

.radio-button:hover {
    border-color: var(--gold);
    background: linear-gradient(to bottom, #fff9f0, #fff5e6);  /* 金色渐变悬停效果 */
    box-shadow: 0 2px 8px rgba(204, 161, 119, 0.2);  /* 增强悬停阴影 */
    transform: translateY(-1px);  /* 轻微上浮效果 */
}

.radio-button.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: var(--gold-dark);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(204, 161, 119, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    transform: scale(1.02);
    font-weight: 600;
}

.radio-icon {
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
}

.radio-button.active .radio-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--bg-white);
    border-radius: 50%;
}

/* 日期选择组 */
.form-date-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;  /* 让日期选择组占据剩余空间 */
}

.form-select {
    padding: 9px 14px;  /* 增大到9px 14px，与input保持一致 */
    font-size: 15px;  /* 从14px增大到15px */
    border: 2px solid #dcdcdc;  /* 更柔和的边框颜色 */
    border-radius: 8px;  /* 从6px增大到8px */
    background: var(--bg-white);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);  /* 添加轻微阴影 */
}

.form-select:hover {
    border-color: var(--gold);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);  /* 悬停时的阴影效果 */
}

.form-select:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 4px rgba(204, 161, 119, 0.15), 0 2px 8px rgba(0,0,0,0.1);  /* 更明显的焦点效果 */
    transform: translateY(-1px);  /* 轻微上浮效果 */
}

.date-type-select {
    min-width: 80px;
}

.date-unit {
    color: var(--text-light);
    font-size: 13px;
}

/* 固定字输入 */
.form-wordcount-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;  /* 让字数选择组占据剩余空间 */
}

.form-hint {
    font-size: 12px;
    color: var(--text-gray);
}

.fixed-word-input {
    width: 80px !important;
    display: inline-block;
}

/* 温馨提示 */
.form-tips {
    width: 100%;  /* 从90%改为100%，充分利用空间 */
    background: linear-gradient(135deg, #fff8f0 0%, #fff0e6 100%);  /* 更柔和的渐变 */
    border-left: 4px solid var(--gold-dark);  /* 加粗边框 */
    padding: 15px 18px;  /* 增加内边距 */
    border-radius: 10px;  /* 统一圆角 */
    margin-bottom: 20px;  /* 增加底部间距 */
    display: flex;
    gap: 12px;  /* 增加图标和文字间距 */
    box-shadow: 0 2px 8px rgba(204, 161, 119, 0.1);  /* 添加阴影 */
}

.tips-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.tips-content p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-dark);
}

.tips-content p:first-child {
    margin-bottom: 3px;
}

.tips-content strong {
    color: var(--accent-red);
}

/* 提交按钮 */
.form-submit-wrapper {
    margin: 25px 0 15px;  /* 增加上边距到25px，让提交按钮更醒目 */
    padding-top: 20px;  /* 添加顶部内边距 */
    border-top: 1px dashed #e0e0e0;  /* 添加分隔线 */
}

.submit-button {
    width: 100%;  /* 从92%改为100%，充分利用空间 */
    padding: 16px 32px;  /* 增大内边距，更突出 */
    font-size: 19px;  /* 增大字体 */
    font-weight: 700;
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);  /* 更鲜艳的红色渐变 */
    color: var(--bg-white);
    border: none;
    border-radius: 50px;  /* 保持圆润 */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.35), 0 3px 8px rgba(0,0,0,0.12);  /* 更强烈的阴影 */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.01);  /* 更明显的悬停效果 */
    box-shadow: 0 8px 25px rgba(180, 20, 32, 0.4), 0 4px 10px rgba(0,0,0,0.15);  /* 更强烈的阴影 */
    background: linear-gradient(135deg, #c41520 0%, #e74c3c 100%);  /* 悬停时稍微变亮 */
}

.submit-button:active {
    transform: translateY(-1px) scale(0.99);  /* 点击时轻微缩小 */
    box-shadow: 0 4px 15px rgba(180, 20, 32, 0.3);
}

.button-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-arrow {
    transform: translateX(5px);
}

/* 脉冲动画 */
.pulse-animation {
    animation: pulse-button 2s ease-in-out infinite;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(180, 20, 32, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(180, 20, 32, 0.5);
    }
}

/* 用户统计信息 */
.user-stats {
    width: 100%;  /* 从90%改为100%，充分利用空间 */
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);  /* 更柔和的蓝色渐变 */
    padding: 16px 20px;  /* 增加内边距 */
    border-radius: 12px;  /* 增大圆角 */
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #bbdefb;  /* 更柔和的边框颜色 */
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.1);  /* 添加阴影 */
}

.stats-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.stats-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-dark);
}

.stats-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-red);
    margin: 0 4px;
}

.stats-sub {
    font-size: 12px;
    color: var(--text-light);
}

/* ==========================================
   姓氏选择弹窗样式
   ========================================== */
.display_win {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 700px;
    max-width: 90vw;
    background: var(--bg-white);
    border: 2px solid var(--gold) !important;
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
    padding: 20px;
    z-index: 1000;
}

.display_win .closew {
    background: var(--bg-light);
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
    margin: -20px -20px 15px;
    font-size: 14px;
    line-height: 1.5;
}

.display_win .close,
.display_win .qk {
    background: var(--gold-dark);
    color: var(--bg-white);
    border: none !important;
    padding: 5px 15px !important;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    float: right;
    margin: 0 3px;
    font-size: 14px;
    line-height: 1.5;
}

.display_win .close:hover,
.display_win .qk:hover {
    background: var(--gold);
}

/* 拼音索引区域 */
#lj {
    line-height: 25px;
    padding: 5px 20px;
    margin-bottom: 10px;
}

#abc a {
    display: inline-block;
    padding: 5px 10px;
    margin: 3px;
    background: var(--primary-red);
    color: var(--bg-white);
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#abc a:hover {
    background: var(--accent-red);
}

/* 姓氏选择区域 */
.bjx {
    margin-top: -15px;
    padding: 20px;
    line-height: 25px;
}

.bjx a {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 15px;
}

.bjx a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* ==========================================
   优势对比区域样式
   ========================================== */
.advantage-comparison-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.container-1000 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 20px;
}

/* 对比表格样式 */
.comparison-wrapper {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--bg-white);
    padding: 20px;
    align-items: center;
    gap: 20px;
}

.header-left,
.header-right {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.header-center {
    padding: 10px;
    background: var(--bg-white);
    border-radius: 10px;
}

.header-center img {
    display: block;
    max-width: 150px;
    height: auto;
}

.comparison-items {
    padding: 20px;
}

.comparison-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    align-items: center;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.comparison-item:last-child {
    margin-bottom: 0;
}

.item-left,
.item-right {
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.advantage-side {
    color: var(--text-dark);
}

.disadvantage-side {
    color: var(--text-light);
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--success-green);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cross-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #999;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.item-center {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-red);
    text-align: center;
    padding: 8px 15px;
    background: rgba(180, 20, 32, 0.1);
    border-radius: 20px;
    white-space: nowrap;
}

/* ==========================================
   四大优势卡片样式
   ========================================== */
.four-advantages-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.advantage-card {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--gold);
}

.advantage-icon {
    margin-bottom: 20px;
}

.advantage-icon img {
    max-width: 80px;
    height: auto;
}

.advantage-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.advantage-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA按钮 */
.cta-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-white);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.cta-button-large .arrow {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.cta-button-large:hover .arrow {
    transform: translateX(5px);
}

/* ==========================================
   评论区域样式增强
   ========================================== */
.style-a-evaluate {
    background: var(--bg-light);
    padding: 60px 0 0 0;
}

.evaluate-container {
    /* 保持原有结构，只添加一些增强样式 */
}

/* hprc 区域的 section-header 适配 */
.hprc .section-header {
    margin-bottom: 40px;  /* 保持与原来 .title 一致的间距 */
}

/* 共同样式 - 参考 advantage-card */
.hprc .l,
.hprc .r {
    background: var(--bg-white);
    border-radius: 15px;  /* 参考 advantage-card */
    padding: 20px;
    box-shadow: var(--shadow-light);
    box-sizing: border-box;
    border: 2px solid transparent;  /* 参考 advantage-card */
    transition: all 0.3s ease;  /* 添加过渡效果 */
}

.hprc .l {
    float: left;
    width: calc(50% - 10px);
    margin-right: 20px;
    height: 770px;
}

.hprc .r {
    float: left;
    width: calc(50% - 10px);
    height: 770px;
}

/* 添加悬停效果 - 参考 advantage-card */
.hprc .l:hover,
.hprc .r:hover {
    box-shadow: var(--shadow-heavy);
    border-color: var(--gold);
}

.hprc::after {
    content: "";
    display: table;
    clear: both;
}

.hprc h1 {
    color: var(--primary-red);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 20px;
}

.pj_title span {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 20px;
    margin: 5px;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pj_title span:hover {
    background: var(--gold);
    color: var(--bg-white);
}

/* 确保内容不溢出 */
.hprc .hd,
.hprc #nxt {
    overflow: hidden;
    height: 500px;
}

.hprc .l .hd {
    height: 200px;
}

/* 表单输入框样式 */
.hprc .form div div input,
.hprc .form div div textarea {
    width: 440px;
}

/* 评论查询表单样式优化 */
.hprc .cx {
    margin-top: 20px;
}

.hprc .cx input {
    padding: 10px 12px;
    font-size: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    margin-right: 10px;
}

.hprc .cx button {
    padding: 10px 24px;
    font-size: 14px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hprc .cx button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* 右侧订单查询表单特定样式 */
.hprc .r .cx input {
    width: 260px;
}

.hprc .r .cx button {
    width: 110px;
    position: relative;
    top: 8px;
}

/* 响应式：小屏幕时上下排列 */
@media (max-width: 1024px) {
    .hprc .l,
    .hprc .r {
        float: none;
        width: 100%;
        height: auto;
    }
    
    .hprc .form div div input,
    .hprc .form div div textarea {
        width: 100%;
        max-width: 440px;
    }
}

/* ==========================================
   FAQ区域样式增强 - 参考专业设计
   ========================================== */
.index-section.jump-form {
    background: var(--bg-white);
    padding: 60px 0;
}

.index-section .min-width {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.index-section .top {
    text-align: center;
    margin-bottom: 40px;
}

.index-section .top-title {
    display: inline-block;
}

.index-section .top-title img {
    max-width: 100%;
    height: auto;
}

/* FAQ内容区域 - 参考 cjwt_content 样式 */
.section.problem {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.problem ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem ul > li {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
}

.problem ul > li:last-child {
    border-bottom: none;
}

.problem dl {
    background: transparent;
    padding: 25px 20px;
    margin-bottom: 0;
    border-radius: 0;
    border-left: none;
    transition: all 0.3s ease;
}

.problem dl:hover {
    background: rgba(204, 161, 119, 0.05);
    box-shadow: none;
}

.problem dt {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.problem dt::before {
    content: "Q:";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

.problem dd {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 20px;
    margin: 0;
}

.problem dd p {
    margin: 0 0 10px 0;
}

.problem dd p:last-child {
    margin-bottom: 0;
}

/* FAQ底部 */
.index-section .bottom {
    margin-top: 40px;
}

/* ==========================================
   常见问题区域 - 参考专业设计
   ========================================== */
.cjwn-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.cjwn-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: none !important;  /* 删除继承的背景图片 */
}

.cjwt_content {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    padding: 40px 30px;
}

.cjwt_content img {
    display: block;
    margin: 0 auto 40px;
    max-width: 100%;
    height: auto;
}

.cjwt_content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cjwt_content ul > li {
    width: 100%;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.cjwt_content ul > li:last-child {
    border-bottom: none;
}

.cjwt_content ul > li:hover {
    background: rgba(204, 161, 119, 0.03);
    padding-left: 10px;
    padding-right: 10px;
}

.cjwt_content dt {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 28px;
}

.cjwt_content dt::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.cjwt_content dd {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    padding-left: 28px;
    margin: 0;
}

.cjwt_content dd::before {
    content: "A: ";
    color: var(--gold-dark);
    font-weight: 600;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .cjwt_content {
        padding: 30px 20px;
    }
    
    .cjwt_content ul > li {
        padding: 20px 0;
    }
    
    .cjwt_content dt {
        font-size: 16px;
    }
    
    .cjwt_content dd {
        font-size: 14px;
    }
}

/* ==========================================
   动画定义
   ========================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

.shake {
    animation: shake 0.5s;
}

/* ==========================================
   响应式设计
   ========================================== */
@media (max-width: 1024px) {
    .naming-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .naming-left {
        flex: 1;
        max-width: 100%;
    }
    
    .comparison-header {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .header-center {
        order: -1;
    }
    
    .comparison-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .item-center {
        order: -1;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 32px;
    }
    
    .banner-subtitle {
        font-size: 18px;
    }
    
    .banner-features {
        gap: 15px;
    }
    
    .banner-features span {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    .naming-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .form-radio-group {
        flex-direction: column;
    }
    
    .radio-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 24px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    
    .naming-container {
        padding: 20px 15px;
    }
    
    .container-1000 {
        padding: 0 15px;
    }
    
    .submit-button {
        font-size: 18px;
        padding: 15px 25px;
    }
}

/* ==========================================
   打印样式
   ========================================== */
@media print {
    .banner-style-a,
    .submit-button,
    .cta-button-large {
        display: none;
    }
}
