:root {
    --gold-primary: #e6c347;
    --gold-secondary: #d4af37;
    --gold-dark: #b8860b;
    --accent: #27ae60;
    --dark-bg: #2c3e50;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --badge-blue: #3498db;
    --badge-green: #2ecc71;
    --badge-orange: #e67e22;

    
    --primary-dark: #0c1a28;
    --accent-primary: #2ec4b6;
    --accent-secondary: #1a8c7f;
    --card-bg: rgba(18, 30, 52, 0.8);
    --text-light: #e0f0ff;
    --success: #27ae60;
    --highlight: #ff9f1c;
    --gradient-start: #0c1a28;
    --gradient-end: #081320;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    background: linear-gradient(135deg, #f8f5e4, #fffaf0);
    color: #333;
    line-height: 1.7;
}

/* 浮动导航栏 */
.rGtFyHzK {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--nav-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s;
    padding: 15px 0;
}

.rGtFyHzK.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.uIjKpVcX {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.fGbVcRtY {
    display: flex;
    align-items: center;
}

.fGbVcRtY h1 {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 15px;
}

.fGbVcRtY h1 img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.lOpKjHyU {
    display: flex;
    padding: 5px 10px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: white;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    align-items: center;
}

.mNbVcRfT {
    display: flex;
    gap: 35px;
}

.hTgFdSwQ {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-bg);
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.hTgFdSwQ::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.hTgFdSwQ:hover::after {
    width: 100%;
}

.bGhJkLmN {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s;
}

.bGhJkLmN:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* 顶部横幅区域 */
.tBsVgHyU {
    /* background: linear-gradient(115deg, var(--gold-secondary), var(--gold-primary), #f1c40f); */
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80);
    background-size: cover;
    min-height: 100vh;
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.tBsVgHyU::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 70%;
    height: 200%;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(30deg);
}

.mKoJlHsA {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    /* display: flex;
    flex-direction: column; */
    position: relative;
    z-index: 2;
}

.kLiJhGfD {
    width: auto;
    display: inline-block;
    background: rgba(0, 0, 0, 0.15);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.xSwAqWeD {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 600px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.hGbVfRtY {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 35px;
    max-width: 700px;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* 标签按钮容器 */
.qAsZdXcV {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1400px;
    margin-bottom: 45px;
}

/* 标签按钮样式 */
.lMnBvCxZ {
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.jHgFdCsA {
    background: var(--badge-blue);
    color: white;
}

.kLmJnBhV {
    background: var(--badge-green);
    color: white;
}

.pOiUjKlM {
    background: var(--badge-orange);
    color: white;
}

.vBnHfRtY {
    background: var(--gold-dark);
    color: white;
}

.gHjKiUjM {
    background: #9b59b6;
    color: white;
}

.lMnBvCxZ:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.lMnBvCxZ i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* 特点盒子 */
.qWeRtYtG {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.vBnHfSdX {
    flex: 1;
    min-width: 250px;
    /* background: rgba(255, 255, 255, 0.2); */
    background: radial-gradient(circle at 10% 20%, rgba(28, 35, 64, 0.7) 0%, rgba(12, 17, 38, 0.9) 50%);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.vBnHfSdX:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.3);
}

.mKjLoPqA {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, white, #f8f5e4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.nBhJkLmN {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* 内容区域 */
.tFvGbHyU {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
}

.cVbNmLpO {
    text-align: center;
    margin-bottom: 70px;
}

.kJoIjHnU {
    font-size: 2.5rem;
    color: var(--dark-bg);
    position: relative;
    padding-bottom: 20px;
}

.kJoIjHnU::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 2px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .rGtFyHzK {
        padding: 12px 0;
    }

    .xSwAqWeD {
        font-size: 2.6rem;
    }

    .hGbVfRtY {
        font-size: 1.2rem;
    }

    .mNbVcRfT {
        gap: 20px;
    }

    .lMnBvCxZ {
        padding: 8px 18px;
        font-size: 0.95rem;
    }

    .uIjKpVcX {
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .fGbVcRtY h1 {
        font-size: 1.4rem;
    }

    .lOpKjHyU {
        display: none;
    }

    .mNbVcRfT {
        display: none;
    }

    .xSwAqWeD {
        font-size: 2.2rem;
    }

    .qAsZdXcV {
        margin-bottom: 30px;
    }
}