/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", "PingFang SC", sans-serif;
}
body {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #ffffff;
    line-height: 1.8;
    font-size: 14px;
    min-height: 100vh;
}
.container {
    width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}
a {
    text-decoration: none;
    color: #ff4081;
    transition: all 0.3s;
}
a:hover {
    color: #ff79b0;
    text-decoration: underline;
}

/* 标题样式 */
.page-title {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ff4081;
}
.page-title h1 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 10px rgba(255, 64, 129, 0.5);
}
.page-title h1 i {
    margin-right: 15px;
    font-size: 36px;
    color: #ff4081;
}
.page-title p {
    font-size: 16px;
    color: #b0b0ff;
}

/* 板块样式 */
.section {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.section-title {
    font-size: 22px;
    color: #ff4081;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #ff4081;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 5px rgba(255, 64, 129, 0.3);
}
.section-title i {
    margin-right: 10px;
}

/* 基础介绍样式 */
.base-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.info-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.info-item i {
    color: #ff4081;
    font-size: 20px;
    margin-right: 10px;
    width: 24px;
    text-align: center;
}
.info-item span {
    font-size: 16px;
    color: #ffffff;
}

/* 截图展示样式 */
.screenshot-gallery {
    margin-top: 30px;
}
.screenshot-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.screenshot-row.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.screenshot-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.screenshot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 64, 129, 0.2);
    border-color: rgba(255, 64, 129, 0.3);
}
.screenshot-img {
    height: 300px;
    overflow: hidden;
}
.screenshot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.screenshot-card:hover .screenshot-img img {
    transform: scale(1.05);
}
.screenshot-info {
    padding: 20px;
}
.screenshot-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ff4081;
    display: flex;
    align-items: center;
}
.screenshot-info h4 i {
    margin-right: 10px;
}
.screenshot-info p {
    color: #b0b0ff;
    line-height: 1.6;
    font-size: 14px;
}

/* 评价样式 */
.review-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.review-item {
    background: rgba(255, 64, 129, 0.08);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #ff4081;
    transition: all 0.3s ease;
}
.review-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 64, 129, 0.15);
}
.review-item p {
    color: #ffffff;
    line-height: 1.6;
    font-style: italic;
}
.review-item::before {
    content: '"';
    font-size: 30px;
    color: #ff4081;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 10px;
}
.review-item {
    position: relative;
    padding-top: 25px;
}

/* 功能补充样式 */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 64, 129, 0.15);
    border-color: rgba(255, 64, 129, 0.3);
}
.feature-item i {
    color: #ff4081;
    font-size: 24px;
    margin-right: 15px;
    margin-top: 3px;
}
.feature-item div h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #ffffff;
}
.feature-item div p {
    color: #b0b0ff;
    font-size: 14px;
    line-height: 1.5;
}

/* 资源说明样式 */
.resource-note {
    background: rgba(255, 64, 129, 0.08);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    border: 2px dashed rgba(255, 64, 129, 0.3);
}
.resource-note p {
    color: #ffffff;
    margin-bottom: 15px;
}
.resource-note ul {
    padding-left: 20px;
    margin-top: 10px;
}
.resource-note li {
    margin-bottom: 10px;
    color: #b0b0ff;
}

/* 下载提示样式 */
.download-guide {
    background: rgba(255, 64, 129, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    border: 2px solid rgba(255, 64, 129, 0.2);
}
.download-guide h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ff4081;
    display: flex;
    align-items: center;
}
.download-guide h4 i {
    margin-right: 10px;
}
.download-guide p {
    color: #ffffff;
}
.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    padding: 0 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.baidu-btn {
    background: linear-gradient(135deg, #4169E1 0%, #3154b3 100%);
}
.baidu-btn:hover {
    background: linear-gradient(135deg, #3154b3 0%, #25408a 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(65, 105, 225, 0.4);
    color: #fff;
    text-decoration: none;
}
.kuake-btn {
    background: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
}
.kuake-btn:hover {
    background: linear-gradient(135deg, #00a8e6 0%, #0066cc 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 198, 255, 0.4);
    color: #fff;
    text-decoration: none;
}
.download-notes {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.download-notes h5 {
    font-size: 16px;
    color: #ff4081;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.download-notes h5 i {
    margin-right: 8px;
}
.download-notes ul {
    padding-left: 25px;
}
.download-notes li {
    margin-bottom: 10px;
    color: #b0b0ff;
    list-style: disc;
}
.download-notes li strong {
    color: #ff4081;
}

/* 页脚样式 */
footer {
    background: rgba(0, 0, 0, 0.3);
    color: #b0b0ff;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 导航栏样式 */
.navbar {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 64, 129, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}
.nav-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}
.logo i {
    color: #ff4081;
    margin-right: 10px;
    font-size: 28px;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
    text-decoration: none;
}
.nav-link:hover {
    background: rgba(255, 64, 129, 0.2);
    color: #ff4081;
}
.nav-link.active {
    background: rgba(255, 64, 129, 0.3);
    color: #ffffff;
}
.download-nav-btn {
    background: linear-gradient(135deg, #ff4081 0%, #ff79b0 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
}
.download-nav-btn:hover {
    background: linear-gradient(135deg, #ff79b0 0%, #ff4081 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 64, 129, 0.4);
}

/* 大图展示样式 */
.hero-banner {
    margin: 30px 0 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.9) 0%, rgba(48, 43, 99, 0.9) 50%, rgba(36, 36, 62, 0.9) 100%);
}
.banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    min-height: 500px;
}
.banner-content {
    flex: 1;
    max-width: 600px;
}
.banner-title {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}
.banner-subtitle {
    font-size: 20px;
    color: #b0b0ff;
    margin-bottom: 40px;
    line-height: 1.6;
}
.banner-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.banner-btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}
.primary-btn {
    background: linear-gradient(135deg, #ff4081 0%, #ff79b0 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 64, 129, 0.4);
}
.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 64, 129, 0.5);
}
.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 64, 129, 0.3);
}
.secondary-btn:hover {
    background: rgba(255, 64, 129, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 64, 129, 0.2);
}
.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-image img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 64, 129, 0.3);
}

/* 响应式适配 */
@media (max-width: 1200px) {
    .container, .nav-container {
        width: 95%;
    }
    .banner-container {
        padding: 40px;
    }
    .banner-title {
        font-size: 36px;
    }
    .banner-subtitle {
        font-size: 18px;
    }
    .screenshot-row {
        gap: 20px;
    }
}
@media (max-width: 992px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
    }
    .banner-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    .banner-image img {
        max-height: 300px;
    }
    .screenshot-row.three-column {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .section {
        padding: 20px;
    }
    .page-title h1 {
        font-size: 26px;
    }
    .section-title {
        font-size: 20px;
    }
    .review-list, .feature-list {
        grid-template-columns: 1fr;
    }
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    .download-btn {
        width: 100%;
        max-width: 300px;
    }
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .banner-container {
        padding: 30px;
    }
    .banner-title {
        font-size: 32px;
    }
    .banner-subtitle {
        font-size: 16px;
    }
    .banner-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    .screenshot-img {
        height: 200px;
    }
}
@media (max-width: 480px) {
    .banner-title {
        font-size: 28px;
    }
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    .banner-btn {
        width: 100%;
        max-width: 250px;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
}
