@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/static/PlusJakartaSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* 容器样式 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 电脑端样式 - 已移除手机端媒体查询 */

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #F5C500;
}

.download-btn {
    width: 143px;
    height: 35px;
    justify-content: center;
    align-items: center;
    background-color: #1E2749;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    color: #FFF;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    line-height: 15px;
}

/* Banner区域样式 */
.banner {
    background-image: url('../images/yellow-gradient-bg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 206px 0 50px 0;
    position: relative;
    overflow: hidden;
}

/* 市场覆盖文字样式 */
.market-text {
    color: #F5C500 !important;
    font-size: 18px;
    margin-bottom: 30px !important;
    font-weight: 500;
}

/* Banner标题区域 - 独立显示 */
.banner-heading {
    text-align: center;
    margin-bottom: 60px;
}

.banner-heading h1 {
    color: #F5C500;
    font-size: 44px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.banner-heading h1 img {
    width: 300px;
    padding-right: 10px;
}

.banner-heading p {
    font-size: 24px;
    line-height: 36px;
    margin: 0;
}

/* Banner内容区域 - 分左右布局 */
.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.banner-left,
.banner-right {
    flex: 1;
}

.banner-right img {
    width: 590px;
    /* max-width: 500px; */
    /* padding-top: 80px; */
}

/* 表单区域样式 */
.form-section {
    border-radius: 10px;
    border: 1px solid #4D4D4D;
    background: linear-gradient(137deg, rgba(255, 216, 55, 0.28) 2.52%, rgba(255, 240, 181, 0.12) 20.67%, rgba(255, 248, 222, 0.07) 30.75%, rgba(255, 216, 55, 0.00) 61.96%, rgba(255, 216, 55, 0.05) 77.9%, rgba(255, 216, 55, 0.28) 100%);
    backdrop-filter: blur(8.100000381469727px);
    color: #fff;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    /* margin-top: 30px; */
}

.form-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #F5C500;
    /* 金色 */
}

/* 输入框组样式 - 圆角边框 */
.banner .input-group {
    border-radius: 30px !important;
}

/* 跑马灯动画 */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* 跑马灯动画 */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* 鼠标悬停暂停 */
.awards-slider:hover {
    animation-play-state: paused;
}

/* 提交按钮样式 - 圆角边框 */
.submit-btn {
    border-radius: 30px;
    background-color: #F5C500;
    color: #1d2649;
    font-size: 16px;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #FFED4E;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.form-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.banner .input-group {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #4D4D4D;
    /* padding: 5px; */
    background-color: rgba(255, 255, 255, 0);
}

.banner .country-select {
    padding: 12px;
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    min-width: 20px;
    appearance: none;
    padding-right: 20px;
}

.banner .country-select:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.banner .country-select option {
    background-color: #1E2749;
    color: #fff;
    padding: 10px;
}

.banner .flag-icon {
    width: 20px;
    height: 13px;
    object-fit: contain;
    vertical-align: middle;
    margin-left: 10px;
}

.banner .input-group input {
    flex: 1;
    padding: 12px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    outline: none;
    color: #fff;
}

/* phone-input-wrapper 样式 */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.banner .input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.banner .input-group label {
    color: #fff;
    padding: 0 10px;
}

.login-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #1d2649;
    font-weight: 500;
}

/* 视频样式 */
.banner-video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 市场覆盖区域样式 */
.market-coverage {
    background-image: url('../images/bg.png');
    background-size: 100% 100%;
    background-position: center;
    padding: 90px 0;
    text-align: center;
}

.market-header {
    color: white;
    margin-bottom: 50px;
    text-align: center;
}

.market-header h1 {
    font-size: 40px;
    color: #F5C500;
    line-height: 50px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.market-header p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
}

.market-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 40px; */
    /* margin-top: 30px; */
    background: linear-gradient(90deg, #FFF 5.94%, #C6C6C6 23.27%, #D3D3D3 34.97%, #FFF 60.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.market-left,
.market-right {
    flex: 1;
    color: white;
    font-size: 32px;
    text-align: center;
}

.download-section {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}

.download-section .download-btn2 {
    width: 320px;
    height: 48px;
    padding: 14px 28px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    background: #F5C500;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #1E2749;
    border: none;
}

.coming-soon {
    color: white;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.8;
}

.market-left strong,
.market-right strong {
    color: white;
    font-weight: bold;
    display: block;
}

.market-center {
    flex: 3.6;
    display: flex;
    justify-content: center;
}

.market-image {
    /* max-width: 100%; */
    height: auto;
}

.market-coverage h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1d2649;
    line-height: 1.4;
}

.market-image {
    /* width: 100%; */
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 40px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}

.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.download-pc-btn {
    background-color: #F5C500;
    color: #333;
    border: none;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-pc-btn:hover {
    background-color: #e5b400;
}

.download-note {
    font-size: 16px;
    color: #666;
}

.features-right {
    border-radius: 10px;
    background: linear-gradient(100deg, #FDFEFF 39.14%, rgba(238, 243, 247, 0.00) 88.24%);
    box-shadow: 0 -1px 33.2px 0 rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(2.5999999046325684px);

}

/* 表单区域 */
.form-section h3 {
    font-size: 24px;
    text-align: center;
}

.form-section p {
    text-align: center;
    margin-bottom: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.login-form input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.login-form input:focus {
    outline: none;
    border-color: #F5C500;
}

.submit-btn {
    /* padding: 15px; */
    background-color: #F5C500;
    color: #000;
    border: none;
    border-radius: 30px;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: 30px !important;
}

.submit-btn:hover {
    background-color: #e0b900;
}

.form-footer {
    margin-top: 15px;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}

/* 视频样式 */
.banner-video {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    padding-top: 80px;
}

/* 市场覆盖区域 */
.market-coverage {
    background-color: #fff;
    padding: 90px 0;
    text-align: center;
}

.market-coverage h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.market-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.download-section {
    margin-top: 40px;
}

.download-pc-btn {
    padding: 15px 40px;
    background-color: #F5C500;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.download-pc-btn:hover {
    background-color: #e0b900;
}

.download-note {
    margin-top: 15px;
    color: #666;
    font-size: 16px;
}

.market-right-content {
    /* position: absolute; */


    /* z-index: 999999999999; */
}

/* 核心功能区域样式 */
.core-features {
    background-image: url('../images/bg3.png'), linear-gradient(337deg, #FFF 22.47%, #EEF3F6 53.56%, #EEF3F8 65.71%, rgba(255, 255, 255, 0.00) 88.83%);
    background-repeat: no-repeat;
    background-size: 100% auto, cover;
    background-position: bottom;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 手机端头部布局 */
@media (max-width: 768px) {
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-mobile {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 15px;
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }
}

.features-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.features-left {
    flex: 1;
    text-align: center;
    position: absolute;
    z-index: 9;
    width: 300px;
}

.features-left h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1d2649;
    text-align: left;
}

.features-right h4 {
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

.features-right p {
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.mentor-image {
    max-width: 300px;
    height: auto;
}

.features-right {
    width: 830px;
    padding: 50px 105px;

    margin-left: 320px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.feature-item {
    text-align: center;
}

.feature-item img {
    height: 120px;
    margin-bottom: 20px;
}

.feature-item p {
    margin: 5px 0;
    color: #000000;
    font-size: 16px;
    display: block;
    white-space: normal;
}

/* 移动端文字样式确保 */
@media (max-width: 768px) {
    .feature-item p {
        font-size: 14px;
        color: #000000;
        display: block;
        white-space: normal;
    }
}

.features-subtitle {
    font-size: 18px;
    margin-bottom: 60px;
    color: #1d2649;
    text-align: center;
}

.unlock-btn {
    display: block;
    margin: 0 auto;
    padding: 15px 40px;
    background-color: #F5C500;
    color: #1d2649;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.unlock-btn:hover {
    background-color: #e0b900;
}

/* 移动端特定样式补充 */
@media (max-width: 768px) {

    /* 头部导航 */
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-mobile {
        display: flex;
        gap: 15px;
    }

    /* 表单样式 */
    .form-section {
        padding: 20px 15px;
    }

    .login-form input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 16px;
    }

    .banner-video {
        max-width: 100%;
        height: auto;
    }

    /* 市场覆盖区域 */
    .market-coverage {
        padding: 40px 0;
    }

    .market-header h1 {
        font-size: 28px;
    }

    .market-header p {
        font-size: 16px;
    }

    .market-content {
        flex-direction: column;
        gap: 30px;
    }

    .market-left,
    .market-right {
        font-size: 20px;
    }

    /* 下载按钮 */
    .download-pc-btn {
        width: 90%;
        padding: 12px 20px;
        font-size: 18px;
    }

    /* 核心功能区域 */
    .core-features {
        padding: 40px 0;
    }

    .features-content {
        flex-direction: column;
        text-align: center;
    }

    .features-left {
        margin-bottom: 40px;
    }

    .feature-grid {
        flex-direction: column;
        gap: 30px;
    }

    .feature-item img {
        width: 80px;
        height: 80px;
    }

    /* 产品优势区域 */
    .advantages-top {
        flex-direction: column;
        align-items: center;
    }

    .advantages-left,
    .advantages-right {
        align-items: center;
    }

    .advantages-center {
        width: 200px;
        height: 150px;
    }

    .advantages-bottom {
        flex-direction: column;
        align-items: center;
    }

    .advantage-item {
        max-width: 100%;
    }

    .unlock-btn {
        width: 90%;
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* 产品优势区域样式 */
.product-advantages {
    background-image: url(../images/laptop-hqb.png);
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.advantages-content {
    position: relative;
    z-index: 1;
}

.advantages-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 20px;
}

.advantages-left,
.advantages-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.advantages-center {
    width: 300px;
    height: 200px;
    /* 预留背景图片中心位置 */
}

.advantages-bottom {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.advantage-item {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.advantage-item h3 {
    color: #1d2649;
    margin-bottom: 10px;
    font-size: 18px;
}

.advantage-item p {
    color: #666;
    font-size: 14px;
    text-align: center;
    color: #0A0A0A;
}

.download-pc-btn {
    margin-top: 40px;
    padding: 15px 40px;
    background-color: #F5C500;
    color: #1d2649;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.product-advantages h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.product-advantages p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.advantages-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    align-items: center;
    gap: 15px;
    text-align: left;
    font-size: 18px;
}

.advantage-item span {
    font-size: 24px;
    color: #F5C500;
}

/* 关于我们样式 */
.about {
    background-color: #0c0f1c;
    padding: 120px 0;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 0px;
    text-align: center;
    color: #1d2649;
}

.about p {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
    color: #ffffff;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-item {
    flex: 1;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-item span {
    font-size: 48px;
    font-weight: bold;
    color: #F5C500;
    display: block;
}

.stat-item p {
    font-size: 18px;
    color: #1d2649;
    margin-top: 10px;
}








/* 按钮样式 */
.btn-primary,
.btn-secondary {
    display: block;
    width: 200px;
    margin: 30px auto 0;
    padding: 15px 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #F5C500, #FFA500);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #F5C500;
    border: 2px solid #F5C500;
}

.btn-secondary:hover {
    background: #F5C500;
    color: #000;
}

/* 分析区块样式 */
.analysis {
    background: linear-gradient(180deg, #000, #1a1a1a);
    padding: 80px 0;
}

.analysis h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
    color: #F5C500;
}

.analysis-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.analysis-left,
.analysis-right {
    flex: 1;
    text-align: center;
}

.analysis-left p,
.analysis-right p {
    font-size: 24px;
    line-height: 1.8;
    color: #fff;
}

.analysis-center {
    flex: 2;
}

.analysis-center img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

/* 工具区块样式 */
.tools {
    background: #000;
    padding: 80px 0;
}

.tools h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
    color: #F5C500;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tool-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tool-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #333, #222);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tool-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F5C500, transparent);
    opacity: 0.3;
}

.tool-icon img {
    width: 60px;
    height: 60px;
    z-index: 1;
}

.percent {
    font-size: 36px;
    font-weight: bold;
    color: #F5C500;
    z-index: 1;
}

.tool-item h3 {
    font-size: 20px;
    color: #fff;
    margin-top: 20px;
}

/* 产品优势区域样式 */
.product-advantages {
    padding: 0px 0 80px 0;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.advantages-content {
    position: relative;
}

.advantages-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

.advantages-left,
.advantages-right {
    flex: 0.6;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.advantages-center {
    flex: 2.5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.advantage-item {
    padding: 20px 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-item img {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    margin-right: 15px;
    display: inline-block;
}

.advantage-item h3 {
    display: inline-block;
    margin-bottom: 5px;
    margin-top: 0;
    vertical-align: middle;
    white-space: nowrap;
}

.advantage-item h3 img {
    margin-right: 5px;
    vertical-align: middle;
    display: inline-block;
    width: 50px;
    height: 50px;
}



.advantage-item h3 {
    font-size: 18px;
    color: #1d2649;
    margin-bottom: 10px;
}

.advantage-item p {
    font-size: 14px;
    margin: 0;
}

.advantages-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.advantages-bottom .advantage-item {
    flex: 1;
    text-align: center;
    border-left: none;
}

.advantages-bottom .advantage-item img {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    margin-right: 10px;
    display: inline-block;
}

.advantages-bottom .advantage-item h3 {
    display: inline-block;
    margin-bottom: 5px;
    margin-top: 0;
    vertical-align: middle;
    white-space: nowrap;
}

.advantages-bottom .advantage-item h3 img {
    margin-right: 5px;
    vertical-align: middle;
    display: inline-block;
    width: 50px;
    height: 50px;
}

.download-pc-btn {
    display: block;
    width: 280px;
    margin: 50px auto 0;
    padding: 18px 0;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(135deg, #F5C500, #FFA500);
    color: #000;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.download-pc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.5);
}

/* 功能特点样式 */
.features {
    background: linear-gradient(180deg, #1a1a1a, #000);
    padding: 80px 0;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
    color: #F5C500;
    line-height: 1.4;
}

.features-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.features-left,
.features-right {
    flex: 1;
}

.features-left img {
    width: 100%;
    border-radius: 10px;
    margin-left: 60px;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: block;
}

.feature-item span {
    color: #F5C500;
    font-size: 32px;
    margin-right: 20px;
    line-height: 1;
}

/* 关于我们样式 */
.about {
    background: #0c0f1c;
    padding: 120px 0 40px 0;
}

.about h2 {
    font-family: "Plus Jakarta Sans";
    font-size: 40px;
    font-style: normal;
    margin-bottom: 0px;
    text-align: center;
    color: #F5C500;
}

.about h2 img {
    width: 234px;
}

.about p {
    font-size: 16px;
    margin: 40px 0 0 0;
    text-align: center;
    color: #ffffff;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
}

.stat-item {
    position: relative;
    padding: 20px 20px;
    background: linear-gradient(145deg, rgba(255, 216, 55, 0.20) -8.36%, rgba(255, 240, 181, 0.09) 14.44%, rgba(255, 248, 222, 0.05) 27.1%, rgba(255, 255, 255, 0.00) 66.31%, rgba(255, 255, 255, 0.04) 86.33%, rgba(85, 91, 115, 0.20) 114.1%);
    backdrop-filter: blur(2px);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #4D4D4D;
    height: 100%;
    margin: 0 15px;
}

.stat-item img {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 56px;
    height: 56px;
    border-radius: 15px 0 0 0;
}

.stat-item span {
    display: inline-block;
    font-size: 32px;
    font-weight: bold;
    color: #F5C500;
    margin: 60px 0 10px 0;
    padding: 0 0px;
    border-bottom: 1px solid #4d4d4d;
    width: calc(100% - 20px);
    text-align: left;
}

.stat-item p {
    font-size: 16px;
    color: #fff;
    text-align: left;
    padding-left: 10px;
}

/* 荣誉奖项样式 */
.awards {
    background: #0c0f1c;
    background-image: url(../images/yellow-gradient.png);
    background-position: bottom;
    padding: 0px 0 80px 0;
}

.awards h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
    text-align: center;
}

.awards .container {
    position: relative;
    max-width: 100%;
    padding: 0;
}

.swiper-container {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.swiper-wrapper {
    display: flex;
    transition-timing-function: linear;
}

/* Swiper 样式配置 */
.swiper-slide {
    height: 100px;
    position: relative;
}

/* 银色渐变消失分割线 */
.swiper-slide:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 150px;
    bottom: 0;
    width: 1px;
    opacity: 0.5;
    background: linear-gradient(to bottom, rgba(200, 200, 200, 0) 0%, rgba(200, 200, 200, 0.8) 50%, rgba(200, 200, 200, 0) 100%);
}

/* 整合奖项项样式 */
.award-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 30px 20px 10px;
    text-align: center;
    min-width: 200px;
    white-space: normal;
    line-height: 1.5;
    font-size: 14px;
    color: #fff;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-item img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.award-item h4 {
    color: #F5C500;
    text-shadow: 0 4px 4.1px rgba(0, 0, 0, 0.06);
    font-size: 18px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #FFED80 0.4%, #ECDC7C 18.04%, #F1D13E 49%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.award-date {
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    opacity: 0.8;
}

.award-institution {
    color: #ccc;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    background: linear-gradient(90deg, #FFF 16.46%, #B5B5B5 49.8%, #D3D3D3 70.37%, #FFF 90.68%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 隐藏分割线元素 */
.award-divider {
    display: none;
}

/* 底部 */
.footer {
    background-color: #0c0f1c;
    color: white;
    padding: 40px 0;
}

.footer-content {
    text-align: left;
}

.footer-text {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.footer-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 响应式设计 - 电脑端样式 */