/* 装备页面核心容器 */
.equip-wrapper {
    width: 1200px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

/* 装备页面主卡片 */
.equip-main-card {
    /* 替换：奶油木色渐变背景 */
    background: linear-gradient(135deg, #f0e8d8, #e8e0c8);
    /* 替换：浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.35);
    border-radius: 8px;
    padding: 30px;
    /* 替换：暖调阴影 */
    box-shadow: 0 4px 15px rgba(168, 136, 96, 0.15);
}

.equip-main-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    /* 替换：暖调渐变装饰线 */
    background: linear-gradient(90deg, #e69a88, #f0d99c, #e87a6f);
    border-radius: 8px 8px 0 0;
}

/* 装备分类导航表格 - 仿示例样式+美化 */
.equip-cate-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 30px;
}

.equip-cate-table th {
    /* 替换：浅杏色半透背景 */
    background: rgba(230, 154, 136, 0.1);
    /* 替换：浅杏色表头文字 */
    color: #e69a88;
    font-weight: 600;
    padding: 12px 15px;
    /* 替换：浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.25);
    text-align: left;
    width: 100px;
    font-size: 16px;
}

.equip-cate-table td {
    /* 替换：深木纹文字 */
    color: #584830;
    font-size: 16px;
    padding: 12px 15px;
    /* 替换：浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.25);
}

.equip-cate-table td span {
    margin-right: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.equip-cate-table td span:hover {
    /* 替换：珊瑚红hover高亮 */
    color: #e87a6f;
    /* 替换：奶油黄文字阴影 */
    text-shadow: 0 0 5px rgba(240, 217, 156, 0.4);
}

/* 装备列表网格布局 */
.equip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* 单个装备卡片 */
.equip-item-card {
    /* 替换：奶油木色渐变背景 */
    background: linear-gradient(135deg, rgba(230, 154, 136, 0.08), rgba(240, 217, 156, 0.08));
    border-radius: 8px;
    /* 替换：浅杏色左侧装饰线 */
    border-left: 4px solid #e69a88;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    /* gap: 15px; */
}

.equip-item-card:hover {
    /* 替换：浅杏色hover背景 */
    background: rgba(230, 154, 136, 0.15);
    /* 替换：暖调hover阴影 */
    box-shadow: 0 0 15px rgba(230, 154, 136, 0.4);
    transform: translateY(-2px);
}
.equip-item-card a{
    display: flex;
    width:100%;
    height:100%;
    align-items: center;
    gap: 15px;
    padding: 18px;
    /* 新增：链接文字色继承，保证统一 */
    color: inherit;
    text-decoration: none;
}

/* 装备图标 */
.equip-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

/* 装备信息 */
.equip-info {
    flex: 1;
}

.equip-name {
    /* 替换：浅杏色装备名称 */
    color: #e69a88;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.equip-meta {
    /* 替换：中木纹辅助文字 */
    color: #786040;
    font-size: 14px;
    line-height: 1.5;
}

.equip-meta span {
    display: inline-block;
    margin-right: 12px;
}

/* 分页样式（复用并适配装备页） */
.equip-pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.equip-pagination-btn {
    /* 替换：浅杏色半透背景 */
    background: rgba(230, 154, 136, 0.2);
    /* 替换：浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.4);
    /* 替换：深木纹文字 */
    color: #584830;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.equip-pagination-btn:hover {
    /* 替换：浅杏色hover背景 */
    background: rgba(230, 154, 136, 0.3);
    /* 替换：珊瑚红hover文字 */
    color: #e87a6f;
    /* 替换：浅杏色hover边框 */
    border-color: #e69a88;
}

.equip-pagination-btn.active {
    /* 替换：暖调渐变背景 */
    background: linear-gradient(135deg, #e69a88, #f0d99c);
    color: #fff;
    /* 替换：浅杏色激活边框 */
    border-color: #e69a88;
    /* 替换：暖调激活阴影 */
    box-shadow: 0 0 10px rgba(230, 154, 136, 0.4);
}