/* 装备图标显示样式 */
.equipment-display {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    min-height: 200px;
}

.equipment-icon-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #f6f8fa, #e9ecef);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.equipment-icon {
    max-width: 100px;
    max-height: 100px;
    image-rendering: pixelated;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.equipment-id {
    margin-top: 15px;
    font-size: 14px;
    color: #6c757d;
    padding: 3px 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    font-family: monospace;
}

/* 全新游戏风格装备属性UI - 浅色主题 */
.equipment-attributes-section {
    margin-bottom: 20px;
}

.equipment-attributes-card {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border: 2px solid #dee2e6;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.equipment-attributes-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.attribute-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: rgba(248, 249, 250, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.attribute-row:hover {
    background: rgba(248, 249, 250, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.attribute-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.attribute-name .icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    color: white;
    font-size: 14px;
}

.attribute-name .name {
    font-weight: 600;
    color: #495057;
}

.attribute-values {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.attribute-total {
    font-weight: 700;
    font-size: 18px;
    color: #212529;
}

.attribute-details {
    display: flex;
    gap: 8px;
    margin-top: 3px;
    font-size: 12px;
}

.attr-white {
    color: #495057;
}

.attr-green {
    color: #38b2ac;
}

.attr-purple {
    color: #805ad5;
}

.attr-orange {
    color: #ed8936;
}

.attr-yellow {
    color: #ecc94b;
}

.basic-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.attribute-item {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.attribute-label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.attribute-value {
    color: #212529;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.main-attributes {
    margin-bottom: 25px;
}

.additional-attributes,
.hammer-section,
.potential-section,
.additional-potential-section {
    background: rgba(248, 249, 250, 0.7);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.additional-attributes h4,
.hammer-section h4,
.potential-section h4,
.additional-potential-section h4 {
    font-size: 16px;
    color: #495057;
    margin-top: 0;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.additional-attributes h4:before,
.hammer-section h4:before,
.potential-section h4:before,
.additional-potential-section h4:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 16px;
    border-radius: 3px;
}

.additional-attributes h4:before {
    background: linear-gradient(to bottom, #4299e1, #2b6cb0);
}

.hammer-section h4:before {
    background: linear-gradient(to bottom, #ffd700, #f6e05e);
}

.potential-section h4:before {
    background: linear-gradient(to bottom, #9f7aea, #667eea);
}

.additional-potential-section h4:before {
    background: linear-gradient(to bottom, #f6ad55, #ed64a6);
}

.attribute-list,
.hammer-details,
.potential-list,
.additional-potential-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.additional-attribute,
.hammer-item,
.potential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 14px;
}

.additional-attribute i,
.hammer-item i,
.potential-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: #495057;
}

.additional-attribute span,
.hammer-item span,
.potential-item span {
    font-weight: 500;
    color: #212529;
}

.additional-attribute small,
.potential-item small {
    margin-left: 5px;
    color: #6c757d;
    font-size: 12px;
}

/* 紧凑布局样式 - 新增 */
.compact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
    margin-bottom: 15px;
}

/* 全新属性组展示样式 - 浅色主题 */
.attribute-group {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.attribute-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.15);
}

.attribute-group-title {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.attribute-group-title i {
    margin-right: 8px;
    padding: 6px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 8px;
    font-size: 12px;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.attributes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.attribute-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 12px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.attribute-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.attribute-card:hover::before {
    transform: translateX(100%);
}

.attribute-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 123, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.attribute-name {
    font-size: 15px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.attribute-name i {
    margin-right: 0px;
    font-size: 20px;
    opacity: 0.8;
    color: #6c757d;
}

.attribute-value {
    font-size: 18px;
    font-weight: 700;
    color: #28a745;
    text-shadow: 0 1px 2px rgba(40, 167, 69, 0.2);
    margin-bottom: 6px;
}

.attribute-details {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 10px;
}

.attribute-details span {
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 更新属性颜色样式 - 游戏风格 */
.attr-white {
    background: rgba(255, 255, 255, 0.2);
    color: #6d6d6d;
    border: 1px solid rgb(0 0 0 / 50%);
}

.attr-green {
    background: rgba(40, 167, 69, 0.3);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.5);
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.2);
}

.attr-purple {
    background: rgba(111, 66, 193, 0.3);
    color: #6f42c1;
    border: 1px solid rgba(111, 66, 193, 0.5);
    box-shadow: 0 0 8px rgba(111, 66, 193, 0.2);
}

.attr-orange {
    background: rgba(253, 126, 20, 0.3);
    color: #fd7e14;
    border: 1px solid rgba(253, 126, 20, 0.5);
    box-shadow: 0 0 8px rgba(253, 126, 20, 0.2);
}

.attr-yellow {
    background: rgba(255, 193, 7, 0.3);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.5);
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.2);
}

/* 特殊属性组样式 - 浅色主题 */
.percentage-group .attribute-value {
    color: #dc3545;
    text-shadow: 0 1px 2px rgba(220, 53, 69, 0.2);
}

.potential-group .attribute-value {
    color: #6f42c1;
    text-shadow: 0 1px 2px rgba(111, 66, 193, 0.2);
}

.hammer-group .attribute-value {
    color: #fd7e14;
    text-shadow: 0 1px 2px rgba(253, 126, 20, 0.2);
}

.ultra-compact-layout .attribute-item:hover {
    background: rgba(248, 249, 250, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ultra-compact-layout .attribute-item i {
    font-size: 12px;
    color: #667eea;
    min-width: 14px;
    text-align: center;
}

.ultra-compact-layout .attribute-item .attr-name {
    font-weight: 600;
    color: #495057;
    font-size: 11px;
    flex: 1;
}

.ultra-compact-layout .attribute-item .attr-total {
    font-weight: 700;
    color: #28a745;
    font-size: 12px;
    margin-left: auto;
}

.ultra-compact-layout .attribute-item .attr-details {
    font-size: 9px;
    margin-left: 3px;
    opacity: 0.8;
}

.ultra-compact-layout .attribute-item.percentage .attr-total {
    color: #dc3545;
}

.ultra-compact-layout .attribute-item.hammer .attr-total {
    color: #ffc107;
}

.ultra-compact-layout .attribute-item.potential .attr-total {
    color: #6f42c1;
}

.ultra-compact-layout .attribute-item.soul .attr-total {
    color: #17a2b8;
}

.ultra-compact-layout .attribute-item.skill .attr-total {
    color: #fd7e14;
}

.compact-layout .attribute-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    gap: 10px;
    min-height: 40px;
}

.compact-layout .attribute-item:hover {
    background: rgba(248, 249, 250, 1);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.compact-layout .attribute-item i {
    font-size: 16px;
    color: #667eea;
    min-width: 18px;
    text-align: center;
}

.compact-layout .attribute-item .attr-name {
    font-weight: 600;
    color: #495057;
    font-size: 13px;
    flex: 1;
}

.compact-layout .attribute-item .attr-total {
    font-weight: 700;
    color: #28a745;
    font-size: 14px;
    margin-left: auto;
}

.compact-layout .attribute-item .attr-details {
    font-size: 11px;
    margin-left: 5px;
    opacity: 0.8;
}

.compact-layout .attribute-item.percentage .attr-total {
    color: #dc3545;
}

.compact-layout .attribute-item.hammer .attr-total {
    color: #ffc107;
}

.compact-layout .attribute-item.potential .attr-total {
    color: #6f42c1;
}

.compact-layout .attribute-item.soul .attr-total {
    color: #17a2b8;
}

.compact-layout .attribute-item.skill .attr-total {
    color: #fd7e14;
}

/* 版块标题样式 */
.section-title {
    font-size: 14px;
    font-weight: 700;
    color: #495057;
    margin: 0 0 10px 0;
    padding: 5px 10px;
    background: rgba(103, 126, 234, 0.1);
    border-radius: 6px;
    border-left: 3px solid #667eea;
    grid-column: 1 / -1;
}

/* 潜在属性网格 */
.potential-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
}

/* 属性颜色样式 - 更新为简洁版本 */
.compact-layout .attr-white,
.ultra-compact-layout .attr-white {
    color: #6c757d;
    font-weight: 500;
    margin: 0 2px;
}

.compact-layout .attr-green,
.ultra-compact-layout .attr-green {
    color: #28a745;
    font-weight: 500;
    margin: 0 2px;
}

.compact-layout .attr-purple,
.ultra-compact-layout .attr-purple {
    color: #6f42c1;
    font-weight: 500;
    margin: 0 2px;
}

.compact-layout .attr-orange,
.ultra-compact-layout .attr-orange {
    color: #fd7e14;
    font-weight: 500;
    margin: 0 2px;
}

.compact-layout .attr-yellow,
.ultra-compact-layout .attr-yellow {
    color: #ffc107;
    font-weight: 500;
    margin: 0 2px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .equipment-attributes-card {
        padding: 15px;
    }
    
    .attribute-row {
        padding: 10px;
    }
    
    .attribute-name .icon {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .attribute-total {
        font-size: 16px;
    }
    
    .additional-attribute,
    .hammer-item,
    .potential-item {
        padding: 8px 12px;
        font-size: 13px;
    }

    /* 紧凑布局响应式 */
    .compact-layout,
    .ultra-compact-layout {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .compact-layout .attribute-item {
        padding: 6px 10px;
        min-height: 35px;
    }
    
    .ultra-compact-layout .attribute-item {
        padding: 3px 6px;
        min-height: 24px;
    }
    
    .potential-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-attributes-card {
        padding: 8px;
    }
    
    /* 新属性组响应式 */
    .attribute-group {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .attribute-group-title {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .attributes-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .attribute-card {
        padding: 10px;
    }
    
    .attribute-name {
        font-size: 11px;
    }
    
    .attribute-value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .compact-layout .attribute-item .attr-name,
    .ultra-compact-layout .attribute-item .attr-name {
        font-size: 10px;
    }
    
    .compact-layout .attribute-item .attr-total {
        font-size: 13px;
    }
    
    .ultra-compact-layout .attribute-item .attr-total {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 12px;
        padding: 3px 6px;
    }
    
    /* 新属性组小屏幕优化 */
    .attribute-group {
        padding: 8px;
        margin-bottom: 8px;
    }
    
    .attribute-group-title {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .attribute-card {
        padding: 8px;
    }
    
    .attribute-name {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .attribute-value {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .attribute-details {
        font-size: 9px;
    }
}

/* 星星显示样式 */
.star-value {
    display: flex;
    align-items: center;
    gap: 5px;
}

.star-value .star {
    color: #ffd700;
    font-size: 16px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: starGlow 2s ease-in-out infinite alternate;
}

.star-count {
    font-size: 12px;
    color: #666;
    margin-left: 5px;
}

@keyframes starGlow {
    from { 
        filter: drop-shadow(0 0 2px #ffd700); 
    }
    to { 
        filter: drop-shadow(0 0 6px #ffd700); 
    }
}

/* 新的属性显示样式 - 现代简洁风格 */

/* 重新定义主卡片样式 */
.equipment-attributes-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e3e6ea;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.equipment-attributes-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00bcd4, #27ae60, #f39c12);
    border-radius: 12px 12px 0 0;
}

/* 重新定义属性行布局 */
.equipment-attributes-card .attribute-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 16px;
    margin: 4px -16px;
    border-radius: 8px;
    gap: 20px;
    background: transparent;
    border: none;
    transition: all 0.2s ease;
}

.equipment-attributes-card .attribute-row:hover {
    background: rgba(0, 188, 212, 0.05);
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.1);
}

/* 属性名称样式 */
.equipment-attributes-card .attribute-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    min-width: 150px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    position: relative;
}

.equipment-attributes-card .attribute-name::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: linear-gradient(180deg, rgba(0, 188, 212, 0.3), rgba(0, 188, 212, 0.1));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.equipment-attributes-card .attribute-row:hover .attribute-name::before {
    opacity: 1;
}

/* 属性值样式 */
.equipment-attributes-card .attribute-value {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    text-align: right;
    flex: 1;
    word-break: break-word;
    line-height: 1.5;
    position: relative;
}

/* 颜色方案 - 与悬浮视窗一致 */
.equipment-attributes-card .cyan {
    color: #00bcd4 !important; /* 水蓝色 */
}

.equipment-attributes-card .white {
    color: #2c3e50 !important; /* 深色文本 */
}

.equipment-attributes-card .green {
    color: #27ae60 !important; /* 绿色标题 */
    font-weight: 700;
}

/* 总值突出显示 */
.equipment-attributes-card .total-value {
    font-weight: 700;
    font-size: 15px;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(0, 188, 212, 0.1);
    display: inline-block;
}

/* 详细数值部分 */
.equipment-attributes-card .detail-values {
    margin-left: 8px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

/* 属性颜色编码 */
.equipment-attributes-card .attr-white {
    color: #2c3e50 !important;
    background: rgba(44, 62, 80, 0.1);
    padding: 1px 4px;
    border-radius: 3px;
    margin: 0 1px;
}

.equipment-attributes-card .attr-green {
    color: #27ae60 !important;
    background: rgba(39, 174, 96, 0.1);
    padding: 1px 4px;
    border-radius: 3px;
    margin: 0 1px;
}

.equipment-attributes-card .attr-yellow {
    color: #f39c12 !important;
    background: rgba(243, 156, 18, 0.1);
    padding: 1px 4px;
    border-radius: 3px;
    margin: 0 1px;
}

.equipment-attributes-card .attr-purple {
    color: #8e44ad !important;
    background: rgba(142, 68, 173, 0.1);
    padding: 1px 4px;
    border-radius: 3px;
    margin: 0 1px;
}

.equipment-attributes-card .attr-orange {
    color: #e67e22 !important;
    background: rgba(230, 126, 34, 0.1);
    padding: 1px 4px;
    border-radius: 3px;
    margin: 0 1px;
}

/* 星星显示美化 */
.equipment-attributes-card .star-display {
    display: inline-block;
    line-height: 1.8;
    text-align: left;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.equipment-attributes-card .star-display .star {
    color: #ffd700;
    font-size: 16px;
    text-shadow: 0 0 4px rgba(255, 215, 0, 0.6);
    letter-spacing: 1px;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));
}

.equipment-attributes-card .star-display .star-count {
    color: #7f8c8d;
    font-size: 13px;
    font-weight: 600;
    margin-left: 8px;
    background: rgba(127, 140, 141, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* 分隔线美化 */
.equipment-attributes-card .attribute-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.3), transparent);
    margin: 20px 0;
    border: none;
    position: relative;
}

.equipment-attributes-card .attribute-separator::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #00bcd4;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 188, 212, 0.5);
}

/* 分区标题美化 */
.equipment-attributes-card .attribute-section-title {
    font-size: 16px;
    font-weight: 700;
    padding: 16px 20px 12px 20px;
    margin: 16px -24px 16px -24px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.05));
    border-left: 4px solid #27ae60;
    border-radius: 0 8px 8px 0;
    position: relative;
    overflow: hidden;
}

.equipment-attributes-card .attribute-section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.1) 50%, transparent 51%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 确保水蓝色属性值的颜色编码正确显示 */
.equipment-attributes-card .attribute-value.cyan .total-value {
    color: #00bcd4 !important;
    background: rgba(0, 188, 212, 0.15);
}

.equipment-attributes-card .attribute-value.cyan .attr-white {
    color: #2c3e50 !important;
    background: rgba(44, 62, 80, 0.1);
}

.equipment-attributes-card .attribute-value.cyan .attr-green {
    color: #27ae60 !important;
    background: rgba(39, 174, 96, 0.1);
}

.equipment-attributes-card .attribute-value.cyan .attr-yellow {
    color: #f39c12 !important;
    background: rgba(243, 156, 18, 0.1);
}

.equipment-attributes-card .attribute-value.cyan .attr-purple {
    color: #8e44ad !important;
    background: rgba(142, 68, 173, 0.1);
}

.equipment-attributes-card .attribute-value.cyan .attr-orange {
    color: #e67e22 !important;
    background: rgba(230, 126, 34, 0.1);
}

/* 白色属性值 */
.equipment-attributes-card .attribute-value.white {
    color: #2c3e50 !important;
}

/* 移除之前样式的影响 */
.equipment-attributes-card .attribute-name .icon {
    display: none;
}

.equipment-attributes-card .attribute-name .name {
    color: inherit;
}