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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* 导航栏样式 */
.z5bafeheader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.z5bafenav_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.z5bafelogo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.z5bafelogo h1 a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.z5bafelogo h1 a:hover {
    opacity: 0.8;
}

.z5bafenav_menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.z5bafenav_menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.z5bafenav_menu a:hover {
    color: #667eea;
}

.z5bafenav_menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.z5bafenav_menu a:hover::after {
    width: 100%;
}

.z5bafemobile_menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.z5bafemobile_menu span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* 主横幅样式 */
.z5bafehero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.z5bafehero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.z5bafehero_title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.z5bafehero_subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.z5bafehero_features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.z5bafefeature_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.z5bafefeature_icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #4CAF50;
}

.z5bafehero_buttons {
    display: flex;
    gap: 1rem;
}

.z5bafebtn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.z5bafebtn_primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.z5bafebtn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

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

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

.z5bafehero_visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.z5bafehero_img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.z5bafehero_img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
}

/* 产品服务样式 */
.z5bafeproducts {
    padding: 80px 0;
    background: white;
}

.z5bafesection_header {
    text-align: center;
    margin-bottom: 4rem;
}

.z5bafesection_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.z5bafesection_subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.z5bafeproduct_card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.z5bafeproduct_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.z5bafeproduct_icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.z5bafeproduct_card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.z5bafeproduct_card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.z5bafeproduct_features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.z5bafeproduct_features span {
    color: #4CAF50;
    font-size: 0.9rem;
}

/* 数据统计样式 */
.z5bafestats_section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.z5bafestats_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.z5bafestat_card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.z5bafestat_card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.z5bafestat_icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.z5bafestat_number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #4CAF50;
}

.z5bafestat_label {
    font-size: 1rem;
    opacity: 0.9;
}

/* 平台特色样式 */
.z5bafefeatures {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.z5bafefeatures_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z5bafefeature_card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.z5bafefeature_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.z5bafefeature_icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.z5bafefeature_card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.z5bafefeature_card p {
    color: #666;
    line-height: 1.6;
}

/* 关于我们样式 */
.z5bafeabout {
    padding: 80px 0;
    background: white;
}

.z5bafeabout_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.z5bafeabout_text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.z5bafeabout_text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.z5bafestats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.z5bafestat_item {
    text-align: center;
}

.z5bafestat_number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.z5bafestat_label {
    color: #666;
    font-size: 0.9rem;
}

.z5bafeabout_img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.z5bafeabout_img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* 价格方案样式 */
.z5bafepricing {
    padding: 80px 0;
    background: white;
}

.z5bafepricing_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.z5bafepricing_card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.z5bafepricing_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.z5bafepopular {
    border-color: #667eea;
    transform: scale(1.05);
}

.z5bafepopular_badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.z5bafepricing_header {
    text-align: center;
    margin-bottom: 2rem;
}

.z5bafepricing_header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.z5bafeprice {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.z5bafecurrency {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 600;
}

.z5bafeamount {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
}

.z5bafeperiod {
    font-size: 1rem;
    color: #666;
}

.z5bafepricing_features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.z5bafepricing_features li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.z5bafepricing_features li:last-child {
    border-bottom: none;
}

/* 服务流程样式 */
.z5bafeprocess {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.z5bafeprocess_steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.z5bafeprocess_step {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
}

.z5bafestep_number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.z5bafestep_icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.z5bafeprocess_step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.z5bafeprocess_step p {
    color: #666;
    line-height: 1.6;
}

.z5bafeprocess_arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
}

/* 常见问题样式 */
.z5bafefaq {
    padding: 80px 0;
    background: white;
}

.z5bafefaq_list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.z5bafefaq_item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.z5bafefaq_item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.z5bafefaq_question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.z5bafefaq_question:hover {
    background: #e9ecef;
}

.z5bafefaq_question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.z5bafefaq_toggle {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.z5bafefaq_item.active .z5bafefaq_toggle {
    transform: rotate(45deg);
}

.z5bafefaq_answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.z5bafefaq_item.active .z5bafefaq_answer {
    padding: 1.5rem;
    max-height: 200px;
}

.z5bafefaq_answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 客户评价样式 */
.z5bafetestimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.z5bafetestimonials_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.z5bafetestimonial_card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.z5bafetestimonial_card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.z5bafetestimonial_content {
    margin-bottom: 1.5rem;
}

.z5bafetestimonial_content p {
    font-style: italic;
    line-height: 1.6;
    font-size: 1.1rem;
}

.z5bafetestimonial_author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.z5bafeauthor_avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.z5bafeauthor_info {
    flex: 1;
}

.z5bafeauthor_info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.z5bafeauthor_info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.z5baferating {
    font-size: 1.2rem;
}

/* 联系方式样式 */
.z5bafecontact {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.z5bafecontact_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.z5bafecontact_info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.z5bafecontact_item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.z5bafecontact_icon {
    font-size: 2rem;
}

.z5bafecontact_text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.z5bafecontact_text p {
    opacity: 0.8;
}

.z5bafeform {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.z5bafeform_group {
    margin-bottom: 1.5rem;
}

.z5bafeform_group input,
.z5bafeform_group textarea,
.z5bafeform_group select {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.z5bafeform_group select {
    cursor: pointer;
}

.z5bafecontact_detail {
    font-weight: 600;
    color: #4CAF50;
    margin-top: 0.5rem;
}

.z5bafeform_group input:focus,
.z5bafeform_group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.z5bafeform_group textarea {
    resize: vertical;
    min-height: 100px;
}

/* 页脚样式 */
.z5bafefooter {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.z5bafefooter_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.z5bafefooter_section h3,
.z5bafefooter_section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.z5bafefooter_section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.z5bafefooter_section ul {
    list-style: none;
}

.z5bafefooter_section ul li {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.z5bafefooter_section ul li:hover {
    color: #ecf0f1;
}

.z5bafefooter_bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .z5bafenav_menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .z5bafenav_menu.active {
        display: flex;
    }

    .z5bafemobile_menu {
        display: flex;
    }

    .z5bafemobile_menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .z5bafemobile_menu.active span:nth-child(2) {
        opacity: 0;
    }

    .z5bafemobile_menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .z5bafehero_container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .z5bafehero_title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .z5bafehero_subtitle {
        font-size: 1rem;
    }

    .z5bafehero_features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .z5bafehero_buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .z5bafebtn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .z5bafehero_img {
        max-width: 280px;
    }

    .z5bafeabout_content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .z5bafeabout_img {
        max-width: 100%;
    }

    .z5bafecontact_content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .z5bafestats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .z5bafesection_title {
        font-size: 1.8rem;
    }

    .z5bafesection_subtitle {
        font-size: 1rem;
    }

    .z5bafeproducts_grid,
    .z5bafefeatures_grid,
    .z5bafepricing_grid,
    .z5bafetestimonials_grid,
    .z5bafestats_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .z5bafeproduct_card,
    .z5bafefeature_card,
    .z5bafepricing_card,
    .z5bafetestimonial_card {
        padding: 1.5rem;
    }

    .z5bafeprocess_steps {
        flex-direction: column;
        gap: 1rem;
    }

    .z5bafeprocess_step {
        padding: 1.5rem;
        min-width: auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .z5bafeprocess_arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .z5bafefaq_question {
        padding: 1rem;
    }

    .z5bafefaq_question h3 {
        font-size: 1rem;
    }

    .z5bafecontact_item {
        padding: 1rem;
    }

    .z5bafeform {
        padding: 1.5rem;
    }

    .z5bafestat_card {
        padding: 1.5rem;
    }

    .z5bafestat_number {
        font-size: 2rem;
    }

    .z5bafestat_icon {
        font-size: 2.5rem;
    }
}

/* 平板设备优化 */
@media (max-width: 1024px) and (min-width: 769px) {
    .z5bafehero_container {
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .z5bafehero_title {
        font-size: 2.5rem;
    }

    .z5bafehero_img {
        max-width: 350px;
    }

    .z5bafeproducts_grid,
    .z5bafefeatures_grid,
    .z5bafepricing_grid,
    .z5bafetestimonials_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .z5bafestats_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z5bafeprocess_steps {
        gap: 1.5rem;
    }

    .z5bafeprocess_step {
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .z5bafecontainer {
        padding: 0 15px;
    }

    .z5bafenav_container {
        padding: 1rem;
    }

    .z5bafelogo h1 {
        font-size: 1.3rem;
    }

    .z5bafehero {
        padding: 80px 0 50px;
    }

    .z5bafehero_title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .z5bafehero_subtitle {
        font-size: 0.9rem;
    }

    .z5bafehero_features {
        gap: 0.8rem;
    }

    .z5bafehero_buttons {
        gap: 0.8rem;
    }

    .z5bafebtn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .z5bafehero_img {
        max-width: 250px;
    }

    .z5bafeproducts,
    .z5bafefeatures,
    .z5bafeabout,
    .z5bafecontact,
    .z5bafepricing,
    .z5bafeprocess,
    .z5bafefaq,
    .z5bafetestimonials,
    .z5bafestats_section {
        padding: 50px 0;
    }

    .z5bafesection_title {
        font-size: 1.6rem;
    }

    .z5bafesection_subtitle {
        font-size: 0.9rem;
    }

    .z5bafeproducts_grid,
    .z5bafefeatures_grid,
    .z5bafepricing_grid,
    .z5bafetestimonials_grid,
    .z5bafestats_grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .z5bafeproduct_card,
    .z5bafefeature_card,
    .z5bafepricing_card,
    .z5bafetestimonial_card,
    .z5bafestat_card {
        padding: 1.2rem;
    }

    .z5bafeproduct_card h3,
    .z5bafefeature_card h3,
    .z5bafepricing_header h3 {
        font-size: 1.2rem;
    }

    .z5bafeproduct_card p,
    .z5bafefeature_card p {
        font-size: 0.9rem;
    }

    .z5bafeprocess_steps {
        flex-direction: column;
        gap: 0.8rem;
    }

    .z5bafeprocess_step {
        padding: 1.2rem;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .z5bafeprocess_step h3 {
        font-size: 1.1rem;
    }

    .z5bafeprocess_step p {
        font-size: 0.9rem;
    }

    .z5bafeprocess_arrow {
        transform: rotate(90deg);
        margin: 0.3rem 0;
        font-size: 1.5rem;
    }

    .z5bafefaq_question {
        padding: 0.8rem;
    }

    .z5bafefaq_question h3 {
        font-size: 0.95rem;
    }

    .z5bafefaq_answer {
        padding: 0.8rem;
    }

    .z5bafefaq_answer p {
        font-size: 0.9rem;
    }

    .z5bafecontact_item {
        padding: 0.8rem;
    }

    .z5bafecontact_text h3 {
        font-size: 1.1rem;
    }

    .z5bafecontact_text p {
        font-size: 0.9rem;
    }

    .z5bafeform {
        padding: 1.2rem;
    }

    .z5bafeform_group input,
    .z5bafeform_group textarea,
    .z5bafeform_group select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .z5bafestat_number {
        font-size: 1.8rem;
    }

    .z5bafestat_icon {
        font-size: 2rem;
    }

    .z5bafestat_label {
        font-size: 0.9rem;
    }

    .z5bafeabout_text h2 {
        font-size: 1.8rem;
    }

    .z5bafeabout_text p {
        font-size: 0.9rem;
    }

    .z5bafeprice .z5bafeamount {
        font-size: 2.5rem;
    }

    .z5bafeprice .z5bafecurrency {
        font-size: 1.2rem;
    }

    .z5bafetestimonial_content p {
        font-size: 1rem;
    }

    .z5bafeauthor_info h4 {
        font-size: 1rem;
    }

    .z5bafeauthor_info span {
        font-size: 0.8rem;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.z5bafehero_content {
    animation: fadeInLeft 1s ease-out;
}

.z5bafehero_visual {
    animation: fadeInRight 1s ease-out;
}

.z5bafeproduct_card,
.z5bafefeature_card {
    animation: fadeInUp 0.6s ease-out;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

/* 选择文本样式 */
::selection {
    background: rgba(102, 126, 234, 0.3);
    color: #333;
}

/* 焦点样式 */
:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* 加载动画 */
.z5bafeloading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
} 