/* 攻略页面专用样式 */

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

.guide-header {
    text-align: center;
    margin-bottom: 30px;
    color: #c80000;
}

.guide-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(200, 0, 0, 0.2);
}

.guide-section h3 {
    color: #c80000;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c80000;
}

.guide-section p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
    text-indent: 24px;
}

/* 装备展示样式 */
.equipment-list {
    list-style-type: none;
    padding: 0;
}

.equipment-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #c80000;
}

.equipment-list li:last-child {
    border-bottom: none;
}

/* 地图走法样式 */
.map-directions {
    background-color: rgba(200, 0, 0, 0.05);
    padding: 15px;
    border-left: 4px solid #c80000;
    margin: 15px 0;
}

.map-directions p {
    margin: 5px 0;
}

/* 怪物掉落表格 */
.monster-drop-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.monster-drop-table th,
.monster-drop-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.monster-drop-table th {
    background-color: #c80000;
    color: white;
}

.monster-drop-table tr:hover {
    background-color: rgba(200, 0, 0, 0.05);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .guide-container {
        padding: 10px;
    }
    
    .guide-section {
        padding: 15px;
    }
    
    .monster-drop-table {
        font-size: 14px;
    }
    
    .monster-drop-table th,
    .monster-drop-table td {
        padding: 8px;
    }
}