:root {
    --primary-color: #5b2c6f;
    --secondary-color: #1fa89e;
    --accent-color: #e8734a;
    --text-color: #2d2a32;
    --light-bg: #f7f4f0;
    --dark-bg: #1e1524;
    --surface: #ffffff;
    --border: rgba(91, 44, 111, 0.12);
    --radius: 12px;
    --radius-lg: 18px;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --transition-speed: 0.3s;
    --transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text-color);
    line-height: 1.65;
    background: var(--light-bg);
    overflow-x: hidden;
}

.lt-home section.zeaa43container.container,
.lt-nav > section.zeaa43container.container,
.lt-nav > .zeaa43container.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* 导航栏样式 */
.lt-nav.zeaa43navbar,
.zeaa43navbar.lt-nav {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: none;
    padding: 0.65rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.zeaa43navbar-brand img {
    height: 45px;
}

.zeaa43nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.zeaa43nav-link:hover {
    color: var(--secondary-color) !important;
}

/* 英雄区域样式 */
.lt-hero.zeaa43hero-section,
.zeaa43hero-section.lt-hero {
    background: linear-gradient(145deg, #1e1524 0%, var(--primary-color) 45%, #2a6f68 100%);
    color: #fff;
    padding: clamp(3rem, 8vw, 5.5rem) 0;
    position: relative;
    overflow: hidden;
}

.lt-hero.zeaa43hero-section::before,
.zeaa43hero-section.lt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(232, 115, 74, 0.25), transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(31, 168, 158, 0.2), transparent 40%);
    pointer-events: none;
}

.zeaa43hero-content {
    position: relative;
    z-index: 1;
}

.zeaa43hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.zeaa43hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* 英雄区域图片样式 */
.zeaa43hero-image-container {
    position: relative;
    height: auto;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-top: 2rem;
}

.zeaa43hero-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* 平板设备响应式 */
@media (max-width: 991px) {
    .zeaa43hero-image-container {
        min-height: 250px;
        margin-top: 1.5rem;
    }
    
    .zeaa43hero-image {
        max-width: 250px;
    }
}

/* 手机设备响应式 */
@media (max-width: 767px) {
    .zeaa43hero-image-container {
        min-height: 200px;
        margin-top: 1rem;
        padding: 0.5rem;
    }
    
    .zeaa43hero-image {
        max-width: 200px;
        border-radius: 12px;
    }
}

/* 小屏手机响应式 */
@media (max-width: 575px) {
    .zeaa43hero-image-container {
        min-height: 180px;
        margin-top: 0.5rem;
    }
    
    .zeaa43hero-image {
        max-width: 180px;
        border-radius: 10px;
    }
}

/* 移除不必要的动画和效果 */
.zeaa43hero-image {
    transform: none;
    animation: none;
}

.zeaa43hero-image:hover {
    transform: none;
}

.zeaa43hero-image-shadow {
    display: none;
}

/* 优化图片加载 */
.zeaa43hero-image {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* 移除加载占位符 */
.zeaa43hero-image-container::before {
    display: none;
}

/* 英雄区域按钮样式 */
.zeaa43hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.zeaa43hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zeaa43hero-buttons .btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: #0a58ca;
    border: none;
}

.zeaa43hero-buttons .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: white;
}

.zeaa43hero-buttons .btn-primary {
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
    border: none;
    color: white;
}

.zeaa43hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #084298 0%, #0a58ca 100%);
}

.zeaa43hero-buttons .btn i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .zeaa43hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .zeaa43hero-buttons .btn {
        width: 100%;
    }
}

/* 特点卡片样式 */
.zeaa43feature-card {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) var(--transition-easing),
                box-shadow var(--transition-speed) var(--transition-easing);
    border: none;
    height: 100%;
    background: white;
}

.zeaa43feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.zeaa43feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(10, 88, 202, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* 按钮样式 */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    border: none;
}

.download-btn:hover {
    background-color: #ffca2c;
    transform: translateY(-2px);
}

.register-btn {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.register-btn:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* 下载区域样式 */
.zeaa43download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.zeaa43download-header {
    max-width: 600px;
    margin: 0 auto;
}

.zeaa43download-header h2 {
    color: #0a58ca;
    font-weight: 700;
    margin-bottom: 1rem;
}

.zeaa43download-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.zeaa43download-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) var(--transition-easing),
                box-shadow var(--transition-speed) var(--transition-easing);
    background: #fff;
}

.zeaa43download-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.zeaa43platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.zeaa43ios-icon {
    background: linear-gradient(135deg, #007AFF 0%, #0056b3 100%);
    color: white;
}

.zeaa43android-icon {
    background: linear-gradient(135deg, #3DDC84 0%, #2BB673 100%);
    color: white;
}

.zeaa43download-info {
    background: rgba(10, 88, 202, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.zeaa43info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.zeaa43info-item:last-child {
    margin-bottom: 0;
}

.zeaa43info-item i {
    color: #0a58ca;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.zeaa43info-item span {
    color: #495057;
}

.zeaa43download-action .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.zeaa43download-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.zeaa43download-guide {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.zeaa43guide-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(10, 88, 202, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.zeaa43guide-item:hover {
    transform: translateX(5px);
    background: rgba(10, 88, 202, 0.1);
}

.zeaa43guide-item i {
    font-size: 2rem;
    color: #0a58ca;
    margin-right: 1.5rem;
}

.zeaa43guide-content h4 {
    color: #0a58ca;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.zeaa43guide-content p {
    color: #6c757d;
    margin-bottom: 0;
}

/* 安全保障区域样式 */
.zeaa43security-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.zeaa43security-header {
    max-width: 600px;
    margin: 0 auto;
}

.zeaa43security-header h2 {
    color: #0a58ca;
    font-weight: 700;
    margin-bottom: 1rem;
}

.zeaa43security-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.zeaa43security-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.zeaa43security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.zeaa43security-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
    color: white;
}

.zeaa43security-card h3 {
    color: #0a58ca;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.zeaa43security-features {
    background: rgba(10, 88, 202, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.zeaa43feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.zeaa43feature-item:last-child {
    margin-bottom: 0;
}

.zeaa43feature-item i {
    color: #0a58ca;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.zeaa43feature-item span {
    color: #495057;
}

/* 安全认证样式 */
.zeaa43security-certificates {
    margin-top: 4rem;
}

.zeaa43certificate-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.zeaa43certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.zeaa43certificate-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
    color: white;
}

.zeaa43certificate-card h4 {
    color: #0a58ca;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.zeaa43certificate-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* 统计数据区域样式 */
.zeaa43stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
}

.zeaa43stat-item {
    text-align: center;
}

.zeaa43stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.zeaa43stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 页脚样式 */
.zeaa43footer {
    background: #f8f9fa;
    padding: 60px 0 30px;
    color: #495057;
}

.zeaa43footer-brand img {
    max-width: 100%;
    height: auto;
}

.zeaa43footer-title {
    color: #0a58ca;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.zeaa43footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zeaa43footer-links li {
    margin-bottom: 0.75rem;
}

.zeaa43footer-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zeaa43footer-link:hover {
    color: #0a58ca;
}

.zeaa43footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    color: #6c757d;
}

/* 移动端响应式 */
@media (max-width: 991px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-title {
        margin-top: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 767px) {
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-brand img {
        height: 35px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-top: 1.25rem;
    }
    
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    footer {
        padding: 25px 0 10px;
    }
    
    .footer-brand img {
        height: 30px;
    }
    
    .footer-title {
        font-size: 0.95rem;
        margin-top: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.3rem;
    }
    
    .footer-bottom {
        padding-top: 0.75rem;
        font-size: 0.85rem;
    }
}

.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .zeaa43hero-title {
        font-size: 3rem;
    }
    
    .zeaa43hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .zeaa43hero-title {
        font-size: 2.5rem;
    }
    
    .zeaa43feature-card {
        margin-bottom: 1.5rem;
    }
    
    .zeaa43download-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .zeaa43hero-title {
        font-size: 2rem;
    }
    
    .zeaa43hero-subtitle {
        font-size: 1rem;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .zeaa43feature-card {
        margin-bottom: 1rem;
    }
    
    .zeaa43download-card {
        margin-bottom: 1rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .zeaa43hero-title {
        font-size: 1.75rem;
    }
    
    .zeaa43hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .zeaa43feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .zeaa43download-card {
        padding: 1rem;
    }
}

/* APP预览样式 */
.app-preview-container {
    position: relative;
    perspective: 1000px;
    height: 500px;
}

.app-preview {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.app-screen {
    position: absolute;
    width: 280px;
    height: 580px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.app-screen:nth-child(1) {
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotateY(-15deg);
    z-index: 3;
}

.app-screen:nth-child(2) {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.app-screen:nth-child(3) {
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotateY(15deg);
    z-index: 1;
}

.app-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-preview-shadow {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent);
    border-radius: 50%;
    filter: blur(10px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 992px) {
    .app-preview-container {
        height: 400px;
    }
    
    .app-screen {
        width: 200px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    .app-preview-container {
        height: 300px;
    }
    
    .app-screen {
        width: 150px;
        height: 320px;
    }
}

/* 添加加载动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zeaa43hero-content,
.zeaa43feature-card,
.zeaa43download-card,
.zeaa43faq-item {
    animation: fadeIn 0.6s var(--transition-easing) forwards;
}

/* 优化滚动行为 */
html {
    scroll-behavior: smooth;
}

/* 优化图片加载 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 优化按钮点击效果 */
.btn {
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

/* 优化表单元素 */
input, select, textarea {
    transition: border-color var(--transition-speed) var(--transition-easing);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(10, 88, 202, 0.25);
}

/* 基础响应式设置 */
html {
    font-size: 16px;
}

/* PC端响应式 */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .zeaa43hero-title {
        font-size: 3.5rem;
    }
    
    .zeaa43hero-subtitle {
        font-size: 1.25rem;
    }
    
    .zeaa43feature-card {
        padding: 2rem;
    }
    
    .zeaa43download-card {
        padding: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .zeaa43hero-title {
        font-size: 3rem;
    }
    
    .zeaa43hero-subtitle {
        font-size: 1.1rem;
    }
    
    .zeaa43feature-card {
        padding: 1.5rem;
    }
    
    .zeaa43download-card {
        padding: 1.5rem;
    }
}

/* 平板设备响应式 */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .zeaa43hero-title {
        font-size: 2.5rem;
    }
    
    .zeaa43hero-image-container {
        height: 400px;
        justify-content: center;
        padding-right: 0;
    }
    
    .zeaa43hero-image {
        transform: rotateY(-5deg);
    }
    
    .zeaa43feature-card {
        margin-bottom: 1.5rem;
    }
    
    .zeaa43download-card {
        margin-bottom: 1.5rem;
    }
    
    .footer {
        text-align: center;
    }
}

/* 手机设备响应式 */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .zeaa43hero-title {
        font-size: 2rem;
    }
    
    .zeaa43hero-subtitle {
        font-size: 1rem;
    }
    
    .zeaa43hero-image-container {
        height: 300px;
    }
    
    .zeaa43hero-image {
        max-width: 100%;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .zeaa43hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .zeaa43hero-buttons .btn {
        width: 100%;
    }
    
    .zeaa43feature-card {
        margin-bottom: 1rem;
    }
    
    .zeaa43download-card {
        margin-bottom: 1rem;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
}

/* 小屏手机响应式 */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .zeaa43hero-title {
        font-size: 1.75rem;
    }
    
    .zeaa43hero-subtitle {
        font-size: 0.9rem;
    }
    
    .zeaa43hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .zeaa43feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .zeaa43download-card {
        padding: 1rem;
    }
    
    .footer {
        padding: 2rem 0;
    }
    
    .footer-title {
        margin-top: 1.5rem;
    }
}

/* 优化图片响应式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 优化表格响应式 */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* 优化表单响应式 */
.form-control {
    width: 100%;
}

/* 优化导航栏响应式 */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 优化卡片响应式 */
.card {
    margin-bottom: 1rem;
}

/* 优化按钮响应式 */
.btn {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 优化列表响应式 */
.list-group-item {
    padding: 0.75rem 1rem;
}

/* 优化模态框响应式 */
.modal-dialog {
    margin: 1rem auto;
}

@media (max-width: 575px) {
    .modal-dialog {
        margin: 0.5rem;
    }
}

/* ========== Letstalk 新版首页布局 ========== */
.lt-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.lt-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 1rem;
}

.lt-hero .zeaa43hero-title {
    font-size: clamp(1.85rem, 4.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.lt-hero .zeaa43hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    opacity: 0.92;
    max-width: 36em;
}

.lt-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 1rem;
}

.lt-btn-primary {
    background: var(--accent-color) !important;
    border: none !important;
    color: #fff !important;
    border-radius: var(--radius) !important;
    padding: 0.7rem 1.35rem !important;
    font-weight: 600;
    white-space: normal;
}

.lt-btn-primary:hover {
    background: #d65f38 !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.lt-btn-outline {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.85) !important;
    color: #fff !important;
    border-radius: var(--radius) !important;
    padding: 0.65rem 1.25rem !important;
    font-weight: 600;
    white-space: normal;
}

.lt-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}

.lt-download .lt-btn-outline {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.lt-download .lt-btn-outline:hover {
    background: rgba(91, 44, 111, 0.08) !important;
}

.lt-hero-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.lt-hero-tags li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.lt-hero-card {
    margin: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    max-width: 320px;
    margin-left: auto;
}

.lt-hero-card .zeaa43hero-image {
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.lt-section {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.lt-features {
    background: var(--surface);
}

.lt-section-head {
    max-width: 42rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.lt-section-head h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

.lt-section-head p {
    color: var(--gray-600);
    margin: 0;
}

.lt-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

.lt-bento-item {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lt-bento-item:hover {
    border-color: rgba(31, 168, 158, 0.35);
    box-shadow: 0 8px 24px rgba(91, 44, 111, 0.08);
}

.lt-bento-wide {
    grid-column: span 2;
}

.lt-bento-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.lt-bento-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.lt-bento-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.lt-stats.zeaa43stats-section {
    background: linear-gradient(90deg, var(--primary-color), #3d7a73);
    padding: 2.5rem 0;
}

.lt-stats-row {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.lt-stats-row .zeaa43stat-item {
    text-align: center;
    padding: 0.5rem;
}

.lt-stats-row .zeaa43stat-number {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    display: block;
}

.lt-download {
    background: var(--light-bg);
}

.lt-download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.lt-dl-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    padding: 1.25rem !important;
    box-shadow: none !important;
    height: 100%;
    overflow: hidden;
    background: var(--surface) !important;
}

.lt-dl-card:hover {
    transform: none;
    border-color: rgba(31, 168, 158, 0.4) !important;
    box-shadow: 0 6px 20px rgba(91, 44, 111, 0.1) !important;
}

.lt-dl-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.lt-dl-head h3 {
    font-size: 1.05rem;
    margin: 0 0 0.2rem;
    color: var(--primary-color);
}

.lt-dl-head p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.lt-dl-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    flex: 1;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.lt-dl-list li {
    padding: 0.35rem 0 0.35rem 1.1rem;
    position: relative;
}

.lt-dl-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.lt-download-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 1.5rem auto 0;
    max-width: 40rem;
}

.lt-icon-accent {
    background: linear-gradient(135deg, var(--accent-color), #c95a38) !important;
    color: #fff !important;
}

.lt-security {
    background: var(--surface);
}

.lt-security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.lt-sec-card {
    padding: 1.35rem !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: none !important;
    height: 100%;
    text-align: center;
}

.lt-sec-card .zeaa43security-icon {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--secondary-color), #178f86);
}

.lt-sec-card h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.lt-sec-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin: 0;
}

.lt-faq {
    background: var(--light-bg);
}

.lt-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.lt-faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
}

.lt-faq-item h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.lt-faq-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.lt-articles {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.lt-article-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.lt-article-bar h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.35rem;
}

.lt-article-card {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: none !important;
}

.lt-article-card .card-body {
    padding: 0.85rem 1rem;
}

.zeaa43thumb-home {
    height: 140px;
    width: 100%;
    object-fit: cover;
}

.lt-footer.zeaa43footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.75);
    padding: 2.5rem 0 1.5rem;
}

.lt-footer .zeaa43footer-title {
    color: #fff;
}

.lt-footer .zeaa43footer-link,
.lt-footer a {
    color: rgba(255, 255, 255, 0.7);
}

.lt-footer .zeaa43footer-link:hover,
.lt-footer a:hover {
    color: var(--accent-color);
}

.lt-footer .zeaa43footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lt-inner {
    background: var(--light-bg);
}

.lt-inner .card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.lt-inner .card-body {
    padding: 1.25rem;
}

.zeaa43download-header h2,
.zeaa43security-header h2 {
    color: var(--primary-color);
}

.zeaa43ios-icon {
    background: linear-gradient(135deg, #5b2c6f, #3d1f4d) !important;
}

.zeaa43android-icon {
    background: linear-gradient(135deg, var(--secondary-color), #178f86) !important;
}

.zeaa43info-item i,
.zeaa43feature-item i {
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .lt-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lt-hero-copy .zeaa43hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .lt-hero-actions {
        justify-content: center;
    }

    .lt-hero-tags {
        justify-content: center;
    }

    .lt-hero-card {
        margin: 0 auto;
    }

    .lt-bento-wide {
        grid-column: span 1;
    }

    .lt-bento {
        grid-template-columns: 1fr;
    }

    .lt-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .lt-download-grid {
        grid-template-columns: 1fr;
    }

    .lt-security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .lt-nav .navbar-collapse {
        width: 100%;
        margin-top: 0.5rem;
        padding: 0.75rem;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        max-height: 70vh;
        overflow-y: auto;
    }

    .lt-faq-grid {
        grid-template-columns: 1fr;
    }

    .lt-security-grid {
        grid-template-columns: 1fr;
    }

    .lt-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .lt-dl-head {
        flex-direction: row;
        align-items: center;
    }

    .zeaa43thumb-home {
        height: 110px !important;
    }

    #article .row {
        --bs-gutter-x: 0.75rem;
    }
}

@media (max-width: 575px) {
    .lt-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .lt-bento-item,
    .lt-faq-item,
    .lt-dl-card,
    .lt-sec-card {
        padding: 1rem !important;
    }
}

/* 下载区域手机端专用修复，避免卡片和按钮错位 */
@media (max-width: 767px) {
    .zeaa43download-section {
        padding: 48px 0;
    }

    .zeaa43download-header {
        margin-bottom: 1.5rem !important;
    }

    .zeaa43download-header h2 {
        font-size: 1.6rem;
    }

    .zeaa43download-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .zeaa43download-section .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 0;
    }

    .lt-dl-card,
    .zeaa43download-card {
        border-radius: var(--radius);
        margin-bottom: 0 !important;
    }

    .lt-dl-card {
        padding: 1rem !important;
    }

    .zeaa43platform-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .zeaa43download-info {
        padding: 1rem;
        margin-bottom: 1rem !important;
    }

    .zeaa43info-item {
        align-items: flex-start;
    }

    .zeaa43info-item i {
        margin-top: 0.2rem;
    }

    .zeaa43download-action .btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
}

/* 列表页/内容页/首页移动端自适应修复 */
.pagebar .pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pagebar .pagelist li {
    display: inline-flex;
    margin: 0;
}

@media (max-width: 767px) {
    .zeaa43navbar {
        padding: 0.5rem 0;
    }

    .zeaa43navbar .navbar-collapse {
        margin-top: 0.5rem;
        max-height: 72vh;
        overflow-y: auto;
    }

    .zeaa43navbar .navbar-nav .nav-link {
        padding: 0.55rem 0.25rem !important;
        font-size: 0.95rem;
    }

    #article .card-body {
        padding: 0.75rem;
    }

    #article .zeaa43thumb-home {
        height: 96px !important;
    }

    #article h3.h5 {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .listbox .e2 li {
        padding-bottom: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .listbox .e2 li h2.h5 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
        line-height: 1.35;
    }

    .listbox .e2 li p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .zeaa43thumb-list,
    .zeaa43thumb-related {
        height: 72px !important;
    }

    .zeaa43thumb-side {
        height: 50px !important;
    }

    .zeaa43thumb-cover {
        max-width: 100% !important;
        width: 100%;
        height: 170px !important;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    #article .zeaa43thumb-home {
        height: 88px !important;
    }

    .zeaa43thumb-list,
    .zeaa43thumb-related {
        height: 64px !important;
    }

    .zeaa43thumb-side {
        height: 46px !important;
    }

    .zeaa43thumb-cover {
        height: 150px !important;
    }

    .pagebar .pagelist {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
    }
}