/* 全局样式 */
:root {
    --primary-color: #4a6cf7;
    --primary-dark: #3a56d4;
    --secondary-color: #ff6b6b;
    --accent-color: #6c63ff;
    --text-color: #2d3748;
    --text-light: #718096;
    --bg-color: #ffffff;
    --bg-light: #f7f9fc;
    --bg-dark: #1a202c;
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --danger-color: #e53e3e;
    --border-color: #e2e8f0;
    --border-radius: 8px;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 按钮样式 */
.primary-button, .secondary-button, .cooperation-button, .script-button, .view-more-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.primary-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.primary-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

/* 头部导航 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* 英雄区域 */
.hero {
    padding: 160px 0 100px;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.slogan {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.slogan .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.slogan .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(74, 108, 247, 0.2);
    z-index: -1;
}

.sub-slogan {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-media {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.play-button {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3);
    transition: var(--transition);
}

.play-button i {
    color: white;
    font-size: 24px;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

.hero-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
}

/* 特点部分 */
.features {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-heading p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* 脚本库部分 */
.scripts {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.scripts-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category {
    padding: 8px 20px;
    border-radius: 30px;
    background-color: white;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.category:hover, .category.active {
    background-color: var(--primary-color);
    color: white;
}

.scripts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.script-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.script-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.script-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.script-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.script-card:hover .script-image img {
    transform: scale(1.05);
}

.script-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.script-info {
    padding: 20px;
}

.script-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.script-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    height: 75px;
    overflow: hidden;
}

.script-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.script-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.script-sales {
    font-size: 0.9rem;
    color: var(--text-light);
}

.script-button {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.script-button:hover {
    background-color: var(--primary-dark);
    color: white;
}

.view-more {
    text-align: center;
    margin-top: 40px;
}

.view-more-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.view-more-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* 合作方式部分 */
.cooperation {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.cooperation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cooperation-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.cooperation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.cooperation-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.cooperation-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.cooperation-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.cooperation-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.cooperation-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    align-self: flex-start;
}

.cooperation-button:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* 关于我们部分 */
.about {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: white;
    position: relative;
}

.about-wave-top, .about-wave-bottom {
    position: absolute;
    width: 100%;
    left: 0;
}

.about-wave-top {
    top: 0;
}

.about-wave-bottom {
    bottom: 0;
}

.section-heading.light h2, .section-heading.light p {
    color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.about-stat .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* 用户评价部分 */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: white;
    position: relative;
}

.testimonials-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #ffc107;
    margin-right: 3px;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--primary-color);
}

/* 联系我们部分 */
.contact {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contact-info {
    flex: 1;
    padding: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background-color: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--primary-color);
}

.payment-methods {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.payment-label {
    margin-right: 15px;
    color: var(--text-light);
}

.payment-icons {
    display: flex;
    align-items: center;
}

.payment-icons i {
    font-size: 24px;
    margin-right: 10px;
    color: var(--text-color);
}

.payment-name {
    font-weight: 500;
    color: var(--primary-color);
}

.qr-code {
    flex: 0 0 300px;
    background-color: var(--primary-color);
    padding: 40px;
    text-align: center;
    color: white;
}

.qr-code img {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
    border: 5px solid white;
    border-radius: 10px;
}

.qr-security {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.qr-security i {
    margin-right: 8px;
}

/* 页脚部分 */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-slogan {
    max-width: 300px;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.social-links a i {
    font-size: 1.2rem;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    opacity: 0.7;
    transition: var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-disclaimer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-disclaimer p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(78, 65, 240, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* 视频模态框 */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary-color);
}

.video-container {
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.video-container video {
    width: 100%;
    display: block;
}

/* 额外的响应式调整 */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .cooperation-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* 脚本卡片徽章 */
.script-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
}

/* 评分星星 */
.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #ffc107;
    margin-right: 3px;
}

/* 支付方式图标 */
.payment-methods {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.payment-label {
    margin-right: 15px;
    color: var(--text-color);
    opacity: 0.8;
}

.payment-icons {
    display: flex;
    align-items: center;
}

.payment-icons i {
    font-size: 24px;
    margin-right: 10px;
    color: var(--text-color);
}

.payment-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-left: 5px;
}

/* 二维码安全提示 */
.qr-security {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

.qr-security i {
    color: var(--success-color);
    margin-right: 8px;
}

/* 统计数字动画 */
.stat-number {
    display: inline-block;
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 悬停效果增强 */
.script-card:hover .script-image img {
    transform: scale(1.05);
}

.script-image img {
    transition: transform 0.5s ease;
}

/* 加载动画 */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(78, 65, 240, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 滚动动画 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 价格标签 USDT 样式 */
.script-price {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.script-price::before {
    content: 'USDT';
    font-size: 0.7rem;
    font-weight: normal;
    color: var(--text-light);
    margin-right: 5px;
}

/* 脚本卡片按钮 */
.script-button {
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    margin-top: 15px;
    transition: var(--transition);
}

.script-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* 关于脚本猫部分的新样式 */
.about-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #4e41f0 0%, #7a70ff 100%);
    color: #ffffff;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.png');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.about-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.about-heading h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 2px;
}

.about-heading p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.about-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-team-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-container:hover .about-team-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(78, 65, 240, 0.2), rgba(78, 65, 240, 0.6));
}

.about-text-container {
    flex: 2;
    min-width: 300px;
}

.about-subtitle {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 1.5px;
}

.about-paragraph p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-statistics {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 120px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.25);
}

.stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .about-content-wrapper {
        flex-direction: column;
        padding: 30px;
    }
    
    .about-image-container {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .about-text-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 70px 0;
    }
    
    .about-heading h2 {
        font-size: 2rem;
    }
    
    .about-heading p {
        font-size: 1rem;
    }
    
    .about-subtitle {
        font-size: 1.5rem;
    }
    
    .about-paragraph p {
        font-size: 1rem;
    }
    
    .stat-box {
        padding: 15px 20px;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
}


/* 联系部分的新样式 */
.contact-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to right, #f8f9fa, #f1f3f5);
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-heading h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #4e41f0;
    border-radius: 2px;
}

.contact-heading p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.contact-info-column {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.contact-info-column h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-info-column > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-method-card i {
    font-size: 1.8rem;
    color: #4e41f0;
    margin-right: 15px;
}

.method-details h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.method-details span {
    font-size: 0.9rem;
    color: #666;
}

.payment-section {
    margin-bottom: 30px;
}

.payment-section h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.payment-icons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.payment-icon-item:hover {
    transform: translateY(-3px);
}

.payment-icon-item i {
    font-size: 1.5rem;
    color: #4e41f0;
    margin-bottom: 5px;
}

.payment-icon-item span {
    font-size: 0.8rem;
    color: #666;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: linear-gradient(135deg, #4e41f0, #7a70ff);
    color: #fff;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(78, 65, 240, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 65, 240, 0.4);
}

.contact-qr-column {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.qr-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

.qr-image-container {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.qr-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.qr-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(78, 65, 240, 0.2) 0%, rgba(78, 65, 240, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

.qr-info h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.qr-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.qr-security-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: rgba(78, 65, 240, 0.1);
    border-radius: 20px;
}

.qr-security-badge i {
    color: #4e41f0;
    margin-right: 8px;
}

.qr-security-badge span {
    font-size: 0.85rem;
    color: #4e41f0;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info-column, .contact-qr-column {
        max-width: 100%;
    }
    
    .contact-qr-column {
        order: -1;
        margin-bottom: 40px;
    }
    
    .qr-card {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 70px 0;
    }
    
    .contact-heading h2 {
        font-size: 2rem;
    }
    
    .contact-heading p {
        font-size: 1rem;
    }
    
    .contact-info-column h3 {
        font-size: 1.5rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .qr-image {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-icons-wrapper {
        justify-content: center;
    }
}
