/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --z8619aprimary-color: #4a90e2;
    --z8619asecondary-color: #2c3e50;
    --z8619aaccent-color: #e74c3c;
    --z8619atext-color: #333;
    --z8619atext-light: #666;
    --z8619abg-light: #f8f9fa;
    --z8619abg-dark: #1a1a2e;
    --z8619awhite: #ffffff;
    --z8619ashadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --z8619ashadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --z8619agradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --z8619agradient-alt: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    line-height: 1.6;
    color: var(--z8619atext-color);
    overflow-x: hidden;
}

/* 确保所有图片响应式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.z8619acontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 导航栏样式 */
.z8619anavbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.z8619anavbar.z8619ascrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.z8619anav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.z8619alogo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--z8619aprimary-color);
    background: var(--z8619agradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.z8619anav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.z8619anav-link {
    text-decoration: none;
    color: var(--z8619atext-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.z8619anav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--z8619aprimary-color);
    transition: width 0.3s ease;
}

.z8619anav-link:hover {
    color: var(--z8619aprimary-color);
}

.z8619anav-link:hover::after {
    width: 100%;
}

.z8619amobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.z8619abar {
    width: 25px;
    height: 3px;
    background: var(--z8619atext-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* 主横幅样式 */
.z8619ahero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--z8619agradient);
    color: var(--z8619awhite);
    padding-top: 80px;
    padding-bottom: 4rem;
    overflow: hidden;
}

.z8619ahero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.z8619ahero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.z8619ahero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}

.z8619ahero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.z8619ahero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z8619ahero-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.z8619ahero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.z8619ahero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.z8619ahero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.z8619abtn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.z8619abtn-primary {
    background: var(--z8619awhite);
    color: var(--z8619aprimary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.z8619abtn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.z8619abtn-secondary {
    background: transparent;
    color: var(--z8619awhite);
    border: 2px solid var(--z8619awhite);
}

.z8619abtn-secondary:hover {
    background: var(--z8619awhite);
    color: var(--z8619aprimary-color);
    transform: translateY(-3px);
}

.z8619awave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--z8619awhite);
    height: 120px;
    overflow: hidden;
}

.z8619awave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* 区块标题样式 */
.z8619asection-header {
    text-align: center;
    margin-bottom: 4rem;
}

.z8619asection-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--z8619asecondary-color);
    position: relative;
    display: inline-block;
}

.z8619asection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--z8619agradient);
    border-radius: 2px;
}

.z8619asection-description {
    font-size: 1.1rem;
    color: var(--z8619atext-light);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* 服务板块样式 */
.z8619aservices {
    padding: 6rem 0;
    background: var(--z8619abg-light);
}

.z8619aservice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z8619aservice-card {
    background: var(--z8619awhite);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--z8619ashadow);
    position: relative;
    overflow: hidden;
}

.z8619aservice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--z8619agradient);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.z8619aservice-card:hover::before {
    left: 0;
}

.z8619aservice-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--z8619ashadow-hover);
}

.z8619aservice-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.z8619aservice-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--z8619asecondary-color);
}

.z8619aservice-text {
    color: var(--z8619atext-light);
    line-height: 1.8;
}

/* 优势板块样式 */
.z8619aadvantages {
    padding: 6rem 0;
    background: var(--z8619awhite);
}

.z8619aadvantage-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.z8619aadvantage-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.z8619aadvantage-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--z8619aprimary-color);
    opacity: 0.2;
    min-width: 80px;
    line-height: 1;
}

.z8619aadvantage-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--z8619asecondary-color);
}

.z8619aadvantage-text p {
    color: var(--z8619atext-light);
    line-height: 1.8;
}

.z8619afeature-box {
    background: var(--z8619agradient);
    padding: 3rem;
    border-radius: 20px;
    color: var(--z8619awhite);
    box-shadow: var(--z8619ashadow-hover);
}

.z8619afeature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.z8619afeature-item:last-child {
    border-bottom: none;
}

.z8619afeature-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.z8619afeature-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* 统计数据样式 */
.z8619astats {
    padding: 5rem 0;
    background: var(--z8619agradient);
    color: var(--z8619awhite);
    position: relative;
    overflow: hidden;
}

.z8619astats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.z8619astats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.z8619astat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.z8619astat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.z8619astat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.z8619astat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* 价格参考样式 */
.z8619apricing {
    padding: 6rem 0;
    background: var(--z8619awhite);
}

.z8619aprice-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.z8619aprice-card {
    background: var(--z8619abg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border-top: 4px solid var(--z8619aprimary-color);
    transition: all 0.3s ease;
    box-shadow: var(--z8619ashadow);
}

.z8619aprice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--z8619ashadow-hover);
}

.z8619aprice-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--z8619asecondary-color);
}

.z8619aprice-list {
    list-style: none;
}

.z8619aprice-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--z8619atext-light);
    line-height: 1.8;
}

.z8619aprice-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--z8619aprimary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.z8619aprice-note {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--z8619aaccent-color);
}

.z8619aprice-note p {
    margin: 0;
    color: var(--z8619atext-color);
    line-height: 1.8;
}

/* 流程板块样式 */
.z8619aprocess {
    padding: 6rem 0;
    background: var(--z8619abg-light);
}

.z8619aprocess-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.z8619astep-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.z8619astep-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--z8619agradient);
    color: var(--z8619awhite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.z8619astep-item:hover .z8619astep-number {
    transform: scale(1.1) rotate(5deg);
}

.z8619astep-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--z8619asecondary-color);
}

.z8619astep-content p {
    color: var(--z8619atext-light);
    line-height: 1.6;
}

.z8619astep-arrow {
    font-size: 2rem;
    color: var(--z8619aprimary-color);
    font-weight: 700;
}

/* 联系方式板块样式 */
.z8619acontact {
    padding: 6rem 0;
    background: var(--z8619awhite);
}

.z8619acontact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.z8619acontact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.z8619acontact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--z8619abg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.z8619acontact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--z8619ashadow);
}

.z8619acontact-icon {
    font-size: 2.5rem;
    min-width: 60px;
}

.z8619acontact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--z8619asecondary-color);
}

.z8619acontact-details p {
    color: var(--z8619atext-light);
}

.z8619acontact-form-wrapper {
    background: var(--z8619abg-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--z8619ashadow);
}

.z8619acontact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.z8619aform-group {
    position: relative;
}

.z8619aform-input,
.z8619aform-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--z8619awhite);
}

.z8619aform-input:focus,
.z8619aform-textarea:focus {
    outline: none;
    border-color: var(--z8619aprimary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.z8619aform-textarea {
    resize: vertical;
    min-height: 120px;
}

.z8619abtn-submit {
    background: var(--z8619agradient);
    color: var(--z8619awhite);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.z8619abtn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 页脚样式 */
.z8619afooter {
    background: var(--z8619abg-dark);
    color: var(--z8619awhite);
    padding: 4rem 0 2rem;
}

.z8619afooter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.z8619afooter-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--z8619awhite);
}

.z8619afooter-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.z8619afooter-links {
    list-style: none;
}

.z8619afooter-links li {
    margin-bottom: 0.8rem;
}

.z8619afooter-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.z8619afooter-links a:hover {
    color: var(--z8619awhite);
}

.z8619afooter-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* 响应式设计 */
/* 中等屏幕 - 平板横屏 */
@media (max-width: 992px) and (min-width: 769px) {
    .z8619ahero-wrapper {
        gap: 2rem;
    }

    .z8619ahero-title {
        font-size: 3rem;
    }

    .z8619aservice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z8619aadvantage-content {
        gap: 2rem;
    }

    .z8619acontainer {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .z8619anav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--z8619awhite);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--z8619ashadow);
        padding: 2rem 0;
        gap: 0;
    }

    .z8619anav-menu.z8619aactive {
        left: 0;
    }

    .z8619anav-item {
        padding: 1rem 0;
    }

    .z8619amobile-toggle {
        display: flex;
    }

    .z8619amobile-toggle.z8619aactive .z8619abar:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .z8619amobile-toggle.z8619aactive .z8619abar:nth-child(2) {
        opacity: 0;
    }

    .z8619amobile-toggle.z8619aactive .z8619abar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .z8619acontainer {
        padding: 0 15px;
    }

    .z8619ahero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1.5rem 0;
    }

    .z8619ahero-content {
        text-align: center;
        padding: 1.5rem;
        order: -1;
    }

    .z8619ahero-buttons {
        justify-content: center;
    }

    .z8619ahero-image {
        max-width: 100%;
    }

    .z8619ahero-title {
        font-size: 2.5rem;
    }

    .z8619ahero-subtitle {
        font-size: 1.1rem;
    }

    .z8619asection-title {
        font-size: 2rem;
    }

    .z8619asection-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .z8619asection-header {
        margin-bottom: 3rem;
    }

    .z8619aadvantage-content {
        grid-template-columns: 1fr;
    }

    .z8619astep-arrow {
        display: none;
    }

    .z8619aprocess-steps {
        flex-direction: column;
    }

    .z8619acontact-content {
        grid-template-columns: 1fr;
    }

    .z8619aservice-grid {
        grid-template-columns: 1fr;
    }

    .z8619ahero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .z8619abtn {
        width: 100%;
        text-align: center;
    }

    .z8619astats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .z8619astat-number {
        font-size: 2.5rem;
    }

    .z8619aprice-info {
        grid-template-columns: 1fr;
    }

    .z8619aguarantee-grid {
        grid-template-columns: 1fr;
    }

    .z8619acases-grid {
        grid-template-columns: 1fr;
    }

    .z8619acredentials-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .z8619aadvantage-item {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .z8619aadvantage-number {
        font-size: 2.5rem;
        min-width: 60px;
    }

    .z8619astep-item {
        min-width: auto;
    }

    .z8619astep-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .z8619acontainer {
        padding: 0 15px;
    }

    .z8619ahero {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 2rem;
    }

    .z8619ahero-wrapper {
        padding: 1rem 0;
        gap: 1.5rem;
    }

    .z8619ahero-content {
        padding: 1rem;
    }

    .z8619ahero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .z8619ahero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .z8619asection-title {
        font-size: 1.8rem;
    }

    .z8619asection-description {
        font-size: 0.95rem;
    }

    .z8619asection-header {
        margin-bottom: 2.5rem;
    }

    .z8619aservice-card,
    .z8619acontact-form-wrapper {
        padding: 1.5rem;
    }

    .z8619afeature-box {
        padding: 2rem;
    }

    .z8619astats-grid {
        grid-template-columns: 1fr;
    }

    .z8619astat-number {
        font-size: 2rem;
    }

    .z8619acredentials-content {
        grid-template-columns: 1fr;
    }

    .z8619afaq-question {
        padding: 1rem 1.5rem;
    }

    .z8619afaq-answer {
        padding: 0 1.5rem;
    }

    .z8619afaq-item.z8619aactive .z8619afaq-answer {
        padding: 1rem 1.5rem;
    }

    .z8619aadvantage-number {
        font-size: 2rem;
        min-width: 50px;
    }

    .z8619aadvantage-text h3 {
        font-size: 1.2rem;
    }

    .z8619aadvantage-text p {
        font-size: 0.9rem;
    }

    .z8619aservice-card,
    .z8619aguarantee-item,
    .z8619acase-card,
    .z8619acredential-item {
        padding: 1.5rem;
    }

    .z8619aservice-title,
    .z8619aguarantee-item h3,
    .z8619acase-info h3 {
        font-size: 1.2rem;
    }

    .z8619aprice-card {
        padding: 2rem 1.5rem;
    }

    .z8619acontact-item {
        padding: 1.5rem;
    }

    .z8619acontact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .z8619alogo {
        font-size: 1.2rem;
    }
}

/* 动画效果 */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.z8619aservice-card:hover .z8619aservice-icon {
    animation: float 2s ease-in-out infinite;
}

/* 美化元素 */
.z8619aservices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--z8619awhite), transparent);
    pointer-events: none;
}

.z8619aadvantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="%23e0e0e0" opacity="0.5"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.z8619aadvantages {
    position: relative;
    overflow: hidden;
}

/* 服务保障样式 */
.z8619aguarantee {
    padding: 6rem 0;
    background: var(--z8619awhite);
}

.z8619aguarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z8619aguarantee-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--z8619abg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.z8619aguarantee-item:hover {
    transform: translateY(-10px);
    border-color: var(--z8619aprimary-color);
    box-shadow: var(--z8619ashadow-hover);
}

.z8619aguarantee-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.z8619aguarantee-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--z8619asecondary-color);
}

.z8619aguarantee-item p {
    color: var(--z8619atext-light);
    line-height: 1.8;
}

/* 客户案例样式 */
.z8619acases {
    padding: 6rem 0;
    background: var(--z8619abg-light);
}

.z8619acases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.z8619acase-card {
    background: var(--z8619awhite);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--z8619ashadow);
    transition: all 0.3s ease;
}

.z8619acase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--z8619ashadow-hover);
}

.z8619acase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.z8619acase-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--z8619agradient);
    color: var(--z8619awhite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.z8619acase-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--z8619asecondary-color);
}

.z8619acase-info p {
    font-size: 0.9rem;
    color: var(--z8619atext-light);
    margin: 0;
}

.z8619acase-content {
    margin-bottom: 1.5rem;
}

.z8619acase-content p {
    color: var(--z8619atext-color);
    line-height: 1.8;
    font-style: italic;
}

.z8619acase-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.z8619acase-date {
    color: var(--z8619atext-light);
}

.z8619acase-rating {
    color: #ffc107;
    font-size: 1rem;
}

/* FAQ样式 */
.z8619afaq {
    padding: 6rem 0;
    background: var(--z8619awhite);
}

.z8619afaq-list {
    max-width: 900px;
    margin: 0 auto;
}

.z8619afaq-item {
    background: var(--z8619abg-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.z8619afaq-item:hover {
    box-shadow: var(--z8619ashadow);
}

.z8619afaq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.z8619afaq-question:hover {
    background: rgba(74, 144, 226, 0.05);
}

.z8619afaq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--z8619asecondary-color);
    margin: 0;
    flex: 1;
}

.z8619afaq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--z8619aprimary-color);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.z8619afaq-item.z8619aactive .z8619afaq-toggle {
    transform: rotate(45deg);
}

.z8619afaq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.z8619afaq-item.z8619aactive .z8619afaq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.z8619afaq-answer p {
    color: var(--z8619atext-light);
    line-height: 1.8;
    margin: 0;
}

/* 资质信誉样式 */
.z8619acredentials {
    padding: 6rem 0;
    background: var(--z8619abg-light);
}

.z8619acredentials-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.z8619acredential-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--z8619awhite);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--z8619ashadow);
    border-top: 3px solid var(--z8619aprimary-color);
}

.z8619acredential-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--z8619ashadow-hover);
}

.z8619acredential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.z8619acredential-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--z8619asecondary-color);
}

.z8619acredential-item p {
    color: var(--z8619atext-light);
    line-height: 1.6;
    font-size: 0.95rem;
}
