
{

margin: 0;

padding: 0;

box-sizing: border-box;

font-family: 'Segoe UI', 'Microsoft YaHei', Arial, sans-serif;

}

:root {

--primary-color: #667eea;

--secondary-color: #764ba2;

--accent-color: #ffd54f;

--success-color: #4caf50;

--light-bg: #f5f7fa;

--card-bg: #ffffff;

--text-dark: #333333;

--text-light: #ffffff;

--border-color: #e0e0e0;

--shadow-color: rgba(0, 0, 0, 0.08);

}
body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* 导航栏样式 */
.mu-navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 0 20px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mu-navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.mu-navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    text-decoration: none;
    color: var(--text-light);
    margin-right: 40px;
}

.mu-navbar-brand i {
    font-size: 1.8rem;
}

.mu-navbar-brand span {
    font-size: 1.5rem;
    font-weight: 700;
}

.mu-navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.mu-navbar-item {
    position: relative;
}

.mu-navbar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 18px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
}

.mu-navbar-link i {
    font-size: 1rem;
}

.mu-navbar-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: var(--accent-color);
}

.mu-navbar-link.active {
    border-bottom-color: var(--accent-color);
}

/* 游戏赞助链接 */
.sponsor-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff3800, #ff5722);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 20px;
    transition: all 0.2s ease;
    margin-left: auto;
}

.sponsor-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}

/* 下拉菜单 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.mu-navbar-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: white;
}

.dropdown-title {
    display: block;
    padding: 12px 20px;
    font-weight: 700;
    color: var(--primary-color);
    background: #f8f9fa;
    border-bottom: 2px solid #eee;
}

/* 二维码容器 */
.qr-code-container {
    position: relative;
}

.qr-code {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    width: 150px;
}

.qr-code-container:hover .qr-code {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.qr-image {
    width: 150px;
    height: 150px;
    background: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.qr-code p {
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
    text-align: center;
}

.mu-navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* 主容器 */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 海报区域 */
.poster-section {
    width: 100%;
    height: 360px;
    margin: 20px 0 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.poster-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
}

.poster-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}

.poster-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.poster-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.poster-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #ff9800);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.poster-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 183, 77, 0.4);
}

/* 横向公告栏 */
.horizontal-announcements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.announcement-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px var(--shadow-color);
    border-left: 4px solid var(--accent-color);
}

.announcement-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.announcement-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

/* 内容布局 */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-bottom: 40px;
}

/* 主内容区域 */
.main-content {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px var(--shadow-color);
}

/* 侧边栏 */
.sidebar {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px var(--shadow-color);
    overflow: hidden;
}

.sidebar-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.sidebar-content {
    padding: 20px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 侧边栏下载链接 - 突出显示 */
.download-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.download-main {
    display: block;
    background: linear-gradient(135deg, var(--success-color), #2e7d32);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.download-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
}

.download-secondary {
    display: block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
}

.download-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* 职业介绍和游戏系统链接 - 每行两个 */
.grid-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 15px;
}

.grid-link {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 8px 5px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    text-align: center;
}

.grid-link:hover {
    background: var(--primary-color);
    color: white;
}

/* 游戏设置内容 - 调整大小 */
.settings-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent-color);
}

.settings-list {
    list-style: none;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.setting-item {
    padding: 8px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-number {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.setting-content {
    flex: 1;
}

.setting-title {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary-color);
    font-size: 1rem;
}

.setting-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

/* 结晶掉落表格 */
.crystal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.crystal-table th, .crystal-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.crystal-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.crystal-table tr:nth-child(even) {
    background: #f9f9f9;
}

/* 快速链接 */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.quick-link {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.quick-link:hover {
    background: var(--primary-color);
    color: white;
}

/* 页脚 */
.page-footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 40px 20px;
    margin-top: 50px;
    border-radius: 12px 12px 0 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.9;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr 300px;
    }
    
    .horizontal-announcements {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .poster-title {
        font-size: 2.8rem;
    }
    
    .grid-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mu-navbar-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .mu-navbar-brand {
        padding: 15px 0;
        justify-content: space-between;
        margin-right: 0;
    }
    
    .mu-navbar-toggle {
        display: block;
    }
    
    .mu-navbar-menu {
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .mu-navbar-menu.active {
        max-height: 500px;
    }
    
    .mu-navbar-item {
        width: 100%;
    }
    
    .mu-navbar-link {
        padding: 15px 0;
        justify-content: center;
    }
    
    .sponsor-link {
        margin: 15px 0;
        width: 100%;
        justify-content: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin-left: 20px;
    }
    
    .dropdown-item {
        color: white;
    }
    
    .dropdown-title {
        color: white;
        background: transparent;
    }
    
    .qr-code {
        right: 50%;
        transform: translateX(50%) translateY(10px);
    }
    
    .qr-code-container:hover .qr-code {
        transform: translateX(50%) translateY(0);
    }
    
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .horizontal-announcements {
        grid-template-columns: 1fr;
    }
    
    .poster-section {
        height: 280px;
    }
    
    .poster-content {
        padding-left: 30px;
    }
    
    .poster-title {
        font-size: 2.2rem;
    }
    
    .poster-subtitle {
        font-size: 1.2rem;
    }
    
    .grid-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 0 10px;
    }
    
    .main-content, .sidebar-content {
        padding: 20px;
    }
    
    .poster-section {
        height: 200px;
    }
    
    .poster-content {
        padding-left: 20px;
    }
    
    .poster-title {
        font-size: 1.8rem;
    }
    
    .poster-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .grid-links {
        grid-template-columns: 1fr;
    }
}

/* 返回顶部按钮 */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    border: none;
    font-size: 1.5rem;
}

.scroll-top-btn.visible {
    opacity: 0.9;
}

.scroll-top-btn:hover {
    opacity: 1;
    transform: translateY(-3px);
}
/* ====== 新增：优化后的装备升级指南样式 ====== */

/* 布局优化 - 单列布局 */
.content-layout {
    display: block;
    margin-bottom: 40px;
}

.main-content {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 35px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.upgrade-guide {
    padding: 0;
}

/* 标题优化 */
.section-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* 内容区块优化 */
.guide-block {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 35px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(224, 224, 224, 0.5);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    opacity: 0.1;
}

.guide-block:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.guide-subtitle {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.guide-subtitle i {
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* 段落优化 */
.guide-block p {
    line-height: 1.7;
    margin-bottom: 16px;
    color: #444;
    font-size: 1.05rem;
}

.guide-block strong {
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(102, 126, 234, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
}

/* 图片容器优化 */
.guide-image-container {
    text-align: center;
    margin: 25px auto;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 10px;
    max-width: 700px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.guide-image:hover {
    transform: scale(1.01);
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 12px;
    font-style: italic;
    padding: 8px 0;
    border-top: 1px dashed #ddd;
}

/* 方法对比优化 */
.method-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.method-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: rgba(102, 126, 234, 0.2);
}

.method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.method-card.highlight {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.05), rgba(255, 213, 79, 0.02));
    position: relative;
    border-width: 2px;
}

.method-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), #ff9800);
}

.method-card.highlight::after {
    content: '推荐';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-color), #ff9800);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(255, 183, 77, 0.3);
}

.method-card h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-card h4 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* 步骤列表优化 - 更加丝滑 */
.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
    margin: 20px 0;
}

.steps-list > li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding: 20px 20px 20px 65px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8), rgba(255, 255, 255, 0.9));
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    line-height: 1.7;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.steps-list > li:hover {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95), rgba(255, 255, 255, 0.95));
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.steps-list > li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(102, 126, 234, 0.3);
}

.steps-list > li::after {
    content: '';
    position: absolute;
    left: 38px;
    top: 50px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.2), transparent);
    z-index: 1;
}

.steps-list > li:last-child::after {
    display: none;
}

.sublist {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
    margin-bottom: 0;
}

.sublist li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.sublist li:last-child {
    border-bottom: none;
}

.sublist li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.success-rate {
    color: #2e7d32;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.95em;
    border: 1px solid rgba(76, 175, 80, 0.2);
    display: inline-block;
    margin: 0 2px;
}

/* 注意/提示框优化 */
.note-box {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05), rgba(33, 150, 243, 0.02));
    border-left: 4px solid #2196f3;
    padding: 22px;
    border-radius: 0 10px 10px 0;
    margin: 25px 0;
    border: 1px solid rgba(33, 150, 243, 0.1);
    position: relative;
    overflow: hidden;
}

.note-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.note-box:hover::before {
    transform: translateX(100%);
}

.note-box h4 {
    color: #1565c0;
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.note-box h4 i {
    color: #2196f3;
    font-size: 1.3rem;
}

/* 合成路径优化 */
.path-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 25px 0;
}

.path-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.5;
}

.path-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.path-card h4 {
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    font-size: 1.3rem;
    position: relative;
}

.path-card h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.path-prerequisite {
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.08), rgba(255, 179, 0, 0.04));
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ffb300;
    font-size: 1rem;
    margin: 18px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #5d4037;
    font-weight: 500;
}

.path-prerequisite i {
    color: #ff8f00;
    font-size: 1.2rem;
}

.guide-conclusion {
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.08), rgba(124, 179, 66, 0.04));
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #7cb342;
    margin-top: 30px;
    font-size: 1rem;
    color: #33691e;
    font-weight: 500;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guide-conclusion::before {
    content: '💡';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.2;
}

/* 响应式调整优化 */
@media (max-width: 768px) {
    .main-content {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .method-comparison,
    .path-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guide-block {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .guide-subtitle {
        font-size: 1.3rem;
    }
    
    .steps-list > li {
        padding: 18px 18px 18px 60px;
    }
    
    .steps-list > li::before {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 0.9rem;
        left: 15px;
    }
    
    .steps-list > li::after {
        left: 31px;
    }
    
    .guide-image-container {
        padding: 15px;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .guide-subtitle {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .guide-subtitle i {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .guide-block p {
        font-size: 1rem;
    }
    
    .method-card,
    .path-card {
        padding: 20px;
    }
}
/* 通用页面英雄区域样式 */
.page-hero {
    padding: 0;
    background: none;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* 保持与网站一致的阴影 */
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    /* 如果希望所有横幅高度一致，可使用以下属性 */
    /* height: 400px; 设定一个统一高度 */
    /* object-fit: cover; 确保图片填充整个区域 */
}

/* 图片加载失败的降级样式 */
.page-hero img[src=""],
.page-hero img:not([src]) {
    min-height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}
