/* CSS365jz 百变模板样式 - LINE官方下载网站 */

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 根变量定义 */
:root {
    --z4c7b1primary_color: #00c300;
    --z4c7b1secondary_color: #00a000;
    --z4c7b1accent_color: #ff6b35;
    --z4c7b1text_color: #333333;
    --z4c7b1light_text: #666666;
    --z4c7b1background: #ffffff;
    --z4c7b1light_background: #f8f9fa;
    --z4c7b1border_color: #e9ecef;
    --z4c7b1shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --z4c7b1border_radius: 8px;
    --z4c7b1transition: all 0.3s ease;
    --z4c7b1touch_target: 44px;
    --z4c7b1mobile_padding: 15px;
    --z4c7b1tablet_padding: 25px;
    --z4c7b1desktop_padding: 20px;
}

/* 基础样式 */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--z4c7b1text_color);
    background-color: var(--z4c7b1background);
    -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;
}

.z4c7b1container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 头部导航样式 */
.z4c7b1header {
    background: var(--z4c7b1background);
    box-shadow: var(--z4c7b1shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--z4c7b1transition);
}

.z4c7b1header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.z4c7b1nav {
    padding: 1rem 0;
}

.z4c7b1nav .z4c7b1container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z4c7b1logo h1 {
    color: var(--z4c7b1primary_color);
    font-size: 1.8rem;
    font-weight: 700;
}

.z4c7b1nav_menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.z4c7b1nav_menu a {
    text-decoration: none;
    color: var(--z4c7b1text_color);
    font-weight: 500;
    transition: var(--z4c7b1transition);
    position: relative;
}

.z4c7b1nav_menu a:hover {
    color: var(--z4c7b1primary_color);
}

.z4c7b1nav_menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--z4c7b1primary_color);
    transition: var(--z4c7b1transition);
}

.z4c7b1nav_menu a:hover::after {
    width: 100%;
}

.z4c7b1mobile_menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.z4c7b1mobile_menu span {
    width: 25px;
    height: 3px;
    background: var(--z4c7b1text_color);
    transition: var(--z4c7b1transition);
}

/* 通用广告区域样式 */
.z4c7b1ad_section {
    padding: 40px 0;
    background: transparent;
    text-align: center;
}

.z4c7b1ad_section .z4c7b1container {
    max-width: 100%;
}

/* 页脚内广告区域特殊样式 */
.z4c7b1footer .z4c7b1ad_section {
    background: transparent;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
    margin: 0;
}

/* 英雄区域样式 */
.z4c7b1hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--z4c7b1primary_color) 0%, var(--z4c7b1secondary_color) 100%);
    color: white;
    overflow: hidden;
}

.z4c7b1hero .z4c7b1container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.z4c7b1hero_title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.z4c7b1hero_subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.z4c7b1hero_description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 600px;
}

.z4c7b1hero_buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.z4c7b1btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: var(--z4c7b1border_radius);
    font-weight: 600;
    transition: var(--z4c7b1transition);
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.z4c7b1btn_primary {
    background: white;
    color: var(--z4c7b1primary_color);
}

.z4c7b1btn_primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.z4c7b1btn_secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.z4c7b1btn_secondary:hover {
    background: white;
    color: var(--z4c7b1primary_color);
}

.z4c7b1hero_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(--z4c7b1transition);
}

.z4c7b1hero_visual:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.z4c7b1hero_main_image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: var(--z4c7b1transition);
}

.z4c7b1hero_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;
}

.z4c7b1hero_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;
}

.z4c7b1badge_text {
    color: var(--z4c7b1primary_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);
    }
}

/* 功能特色区域样式 */
.z4c7b1features {
    padding: 80px 0;
    background: var(--z4c7b1light_background);
}

.z4c7b1section_title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--z4c7b1text_color);
}

.z4c7b1features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.z4c7b1feature_card {
    background: white;
    padding: 2rem;
    border-radius: var(--z4c7b1border_radius);
    text-align: center;
    box-shadow: var(--z4c7b1shadow);
    transition: var(--z4c7b1transition);
}

.z4c7b1feature_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.z4c7b1feature_icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.z4c7b1feature_card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--z4c7b1text_color);
}

.z4c7b1feature_card p {
    color: var(--z4c7b1light_text);
    line-height: 1.6;
}

/* 下载区域样式 */
.z4c7b1download {
    padding: 80px 0;
    background: white;
}

.z4c7b1download_options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.z4c7b1download_card {
    background: var(--z4c7b1light_background);
    padding: 2rem;
    border-radius: var(--z4c7b1border_radius);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--z4c7b1transition);
}

.z4c7b1download_card:hover {
    border-color: var(--z4c7b1primary_color);
    transform: translateY(-3px);
}

.z4c7b1platform_icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.z4c7b1download_card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--z4c7b1text_color);
}

.z4c7b1download_card p {
    color: var(--z4c7b1light_text);
    margin-bottom: 0.5rem;
}

.z4c7b1version_info {
    color: var(--z4c7b1primary_color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.z4c7b1features_list {
    color: var(--z4c7b1light_text);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.z4c7b1btn_download {
    background: var(--z4c7b1primary_color);
    color: white;
    width: 100%;
}

.z4c7b1btn_download:hover {
    background: var(--z4c7b1secondary_color);
    transform: translateY(-2px);
}

/* 关于LINE区域样式 */
.z4c7b1about {
    padding: 80px 0;
    background: var(--z4c7b1light_background);
}

.z4c7b1about_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.z4c7b1about_text p {
    margin-bottom: 1.5rem;
    color: var(--z4c7b1light_text);
    font-size: 1.1rem;
    line-height: 1.7;
}

.z4c7b1stats {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.z4c7b1stat {
    text-align: center;
}

.z4c7b1stat_number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--z4c7b1primary_color);
}

.z4c7b1stat_label {
    color: var(--z4c7b1light_text);
    font-size: 0.9rem;
}

.z4c7b1global_map {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, var(--z4c7b1primary_color), var(--z4c7b1accent_color));
    border-radius: var(--z4c7b1border_radius);
    position: relative;
    overflow: hidden;
}

.z4c7b1global_map::before {
    content: '🌍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
}

/* 优势展示区域样式 */
.z4c7b1advantages {
    padding: 80px 0;
    background: white;
}

.z4c7b1advantages_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.z4c7b1advantage_item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--z4c7b1light_background);
    border-radius: var(--z4c7b1border_radius);
    transition: var(--z4c7b1transition);
}

.z4c7b1advantage_item:hover {
    transform: translateX(10px);
    box-shadow: var(--z4c7b1shadow);
}

.z4c7b1advantage_icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.z4c7b1advantage_content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--z4c7b1text_color);
}

.z4c7b1advantage_content p {
    color: var(--z4c7b1light_text);
    line-height: 1.6;
}

/* 页脚样式 */
.z4c7b1footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.z4c7b1footer_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.z4c7b1footer_section h3 {
    margin-bottom: 1rem;
    color: var(--z4c7b1primary_color);
}

.z4c7b1footer_section ul {
    list-style: none;
}

.z4c7b1footer_section ul li {
    margin-bottom: 0.5rem;
}

.z4c7b1footer_section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--z4c7b1transition);
}

.z4c7b1footer_section a:hover {
    color: var(--z4c7b1primary_color);
}

.z4c7b1footer_bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* 响应式设计 - 中等屏幕设备 */
@media (max-width: 1200px) {
    .z4c7b1container {
        max-width: 100%;
        padding: 0 25px;
    }
    
    .z4c7b1features_grid,
    .z4c7b1download_options {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.8rem;
    }
    
    .z4c7b1advantages_list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.8rem;
    }
}

/* 响应式设计 - 平板设备 */
@media (max-width: 1024px) {
    .z4c7b1container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .z4c7b1hero .z4c7b1container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .z4c7b1hero_title {
        font-size: 2.2rem;
    }
    
    .z4c7b1hero_subtitle {
        font-size: 1.1rem;
    }
    
    .z4c7b1hero_description {
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    .z4c7b1features_grid,
    .z4c7b1download_options {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .z4c7b1advantages_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .z4c7b1stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .z4c7b1about_content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .z4c7b1hero_visual {
        max-width: 450px;
        margin: 0 auto;
        transform: perspective(800px) rotateY(-2deg) rotateX(2deg);
    }
    
    .z4c7b1ad_section {
        padding: 30px 0;
    }
    
    .z4c7b1section_title {
        font-size: 2.2rem;
    }
}

/* 响应式设计 - 移动设备 */
@media (max-width: 768px) {
    .z4c7b1mobile_menu {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 8px;
    }
    
    .z4c7b1mobile_menu span {
        width: 25px;
        height: 3px;
        background: var(--z4c7b1text_color);
        border-radius: 2px;
        transition: var(--z4c7b1transition);
    }
    
    .z4c7b1mobile_menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .z4c7b1mobile_menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .z4c7b1mobile_menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .z4c7b1nav_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(--z4c7b1shadow);
        gap: 1.5rem;
        border-top: 1px solid var(--z4c7b1border_color);
    }
    
    .z4c7b1nav_menu.active {
        display: flex;
    }
    
    .z4c7b1nav_menu a {
        padding: 12px 0;
        border-bottom: 1px solid var(--z4c7b1border_color);
        font-size: 1.1rem;
    }
    
    .z4c7b1nav_menu a:last-child {
        border-bottom: none;
    }
    
    .z4c7b1hero {
        padding: 120px 0 80px;
    }
    
    .z4c7b1hero_title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .z4c7b1hero_subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .z4c7b1hero_description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .z4c7b1hero_buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .z4c7b1btn {
        width: 100%;
        text-align: center;
    }
    
    .z4c7b1features,
    .z4c7b1download,
    .z4c7b1about,
    .z4c7b1advantages {
        padding: 60px 0;
    }
    
    .z4c7b1ad_section {
        padding: 25px 0;
    }
    
    .z4c7b1features_grid,
    .z4c7b1download_options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .z4c7b1advantages_list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .z4c7b1advantage_item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .z4c7b1advantage_icon {
        font-size: 2.5rem;
    }
    
    .z4c7b1stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .z4c7b1hero_visual {
        max-width: 350px;
        transform: perspective(600px) rotateY(-1deg) rotateX(1deg);
    }
    
    .z4c7b1hero_visual:hover {
        transform: perspective(600px) rotateY(0deg) rotateX(0deg);
    }
    
    .z4c7b1section_title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .z4c7b1feature_card,
    .z4c7b1download_card {
        padding: 1.5rem;
    }
    
    .z4c7b1platform_icon {
        font-size: 2.5rem;
    }
    
    .z4c7b1footer_content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* 响应式设计 - 小屏幕移动设备 */
@media (max-width: 480px) {
    .z4c7b1container {
        padding: 0 15px;
    }
    
    .z4c7b1logo h1 {
        font-size: 1.5rem;
    }
    
    .z4c7b1hero {
        padding: 100px 0 60px;
    }
    
    .z4c7b1hero_title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .z4c7b1hero_subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .z4c7b1hero_description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .z4c7b1hero_buttons {
        max-width: 280px;
        gap: 0.8rem;
    }
    
    .z4c7b1btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .z4c7b1hero_visual {
        max-width: 280px;
        transform: none;
        margin: 0 auto;
    }
    
    .z4c7b1hero_visual:hover {
        transform: none;
    }
    
    .z4c7b1hero_badge {
        padding: 8px 16px;
    }
    
    .z4c7b1badge_text {
        font-size: 0.75rem;
    }
    
    .z4c7b1features,
    .z4c7b1download,
    .z4c7b1about,
    .z4c7b1advantages {
        padding: 50px 0;
    }
    
    .z4c7b1ad_section {
        padding: 20px 0;
    }
    
    .z4c7b1section_title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .z4c7b1features_grid,
    .z4c7b1download_options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .z4c7b1feature_card,
    .z4c7b1download_card {
        padding: 1.2rem;
    }
    
    .z4c7b1feature_icon,
    .z4c7b1platform_icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .z4c7b1feature_card h3,
    .z4c7b1download_card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .z4c7b1feature_card p,
    .z4c7b1download_card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .z4c7b1version_info,
    .z4c7b1features_list {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .z4c7b1advantages_list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .z4c7b1advantage_item {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .z4c7b1advantage_icon {
        font-size: 2.2rem;
    }
    
    .z4c7b1advantage_content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .z4c7b1advantage_content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .z4c7b1stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .z4c7b1stat {
        padding: 1rem;
    }
    
    .z4c7b1stat_number {
        font-size: 1.8rem;
    }
    
    .z4c7b1stat_label {
        font-size: 0.9rem;
    }
    
    .z4c7b1about_text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .z4c7b1footer_content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .z4c7b1footer_section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .z4c7b1footer_section p,
    .z4c7b1footer_section li {
        font-size: 0.9rem;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.z4c7b1feature_card,
.z4c7b1download_card,
.z4c7b1advantage_item {
    animation: fadeInUp 0.6s ease-out;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--z4c7b1primary_color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--z4c7b1secondary_color);
}

/* 焦点样式 */
.z4c7b1btn:focus,
.z4c7b1nav_menu a:focus {
    outline: 2px solid var(--z4c7b1primary_color);
    outline-offset: 2px;
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .z4c7b1btn:hover {
        transform: none;
    }
    
    .z4c7b1feature_card:hover,
    .z4c7b1download_card:hover {
        transform: none;
    }
    
    .z4c7b1hero_visual:hover {
        transform: none;
    }
    
    .z4c7b1advantage_item:hover {
        transform: none;
    }
}

/* 横屏模式优化 */
@media (orientation: landscape) and (max-height: 600px) {
    .z4c7b1hero {
        padding: 80px 0 60px;
    }
    
    .z4c7b1hero_title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .z4c7b1hero_subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .z4c7b1hero_description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .z4c7b1features,
    .z4c7b1download,
    .z4c7b1about,
    .z4c7b1advantages {
        padding: 50px 0;
    }
    
    .z4c7b1ad_section {
        padding: 20px 0;
    }
}

/* 高分辨率屏幕优化 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .z4c7b1hero_visual {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* 打印样式 */
@media print {
    .z4c7b1header,
    .z4c7b1footer,
    .z4c7b1btn {
        display: none;
    }
    
    .z4c7b1hero {
        background: white !important;
        color: black !important;
    }
} 