/**
 * 装备详情页样式
 * 文件: assets/css/equipment-single.css
 */

/* ===== 装备详情页头部 ===== */
.equip-detail-header {
    background: #faf5e8;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.equip-detail-icon {
    width: 120px;
    height: 120px;
    background: #fff8e8;
    border: 3px solid #cc6600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border-radius: 8px;
}
.quality-badge {
    display: inline-block;
    padding: 2px 12px;
    background: linear-gradient(90deg, #cc6600, #e68a00);
    color: #fff;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
    border-radius: 3px;
}
.equip-detail-info h1 {
    font-size: 1.8rem;
    color: #000080;
    font-family: '宋体', 'SimSun', serif;
    margin: 0.2rem 0;
}
.equip-subtitle {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dotted #c8b898;
}

/* ===== 属性表格（网格布局）===== */
.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}
.stat-grid .stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px dotted #d0c8b0;
    font-size: 0.9rem;
}
.stat-grid .stat-item .stat-label {
    color: #5a4a32;
    font-weight: normal;
}
.stat-grid .stat-item .stat-val {
    color: #cc0000;
    font-weight: bold;
}

/* ===== 装备页右侧边栏 ===== */
.side-box {
    background: #faf5e8;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    margin-bottom: 1rem;
}
.side-box-title {
    background: linear-gradient(90deg, #4a3810, #8b6914);
    color: #fffde0;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 2px;
}
.side-box-body {
    padding: 0.8rem;
}
.side-box-body ul {
    list-style: none;
}
.side-box-body li {
    padding: 0.4rem 0;
    border-bottom: 1px dotted #c8b898;
    font-size: 0.82rem;
}
.side-box-body li:last-child {
    border-bottom: none;
}
.side-box-body a {
    color: #000080;
    text-decoration: none;
}
.side-box-body a:hover {
    color: #cc0000;
    text-decoration: underline;
}

/* 开服信息卡片 */
.server-mini-item {
    padding: 0.5rem 0;
    border-bottom: 1px dotted #c8b898;
    font-size: 0.78rem;
}
.server-mini-item:last-child {
    border-bottom: none;
}
.server-mini-tag {
    display: inline-block;
    padding: 1px 6px;
    font-size: 0.65rem;
    font-weight: bold;
    margin-right: 4px;
}
.server-mini-tag.new {
    background: #ffe0e0;
    color: #cc0000;
    border: 1px solid #cc0000;
}
.server-mini-tag.rec {
    background: #e0f0ff;
    color: #0066cc;
    border: 1px solid #0066cc;
}
.server-mini-name {
    font-weight: bold;
    color: #000080;
}
.server-mini-info {
    color: #888;
    font-size: 0.7rem;
    margin-top: 0.15rem;
}

.back-to-top {
    text-align: center;
    margin-top: 0.5rem;
}
.back-to-top a {
    color: #000080;
    font-size: 0.8rem;
    text-decoration: none;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
    .equip-detail-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .stat-grid {
        grid-template-columns: 1fr;
    }
    .stat-grid .stat-item {
        justify-content: center;
        gap: 1rem;
    }
}