:root {
    --primary-color: #00d4ff;
    --secondary-color: #7c3aed;
    --accent-color: #06b6d4;
    --dark-bg: #0a0e1a;
    --light-bg: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 现代头部样式 */
.modern-header {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-left .logo img {
    height: 50px;
    width: auto;
}

.company-name h1 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.company-name .tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 2px 0 0;
}

.header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav ul li {
    position: relative;
    padding: 8px 0;
    margin: 0 4px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.header-nav ul li:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

.header-nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 16px;
    white-space: nowrap;
}

.header-nav ul li a:hover,
.header-nav ul li a.active {
    color: #00d4ff;
}

.header-nav ul li.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.header-nav ul li.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.header-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.login-area {
    display: flex;
    gap: 12px;
    align-items: center;
}

.login-area a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.login-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.login-link:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(124, 58, 237, 0.4));
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.user-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.user-link:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.4), rgba(249, 115, 22, 0.4));
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.3);
}

.login-area a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

/* 英雄区域 */
.hero-section {
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0a0e1a 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 20px;
}

.badge-icon {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
}

.badge span:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 英雄标题渐变 */
.title-gradient {
    background: linear-gradient(135deg, #00d4ff, #7c3aed, #fbbf24, #00d4ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s ease infinite;
    text-shadow: 0 0 60px rgba(0, 212, 255, 0.3);
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-tags {
    display: flex;
    gap: 16px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-tag:hover {
    background: rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 15px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    gap: 60px;
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

/* 机器人视觉 */
.hero-visual {
    flex: 1;
    position: relative;
}

.robot-icon {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.robot-svg {
    width: 100%;
    height: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    animation: floatElement 8s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    right: 8%;
    animation-delay: 0s;
}

.float-2 {
    top: 6%;
    left: 15%;
    animation-delay: 1s;
}

.float-3 {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

.float-4 {
    bottom: 25%;
    left: 10%;
    animation-delay: 3s;
}

.float-5 {
    bottom: 2%;
    right: 10%;
    animation-delay: 4s;
}

.float-6 {
    top: 70%;
    right: 15%;
    animation-delay: 5s;
}

.float-7 {
    right: 35%;
    animation-delay: 6s;
}

.float-8 {
    bottom: 1%;
    left: 20%;
    animation-delay: 7s;
}

.float-9 {
    top: 98%;
    left: 40%;
    animation-delay: 0.5s;
}

.float-10 {
    bottom: 1%;
    right: 25%;
    animation-delay: 1.5s;
}

.float-11 {
    top: 40%;
    left: 5%;
    animation-delay: 4.5s;
}

.float-12 {
    top: 25%;
    right: 5%;
    animation-delay: 6.5s;
}

@keyframes floatElement {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(15px, -15px) scale(1.1); opacity: 1; }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23f8fafc' fill-opacity='1' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

/* 服务区域 */
.services-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0a0e1a;
    margin: 0 0 15px;
}

.section-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

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

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 50px;
    height: 50px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a0e1a;
    margin: 0 0 15px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 20px;
}

.service-link {
    display: inline-block;
    color: #00d4ff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #7c3aed;
}

/* 优势区域 */
.advantages-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

.advantage-item {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.advantage-item::before {
    content: '""';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: bold;
    color: rgba(0, 212, 255, 0.08);
    line-height: 1;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
    border-radius: 50%;
    position: relative;
    transition: transform 0.4s ease;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-icon .number {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0a0e1a;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
}

.advantage-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* 用户合作点评区域 */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f5ff 100%);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 212, 255, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
    background: linear-gradient(135deg, #fff 0%, #f0f5ff 100%);
}

.testimonial-quote {
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 60px;
    font-weight: bold;
    color: rgba(0, 212, 255, 0.1);
    line-height: 1;
    z-index: 0;
}

.testimonial-text {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(0, 212, 255, 0.2);
    transition: border-color 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    border-color: rgba(0, 212, 255, 0.5);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: #0a0e1a;
}

.author-title {
    font-size: 12px;
    color: #888;
}

/* RPA应用区域 */
.rpa-section {
    padding: 100px 0;
    background: #f8fafc;
}

.rpa-nav {
    text-align: center;
    margin-bottom: 40px;
}

.rpa-nav ul {
    display: inline-flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.rpa-nav li {
    padding: 12px 25px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}

.rpa-nav li.active,
.rpa-nav li:hover {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: #fff;
}

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

.rpa-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rpa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.rpa-icon {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.rpa-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
}

.rpa-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rpa-card:hover .rpa-icon img {
    transform: scale(1.05);
}

.rpa-content-inner {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rpa-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0a0e1a;
    margin: 0 0 12px;
    line-height: 1.4;
}

.rpa-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px;
    flex: 1;
}

.rpa-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.rpa-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
}

.rpa-tags .tag {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    color: #00d4ff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 25px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.rpa-tags .tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.rpa-card:hover .rpa-tags .tag::before {
    left: 100%;
}

.rpa-tags .tag:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.rpa-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #00d4ff;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 7px 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.rpa-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.rpa-link:hover::before {
    left: 100%;
}

.rpa-link:hover {
    color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
    border-color: rgba(0, 212, 255, 0.3);
    gap: 10px;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

/* 知识宝库 */
.knowledge-section {
    padding: 100px 0;
    background: #ffffff;
}

.knowledge-tabs {
    text-align: center;
    margin-bottom: 50px;
}

.knowledge-tabs ul {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.knowledge-tabs li {
    padding: 14px 32px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}

.knowledge-tabs li.active,
.knowledge-tabs li:hover {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.knowledge-tabs li a {
    color: inherit;
    text-decoration: none;
}

.knowledge-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.featured-article {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-article .featured-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article:hover .featured-img {
    transform: scale(1.05);
}

.featured-article .featured-info {
    padding: 25px;
}

.featured-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0e1a;
    margin: 0 0 12px;
    line-height: 1.4;
}

.featured-info h3 a {
    color: inherit;
    text-decoration: none;
}

.featured-info h3 a:hover {
    color: #00d4ff;
}

.featured-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 30px;
}

.read-more:hover {
    color: #fff;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
}

.article-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.article-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.article-item:hover {
    transform: translateY(-4px);
    border-left-color: #00d4ff;
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.18);
}

.article-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-radius: 50%;
    margin-right: 16px;
    flex-shrink: 0;
}

.article-item a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 16px;
}

.article-item a:hover {
    color: #038eaa;
}

.article-date {
    font-size: 13px;
    color: #999;
    flex-shrink: 0;
    white-space: nowrap;
}

/* 联系区域 */
/* 首页联系区域 - 科技感设计 */
.index-contact-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
}

/* 网格背景 */
.index-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

/* 动态光晕效果 */
.index-contact-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 75% 75%, rgba(124, 58, 237, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 60%);
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* 装饰性圆环 */
.index-contact-section .floating-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.1);
    animation: ringRotate 20s linear infinite;
}

.index-contact-section .floating-ring:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.index-contact-section .floating-ring:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
    animation-direction: reverse;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.index-contact-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    margin: 0 auto;
}

.index-contact-info {
    position: relative;
}

.index-contact-info::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, transparent);
    border-radius: 2px;
}

.index-contact-info h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.2;
    position: relative;
}

.index-contact-info h2 span {
    background: linear-gradient(135deg, #00d4ff 0%, #06b6d4 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.index-contact-info h2 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.5), rgba(124, 58, 237, 0.5));
    border-radius: 2px;
    filter: blur(4px);
}

.index-contact-info p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    margin: 0;
    line-height: 1.8;
    max-width: 400px;
}

/* 特性列表 */
.index-contact-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.index-contact-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.index-contact-features .feature-item i {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00d4ff, #06b6d4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #0a0e1a;
}

.index-contact-features .feature-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* 表单区域 */
.index-contact-form {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* 表单发光边框效果 */
.index-contact-form::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(124, 58, 237, 0.2), rgba(0, 212, 255, 0.3));
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.index-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.index-contact-form input,
.index-contact-form textarea {
    position: relative;
    padding: 16px 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    background: rgba(0, 10, 20, 0.6);
    color: #fff;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.index-contact-form input:focus,
.index-contact-form textarea:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 0 0 1px rgba(0, 212, 255, 0.2),
        0 0 30px rgba(0, 212, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.index-contact-form input::placeholder,
.index-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.index-contact-form textarea {
    resize: none;
    min-height: 120px;
    padding-top: 18px;
}

.index-submit-btn {
    position: relative;
    padding: 16px;
    background: linear-gradient(135deg, #00d4ff 0%, #06b6d4 50%, #0891b2 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.index-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.index-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(0, 212, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.index-submit-btn:hover::before {
    left: 100%;
}

.index-submit-btn:active {
    transform: translateY(-1px);
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.contact-form textarea {
    resize: none;
}

.submit-btn {
    padding: 18px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* 底部样式 */
footer {
    background: #0a0e1a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.footer-wechat {
    display: flex;
    gap: 16px;
    margin-bottom: 15px;
    justify-content: center;
}

.wechat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.wechat-qrcode {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
}

.wechat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-item .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    color: #00d4ff;
    font-size: 16px;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0 0 10px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00d4ff;
}

.footer-bottom .beian {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom .beian a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12px;
}

.footer-bottom .beian a img {
    width: 14px;
    height: 14px;
}
.city-list-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.city-list-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.city-all-link {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.city-all-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-tag {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.city-tag:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(124, 58, 237, 0.25));
    color: #00d4ff;
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}
/* 右侧边栏菜单 */
.right_sidebar-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 5px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.right_sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px;
}

.right_sidebar-item:hover {
    color: #1c9fe1;
}

.right_sidebar-icon {
    font-size: 24px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

.right_sidebar-item:hover .right_sidebar-icon {
    background: #e6f3f8;
}

.right_sidebar-text {
    font-size: 12px;
    color: #666;
    transition: all 0.3s ease;
}

.right_sidebar-item:hover .right_sidebar-text {
    color: #1c9fe1;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4d4f;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.icon-cart::before { content: "🛒"; }
.icon-my::before { content: "👤"; }
.icon-service::before { content: "💬"; }
.icon-plugin::before { content: "🔌"; }
.icon-feedback::before { content: "📝"; }
.icon-top::before { content: "⬆"; }

/* 荣誉资质滚动区域 */
.certificate-scroll-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f5ff 100%);
}

.certificate-scroll-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
    padding: 20px 0;
}

.certificate-scroll-track {
    display: flex;
    animation: scrollLeft 30s linear infinite;
}

.certificate-scroll-container:hover .certificate-scroll-track {
    animation-play-state: paused;
}

.certificate-item {
    flex-shrink: 0;
    height: 240px;
    margin: 0 20px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
}

.certificate-item img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 响应式 */
@media (max-width: 1200px) {
    .hero-content .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rpa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .services-grid,
    .advantages-grid,
    .rpa-grid {
        grid-template-columns: 1fr;
    }
    
    .knowledge-main {
        flex-direction: column;
    }
    
    .article-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* 关于页面样式 */
.page-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0f172a 100%);
}

.page-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
}

.app-meta-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.app-meta-center .meta-item {
    color: #fff;
    font-size: 14px;
    opacity: 0.9;
}

.page-breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 20px;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
    color: #00d4ff;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* 公司介绍 */
.about-intro {
    padding: 80px 0;
    background: #fff;
}

.intro-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    position: relative;
}

.intro-text .section-title {
    margin-bottom: 35px;
}

.intro-image {
    width: 360px;
    height: 260px;
    object-fit: cover;
    float: left;
    margin: 0 40px 30px 0;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.intro-paragraph {
    font-size: 17px;
    line-height: 2.1;
    color: #555;
    margin-bottom: 32px;
    text-align: justify;
    letter-spacing: 0.3px;
}

/* 企业文化 */
.culture-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.culture-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.culture-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.culture-card:hover::before {
    transform: scaleX(1);
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.culture-card:hover .culture-icon {
    transform: scale(1.1);
}

.culture-icon svg {
    width: 45px;
    height: 45px;
}

.culture-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1f35;
    margin-bottom: 16px;
}

.culture-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* 发展历程 */
.timeline-section {
    padding: 80px 0;
    background: #fff;
}

.timeline-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.timeline-stat-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    position: relative;
}

.timeline-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 2px;
}

.stat-number {
    margin-bottom: 15px;
}

.stat-number .number {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number .unit {
    font-size: 24px;
    color: #666;
    font-weight: 400;
    margin-left: 8px;
}

.stat-label {
    font-weight: 600;
    display: block;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 15px;
    margin-top: 8px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* 企业荣誉 */
.honor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
}

.honor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.honor-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.honor-image:hover {
    transform: scale(1.05);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .culture-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .honor-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .intro-image {
        width: 100%;
        float: none;
        margin: 0 0 20px 0;
    }

    .culture-cards {
        grid-template-columns: 1fr;
    }

    .timeline-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number .number {
        font-size: 40px;
    }

    .honor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .timeline-stats {
        grid-template-columns: 1fr;
    }

    .honor-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== 账户页面样式 ========== */
.account-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.account-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.account-card {
    background: #fff;
    padding: 45px;
    border-radius: 24px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.account-card:hover::before {
    transform: scaleX(1);
}

.account-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.account-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.account-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.account-card:hover .account-icon-wrapper {
    transform: scale(1.1);
}

.account-icon {
    width: 60px;
    height: 60px;
}

.account-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1f35;
    margin: 0;
    position: relative;
}

.account-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    border-radius: 2px;
}

.account-info {
    margin-top: 30px;
}

.info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.info-row:last-child {
    border-bottom: none;
}

.account-card:hover .info-row {
    background: rgba(0, 212, 255, 0.02);
}

.info-label {
    width: 100px;
    font-size: 14px;
    font-weight: normal;
    color: #999;
    flex-shrink: 0;
}

.info-value {
    font-size: 14px;
    color: #333;
    font-weight: normal;
}

.security-tip {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(124, 58, 237, 0.08));
    padding: 30px;
    border-radius: 16px;
    margin-top: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.tip-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-radius: 14px;
    color: #fff;
    flex-shrink: 0;
}

.tip-icon svg {
    width: 24px;
    height: 24px;
}

.tip-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1f35;
    margin-bottom: 8px;
}

.tip-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 768px) {
    .account-cards {
        grid-template-columns: 1fr;
    }
    
    .security-tip {
        flex-direction: column;
    }
}

/* ========== 百科页面样式 ========== */
.baike-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    margin-top: 0;
}

.baike-slogan {
    text-align: center;
    position: relative;
}

.baike-slogan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transform: translateY(-50%);
}

.baike-slogan h2 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.baike-slogan p {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* 百科分类 */
.baike-categories {
    padding: 100px 0;
    background: #fff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.category-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00d4ff 0%, #7c3aed 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleY(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.2);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
}

.category-card h3 a {
    color: #1a1f35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-card:hover h3 a {
    color: #00d4ff;
}

.category-count {
    font-size: 14px;
    color: #00d4ff;
    font-weight: 600;
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
}

.category-card ul {
    list-style: none;
    margin-top: 0;
    padding: 0;
}

.category-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card ul li:last-child {
    border-bottom: none;
}

.category-card ul li a {
    font-size: 15px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-card ul li a:hover {
    color: #00d4ff;
    padding-left: 8px;
}

/* 百科优势 */
.baike-advantages {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
    position: relative;
    overflow: hidden;
}

.baike-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 40%);
}

.advantage-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00d4ff 0%, #7c3aed 100%);
}

.advantage-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
    border-radius: 15px;
    margin-bottom: 20px;
    color: #00d4ff;
    transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-icon svg {
    width: 28px;
    height: 28px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.advantage-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* 百科发展历程 */
.baike-history {
    padding: 100px 0;
    background: #fff;
}

.history-header {
    text-align: center;
    margin-bottom: 60px;
}

.history-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.timeline-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.timeline-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.timeline-item:hover {
    transform: translateX(10px);
    border-left-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.timeline-year {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.timeline-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

/* 服务承诺 */
.baike-promise {
    padding: 50px 0;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    position: relative;
    overflow: hidden;
}

.baike-promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.promise-banner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.promise-banner h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* 服务项目 */
.baike-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

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

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

.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
}

.service-card img {
    width: 50px;
    height: 50px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1f35;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-link span {
    font-size: 12px;
    color: #999;
}

.service-link a {
    font-size: 14px;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link a:hover {
    text-decoration: underline;
    color: #7c3aed;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .baike-slogan h2 {
        font-size: 28px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .history-timeline {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== 联系页面样式 ========== */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px;
    border-radius: 20px;
}

.contact-wechat {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

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

.wechat-qrcode {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.wechat-label {
    font-size: 13px;
    color: #666;
}

.contact-details {
    margin-top: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 10px;
    color: #00d4ff;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
}

.detail-label {
    font-size: 12px;
    color: #999;
    text-align: left;
}

.detail-value {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    text-align: left;
}

.copyright-notice {
    margin-top: 30px;
    padding: 20px;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ef4444;
}

.copyright-notice h4 {
    font-size: 14px;
    color: #ef4444;
    margin-bottom: 10px;
}

.copyright-notice p {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
}

.contact-map {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.map-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1f35;
    margin-bottom: 20px;
}

.map-iframe {
    border-radius: 12px;
    min-height: 400px;
    flex-grow: 1;
}

/* ========== 律师页面样式 ========== */
.lawyer-section {
    padding: 80px 0;
    background: #fff;
}

.lawyer-content {
    max-width: 900px;
    margin: 0 auto;
}

.lawyer-statement {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
}

.statement-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1f35;
    margin-bottom: 25px;
    position: relative;
}

.statement-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 2px;
}

.statement-text {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 15px;
}

.statement-text:last-child {
    margin-bottom: 0;
}

.lawyer-profile {
    margin-bottom: 40px;
}

.profile-title {
    text-align: center;
    margin-bottom: 40px;
}

.profile-image-wrapper {
    position: relative;
    width: 280px;
    margin: 0 auto 30px;
}

.profile-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid transparent;
    border-radius: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%) padding-box,
                linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%) border-box;
    z-index: -1;
}

.profile-content {
    background: #f8fafc;
    padding: 35px;
    border-radius: 16px;
}

.profile-content p {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.profile-content p:last-child {
    margin-bottom: 0;
}

.lawyer-specialties {
    text-align: center;
    margin-top: 40px;
}

.specialties-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1f35;
    margin-bottom: 25px;
}

.specialties-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.specialty-tag {
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: #00d4ff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.specialty-tag:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: #fff;
}

/* ========== 响应式设计 ========== */
@media (max-width: 1024px) {
    .account-cards {
        grid-template-columns: 1fr;
    }

    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .history-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .baike-slogan h2 {
        font-size: 28px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wechat {
        flex-direction: column;
        align-items: center;
    }

    .profile-image-wrapper {
        width: 100%;
    }
}

/* ========== RPA计算器页面样式 ========== */
.calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.calculator-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    margin-bottom: 50px;
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.calc-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
}

.calc-icon {
    width: 60px;
    height: 60px;
}

.calculator-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1f35;
    margin-bottom: 10px;
}

.calculator-header p {
    font-size: 15px;
    color: #666;
}

.calculator-form {
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.form-group input {
    padding: 15px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    background: #fff;
}

.form-group input::placeholder {
    color: #999;
}

.calc-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.calc-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.calculator-result {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(124, 58, 237, 0.08));
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.result-placeholder {
    text-align: center;
    color: #999;
    padding: 30px 0;
}

.result-placeholder svg {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.result-placeholder p {
    font-size: 15px;
}

.result-header {
    margin-bottom: 20px;
}

.result-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1f35;
    margin: 0;
}

.result-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.result-label {
    font-size: 14px;
    color: #666;
}

.result-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.result-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    margin: 10px 0;
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 10px;
}

.total-label {
    font-size: 18px;
    font-weight: 600;
    color: #555;
}

.total-value {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 项目流程 */
.process-section {
    margin-bottom: 50px;
}

.process-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid transparent;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
    border-left-color: #00d4ff;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1f35;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* 服务说明 */
.service-notice {
    margin-top: 30px;
}

.service-notice .section-title {
    text-align: center;
    margin-bottom: 40px;
}

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

.notice-item {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.notice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.12);
}

.notice-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 14px;
    color: #00d4ff;
    flex-shrink: 0;
}

.notice-icon svg {
    width: 22px;
    height: 22px;
}

.notice-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1f35;
    margin-bottom: 8px;
}

.notice-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* 计算器页面响应式 */
@media (max-width: 1200px) {
    .form-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .notice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .calculator-card {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .total-value {
        font-size: 22px;
    }
}

/* ========== RPA应用市场页面样式 ========== */
.rpa-market-section {
    padding: 60px 0;
    background: #fff;
}

/* 搜索框 */
.search-container {
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.search-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.search-button svg {
    width: 18px;
    height: 18px;
}

/* 平台标签 */
.platform-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tags-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* 筛选栏容器 */
.filter-bar {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.tags-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    width: 125px;
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
    border-radius: 25px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(100, 116, 139, 0.15);
    text-align: center;
}

.tag-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    border-color: rgba(0, 212, 255, 0.2);
}

/* 应用列表 */
.rpa-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.rpa-app-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.rpa-app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.app-link {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: inherit;
}

.app-icon {
    width: 100%;
    height: 180px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rpa-app-card:hover .app-icon img {
    transform: scale(1.05);
}

.app-info {
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100px;
}

.app-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1f35;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-tags {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tags-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tag-version {
    padding: 5px 12px;
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    border-radius: 15px;
    font-size: 12px;
}

.tag-platform {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    border-radius: 15px;
    font-size: 12px;
}

.tag-price {
    padding: 5px 12px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 15px;
    font-size: 12px;
}

.app-desc {
    font-size: 13px;
    color: #999;
}

/* ========== RPA应用详情页面样式 ========== */
.rpa-detail-section {
    padding: 60px 0;
    background: #f8fafc;
}

/* 应用信息卡片 */
.app-detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.app-header {
    display: flex;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.app-main-icon {
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
}

.app-main-icon img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.app-main-info {
    flex: 1;
}

.app-main-info .app-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1f35;
    margin-bottom: 15px;
}

.app-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 14px;
    color: #666;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #1a1f35;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00d4ff;
    display: inline-block;
}

/* 价格方案 */
.pricing-section {
    margin-bottom: 30px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.pricing-card.featured {
    border-color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
}

.pricing-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.pricing-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    border-radius: 15px;
    font-size: 12px;
}

.pricing-price {
    font-size: 32px;
    font-weight: 700;
    color: #ef4444;
    margin: 20px 0;
}

.pricing-price.free {
    color: #22c55e;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
    color: #666;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* 操作按钮区域 */
.app-detail-card .action-section,
.rpa-detail-section .action-section,
.action-section {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -moz-box-orient: horizontal !important;
    -moz-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -moz-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -moz-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 15px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.action-section form {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -moz-box-orient: horizontal !important;
    -moz-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -moz-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -moz-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 15px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    color: #00d4ff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.action-btn svg {
    width: 18px;
    height: 18px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
}

.action-btn.primary {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-color: transparent;
    color: #fff;
}

.action-btn.secondary {
    background: #ef4444;
    border-color: transparent;
    color: #fff;
}

.limit-message {
    display: none;
    width: 100%;
    text-align: center;
    color: #ef4444;
    font-weight: 600;
    margin-top: 15px;
}

/* 登录提示 */
.login-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    border: 1px dashed rgba(0, 212, 255, 0.2);
}

.login-prompt svg {
    width: 48px;
    height: 48px;
    color: #00d4ff;
}

.login-prompt p {
    font-size: 15px;
    color: #666;
}

.login-prompt a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
}

/* 支付确认弹窗 */
.payment-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.payment-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.payment-modal {
    width: 100%;
    max-width: 460px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 24px;
    padding: 0;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-modal-header {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    padding: 25px 30px;
    text-align: center;
}

.payment-modal-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-modal-header h3::before {
    content: '📋';
    font-size: 24px;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg);
}

.payment-modal-body {
    padding: 30px;
}

.payment-info {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 15px;
    margin: 0 -15px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row span:first-child {
    color: #64748b;
    font-weight: 500;
}

.info-row span:last-child {
    color: #1e293b;
}
.payment-buttons {
    display: flex;
    gap: 15px;
}

.pay-btn {
    flex: 1;
    padding: 18px;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pay-btn.wechat {
    background: linear-gradient(135deg, #07c160, #10b981);
    color: #fff;
    box-shadow: 0 4px 15px rgba(7, 193, 96, 0.3);
}

.pay-btn.wechat:hover {
    background: linear-gradient(135deg, #06ad56, #059669);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(7, 193, 96, 0.4);
}

.pay-btn.alipay {
    background: linear-gradient(135deg, #1677ff, #3b82f6);
    color: #fff;
    box-shadow: 0 4px 15px rgba(22, 119, 255, 0.3);
}

.pay-btn.alipay:hover {
    background: linear-gradient(135deg, #0d6efd, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 119, 255, 0.4);
}

.pay-btn:active {
    transform: translateY(-1px);
}

/* 滚动订单通知 */
.order-scroll {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(124, 58, 237, 0.08));
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.scroll-container {
    overflow: hidden;
    position: relative;
    height: 40px;
}

.scroll-content {
    display: flex;
    height: 100%;
    animation: scroll-left 30s linear infinite;
    position: absolute;
    width: 200%;
}

.scroll-item {
    display: flex;
    align-items: center;
    padding: 0 30px;
    white-space: nowrap;
    font-size: 14px;
    color: #00d4ff;
}

.scroll-item a {
    color: #00d4ff;
    text-decoration: none;
}

@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* 友情提示 */
.tips-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #f59e0b;
}

.tips-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.tips-content {
    font-size: 14px;
    line-height: 2;
    color: #555;
}

.tips-content ol {
    padding-left: 20px;
}

.tips-content li {
    margin-bottom: 10px;
}

/* 系统环境信息 */
.system-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.system-banner {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 10px;
    margin-bottom: 20px;
}

.banner-highlight {
    font-size: 15px;
    font-weight: 600;
    color: #00d4ff;
}

.banner-highlight:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.banner-highlight-link {
    text-decoration: none;
}

.banner-highlight-link:hover {
    text-decoration: none;
}

/* ========== VIP页面样式 ========== */
/* VIP页面样式 */
.vip-page {
    padding: 50px 0;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
}

.vip-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.vip-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 30px 0;
}

.vip-header h1 {
    font-size: 36px;
    color: #1a1f35;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 会员卡片样式 */
.vip-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 70px;
}

.vip-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 35px 25px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.vip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
}

/* 选中卡片样式 */
.vip-card-selected {
    border-color: #00d4ff;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.18);
}

.vip-card-selected::before {
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
}

/* 最受欢迎标签 */
.vip-popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    z-index: 10;
}

.vip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 212, 255, 0.3);
}

.vip-card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.vip-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1f35;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.vip-card-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    border-radius: 3px;
}

.vip-card-price {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

.vip-card-period {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.5;
}

/* 权益列表样式 */
.vip-features {
    margin-bottom: 25px;
}

.vip-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.25s ease;
    background: transparent;
}

.vip-feature-item:hover {
    background: rgba(0, 212, 255, 0.05);
    padding-left: 14px;
}

.vip-feature-icon {
    margin-right: 10px;
    font-size: 16px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.vip-feature-icon.available {
    color: #22c55e;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.1);
}

.vip-feature-icon.unavailable {
    color: #94a3b8;
    font-weight: 500;
    background: rgba(148, 163, 184, 0.1);
}

.vip-feature-text {
    color: #475569;
    line-height: 1.4;
    font-weight: 400;
}

/* 按钮样式 */
.vip-card-footer {
    text-align: center;
}

.vip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 12px;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.vip-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.vip-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.35);
}

.vip-btn:hover::before {
    left: 100%;
}

.vip-btn:active {
    transform: translateY(-1px);
}

/* 常见问题样式 */
.vip-faq {
    background: #fff;
    border-radius: 20px;
    padding: 50px 60px;
    margin-bottom: 70px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.vip-faq h2 {
    font-size: 26px;
    color: #1a1f35;
    margin-bottom: 45px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.vip-faq h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    border-radius: 4px;
}

.vip-faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vip-faq-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    border: 1px solid #f1f5f9;
}

.vip-faq-item:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
}

.vip-faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.vip-faq-question:hover {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.vip-faq-question::after {
    content: '+';
    font-size: 20px;
    color: #00d4ff;
    font-weight: 300;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
}

.vip-faq-item.active .vip-faq-question::after {
    content: '−';
    transform: rotate(0deg);
}

.vip-faq-answer {
    font-size: 15px;
    color: #64748b;
    line-height: 1.75;
    padding: 20px 24px;
    background-color: #fff;
    border-top: 1px solid #f1f5f9;
}

/* 会员列表样式 */
.vip-member-list {
    background: #fff;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.vip-member-list h2 {
    font-size: 26px;
    color: #1a1f35;
    margin-bottom: 45px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.vip-member-list h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    border-radius: 4px;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.member-item {
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    border: 1px solid #f1f5f9;
    background: linear-gradient(135deg, #fff, #f8fafc);
}

.member-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.3);
}

.member-username {
    font-weight: 700;
    color: #1a1f35;
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.member-info {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.member-info p {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.member-info p:last-child {
    margin-bottom: 0;
}

.member-info .label {
    font-weight: 600;
    color: #475569;
}

/* 查看更多会员 */
.vip-more-members {
    text-align: center;
    margin: 25px 0 10px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
    border-radius: 14px;
    border: 1px dashed #00d4ff;
    color: #00d4ff;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.35s ease;
    cursor: pointer;
}

.vip-more-members:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.15);
    border-color: #7c3aed;
}

/* VIP响应式样式 */
@media (max-width: 1024px) {
    .vip-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vip-page {
        padding: 30px 0;
    }
    
    .vip-container {
        padding: 0 16px;
    }
    
    .vip-header h1 {
        font-size: 28px;
    }
    
    .vip-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vip-card {
        padding: 30px 20px;
    }
    
    .vip-faq {
        padding: 30px 20px;
    }
    
    .vip-faq h2 {
        font-size: 22px;
    }
    
    .vip-member-list {
        padding: 30px 20px;
    }
    
    .vip-member-list h2 {
        font-size: 22px;
    }
    
    .member-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-payment-modal {
        width: 90% !important;
        padding: 20px !important;
    }
}

/* VIP支付弹出层样式 */
.vip-payment-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.vip-payment-overlay.active {
    display: flex;
    animation: vipFadeIn 0.3s ease;
}

@keyframes vipFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.vip-payment-modal {
    width: 460px;
    background: linear-gradient(145deg, #fff, #f8fafc);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
    animation: vipSlideUp 0.4s ease;
}

@keyframes vipSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vip-payment-modal-header {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    padding: 22px 30px;
    text-align: center;
}

.vip-payment-modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.vip-payment-modal .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.vip-payment-modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg);
}

.vip-payment-modal-body {
    padding: 30px;
}

.vip-payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.vip-payment-method {
    flex: 1;
    padding: 20px 15px;
    background: #f8fafc;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s ease;
    border: 2px solid transparent;
}

.vip-payment-method:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.vip-payment-method.selected {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.08);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.vip-payment-method .icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.vip-payment-method .name {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.vip-payment-qr-code {
    text-align: center;
    margin-top: 0;
    padding: 25px;
    background: #f8fafc;
    border-radius: 14px;
}

.vip-payment-qr-code h4 {
    margin-bottom: 18px;
    color: #334155;
    font-size: 15px;
    font-weight: 600;
}

.vip-payment-qr-code img {
    max-width: 180px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vip-payment-info {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* ========== VIP页面样式结束 ========== */

.system-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.system-table th,
.system-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.system-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #333;
}

.system-table .qrcode-cell img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* 演示视频 */
.video-section {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.app-video {
    width: 100%;
    border-radius: 12px;
    max-height: 500px;
    object-fit: contain;
}

/* 功能介绍 */
.feature-section {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-content {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 25px;
}

.feature-content:last-child {
    margin-bottom: 0;
}

/* 版权说明 */
.copyright-section {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.copyright-content {
    font-size: 14px;
    line-height: 2;
    color: #666;
}

.copyright-content a {
    color: #00d4ff;
    text-decoration: none;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .app-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .app-main-info .app-title {
        font-size: 22px;
    }
    
    .app-meta {
        justify-content: center;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .action-section {
        display: -webkit-flex !important;
        display: -moz-flex !important;
        display: -ms-flex !important;
        display: -o-flex !important;
        display: flex !important;
        -webkit-flex-direction: row !important;
        -moz-flex-direction: row !important;
        -ms-flex-direction: row !important;
        -o-flex-direction: row !important;
        flex-direction: row !important;
        gap: 10px !important;
    }
    
    .action-btn {
        flex: 1;
        min-width: 120px;
        max-width: 180px;
        justify-content: center;
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .system-table {
        font-size: 12px;
    }
    
    .system-table th,
    .system-table td {
        padding: 10px 5px;
    }
}

@media (max-width: 480px) {
    .app-detail-card {
        padding: 20px;
    }
    
    .app-main-icon {
        width: 100px;
        height: 100px;
    }
}

/* ========== 分页样式 ========== */
.pagebar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagebar span {
    display: flex;
    align-items: center;
}

.pagebar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagebar a:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-color: #00d4ff;
    color: #00d4ff;
}

.pagebar .numbar {
    display: flex;
    gap: 8px;
}

.pagebar .numbar a.active {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-color: transparent;
    color: #fff;
}

.pagebar .numbar a.active:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

@media (max-width: 480px) {
    .pagebar {
        gap: 4px;
    }
    
    .pagebar a {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
        padding: 0 8px;
    }
    
    .pagebar .numbar {
        gap: 4px;
    }
}

/* 彩色黑洞浮动特效 */
.blackhole-float {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    cursor: pointer;
}

.blackhole-container {
    position: relative;
    width: 80px;
    height: 80px;
}

.blackhole-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #000 0%, #1a0a2e 60%, transparent 100%);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 20px 6px rgba(0, 0, 0, 0.8), 0 0 40px 12px rgba(124, 58, 237, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blackhole-text {
    color: #00d4ff;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(124, 58, 237, 0.6);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(124, 58, 237, 0.6);
    }
    100% {
        text-shadow: 0 0 15px rgba(0, 212, 255, 1), 0 0 30px rgba(124, 58, 237, 0.8), 0 0 40px rgba(6, 182, 212, 0.6);
    }
}

.blackhole-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid transparent;
    transform: translate(-50%, -50%);
}

.blackhole-ring-1 {
    width: 45px;
    height: 45px;
    border-top-color: #00d4ff;
    border-right-color: #00d4ff;
    animation: rotateBlackhole 1.5s linear infinite;
}

.blackhole-ring-2 {
    width: 58px;
    height: 58px;
    border-top-color: #7c3aed;
    border-left-color: #7c3aed;
    animation: rotateBlackhole 2s linear infinite reverse;
}

.blackhole-ring-3 {
    width: 70px;
    height: 70px;
    border-bottom-color: #06b6d4;
    border-right-color: #06b6d4;
    animation: rotateBlackhole 2.5s linear infinite;
}

.blackhole-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    animation: orbitDot 3s linear infinite;
}

.blackhole-dot-1 {
    background: #00d4ff;
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.blackhole-dot-2 {
    background: #7c3aed;
    top: 50%;
    right: 0;
    animation-delay: 0.5s;
}

.blackhole-dot-3 {
    background: #06b6d4;
    bottom: 0;
    left: 50%;
    animation-delay: 1s;
}

.blackhole-dot-4 {
    background: #fbbf24;
    top: 50%;
    left: 0;
    animation-delay: 1.5s;
}

@keyframes rotateBlackhole {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitDot {
    0% { transform: rotate(0deg) translateX(35px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(35px) rotate(-360deg); }
}

.blackhole-float:hover .blackhole-center {
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.9), 0 0 60px 20px rgba(124, 58, 237, 0.6), 0 0 80px 30px rgba(0, 212, 255, 0.3);
}

.blackhole-float:hover .blackhole-ring-1,
.blackhole-float:hover .blackhole-ring-2,
.blackhole-float:hover .blackhole-ring-3 {
    animation-duration: 0.8s;
}

.blackhole-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulseWave 2s ease-out infinite;
}

.blackhole-pulse:nth-child(6) {
    animation-delay: 0.5s;
}

.blackhole-pulse:nth-child(7) {
    animation-delay: 1s;
}

@keyframes pulseWave {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
    }
}