:root {
    --primary: #3a86ff;
    --primary-dark: #2563eb;
    --secondary: #38bdf8;
    --accent: #f43f5e;
    --dark: #0f172a;
    --light: #ffffff;
    --gray: #f8fafc;
    --text: #1e293b;
    --text-light: #64748b;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --shadow: 0 10px 30px rgba(58, 134, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light);
    letter-spacing: -0.01em;
    opacity: 0;
    transition: opacity 0.6s ease;
}

body.loaded {
    opacity: 1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.dot {
    color: var(--accent);
}

/* 按钮样式 */
.btn {
    display: inline-block;
    background: var(--gradient);
    color: var(--light);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(58, 134, 255, 0.2);
}

.btn:active {
    transform: translateY(1px);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(100, 100);
        opacity: 0;
    }
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--light);
}

/* 标题样式 */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    color: var(--dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

/* 头部导航 */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    transform: translateY(0);
}

header.scrolled {
    padding: 15px 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header.nav-hidden {
    transform: translateY(-100%);
}

.logo-container {
    display: flex;
    align-items: center;
}

/* CSS Logo */
.logo {
    width: 40px;
    height: 40px;
    position: relative;
    background: var(--gradient);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotate(45deg);
    transition: transform 0.5s ease;
}

.logo:hover {
    transform: rotate(135deg);
}

.logo::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--light);
    top: 20%;
    left: 20%;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.logo:hover::before {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.8);
}

.logo::after {
    content: '';
    position: absolute;
    width: 20%;
    height: 20%;
    background: var(--accent);
    top: 40%;
    left: 40%;
    border-radius: 2px;
    animation: pulse 3s infinite;
}

/* 添加动漫风格的光芒效果 */
.logo:before {
    box-shadow: 0 0 15px var(--primary), 0 0 5px var(--secondary);
}

.logo:after {
    box-shadow: 0 0 10px var(--accent);
    animation: anime-pulse 2s infinite alternate;
}

/* 添加额外的动漫元素 */
.logo:hover:after {
    animation: anime-sparkle 1s infinite;
}

/* 添加星星效果 */
.logo:hover:before {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background: linear-gradient(45deg, #ffcc00, #ff6699);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 动漫效果动画 */
@keyframes anime-pulse {
    0% {
        transform: scale(1);
        background: var(--accent);
    }

    50% {
        transform: scale(1.2);
        background: #ff9900;
    }

    100% {
        transform: scale(1);
        background: #ff00cc;
    }
}

@keyframes anime-sparkle {

    0%,
    100% {
        opacity: 1;
        background: white;
        box-shadow:
            0 0 10px #fff,
            0 0 20px #fff,
            0 0 30px var(--accent),
            0 0 40px var(--accent),
            0 0 50px var(--accent);
    }

    50% {
        opacity: 0.7;
        background: var(--accent);
        box-shadow:
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 15px var(--primary),
            0 0 20px var(--primary),
            0 0 25px var(--primary);
    }
}

.logo.small {
    width: 30px;
    height: 30px;
}

header h1 {
    font-size: 24px;
    font-weight: 800;
    margin-left: 15px;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    font-size: 16px;
    color: var(--text);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* 英雄区块 */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
    width: 50%;
    z-index: 1;
    position: relative;
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230066ff" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,176C384,171,480,181,576,186.7C672,192,768,192,864,181.3C960,171,1056,149,1152,149.3C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.9;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, rgba(0, 204, 255, 0.05) 70%, transparent 100%);
    top: 30%;
    right: 20%;
    animation: float 8s infinite ease-in-out;
}

.hero-visual::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.1) 0%, rgba(255, 51, 102, 0.05) 70%, transparent 100%);
    bottom: 20%;
    right: 40%;
    animation: float 6s infinite ease-in-out reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/* 产品部分 */
.products {
    padding: 100px 5%;
    background-color: var(--light);
}

.product-card {
    display: flex;
    margin-bottom: 100px;
    align-items: center;
    background: var(--gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.product-card.reversed {
    flex-direction: row-reverse;
}

.product-visual {
    flex: 1;
    min-height: 400px;
    position: relative;
    background: var(--gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product-visual::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: pulse-light 4s infinite;
}

@keyframes pulse-light {
    0% {
        opacity: 0.5;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.product-icon {
    width: 120px;
    height: 120px;
    background: var(--gray);
    border-radius: 30%;
    margin: 0 auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(58, 134, 255, 0.08);
}

.wechat-icon::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--primary);
    border-radius: 15px;
    transform: rotate(45deg);
}

.wechat-icon::after {
    content: '';
    position: absolute;
    width: 24%;
    height: 24%;
    background: var(--light);
    border-radius: 50%;
    z-index: 1;
}

.youtube-icon::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 42%;
    background: var(--accent);
    border-radius: 12px;
}

.youtube-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--light);
    z-index: 1;
}

.product-info {
    flex: 1;
    padding: 50px;
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.features {
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.15;
}

.features li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 0;
    color: var(--primary);
    font-size: 12px;
    font-weight: bold;
}

/* 关于我们 */
.about {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
}

.about-content {
    display: flex;
    align-items: center;
}

.about-text {
    flex: 1;
    padding-right: 50px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-animation {
    width: 300px;
    height: 300px;
    position: relative;
    border-radius: 50%;
    background: var(--light);
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.tech-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary);
    opacity: 0.2;
    animation: rotate 30s linear infinite;
}

.tech-animation::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: 2px dashed var(--secondary);
    opacity: 0.2;
    animation: rotate 20s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.tech-animation .core {
    width: 40%;
    height: 40%;
    background: var(--gradient);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

/* 联系我们 */
.contact {
    padding: 100px 5%;
    background-color: var(--light);
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border-radius: 20px;
    overflow: hidden;
}

.contact-form {
    flex: 2;
    padding: 50px;
    background: var(--light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 16px;
    color: var(--text);
    background: var(--gray);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.contact-info {
    flex: 1;
    padding: 50px;
    background: var(--gradient);
    color: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.email-icon::before {
    content: '@';
    font-size: 20px;
    font-weight: bold;
}

.location-icon::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light);
    position: absolute;
    top: 10px;
}

.location-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--light);
    position: absolute;
    bottom: 10px;
}

/* 页脚 */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo p {
    margin-left: 12px;
    font-size: 20px;
    font-weight: 600;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.footer-links {
    display: flex;
}

.link-group {
    margin-left: 50px;
}

.link-group h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--secondary);
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.link-group ul li a:hover {
    color: var(--light);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero-content h2 {
        font-size: 3rem;
    }

    .product-card {
        flex-direction: column;
    }

    .product-card.reversed {
        flex-direction: column;
    }

    .product-visual {
        width: 100%;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }

    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--light);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    nav.active {
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
        margin-left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero {
        flex-direction: column;
        padding-top: 100px;
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-info {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        margin-top: 30px;
        flex-direction: column;
    }

    .link-group {
        margin-left: 0;
        margin-bottom: 20px;
    }

    .modal-content {
        width: 95%;
        padding: 25px 20px;
    }

    .version-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-link {
        margin-top: 10px;
        align-self: flex-end;
    }

    .slide-content .btn-secondary {
        min-width: 140px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .features li::before {
        width: 14px;
        height: 14px;
        top: 6px;
    }

    .features li::after {
        left: 3px;
        top: -1px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }

    .product-info h3 {
        font-size: 1.5rem;
    }

    .tech-animation {
        width: 250px;
        height: 250px;
    }

    #modal-title {
        font-size: 20px;
    }

    .version-list h4 {
        font-size: 16px;
    }
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--light);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 550px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 30px;
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--primary);
    background-color: rgba(0, 102, 255, 0.1);
}

#modal-title {
    color: var(--text);
    margin-bottom: 25px;
    text-align: center;
    font-size: 24px;
}

.version-list {
    display: none;
    margin-bottom: 20px;
}

.version-list.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    animation: fadeIn 0.8s ease-out forwards;
}

.version-list h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.version-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: var(--transition);
    background-color: var(--gray);
}

.version-item:hover {
    background-color: rgba(0, 102, 255, 0.05);
    transform: translateX(5px);
}

.version-info {
    display: flex;
    flex-direction: column;
}

.version-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.version-date {
    font-size: 14px;
    color: var(--text-light);
}

.download-link {
    background: var(--gradient);
    color: var(--light);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.2);
}

.download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 102, 255, 0.3);
}

/* 轮播基础样式 */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    width: 100%;
    flex: 0 0 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* 显示卡片样式 */
.slide-content {
    background: var(--gray);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(58, 134, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* 视觉指示样式 */
.slide:first-child .slide-content {
    border-left: 3px solid var(--primary);
}

.slide:nth-child(2) .slide-content {
    border-left: 3px solid var(--accent);
}

.slide-content::after {
    content: attr(data-slide-index);
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background: rgba(58, 134, 255, 0.1);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* 调试信息样式 */
.debug-info {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 1000;
    font-family: monospace;
    pointer-events: none;
}

/* 移除冲突样式 */
.slider-indicators {
    display: none !important;
}

.slider-dot {
    display: none !important;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .product-slider {
        padding: 80px 5% 40px;
    }

    .slide-content {
        padding: 35px 20px;
        min-height: 400px;
    }

    .slide-content h3 {
        font-size: 24px;
        margin: 15px 0;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn span {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .product-slider {
        padding: 60px 5% 30px;
    }

    .slide-content {
        padding: 25px 15px;
        min-height: 350px;
    }

    .slide-content h3 {
        font-size: 20px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-btn span {
        width: 10px;
        height: 10px;
    }
}

/* 产品轮播样式 */
.product-slider {
    padding: 100px 5% 60px;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

/* 轮播控制样式 */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--light);
    border: 1px solid rgba(58, 134, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.08);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(58, 134, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.12);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn span {
    display: block;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.slider-btn.prev span {
    transform: rotate(-135deg);
    margin-left: 5px;
}

.slider-btn.next span {
    transform: rotate(45deg);
    margin-right: 5px;
}

.slider-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(58, 134, 255, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* 产品卡片样式补充 */
.slide-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(58, 134, 255, 0.1);
}

.slide-content h3 {
    font-size: 28px;
    margin: 20px 0;
    color: var(--dark);
    font-weight: 700;
}

.slide-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.slide-content .features {
    margin: 20px 0;
    text-align: left;
    width: 100%;
    padding-left: 20px;
}

.action-wrapper {
    margin-top: auto;
    width: 100%;
    padding: 20px 0 0;
}