        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        :root {
            --primary-color: #0a1f44;
            --secondary-color: #1a73e8;
            --accent-color: #00c9ff;
            --light-color: #f0f5ff;
            --dark-color: #050a15;
            --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        body {
            background-color: var(--dark-color);
            color: #f0f0f0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 头部和导航栏 */
        header {
            background-color: rgba(10, 31, 68, 0.95);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(26, 115, 232, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 2px solid white;  /* 改为白色 */
}
        
        .logo-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: white;
            text-shadow: var(--text-shadow);
            letter-spacing: 1px;
        }
        
        .logo-text span {
            color: var(--accent-color);
        }
        
        /* 汉堡菜单 */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }
        
        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: white;
            margin: 4px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-6px, 6px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-6px, -6px);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--accent-color);
            background-color: rgba(26, 115, 232, 0.1);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            left: 50%;
            bottom: 0;
            transition: all 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 80%;
            left: 10%;
        }
        
        /* 主内容区域 */
            .hero {
            padding-top: 120px;
            padding-bottom: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(5, 10, 21, 0.9), rgba(10, 31, 68, 0.8));
            z-index: -1;
        }
        
        .hero h1 {
            font-size: 30px;
            margin-bottom: 20px;
            color: white;
            text-shadow: var(--text-shadow);
        }
        
        .hero h1 span {
            color: var(--accent-color);
        }
        
        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #e0e0e0;
        }
        
    /* 轮播图 */
        .carousel-container {
            max-width: 1000px;
            margin: 40px auto 80px;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        
        .carousel {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .carousel-slide {
            min-width: 100%;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
        
        .carousel-slide-content {
            position: relative;
            z-index: 1;
            color: white;
            text-align: center;
            padding: 30px;
            max-width: 800px;
        }
        
        .carousel-slide-content h3 {
            font-size: 32px;
            margin-bottom: 15px;
            color: var(--accent-color);
            text-shadow: var(--text-shadow);
        }
        
        .carousel-slide-content p {
            font-size: 18px;
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(26, 115, 232, 0.7);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .carousel-btn:hover {
            background-color: var(--secondary-color);
        }
        
        .prev-btn {
            left: 20px;
        }
        
        .next-btn {
            right: 20px;
        }
        
        .carousel-indicators {
            display: flex;
            justify-content: center;
            position: absolute;
            bottom: 20px;
            width: 100%;
            z-index: 10;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background-color: var(--accent-color);
            transform: scale(1.2);
        }
        
        /* 公司信息部分 */
        .company-info {
            padding: 80px 0;
            background-color: var(--primary-color);
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            color: white;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: var(--accent-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .info-card {
            background-color: rgba(5, 10, 21, 0.7);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--box-shadow);
            border-left: 4px solid var(--accent-color);
            transition: transform 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-10px);
        }
        
        .info-card h3 {
            color: var(--accent-color);
            margin-bottom: 15px;
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .info-card h3 i {
            font-size: 20px;
        }
        
        .info-card p {
            margin-bottom: 10px;
            color: #d0d0d0;
        }
        
        /* 合作伙伴部分 */
        .partners {
            padding: 80px 0;
            background-color: var(--dark-color);
        }
        
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
        }
        
        .partner-logo {
            width: 180px;
            height: 100px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-color);
            box-shadow: var(--box-shadow);
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover {
            transform: scale(1.05);
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* 页脚和版权 */
        footer {
            background-color: #050a15;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(26, 115, 232, 0.2);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-size: 22px;
        }
        
        .footer-section p {
            color: #b0b0b0;
            margin-bottom: 10px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .carousel-slide {
                height: 350px;
            }
            
            nav ul {
                gap: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            nav ul {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: rgba(10, 31, 68, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                z-index: 1000;
                gap: 30px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            nav ul.active {
                right: 0;
            }
            
            .hero {
                padding-top: 100px;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .carousel-slide {
                height: 300px;
            }
            
            .carousel-slide-content h3 {
                font-size: 24px;
            }
            
            .section-title {
                font-size: 28px;
            }
        }
        
        @media (max-width: 576px) {
            .logo-text {
                font-size: 20px;
            }
            
            .carousel-slide {
                height: 250px;
            }
            
            .carousel-slide-content h3 {
                font-size: 20px;
            }
            
            .carousel-slide-content p {
                font-size: 16px;
            }
            
            .info-card {
                padding: 20px;
            }
        }
		
		
		
		
		
		
		.cp-products-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1a33 0%, #0c2340 100%);
    position: relative;
    overflow: hidden;
}

.cp-products-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(26, 115, 232, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 201, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.cp-products-services .container {
    position: relative;
    z-index: 1;
}

/* 标题样式 */
.cp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cp-section-title {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
    text-shadow: var(--text-shadow);
    position: relative;
    display: inline-block;
}

.cp-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.cp-line-left, .cp-line-right {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
    flex: 1;
    max-width: 150px;
}

.cp-line-right {
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.cp-section-subtitle {
    color: white;
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
    opacity: 0.9;
}

/* 业务详情通用样式 */
.cp-business-detail {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
    background: rgba(5, 15, 30, 0.7);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(26, 115, 232, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cp-business-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 201, 255, 0.3);
}

.cp-business-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 350px;
}

.cp-business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cp-business-detail:hover .cp-business-image img {
    transform: scale(1.05);
}

.cp-image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cp-business-content {
    flex: 1;
}

.cp-business-number {
    font-size: 60px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.9;
}

.cp-business-title {
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.cp-business-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.cp-business-description {
    color: white;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
    opacity: 0.9;
}

.cp-business-features {
    list-style: none;
    margin-bottom: 25px;
}

.cp-business-features li {
    color: white;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.cp-business-features li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 14px;
}

/* 业务1特定样式 */
.cp-left-image {
    flex-direction: row;
}

.cp-business-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.cp-stat-item {
    text-align: center;
}

.cp-stat-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: white;
    line-height: 1;
    opacity: 0.9;
}

.cp-stat-label {
    display: block;
    font-size: 14px;
    color: white;
    margin-top: 5px;
    opacity: 0.8;
}

/* 业务2特定样式 */
.cp-right-image {
    flex-direction: row-reverse;
}

.cp-materials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.cp-material-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    min-width: 80px;
    transition: all 0.3s ease;
}

.cp-material-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.cp-material-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.cp-material-item span {
    font-size: 14px;
    color: white;
    opacity: 0.9;
}

/* 产品详情样式 */
.cp-product-detail {
    margin-top: 60px;
    background: rgba(5, 10, 21, 0.8);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 201, 255, 0.1);
}

.cp-product-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.cp-product-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 400px;
}

.cp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cp-product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff3366, #ff6633);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.cp-product-sizes {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.cp-size-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    min-width: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cp-size-item:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cp-size-item.active {
    background: rgba(0, 201, 255, 0.8);
    border-color: var(--accent-color);
}

.cp-size-value {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.cp-size-label {
    display: block;
    font-size: 12px;
    color: white;
    margin-top: 5px;
    opacity: 0.9;
}

.cp-product-info {
    flex: 1;
}

.cp-product-name {
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cp-product-description {
    color: white;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
    opacity: 0.9;
}

.cp-product-specs {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

.cp-product-specs h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.cp-product-specs h4 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.cp-product-specs ul {
    list-style: none;
}

.cp-product-specs li {
    color: white;
    margin-bottom: 10px;
    padding-left: 5px;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding-left: 15px;
    opacity: 0.9;
}

.cp-product-specs li strong {
    color: white;
    opacity: 1;
}

.cp-product-applications {
    margin-bottom: 30px;
}

.cp-product-applications h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.cp-product-applications h4 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.cp-applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cp-application-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.cp-application-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.cp-application-item i {
    font-size: 20px;
    color: var(--accent-color);
    margin-right: 15px;
}

.cp-application-item span {
    color: white;
    font-size: 15px;
    opacity: 0.9;
}

.cp-product-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.cp-btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cp-btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border: none;
}

.cp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
}

.cp-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .cp-business-detail,
    .cp-product-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .cp-left-image,
    .cp-right-image {
        flex-direction: column;
    }
    
    .cp-business-image {
        min-height: 300px;
        width: 100%;
    }
    
    .cp-product-image {
        min-height: 350px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cp-section-title {
        font-size: 28px;
    }
    
    .cp-business-title {
        font-size: 24px;
    }
    
    .cp-product-name {
        font-size: 26px;
    }
    
    .cp-business-detail,
    .cp-product-detail {
        padding: 25px;
    }
    
    .cp-business-stats {
        justify-content: center;
    }
    
    .cp-applications-grid {
        grid-template-columns: 1fr;
    }
    
    .cp-product-actions {
        flex-direction: column;
    }
    
    .cp-line-left, .cp-line-right {
        max-width: 100px;
    }
}

@media (max-width: 576px) {
    .cp-products-services {
        padding: 60px 0;
    }
    
    .cp-section-title {
        font-size: 24px;
    }
    
    .cp-business-title {
        font-size: 22px;
    }
    
    .cp-business-number {
        font-size: 50px;
    }
    
    .cp-materials-list {
        justify-content: center;
    }
    
    .cp-size-item {
        min-width: 50px;
        padding: 8px;
    }
    
    .cp-size-value {
        font-size: 18px;
    }
    
    .cp-line-left, .cp-line-right {
        max-width: 80px;
    }
}





.lxwm-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1f44 0%, #0c2340 100%);
    position: relative;
    overflow: hidden;
}

.lxwm-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 201, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(26, 115, 232, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.lxwm-contact-section .container {
    position: relative;
    z-index: 1;
}

/* 标题样式 */
.lxwm-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.lxwm-section-title {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
    text-shadow: var(--text-shadow);
    position: relative;
    display: inline-block;
}

.lxwm-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.lxwm-line-left, .lxwm-line-right {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
    flex: 1;
    max-width: 150px;
}

.lxwm-line-right {
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.lxwm-section-subtitle {
    color: white;
    font-size: 18px;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
    opacity: 0.9;
}

/* 联系信息容器 */
.lxwm-contact-container {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

/* 联系信息部分 */
.lxwm-contact-info {
    flex: 1;
}

.lxwm-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.lxwm-info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 201, 255, 0.3);
    transform: translateY(-5px);
}

.lxwm-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.lxwm-info-content {
    flex: 1;
}

.lxwm-info-content h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.lxwm-info-content p {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 5px;
}

.lxwm-info-note {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-style: italic;
    margin-top: 5px;
}

/* 营业时间 */
.lxwm-business-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.lxwm-business-hours h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lxwm-business-hours h3 i {
    color: var(--accent-color);
}

.lxwm-business-hours ul {
    list-style: none;
}

.lxwm-business-hours li {
    display: flex;
    justify-content: space-between;
    color: white;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.9;
}

.lxwm-business-hours li:last-child {
    border-bottom: none;
}

.lxwm-business-hours li span:first-child {
    font-weight: 500;
}

.lxwm-business-hours li span:last-child {
    color: rgba(255, 255, 255, 0.8);
}

/* 联系表单部分 */
.lxwm-contact-form {
    flex: 1.2;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lxwm-form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lxwm-form-header h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lxwm-form-header h3 i {
    color: var(--accent-color);
}

.lxwm-form-header p {
    color: white;
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.6;
}

.lxwm-required {
    color: #ff4757;
    margin-left: 2px;
}

/* 表单样式 */
.lxwm-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lxwm-form-group {
    display: flex;
    flex-direction: column;
}

.lxwm-form-group label {
    color: white;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.lxwm-form-group input,
.lxwm-form-group textarea,
.lxwm-form-group select {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 14px 15px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.lxwm-form-group input:focus,
.lxwm-form-group textarea:focus,
.lxwm-form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 201, 255, 0.1);
}

.lxwm-form-group input::placeholder,
.lxwm-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.lxwm-form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.lxwm-form-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    font-style: italic;
}

/* 单选按钮组 */
.lxwm-radio-group {
    margin-top: 10px;
}

.lxwm-radio-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.lxwm-radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lxwm-radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.lxwm-radio-option label {
    color: white;
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
    opacity: 0.9;
}

/* 复选框组 */
.lxwm-checkbox-group {
    margin-top: 10px;
}

.lxwm-checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.lxwm-checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.lxwm-checkbox-option label {
    color: white;
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
    opacity: 0.9;
}

.lxwm-privacy-link {
    margin-left: 28px;
}

.lxwm-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lxwm-link:hover {
    text-decoration: underline;
    color: white;
}

/* 表单按钮 */
.lxwm-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lxwm-submit-btn,
.lxwm-reset-btn {
    flex: 1;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
}

.lxwm-submit-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
}

.lxwm-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
}

.lxwm-reset-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lxwm-reset-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .lxwm-contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .lxwm-contact-info,
    .lxwm-contact-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .lxwm-section-title {
        font-size: 28px;
    }
    
    .lxwm-contact-section {
        padding: 60px 0;
    }
    
    .lxwm-contact-form {
        padding: 25px;
    }
    
    .lxwm-form-actions {
        flex-direction: column;
    }
    
    .lxwm-line-left, .lxwm-line-right {
        max-width: 100px;
    }
}

@media (max-width: 576px) {
    .lxwm-section-title {
        font-size: 24px;
    }
    
    .lxwm-info-card {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .lxwm-info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .lxwm-form-header h3 {
        font-size: 20px;
    }
    
    .lxwm-line-left, .lxwm-line-right {
        max-width: 80px;
    }
}
