/* CSS365jz 百变模板样式 - LINE官方下载网站 */

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 根变量定义 */
:root {
    --zfcc9aprimary_color: #00c300;
    --zfcc9asecondary_color: #00a000;
    --zfcc9aaccent_color: #ff6b35;
    --zfcc9atext_color: #333333;
    --zfcc9alight_text: #666666;
    --zfcc9abackground: #ffffff;
    --zfcc9alight_background: #f8f9fa;
    --zfcc9aborder_color: #e9ecef;
    --zfcc9ashadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --zfcc9aborder_radius: 8px;
    --zfcc9atransition: all 0.3s ease;
    --zfcc9atouch_target: 44px;
    --zfcc9amobile_padding: 15px;
    --zfcc9atablet_padding: 25px;
    --zfcc9adesktop_padding: 20px;
}

/* 基础样式 */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--zfcc9atext_color);
    background-color: var(--zfcc9abackground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* 确保图片响应式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 确保表格响应式 */
table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

.zfcc9acontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 头部导航样式 */
.zfcc9aheader {
    background: var(--zfcc9abackground);
    box-shadow: var(--zfcc9ashadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--zfcc9atransition);
}

.zfcc9aheader.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.zfcc9anav {
    padding: 1rem 0;
}

.zfcc9anav .zfcc9acontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zfcc9alogo h1 {
    color: var(--zfcc9aprimary_color);
    font-size: 1.8rem;
    font-weight: 700;
}

.zfcc9anav_menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.zfcc9anav_menu a {
    text-decoration: none;
    color: var(--zfcc9atext_color);
    font-weight: 500;
    transition: var(--zfcc9atransition);
    position: relative;
}

.zfcc9anav_menu a:hover {
    color: var(--zfcc9aprimary_color);
}

.zfcc9anav_menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--zfcc9aprimary_color);
    transition: var(--zfcc9atransition);
}

.zfcc9anav_menu a:hover::after {
    width: 100%;
}

.zfcc9amobile_menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.zfcc9amobile_menu span {
    width: 25px;
    height: 3px;
    background: var(--zfcc9atext_color);
    transition: var(--zfcc9atransition);
}

/* 通用广告区域样式 */
.zfcc9aad_section {
    padding: 40px 0;
    background: transparent;
    text-align: center;
}

.zfcc9aad_section .zfcc9acontainer {
    max-width: 100%;
}

/* 页脚内广告区域特殊样式 */
.zfcc9afooter .zfcc9aad_section {
    background: transparent;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
    margin: 0;
}

/* 英雄区域样式 */
.zfcc9ahero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--zfcc9aprimary_color) 0%, var(--zfcc9asecondary_color) 100%);
    color: white;
    overflow: hidden;
}

.zfcc9ahero .zfcc9acontainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.zfcc9ahero_title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.zfcc9ahero_subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.zfcc9ahero_description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 600px;
}

.zfcc9ahero_buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.zfcc9abtn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: var(--zfcc9aborder_radius);
    font-weight: 600;
    transition: var(--zfcc9atransition);
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.zfcc9abtn_primary {
    background: white;
    color: var(--zfcc9aprimary_color);
}

.zfcc9abtn_primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.zfcc9abtn_secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.zfcc9abtn_secondary:hover {
    background: white;
    color: var(--zfcc9aprimary_color);
}

.zfcc9ahero_visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--zfcc9atransition);
}

.zfcc9ahero_visual:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.zfcc9ahero_main_image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: var(--zfcc9atransition);
}

.zfcc9ahero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 195, 0, 0.1) 0%, rgba(0, 160, 0, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.zfcc9ahero_badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(10px);
    animation: slideUp 0.8s ease-out 0.5s both;
}

.zfcc9abadge_text {
    color: var(--zfcc9aprimary_color);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 功能特色区域样式 */
.zfcc9afeatures {
    padding: 80px 0;
    background: var(--zfcc9alight_background);
}

.zfcc9asection_title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--zfcc9atext_color);
}

.zfcc9afeatures_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.zfcc9afeature_card {
    background: white;
    padding: 2rem;
    border-radius: var(--zfcc9aborder_radius);
    text-align: center;
    box-shadow: var(--zfcc9ashadow);
    transition: var(--zfcc9atransition);
}

.zfcc9afeature_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.zfcc9afeature_icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.zfcc9afeature_card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--zfcc9atext_color);
}

.zfcc9afeature_card p {
    color: var(--zfcc9alight_text);
    line-height: 1.6;
}

/* 下载区域样式 */
.zfcc9adownload {
    padding: 80px 0;
    background: white;
}

.zfcc9adownload_options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.zfcc9adownload_card {
    background: var(--zfcc9alight_background);
    padding: 2rem;
    border-radius: var(--zfcc9aborder_radius);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--zfcc9atransition);
}

.zfcc9adownload_card:hover {
    border-color: var(--zfcc9aprimary_color);
    transform: translateY(-3px);
}

.zfcc9aplatform_icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.zfcc9adownload_card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--zfcc9atext_color);
}

.zfcc9adownload_card p {
    color: var(--zfcc9alight_text);
    margin-bottom: 0.5rem;
}

.zfcc9aversion_info {
    color: var(--zfcc9aprimary_color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.zfcc9afeatures_list {
    color: var(--zfcc9alight_text);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.zfcc9abtn_download {
    background: var(--zfcc9aprimary_color);
    color: white;
    width: 100%;
}

.zfcc9abtn_download:hover {
    background: var(--zfcc9asecondary_color);
    transform: translateY(-2px);
}

/* 关于LINE区域样式 */
.zfcc9aabout {
    padding: 80px 0;
    background: var(--zfcc9alight_background);
}

.zfcc9aabout_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.zfcc9aabout_text p {
    margin-bottom: 1.5rem;
    color: var(--zfcc9alight_text);
    font-size: 1.1rem;
    line-height: 1.7;
}

.zfcc9astats {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.zfcc9astat {
    text-align: center;
}

.zfcc9astat_number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--zfcc9aprimary_color);
}

.zfcc9astat_label {
    color: var(--zfcc9alight_text);
    font-size: 0.9rem;
}

.zfcc9aglobal_map {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, var(--zfcc9aprimary_color), var(--zfcc9aaccent_color));
    border-radius: var(--zfcc9aborder_radius);
    position: relative;
    overflow: hidden;
}

.zfcc9aglobal_map::before {
    content: '🌍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
}

/* 优势展示区域样式 */
.zfcc9aadvantages {
    padding: 80px 0;
    background: white;
}

.zfcc9aadvantages_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.zfcc9aadvantage_item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--zfcc9alight_background);
    border-radius: var(--zfcc9aborder_radius);
    transition: var(--zfcc9atransition);
}

.zfcc9aadvantage_item:hover {
    transform: translateX(10px);
    box-shadow: var(--zfcc9ashadow);
}

.zfcc9aadvantage_icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.zfcc9aadvantage_content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--zfcc9atext_color);
}

.zfcc9aadvantage_content p {
    color: var(--zfcc9alight_text);
    line-height: 1.6;
}

/* 页脚样式 */
.zfcc9afooter {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.zfcc9afooter_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.zfcc9afooter_section h3 {
    margin-bottom: 1rem;
    color: var(--zfcc9aprimary_color);
}

.zfcc9afooter_section ul {
    list-style: none;
}

.zfcc9afooter_section ul li {
    margin-bottom: 0.5rem;
}

.zfcc9afooter_section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--zfcc9atransition);
}

.zfcc9afooter_section a:hover {
    color: var(--zfcc9aprimary_color);
}

.zfcc9afooter_bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* 响应式设计 - 中等屏幕设备 */
@media (max-width: 1200px) {
    .zfcc9acontainer {
        max-width: 100%;
        padding: 0 25px;
    }
    
    .zfcc9afeatures_grid,
    .zfcc9adownload_options {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.8rem;
    }
    
    .zfcc9aadvantages_list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.8rem;
    }
}

/* 响应式设计 - 平板设备 */
@media (max-width: 1024px) {
    .zfcc9acontainer {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .zfcc9ahero .zfcc9acontainer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .zfcc9ahero_title {
        font-size: 2.2rem;
    }
    
    .zfcc9ahero_subtitle {
        font-size: 1.1rem;
    }
    
    .zfcc9ahero_description {
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    .zfcc9afeatures_grid,
    .zfcc9adownload_options {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .zfcc9aadvantages_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .zfcc9astats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .zfcc9aabout_content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .zfcc9ahero_visual {
        max-width: 450px;
        margin: 0 auto;
        transform: perspective(800px) rotateY(-2deg) rotateX(2deg);
    }
    
    .zfcc9aad_section {
        padding: 30px 0;
    }
    
    .zfcc9asection_title {
        font-size: 2.2rem;
    }
}

/* 响应式设计 - 移动设备 */
@media (max-width: 768px) {
    .zfcc9amobile_menu {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 8px;
    }
    
    .zfcc9amobile_menu span {
        width: 25px;
        height: 3px;
        background: var(--zfcc9atext_color);
        border-radius: 2px;
        transition: var(--zfcc9atransition);
    }
    
    .zfcc9amobile_menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .zfcc9amobile_menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .zfcc9amobile_menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .zfcc9anav_menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--zfcc9ashadow);
        gap: 1.5rem;
        border-top: 1px solid var(--zfcc9aborder_color);
    }
    
    .zfcc9anav_menu.active {
        display: flex;
    }
    
    .zfcc9anav_menu a {
        padding: 12px 0;
        border-bottom: 1px solid var(--zfcc9aborder_color);
        font-size: 1.1rem;
    }
    
    .zfcc9anav_menu a:last-child {
        border-bottom: none;
    }
    
    .zfcc9ahero {
        padding: 120px 0 80px;
    }
    
    .zfcc9ahero_title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .zfcc9ahero_subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .zfcc9ahero_description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .zfcc9ahero_buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .zfcc9abtn {
        width: 100%;
        text-align: center;
    }
    
    .zfcc9afeatures,
    .zfcc9adownload,
    .zfcc9aabout,
    .zfcc9aadvantages {
        padding: 60px 0;
    }
    
    .zfcc9aad_section {
        padding: 25px 0;
    }
    
    .zfcc9afeatures_grid,
    .zfcc9adownload_options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .zfcc9aadvantages_list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .zfcc9aadvantage_item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .zfcc9aadvantage_icon {
        font-size: 2.5rem;
    }
    
    .zfcc9astats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .zfcc9ahero_visual {
        max-width: 350px;
        transform: perspective(600px) rotateY(-1deg) rotateX(1deg);
    }
    
    .zfcc9ahero_visual:hover {
        transform: perspective(600px) rotateY(0deg) rotateX(0deg);
    }
    
    .zfcc9asection_title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .zfcc9afeature_card,
    .zfcc9adownload_card {
        padding: 1.5rem;
    }
    
    .zfcc9aplatform_icon {
        font-size: 2.5rem;
    }
    
    .zfcc9afooter_content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* 响应式设计 - 小屏幕移动设备 */
@media (max-width: 480px) {
    .zfcc9acontainer {
        padding: 0 15px;
    }
    
    .zfcc9alogo h1 {
        font-size: 1.5rem;
    }
    
    .zfcc9ahero {
        padding: 100px 0 60px;
    }
    
    .zfcc9ahero_title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .zfcc9ahero_subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .zfcc9ahero_description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .zfcc9ahero_buttons {
        max-width: 280px;
        gap: 0.8rem;
    }
    
    .zfcc9abtn {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .zfcc9ahero_visual {
        max-width: 280px;
        transform: none;
        margin: 0 auto;
    }
    
    .zfcc9ahero_visual:hover {
        transform: none;
    }
    
    .zfcc9ahero_badge {
        padding: 8px 16px;
    }
    
    .zfcc9abadge_text {
        font-size: 0.75rem;
    }
    
    .zfcc9afeatures,
    .zfcc9adownload,
    .zfcc9aabout,
    .zfcc9aadvantages {
        padding: 50px 0;
    }
    
    .zfcc9aad_section {
        padding: 20px 0;
    }
    
    .zfcc9asection_title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .zfcc9afeatures_grid,
    .zfcc9adownload_options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .zfcc9afeature_card,
    .zfcc9adownload_card {
        padding: 1.2rem;
    }
    
    .zfcc9afeature_icon,
    .zfcc9aplatform_icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .zfcc9afeature_card h3,
    .zfcc9adownload_card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .zfcc9afeature_card p,
    .zfcc9adownload_card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .zfcc9aversion_info,
    .zfcc9afeatures_list {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .zfcc9aadvantages_list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .zfcc9aadvantage_item {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .zfcc9aadvantage_icon {
        font-size: 2.2rem;
    }
    
    .zfcc9aadvantage_content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .zfcc9aadvantage_content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .zfcc9astats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .zfcc9astat {
        padding: 1rem;
    }
    
    .zfcc9astat_number {
        font-size: 1.8rem;
    }
    
    .zfcc9astat_label {
        font-size: 0.9rem;
    }
    
    .zfcc9aabout_text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .zfcc9afooter_content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .zfcc9afooter_section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .zfcc9afooter_section p,
    .zfcc9afooter_section li {
        font-size: 0.9rem;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zfcc9afeature_card,
.zfcc9adownload_card,
.zfcc9aadvantage_item {
    animation: fadeInUp 0.6s ease-out;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--zfcc9aprimary_color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--zfcc9asecondary_color);
}

/* 焦点样式 */
.zfcc9abtn:focus,
.zfcc9anav_menu a:focus {
    outline: 2px solid var(--zfcc9aprimary_color);
    outline-offset: 2px;
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .zfcc9abtn:hover {
        transform: none;
    }
    
    .zfcc9afeature_card:hover,
    .zfcc9adownload_card:hover {
        transform: none;
    }
    
    .zfcc9ahero_visual:hover {
        transform: none;
    }
    
    .zfcc9aadvantage_item:hover {
        transform: none;
    }
}

/* 横屏模式优化 */
@media (orientation: landscape) and (max-height: 600px) {
    .zfcc9ahero {
        padding: 80px 0 60px;
    }
    
    .zfcc9ahero_title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .zfcc9ahero_subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .zfcc9ahero_description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .zfcc9afeatures,
    .zfcc9adownload,
    .zfcc9aabout,
    .zfcc9aadvantages {
        padding: 50px 0;
    }
    
    .zfcc9aad_section {
        padding: 20px 0;
    }
}

/* 高分辨率屏幕优化 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .zfcc9ahero_visual {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* 打印样式 */
@media print {
    .zfcc9aheader,
    .zfcc9afooter,
    .zfcc9abtn {
        display: none;
    }
    
    .zfcc9ahero {
        background: white !important;
        color: black !important;
    }
}

/* ========== 内页布局 / 列表 / 内容 / 首页资讯网格 ========== */

.zfcc9alogo a {
    text-decoration: none;
    color: var(--zfcc9aprimary_color);
    font-size: 1.35rem;
    font-weight: 700;
}

.zfcc9anav .zfcc9acontainer {
    position: relative;
}

.zfcc9anav_extended {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 0.5rem;
}

.zfcc9anav_menu .zfcc9anav-item.zfcc9athis > a,
.zfcc9anav_menu .zfcc9anav-item.zfcc9athis a,
.zfcc9anav_menu li.zfcc9athis > a {
    color: var(--zfcc9aprimary_color);
}

.zfcc9anav_menu .zfcc9anav-item.zfcc9athis > a::after,
.zfcc9anav_menu li.zfcc9athis > a::after {
    width: 100%;
}

.zfcc9ainner_main {
    padding-top: 88px;
    padding-bottom: 60px;
    min-height: 60vh;
    background: var(--zfcc9alight_background);
}

.zfcc9apage_with_sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

.zfcc9aarticle_main,
.zfcc9alist_main {
    background: var(--zfcc9abackground);
    border-radius: var(--zfcc9aborder_radius);
    box-shadow: var(--zfcc9ashadow);
    padding: 1.75rem 1.5rem;
    min-width: 0;
}

.zfcc9abreadcrumb {
    font-size: 0.875rem;
    color: var(--zfcc9alight_text);
    margin-bottom: 1rem;
}

.zfcc9abreadcrumb a {
    color: var(--zfcc9aprimary_color);
    text-decoration: none;
}

.zfcc9abreadcrumb a:hover {
    text-decoration: underline;
}

.zfcc9abreadcrumb_sep {
    margin: 0 0.35rem;
    opacity: 0.6;
}

.zfcc9abreadcrumb_current {
    color: var(--zfcc9atext_color);
}

.zfcc9aarticle_title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--zfcc9atext_color);
}

.zfcc9aarticle_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 0.9rem;
    color: var(--zfcc9alight_text);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--zfcc9aborder_color);
}

.zfcc9aarticle_meta a {
    color: var(--zfcc9aprimary_color);
    text-decoration: none;
}

.zfcc9alitpic_wrap {
    margin: 0 0 1.5rem;
    border-radius: var(--zfcc9aborder_radius);
    overflow: hidden;
    max-height: 420px;
    background: var(--zfcc9alight_background);
}

.zfcc9alitpic_wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.zfcc9atypography {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--zfcc9atext_color);
    word-break: break-word;
}

.zfcc9atypography img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.zfcc9aarticle_gallery {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.zfcc9agallery_item {
    margin: 0;
}

.zfcc9agallery_item figcaption {
    font-size: 0.875rem;
    color: var(--zfcc9alight_text);
    margin-top: 0.35rem;
}

.zfcc9ameta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0 0;
    padding: 0;
}

.zfcc9atagitem a {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--zfcc9alight_background);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--zfcc9atext_color);
    text-decoration: none;
    border: 1px solid var(--zfcc9aborder_color);
}

.zfcc9atagitem a:hover {
    border-color: var(--zfcc9aprimary_color);
    color: var(--zfcc9aprimary_color);
}

.zfcc9aprenext,
.zfcc9aprenext_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--zfcc9aborder_color);
    font-size: 0.95rem;
}

.zfcc9aprenext_row a,
.zfcc9aprenext a {
    color: var(--zfcc9aprimary_color);
    text-decoration: none;
}

.zfcc9aprenext_row a:hover,
.zfcc9aprenext a:hover {
    text-decoration: underline;
}

.zfcc9alike_section {
    margin-top: 2rem;
}

.zfcc9alike_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zfcc9alike_item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    align-items: start;
}

.zfcc9alike_thumb img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.zfcc9alike_title {
    font-weight: 600;
    color: var(--zfcc9atext_color);
    text-decoration: none;
}

.zfcc9alike_title:hover {
    color: var(--zfcc9aprimary_color);
}

.zfcc9alike_desc {
    font-size: 0.875rem;
    color: var(--zfcc9alight_text);
    margin: 0.35rem 0 0;
}

/* 侧栏 */
.zfcc9aarticle_sidebar {
    position: sticky;
    top: 92px;
}

.zfcc9asidebar_block {
    background: var(--zfcc9abackground);
    border-radius: var(--zfcc9aborder_radius);
    box-shadow: var(--zfcc9ashadow);
    padding: 1rem 1rem 0.5rem;
    margin-bottom: 1.25rem;
}

.zfcc9asidebar_title {
    font-size: 1.05rem;
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--zfcc9aprimary_color);
    color: var(--zfcc9atext_color);
}

.zfcc9asidebar_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zfcc9asidebar_item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0.65rem;
    align-items: start;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--zfcc9aborder_color);
}

.zfcc9asidebar_item:last-child {
    border-bottom: none;
}

.zfcc9asidebar_thumb img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.zfcc9asidebar_link {
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--zfcc9atext_color);
    text-decoration: none;
    display: block;
}

.zfcc9asidebar_link:hover {
    color: var(--zfcc9aprimary_color);
}

.zfcc9asidebar_meta {
    display: block;
    font-size: 0.75rem;
    color: var(--zfcc9alight_text);
    margin-top: 0.25rem;
}

/* 列表页 */
.zfcc9alist_page_title {
    font-size: 1.65rem;
    margin: 0 0 0.5rem;
    color: var(--zfcc9atext_color);
}

.zfcc9alist_page_desc {
    font-size: 0.95rem;
    color: var(--zfcc9alight_text);
    margin: 0 0 1.25rem;
    line-height: 1.6;
}

.zfcc9alist_media {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.zfcc9alist_media_item {
    display: grid;
    grid-template-columns: minmax(120px, 240px) 1fr;
    gap: 1.25rem;
    align-items: start;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--zfcc9aborder_color);
}

.zfcc9alist_media_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.zfcc9alist_media_thumb img {
    width: 100%;
    height: auto;
    border-radius: var(--zfcc9aborder_radius);
    object-fit: cover;
}

.zfcc9alist_media_cat {
    font-size: 0.8rem;
    color: var(--zfcc9alight_text);
}

.zfcc9alist_media_cat a {
    color: var(--zfcc9aprimary_color);
    text-decoration: none;
}

.zfcc9alist_media_title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--zfcc9atext_color);
    text-decoration: none;
    margin: 0.35rem 0;
    line-height: 1.35;
}

.zfcc9alist_media_title:hover {
    color: var(--zfcc9aprimary_color);
}

.zfcc9alist_media_info {
    display: block;
    font-size: 0.8rem;
    color: var(--zfcc9alight_text);
    margin-bottom: 0.35rem;
}

.zfcc9alist_media_intro {
    font-size: 0.9rem;
    color: var(--zfcc9alight_text);
    line-height: 1.55;
    margin: 0;
}

/* 翻页：上一页偏左、下一页偏右 */
.zfcc9apagebar_lr {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--zfcc9aborder_color);
}

.zfcc9apagebar_lr .zzpages,
.zfcc9apagebar_lr .zfcc9apages {
    width: 100%;
}

.zfcc9apagelist_lr {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    width: 100%;
}

.zfcc9apagelist_lr > li {
    flex: 0 0 auto;
}

.zfcc9apagelist_lr .thisclass,
.zfcc9apagelist_lr a {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--zfcc9atext_color);
    border: 1px solid var(--zfcc9aborder_color);
    font-size: 0.9rem;
}

.zfcc9apagelist_lr .thisclass {
    background: var(--zfcc9aprimary_color);
    color: #fff;
    border-color: var(--zfcc9aprimary_color);
}

.zfcc9apagelist_lr a:hover {
    border-color: var(--zfcc9aprimary_color);
    color: var(--zfcc9aprimary_color);
}

/* 首页资讯 5×2 */
.zfcc9ahome_articles {
    padding: 70px 0;
    background: var(--zfcc9abackground);
}

.zfcc9ahome_articles_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.zfcc9ahome_article_card {
    background: var(--zfcc9alight_background);
    border-radius: var(--zfcc9aborder_radius);
    overflow: hidden;
    box-shadow: var(--zfcc9ashadow);
    transition: var(--zfcc9atransition);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.zfcc9ahome_article_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.zfcc9ahome_article_thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8e8e8;
}

.zfcc9ahome_article_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zfcc9ahome_article_cap {
    padding: 0.75rem 0.85rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.zfcc9ahome_article_title {
    font-size: 0.9rem;
    line-height: 1.35;
    font-weight: 600;
    margin: 0;
}

.zfcc9ahome_article_title a {
    color: var(--zfcc9atext_color);
    text-decoration: none;
}

.zfcc9ahome_article_title a:hover {
    color: var(--zfcc9aprimary_color);
}

.zfcc9ahome_article_meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: var(--zfcc9alight_text);
    margin: 0.5rem 0 0;
}

.zfcc9ahome_article_meta time {
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .zfcc9ahome_articles_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .zfcc9apage_with_sidebar {
        grid-template-columns: 1fr;
    }

    .zfcc9aarticle_sidebar {
        position: static;
        order: 2;
    }

    .zfcc9aarticle_main,
    .zfcc9alist_main {
        order: 1;
    }

    .zfcc9alist_media_item {
        grid-template-columns: minmax(100px, 180px) 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .zfcc9ainner_main {
        padding-top: 80px;
    }

    .zfcc9ahome_articles {
        padding: 50px 0;
    }

    .zfcc9ahome_articles_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .zfcc9aprenext,
    .zfcc9aprenext_row {
        flex-direction: column;
        align-items: stretch;
    }

    .zfcc9alike_item {
        grid-template-columns: 88px 1fr;
    }

    .zfcc9apagelist_lr {
        justify-content: center;
    }

    .zfcc9aarticle_title {
        font-size: 1.45rem;
    }

    .zfcc9alist_media_item {
        grid-template-columns: 1fr;
    }

    .zfcc9alist_media_thumb {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .zfcc9ahome_articles_grid {
        grid-template-columns: 1fr;
    }

    .zfcc9aarticle_main,
    .zfcc9alist_main {
        padding: 1.25rem 1rem;
    }

    .zfcc9asidebar_item {
        grid-template-columns: 64px 1fr;
    }
} 