:root {
    --primary-color: #0f766e;
    --secondary-color: #115e59;
    --accent-color: #7c3aed;
    --accent-warm: #f59e0b;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --light-bg: #f8fafc;
    --surface: #ffffff;
    --border-color: #e2e8f0;
    --dark-bg: #0f172a;
    --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.6;
    overflow-x: hidden;
    background: var(--light-bg);
}

/* ========== Letstalk 新版首页 ========== */
.lt-nav {
    background: var(--surface) !important;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none !important;
    padding: 0.65rem 0 !important;
}

.lt-nav .z0170enav-link:hover,
.lt-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.lt-hero {
    position: relative;
    padding: 4.5rem 0 4rem;
    color: #fff;
    background: linear-gradient(128deg, #0f766e 0%, #134e4a 42%, #4c1d95 100%);
    overflow: hidden;
}

.lt-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.35), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(245, 158, 11, 0.2), transparent 40%);
    pointer-events: none;
}

.lt-hero .container {
    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 .z0170ehero-title {
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.lt-hero .z0170ehero-subtitle {
    font-size: 1.05rem;
    opacity: 0.92;
    max-width: 36rem;
}

.lt-hero-visual {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.25rem;
    padding: 1.25rem;
    min-height: auto;
    margin-top: 0;
}

.lt-hero-visual .z0170ehero-image {
    max-width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.lt-hero-actions {
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lt-btn {
    border-radius: 0.5rem !important;
    padding: 0.7rem 1.35rem !important;
    font-weight: 600;
    white-space: normal;
}

.lt-btn-accent {
    background: var(--accent-warm) !important;
    border: none !important;
    color: #1e293b !important;
}

.lt-btn-accent:hover {
    background: #d97706 !important;
    color: #fff !important;
}

.lt-btn-outline {
    background: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    border-radius: 0.5rem !important;
}

.lt-btn-outline:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.lt-section {
    padding: 4rem 0;
}

.lt-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.lt-section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.lt-section-head p {
    color: var(--text-muted);
    margin: 0;
}

.lt-features {
    background: var(--surface);
}

.lt-panel {
    height: 100%;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    background: var(--surface);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.lt-panel:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.08);
}

.lt-panel-accent {
    border-color: rgba(15, 118, 110, 0.35);
    background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}

.lt-panel-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.lt-panel h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lt-panel p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.lt-stats {
    padding: 0 !important;
    background: var(--dark-bg) !important;
}

.lt-stats-row {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    overflow: hidden;
}

.lt-stat {
    padding: 1.75rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.lt-stats-row > div:last-child .lt-stat {
    border-right: none;
}

.lt-stat .z0170estat-number {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.lt-download {
    background: var(--light-bg);
}

.lt-dl-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    background: var(--surface);
    box-shadow: none !important;
    overflow: hidden;
}

.lt-dl-card:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
}

.lt-dl-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.lt-dl-head h3 {
    font-size: 1.15rem;
    margin: 0;
}

.lt-dl-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}

.lt-dl-icon-mobile {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

.lt-dl-icon-pc {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.lt-dl-list {
    list-style: none;
    padding: 1rem;
    margin: 0 0 1.25rem;
    border-radius: 0.5rem;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
}

.lt-dl-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.lt-dl-list li:last-child {
    margin-bottom: 0;
}

.lt-dl-list i {
    color: var(--primary-color);
    margin-top: 0.15rem;
}

.lt-knowledge {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    background: var(--surface);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.lt-knowledge h3 {
    color: var(--text-color);
}

.lt-security {
    background: var(--surface);
}

.lt-sec-card {
    height: 100%;
    padding: 1.35rem;
    text-align: center;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    background: var(--light-bg);
    box-shadow: none !important;
}

.lt-sec-card:hover {
    transform: none;
    border-color: var(--primary-color);
}

.lt-sec-card > i {
    font-size: 1.75rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.lt-sec-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.lt-sec-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.lt-faq {
    background: var(--light-bg);
}

.lt-faq-item {
    height: 100%;
    border-radius: 0.75rem !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: none !important;
}

.lt-faq-item .card-body {
    padding: 1.15rem 1.25rem;
}

.lt-articles {
    background: var(--surface);
    border-top: 1px solid var(--border-color);
}

.lt-article-card {
    border: 1px solid var(--border-color) !important;
    border-radius: 0.65rem !important;
    overflow: hidden;
    box-shadow: none !important;
}

.lt-article-card .card-body {
    padding: 0.75rem;
}

.z0170ethumb-home {
    height: 110px;
    width: 100%;
    object-fit: cover;
}

.lt-footer {
    background: var(--dark-bg) !important;
    color: #94a3b8;
    padding: 3rem 0 1.5rem !important;
}

.lt-footer .z0170efooter-title {
    color: #e2e8f0;
}

.lt-footer .z0170efooter-link {
    color: #94a3b8;
}

.lt-footer .z0170efooter-link:hover {
    color: var(--accent-warm);
}

.lt-footer .z0170efooter-bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.lt-inner-page {
    background: var(--light-bg);
    min-height: 50vh;
}

.lt-inner-page .card {
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
}

.lt-inner-page .card-body {
    padding: 1.25rem;
}

.lt-inner-page .listbox li:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* 导航栏样式 */
.z0170enavbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.z0170enavbar-brand img {
    height: 45px;
}

.z0170enav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.z0170enav-link:hover {
    color: var(--primary-color) !important;
}

/* 英雄区域样式（旧版兼容；首页使用 .lt-hero 覆盖） */
.z0170ehero-section:not(.lt-hero) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.lt-hero.z0170ehero-section {
    padding: 4.5rem 0 4rem;
}

.z0170ehero-section:not(.lt-hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.1;
}

.z0170ehero-content {
    position: relative;
    z-index: 1;
}

.z0170ehero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.z0170ehero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* 英雄区域图片样式 */
.z0170ehero-image-container {
    position: relative;
    height: auto;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-top: 2rem;
}

.z0170ehero-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) {
    .z0170ehero-image-container {
        min-height: 250px;
        margin-top: 1.5rem;
    }
    
    .z0170ehero-image {
        max-width: 250px;
    }
}

/* 手机设备响应式 */
@media (max-width: 767px) {
    .z0170ehero-image-container {
        min-height: 200px;
        margin-top: 1rem;
        padding: 0.5rem;
    }
    
    .z0170ehero-image {
        max-width: 200px;
        border-radius: 12px;
    }
}

/* 小屏手机响应式 */
@media (max-width: 575px) {
    .z0170ehero-image-container {
        min-height: 180px;
        margin-top: 0.5rem;
    }
    
    .z0170ehero-image {
        max-width: 180px;
        border-radius: 10px;
    }
}

/* 移除不必要的动画和效果 */
.z0170ehero-image {
    transform: none;
    animation: none;
}

.z0170ehero-image:hover {
    transform: none;
}

.z0170ehero-image-shadow {
    display: none;
}

/* 优化图片加载 */
.z0170ehero-image {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* 移除加载占位符 */
.z0170ehero-image-container::before {
    display: none;
}

/* 英雄区域按钮样式 */
.z0170ehero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.z0170ehero-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;
}

.z0170ehero-buttons .btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: #0a58ca;
    border: none;
}

.z0170ehero-buttons .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: white;
}

.z0170ehero-buttons .btn-primary {
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
    border: none;
    color: white;
}

.z0170ehero-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%);
}

.z0170ehero-buttons .btn i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .z0170ehero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .z0170ehero-buttons .btn {
        width: 100%;
    }
}

/* 特点卡片样式 */
.z0170efeature-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;
}

.z0170efeature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.z0170efeature-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);
}

/* 下载区域样式 */
.z0170edownload-section:not(.lt-download) {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.lt-download.z0170edownload-section {
    padding: 4rem 0;
}

.z0170edownload-header {
    max-width: 600px;
    margin: 0 auto;
}

.z0170edownload-header h2 {
    color: #0a58ca;
    font-weight: 700;
    margin-bottom: 1rem;
}

.z0170edownload-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.z0170edownload-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;
}

.z0170edownload-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.z0170eplatform-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.z0170eios-icon {
    background: linear-gradient(135deg, #007AFF 0%, #0056b3 100%);
    color: white;
}

.z0170eandroid-icon {
    background: linear-gradient(135deg, #3DDC84 0%, #2BB673 100%);
    color: white;
}

.z0170edownload-info {
    background: rgba(10, 88, 202, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.z0170einfo-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.z0170einfo-item:last-child {
    margin-bottom: 0;
}

.z0170einfo-item i {
    color: #0a58ca;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.z0170einfo-item span {
    color: #495057;
}

.z0170edownload-action .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.z0170edownload-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.z0170edownload-guide {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.z0170eguide-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(10, 88, 202, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.z0170eguide-item:hover {
    transform: translateX(5px);
    background: rgba(10, 88, 202, 0.1);
}

.z0170eguide-item i {
    font-size: 2rem;
    color: #0a58ca;
    margin-right: 1.5rem;
}

.z0170eguide-content h4 {
    color: #0a58ca;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.z0170eguide-content p {
    color: #6c757d;
    margin-bottom: 0;
}

/* 安全保障区域样式 */
.z0170esecurity-section:not(.lt-security) {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.lt-security.z0170esecurity-section {
    padding: 4rem 0;
}

.z0170esecurity-header {
    max-width: 600px;
    margin: 0 auto;
}

.z0170esecurity-header h2 {
    color: #0a58ca;
    font-weight: 700;
    margin-bottom: 1rem;
}

.z0170esecurity-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.z0170esecurity-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);
}

.z0170esecurity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.z0170esecurity-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;
}

.z0170esecurity-card h3 {
    color: #0a58ca;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.z0170esecurity-features {
    background: rgba(10, 88, 202, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.z0170efeature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.z0170efeature-item:last-child {
    margin-bottom: 0;
}

.z0170efeature-item i {
    color: #0a58ca;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.z0170efeature-item span {
    color: #495057;
}

/* 安全认证样式 */
.z0170esecurity-certificates {
    margin-top: 4rem;
}

.z0170ecertificate-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%;
}

.z0170ecertificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.z0170ecertificate-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;
}

.z0170ecertificate-card h4 {
    color: #0a58ca;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.z0170ecertificate-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* 统计数据区域样式 */
.z0170estats-section:not(.lt-stats) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
}

.lt-stats.z0170estats-section {
    color: #fff;
    padding: 3rem 0;
}

.z0170estat-item {
    text-align: center;
}

.z0170estat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.z0170estat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 页脚样式 */
.z0170efooter {
    background: #f8f9fa;
    padding: 60px 0 30px;
    color: #495057;
}

.z0170efooter-brand img {
    max-width: 100%;
    height: auto;
}

.z0170efooter-title {
    color: #0a58ca;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.z0170efooter-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z0170efooter-links li {
    margin-bottom: 0.75rem;
}

.z0170efooter-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.z0170efooter-link:hover {
    color: #0a58ca;
}

.z0170efooter-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) {
    .z0170ehero-title {
        font-size: 3rem;
    }
    
    .z0170ehero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .z0170ehero-title {
        font-size: 2.5rem;
    }
    
    .z0170efeature-card {
        margin-bottom: 1.5rem;
    }
    
    .z0170edownload-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .z0170ehero-title {
        font-size: 2rem;
    }
    
    .z0170ehero-subtitle {
        font-size: 1rem;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .z0170efeature-card {
        margin-bottom: 1rem;
    }
    
    .z0170edownload-card {
        margin-bottom: 1rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .z0170ehero-title {
        font-size: 1.75rem;
    }
    
    .z0170ehero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .z0170efeature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .z0170edownload-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);
    }
}

.z0170ehero-content,
.z0170efeature-card,
.z0170edownload-card,
.z0170efaq-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;
    }
    
    .z0170ehero-title {
        font-size: 3.5rem;
    }
    
    .z0170ehero-subtitle {
        font-size: 1.25rem;
    }
    
    .z0170efeature-card {
        padding: 2rem;
    }
    
    .z0170edownload-card {
        padding: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .z0170ehero-title {
        font-size: 3rem;
    }
    
    .z0170ehero-subtitle {
        font-size: 1.1rem;
    }
    
    .z0170efeature-card {
        padding: 1.5rem;
    }
    
    .z0170edownload-card {
        padding: 1.5rem;
    }
}

/* 平板设备响应式 */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .z0170ehero-title {
        font-size: 2.5rem;
    }
    
    .z0170ehero-image-container {
        height: 400px;
        justify-content: center;
        padding-right: 0;
    }
    
    .z0170ehero-image {
        transform: rotateY(-5deg);
    }
    
    .z0170efeature-card {
        margin-bottom: 1.5rem;
    }
    
    .z0170edownload-card {
        margin-bottom: 1.5rem;
    }
    
    .footer {
        text-align: center;
    }
}

/* 手机设备响应式 */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .z0170ehero-title {
        font-size: 2rem;
    }
    
    .z0170ehero-subtitle {
        font-size: 1rem;
    }
    
    .z0170ehero-image-container {
        height: 300px;
    }
    
    .z0170ehero-image {
        max-width: 100%;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .z0170ehero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .z0170ehero-buttons .btn {
        width: 100%;
    }
    
    .z0170efeature-card {
        margin-bottom: 1rem;
    }
    
    .z0170edownload-card {
        margin-bottom: 1rem;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
}

/* 小屏手机响应式 */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .z0170ehero-title {
        font-size: 1.75rem;
    }
    
    .z0170ehero-subtitle {
        font-size: 0.9rem;
    }
    
    .z0170ehero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .z0170efeature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .z0170edownload-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;
    }
} 

/* 下载区域手机端专用修复，避免卡片和按钮错位 */
@media (max-width: 767px) {
    .z0170edownload-section {
        padding: 48px 0;
    }

    .z0170edownload-header {
        margin-bottom: 1.5rem !important;
    }

    .z0170edownload-header h2 {
        font-size: 1.6rem;
    }

    .z0170edownload-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .z0170edownload-section .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 0;
    }

    .z0170edownload-card {
        border-radius: 12px;
        margin-bottom: 0 !important;
    }

    .z0170edownload-card .card-body {
        padding: 1rem !important;
    }

    .z0170edownload-card .d-flex.align-items-center {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1rem !important;
    }

    .z0170edownload-card .d-flex.align-items-center .ms-3 {
        margin-left: 0 !important;
    }

    .z0170eplatform-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .z0170edownload-info {
        padding: 1rem;
        margin-bottom: 1rem !important;
    }

    .z0170einfo-item {
        align-items: flex-start;
    }

    .z0170einfo-item i {
        margin-top: 0.2rem;
    }

    .z0170edownload-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) {
    .z0170enavbar {
        padding: 0.5rem 0;
    }

    .z0170enavbar .navbar-collapse {
        margin-top: 0.5rem;
        max-height: 72vh;
        overflow-y: auto;
    }

    .z0170enavbar .navbar-nav .nav-link {
        padding: 0.55rem 0.25rem !important;
        font-size: 0.95rem;
    }

    #article .card-body {
        padding: 0.75rem;
    }

    #article .z0170ethumb-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;
    }

    .z0170ethumb-list,
    .z0170ethumb-related {
        height: 72px !important;
    }

    .z0170ethumb-side {
        height: 50px !important;
    }

    .z0170ethumb-cover {
        max-width: 100% !important;
        width: 100%;
        height: 170px !important;
        margin: 0 auto;
    }
}

/* 新版首页移动端 */
@media (max-width: 767px) {
    .lt-hero {
        padding: 3rem 0 2.5rem;
        text-align: center;
    }

    .lt-hero .z0170ehero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .lt-hero-actions {
        justify-content: center;
    }

    .lt-hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .lt-section {
        padding: 2.75rem 0;
    }

    .lt-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.25rem 0.75rem;
    }

    .lt-stats-row > div:nth-child(2n) .lt-stat {
        border-right: none;
    }

    .lt-stats-row > div:nth-last-child(-n+2) .lt-stat {
        border-bottom: none;
    }

    .lt-dl-head {
        flex-direction: column;
        text-align: center;
    }

    .lt-knowledge {
        padding: 1rem;
    }

    .lt-footer .row > div {
        text-align: center;
    }

    .lt-footer .z0170efooter-links {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .lt-stats-row {
        border-radius: 0.5rem;
    }

    .lt-stats-row > div {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .lt-stats-row > div:last-child {
        border-bottom: none;
    }

    .lt-stat {
        border-bottom: none;
    }

    #article .z0170ethumb-home,
    .z0170ethumb-home {
        height: 88px !important;
    }

    .z0170ethumb-list,
    .z0170ethumb-related {
        height: 64px !important;
    }

    .z0170ethumb-side {
        height: 46px !important;
    }

    .z0170ethumb-cover {
        height: 150px !important;
    }

    .pagebar .pagelist {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
    }
}