/* 首页样式文件 */

/* 基础变量 */
:root {
    --primary-color: #667eea;
    --primary-dark: #5a6fd8;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --success-color: #4CAF50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --text-primary: #333;
    --text-secondary: #666;
    --text-light: #999;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --border-radius-large: 12px;
    --transition: all 0.3s ease;
}

/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 主内容区域 */
.main-content {
    position: relative;
    z-index: 1;
}

/* 英雄区域 */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-highlight {
    display: block;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-main {
    display: block;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

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

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* 转换演示区域 */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.conversion-demo {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.file-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    min-width: 120px;
    animation: bounce 2s infinite;
}

.file-card:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.file-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.source-file .file-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.target-file .file-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
}

.file-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.conversion-arrow {
    position: relative;
    font-size: 2rem;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.arrow-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, white, transparent);
    animation: flow 2s infinite;
}

@keyframes flow {
    0% { transform: translate(-50%, -50%) translateX(-50px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(-50%, -50%) translateX(50px); opacity: 0; }
}

/* 功能特色区域 */
.features-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 25px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* 转换工具区域 */
.converter-section {
    padding: 40px 0;
    background: #fafbfc;
    position: relative;
}

.converter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.converter-category {
    background: white;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(102, 126, 234, 0.08);
    transition: var(--transition);
    position: relative;
}

.converter-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-gradient);
    border-radius: 12px 12px 0 0;
}

.converter-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
}

.category-title i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
}

.converter-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.converter-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #fafbfc;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
    border: 1px solid transparent;
    position: relative;
}

.converter-item:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.15);
    background: white;
}

.converter-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.converter-item:hover .converter-icon {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.converter-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.converter-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-primary);
}

.converter-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.converter-arrow {
    color: var(--text-light);
    transition: all 0.2s ease;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.converter-item:hover .converter-arrow {
    color: var(--primary-color);
    transform: translateX(3px);
}



/* CTA区域 */
.cta-section {
    padding: 25px 0;
    background: var(--bg-gradient);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* 浮动工具栏 */
.floating-sidebar {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--bg-gradient);
    color: white;
    border-radius: 50px;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.floating-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.floating-icon {
    font-size: 1.2rem;
}

.floating-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .conversion-demo {
        flex-direction: column;
        gap: 20px;
    }
    
    .conversion-arrow {
        transform: rotate(90deg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .feature-desc {
        font-size: 0.85rem;
    }
    
    .converter-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .converter-category {
        padding: 16px;
    }
    
    .category-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .category-title i {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .converter-item {
        padding: 9px 11px;
        gap: 10px;
    }
    
    .converter-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .converter-name {
        font-size: 0.9rem;
    }
    
    .converter-desc {
        font-size: 0.75rem;
    }
    
    
    
    .floating-sidebar {
        right: 10px;
        bottom: 10px;
    }
    
    .floating-item {
        padding: 12px 16px;
    }
    
    .floating-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ==================== PDF解密首页样式 ==================== */

.home_page {
    width: 100%;
    min-width: 1300px;
}

/* 首页隐藏开通权益按钮 */
body.home-page .vip-activate-btn,
body.home-page #vipActivateBtn,
body:has(.home_page) .vip-activate-btn,
body:has(.home_page) #vipActivateBtn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Banner区域 */
.home_banner {
    width: 100%;
    height: calc(100vh - 60px);
    min-height: 600px;
    background: url('/public/images/home/bg.png') no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
}

.bannerleft {
    width: 45%;
    position: relative;
    z-index: 2;
    padding-right: 5%;
}

.banner-content {
    animation: fadeInUp 1s ease-out;
}

.banner-main-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    min-height: 1.3em;
    white-space: nowrap;
    overflow: hidden;
}

.banner-main-title .text-part1 {
    color: #333;
}

.banner-main-title .text-part2 {
    color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-main-title::after {
    content: '|';
    color: #667eea;
    animation: blink 1s infinite;
    margin-left: 5px;
}

.banner-main-title.typing-complete::after {
    display: none;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.banner-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-start {
    padding: 18px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-start:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn-start i {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.btn-start:hover i {
    transform: translateX(5px);
}

.bannerright {
    width: 50%;
    position: relative;
    z-index: 2;
    padding-top: 5%;
}

.bannerright img {
    width: 100%;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.bannerright img:hover {
    transform: translateY(-10px) scale(1.02);
}

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

@media (max-width: 1200px) {
    .banner-main-title {
        font-size: 40px;
    }
    
    .banner-subtitle {
        font-size: 18px;
    }
    
    .banner-features {
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .banner-main-title {
        font-size: 42px;
        white-space: normal;
    }
    
    .banner-intro {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .home_banner {
        flex-direction: column;
        height: auto;
        min-height: auto;
        padding: 60px 20px;
    }
    
    .bannerleft {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .bannerright {
        width: 100%;
        padding-top: 0;
    }
    
    .banner-main-title {
        font-size: 32px;
        margin-bottom: 20px;
        white-space: normal;
    }
    
    .banner-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .btn-start {
        padding: 16px 40px;
        font-size: 18px;
        width: 100%;
        justify-content: center;
    }
}

/* 模块1 */
.mok1 {
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mok1bt {
    color: #333333;
    font-size: 36px;
    font-weight: 600;
    width: 1200px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.mok1bt span {
    color: #372DFF;
}

.mok1qh {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 27px 0 48px;
}

.mok1qhitem {
    cursor: pointer;
    width: 117px;
    height: 51px;
    background-color: #F2F2F7;
    color: #333333;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin: 0 20px;
    transition: all 0.3s;
}

.mok1qhitem:hover {
    background-color: #e0e0e5;
}

.mok1qhitemactive {
    color: #fff;
    background: linear-gradient(135deg, #1E2BFF 0%, #9234FF 100%);
}

.pdfgjcontent {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    align-items: stretch;
}

.pdfgj_item {
    cursor: pointer;
    background-color: transparent;
    width: 100%;
    height: 190px;
    border-radius: 15px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    padding: 20px 15px 15px;
    overflow: hidden;
    position: relative;
}

.pdfgj_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pdfgj_item:hover {
    transform: translateY(-8px);
}

.pdfgj_item:hover::before {
    opacity: 1;
}

.pdfgj_item .topimg {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.pdfgj_item:hover .topimg {
    transform: scale(1.15);
}

.pdfgj_item .botomnr {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.botomnr_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.leftspan1 {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    width: 100%;
}

.leftspan2 {
    color: #898F97;
    font-size: 12px;
}

.botomnr img {
    display: none;
}

/* 模块3 */
.mok3 {
    position: relative;
    width: 100%;
    background-color: #FAFAFA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.mok3 .bgdian {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 25%;
    z-index: 0;
    opacity: 0.5;
}

.mok3bt {
    font-size: 36px;
    font-weight: 600;
}

.mok3bt span {
    color: #372DFF;
}

.mok3nr {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.mok3nr_left {
    width: 439px;
    margin: 0 40px;
}

.mok3_left_bt1 {
    font-size: 36px;
    color: #170406;
    font-weight: 600;
}

.mok3_left_bt1 span {
    color: #372DFF;
}

.mok3_left_bt2 {
    color: #444444;
    font-size: 18px;
    line-height: 30px;
    margin: 25px 0;
}

.mok3btn {
    cursor: pointer;
    width: 150px;
    overflow: hidden;
    position: relative;
}

.mok3btn img {
    width: 100%;
    display: block;
}

.shanguang::before {
    cursor: pointer;
    content: '';
    background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    position: absolute;
    transform: skewX(-25deg);
    z-index: 2;
    transition: left 0.7s;
}

.shanguang:hover::before {
    animation: slide 0.7s;
}

@keyframes slide {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.mok3nr_right {
    width: 530px;
    margin: 0 40px;
    transition: all 0.5s;
}

.mok3nr_right:hover {
    transform: translateY(-10px);
}

.mok3nr_right img {
    width: 100%;
    display: block;
}

/* 通用模块组件 */
.mok_components {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    padding: 100px 0;
}

.mok_components .bgdian {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 25%;
    z-index: 0;
    opacity: 0.5;
}

.mok_nrqy {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mok_nrqy_left {
    width: 30%;
    margin: 0 40px;
}

.mokleftbt {
    color: #000000;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 23px;
}

.mokleftbt span {
    color: #372dff;
}

.zstxt {
    color: #444444;
    font-size: 18px;
    line-height: 30px;
}

.ljtybtn {
    cursor: pointer;
    width: 150px;
    margin-top: 23px;
    overflow: hidden;
    position: relative;
}

.ljtybtn img {
    width: 100%;
}

.mok_nrqy_right {
    width: 530px;
    margin: 0 40px;
    transition: all 0.5s;
}

.mok_nrqy_right:hover {
    transform: translateY(-10px);
}

.mok_nrqy_right img {
    width: 100%;
}

/* 模块5 */
.mok5 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 50px;
}

.mok5bt {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 5%;
}

.mok5bt span {
    color: #0032FF;
}

.mok5_sixcontent {
    width: 1050px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.mok5_sixitem {
    width: 339px;
    height: 233px;
    background-color: #F9F9F9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 17px;
    transition: all 0.5s;
}

.mok5_sixitem:hover {
    transform: translateY(-10px);
}

.mok5_sixitem img {
    width: 30%;
}

.mok5_sixitem .txt1 {
    width: 80%;
    text-align: center;
    color: #333333;
    font-size: 18px;
    font-weight: 600;
}

.mok5_sixitem .txt2 {
    width: 80%;
    text-align: center;
    color: #666666;
    font-size: 12px;
    margin-top: 10px;
}

/* 用户评价模块 */
.testimonials-section {
    width: 100%;
    padding: 80px 0;
    background-color: #F9F9F9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    color: #333;
}

.testimonials-title span {
    color: #667eea;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 13px;
    color: #999;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

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

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-content {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

/* 轮播评论模块样式 */
.botommk {
    width: 100%;
    padding: 80px 0;
    background-color: #F9F9F9;
}

.mok6bt {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    color: #333;
}

.mok6bt span {
    color: #667eea;
}

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

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

.swiper-slide {
    height: auto;
}

.lbbotomitem {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.lbbotomitem:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.toux {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
    margin-bottom: 10px;
}

.btbtbt {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.wujiaox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.wujiaox span {
    font-size: 12px;
    color: #666;
}

.wujiaoximgctt {
    display: flex;
    gap: 3px;
}

.wujiaoximgctt img {
    width: 12px;
    height: 12px;
}

.jsjsjs {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    flex: 1;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .botommk {
        padding: 50px 0;
    }
    
    .mok6bt {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .botomlb {
        padding: 0 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lbbotomitem {
        padding: 20px;
    }
}

@media (min-width: 1701px) {
    .pdfgjcontent {
        width: 1400px !important;
        gap: 30px;
    }
    
    .mok1bt {
        width: 1400px !important;
    }
}

@media (max-width: 1400px) {
    .pdfgjcontent {
        grid-template-columns: repeat(6, 1fr);
        width: 100%;
        max-width: 1050px;
    }
    
    .mok1bt {
        width: 100%;
        max-width: 1050px;
    }
}

@media (max-width: 1200px) {
    .pdfgjcontent {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .pdfgjcontent {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .mok3nr_left,
    .mok_nrqy_left {
        margin: 0 80px !important;
    }

    .mok3nr_right,
    .mok_nrqy_right {
        width: 600px !important;
        margin: 0 80px !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }

    .mok5_sixcontent {
        width: 1350px !important;
    }

    .mok5_sixitem {
        width: 435px !important;
    }
}

/* ==================== 页脚样式 ==================== */
.footer {
    background: #f8f9fa;
    color: #333;
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #e9ecef;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.footer-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(102, 126, 234, 0.3);
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 5px;
}

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

.footer-contact li {
    margin-bottom: 10px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.footer-contact i {
    color: #667eea;
    width: 16px;
    text-align: center;
    font-size: 13px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    color: #999;
    font-size: 13px;
}

.footer-bottom .icp-info {
    margin-left: 15px;
    font-size: 13px;
}

.footer-bottom .icp-info a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom .icp-info a:hover {
    color: #667eea;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
}
