/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --z269ddprimary-color: #4a90e2;
    --z269ddsecondary-color: #2c3e50;
    --z269ddaccent-color: #e74c3c;
    --z269ddtext-color: #333;
    --z269ddtext-light: #666;
    --z269ddbg-light: #f8f9fa;
    --z269ddbg-dark: #1a1a2e;
    --z269ddwhite: #ffffff;
    --z269ddshadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --z269ddshadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --z269ddgradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --z269ddgradient-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(--z269ddtext-color);
    overflow-x: hidden;
}

/* 确保所有图片响应式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.z269ddcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 导航栏样式 */
.z269ddnavbar {
    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;
}

.z269ddnavbar.z269ddscrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.z269ddnav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.z269ddlogo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--z269ddprimary-color);
    background: var(--z269ddgradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.z269ddnav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.z269ddnav-link {
    text-decoration: none;
    color: var(--z269ddtext-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.z269ddnav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--z269ddprimary-color);
    transition: width 0.3s ease;
}

.z269ddnav-link:hover {
    color: var(--z269ddprimary-color);
}

.z269ddnav-link:hover::after {
    width: 100%;
}

.z269ddmobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.z269ddbar {
    width: 25px;
    height: 3px;
    background: var(--z269ddtext-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* 主横幅样式 */
.z269ddhero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--z269ddgradient);
    color: var(--z269ddwhite);
    padding-top: 80px;
    padding-bottom: 4rem;
    overflow: hidden;
}

.z269ddhero::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;
}

.z269ddhero-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%);
}

.z269ddhero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}

.z269ddhero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.z269ddhero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z269ddhero-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);
    }
}

.z269ddhero-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;
}

.z269ddhero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.z269ddhero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.z269ddbtn {
    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;
}

.z269ddbtn-primary {
    background: var(--z269ddwhite);
    color: var(--z269ddprimary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.z269ddbtn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.z269ddbtn-secondary {
    background: transparent;
    color: var(--z269ddwhite);
    border: 2px solid var(--z269ddwhite);
}

.z269ddbtn-secondary:hover {
    background: var(--z269ddwhite);
    color: var(--z269ddprimary-color);
    transform: translateY(-3px);
}

.z269ddwave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--z269ddwhite);
    height: 120px;
    overflow: hidden;
}

.z269ddwave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* 区块标题样式 */
.z269ddsection-header {
    text-align: center;
    margin-bottom: 4rem;
}

.z269ddsection-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--z269ddsecondary-color);
    position: relative;
    display: inline-block;
}

.z269ddsection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--z269ddgradient);
    border-radius: 2px;
}

.z269ddsection-description {
    font-size: 1.1rem;
    color: var(--z269ddtext-light);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* 服务板块样式 */
.z269ddservices {
    padding: 6rem 0;
    background: var(--z269ddbg-light);
}

.z269ddservice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z269ddservice-card {
    background: var(--z269ddwhite);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--z269ddshadow);
    position: relative;
    overflow: hidden;
}

.z269ddservice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--z269ddgradient);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.z269ddservice-card:hover::before {
    left: 0;
}

.z269ddservice-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--z269ddshadow-hover);
}

.z269ddservice-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.z269ddservice-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--z269ddsecondary-color);
}

.z269ddservice-text {
    color: var(--z269ddtext-light);
    line-height: 1.8;
}

/* 优势板块样式 */
.z269ddadvantages {
    padding: 6rem 0;
    background: var(--z269ddwhite);
}

.z269ddadvantage-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.z269ddadvantage-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.z269ddadvantage-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--z269ddprimary-color);
    opacity: 0.2;
    min-width: 80px;
    line-height: 1;
}

.z269ddadvantage-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--z269ddsecondary-color);
}

.z269ddadvantage-text p {
    color: var(--z269ddtext-light);
    line-height: 1.8;
}

.z269ddfeature-box {
    background: var(--z269ddgradient);
    padding: 3rem;
    border-radius: 20px;
    color: var(--z269ddwhite);
    box-shadow: var(--z269ddshadow-hover);
}

.z269ddfeature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.z269ddfeature-item:last-child {
    border-bottom: none;
}

.z269ddfeature-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.z269ddfeature-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* 统计数据样式 */
.z269ddstats {
    padding: 5rem 0;
    background: var(--z269ddgradient);
    color: var(--z269ddwhite);
    position: relative;
    overflow: hidden;
}

.z269ddstats::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;
}

.z269ddstats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.z269ddstat-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;
}

.z269ddstat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.z269ddstat-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);
}

.z269ddstat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* 价格参考样式 */
.z269ddpricing {
    padding: 6rem 0;
    background: var(--z269ddwhite);
}

.z269ddprice-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.z269ddprice-card {
    background: var(--z269ddbg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border-top: 4px solid var(--z269ddprimary-color);
    transition: all 0.3s ease;
    box-shadow: var(--z269ddshadow);
}

.z269ddprice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--z269ddshadow-hover);
}

.z269ddprice-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--z269ddsecondary-color);
}

.z269ddprice-list {
    list-style: none;
}

.z269ddprice-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--z269ddtext-light);
    line-height: 1.8;
}

.z269ddprice-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--z269ddprimary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.z269ddprice-note {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--z269ddaccent-color);
}

.z269ddprice-note p {
    margin: 0;
    color: var(--z269ddtext-color);
    line-height: 1.8;
}

/* 流程板块样式 */
.z269ddprocess {
    padding: 6rem 0;
    background: var(--z269ddbg-light);
}

.z269ddprocess-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.z269ddstep-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.z269ddstep-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--z269ddgradient);
    color: var(--z269ddwhite);
    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;
}

.z269ddstep-item:hover .z269ddstep-number {
    transform: scale(1.1) rotate(5deg);
}

.z269ddstep-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--z269ddsecondary-color);
}

.z269ddstep-content p {
    color: var(--z269ddtext-light);
    line-height: 1.6;
}

.z269ddstep-arrow {
    font-size: 2rem;
    color: var(--z269ddprimary-color);
    font-weight: 700;
}

/* 联系方式板块样式 */
.z269ddcontact {
    padding: 6rem 0;
    background: var(--z269ddwhite);
}

.z269ddcontact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.z269ddcontact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.z269ddcontact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--z269ddbg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.z269ddcontact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--z269ddshadow);
}

.z269ddcontact-icon {
    font-size: 2.5rem;
    min-width: 60px;
}

.z269ddcontact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--z269ddsecondary-color);
}

.z269ddcontact-details p {
    color: var(--z269ddtext-light);
}

.z269ddcontact-form-wrapper {
    background: var(--z269ddbg-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--z269ddshadow);
}

.z269ddcontact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.z269ddform-group {
    position: relative;
}

.z269ddform-input,
.z269ddform-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(--z269ddwhite);
}

.z269ddform-input:focus,
.z269ddform-textarea:focus {
    outline: none;
    border-color: var(--z269ddprimary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.z269ddform-textarea {
    resize: vertical;
    min-height: 120px;
}

.z269ddbtn-submit {
    background: var(--z269ddgradient);
    color: var(--z269ddwhite);
    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);
}

.z269ddbtn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 页脚样式 */
.z269ddfooter {
    background: var(--z269ddbg-dark);
    color: var(--z269ddwhite);
    padding: 4rem 0 2rem;
}

.z269ddfooter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.z269ddfooter-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--z269ddwhite);
}

.z269ddfooter-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.z269ddfooter-links {
    list-style: none;
}

.z269ddfooter-links li {
    margin-bottom: 0.8rem;
}

.z269ddfooter-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.z269ddfooter-links a:hover {
    color: var(--z269ddwhite);
}

.z269ddfooter-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) {
    .z269ddhero-wrapper {
        gap: 2rem;
    }

    .z269ddhero-title {
        font-size: 3rem;
    }

    .z269ddservice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z269ddadvantage-content {
        gap: 2rem;
    }

    .z269ddcontainer {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .z269ddnav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--z269ddwhite);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--z269ddshadow);
        padding: 2rem 0;
        gap: 0;
    }

    .z269ddnav-menu.z269ddactive {
        left: 0;
    }

    .z269ddnav-item {
        padding: 1rem 0;
    }

    .z269ddmobile-toggle {
        display: flex;
    }

    .z269ddmobile-toggle.z269ddactive .z269ddbar:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .z269ddmobile-toggle.z269ddactive .z269ddbar:nth-child(2) {
        opacity: 0;
    }

    .z269ddmobile-toggle.z269ddactive .z269ddbar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .z269ddcontainer {
        padding: 0 15px;
    }

    .z269ddhero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1.5rem 0;
    }

    .z269ddhero-content {
        text-align: center;
        padding: 1.5rem;
        order: -1;
    }

    .z269ddhero-buttons {
        justify-content: center;
    }

    .z269ddhero-image {
        max-width: 100%;
    }

    .z269ddhero-title {
        font-size: 2.5rem;
    }

    .z269ddhero-subtitle {
        font-size: 1.1rem;
    }

    .z269ddsection-title {
        font-size: 2rem;
    }

    .z269ddsection-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .z269ddsection-header {
        margin-bottom: 3rem;
    }

    .z269ddadvantage-content {
        grid-template-columns: 1fr;
    }

    .z269ddstep-arrow {
        display: none;
    }

    .z269ddprocess-steps {
        flex-direction: column;
    }

    .z269ddcontact-content {
        grid-template-columns: 1fr;
    }

    .z269ddservice-grid {
        grid-template-columns: 1fr;
    }

    .z269ddhero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .z269ddbtn {
        width: 100%;
        text-align: center;
    }

    .z269ddstats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .z269ddstat-number {
        font-size: 2.5rem;
    }

    .z269ddprice-info {
        grid-template-columns: 1fr;
    }

    .z269ddguarantee-grid {
        grid-template-columns: 1fr;
    }

    .z269ddcases-grid {
        grid-template-columns: 1fr;
    }

    .z269ddcredentials-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .z269ddadvantage-item {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .z269ddadvantage-number {
        font-size: 2.5rem;
        min-width: 60px;
    }

    .z269ddstep-item {
        min-width: auto;
    }

    .z269ddstep-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .z269ddcontainer {
        padding: 0 15px;
    }

    .z269ddhero {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 2rem;
    }

    .z269ddhero-wrapper {
        padding: 1rem 0;
        gap: 1.5rem;
    }

    .z269ddhero-content {
        padding: 1rem;
    }

    .z269ddhero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .z269ddhero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .z269ddsection-title {
        font-size: 1.8rem;
    }

    .z269ddsection-description {
        font-size: 0.95rem;
    }

    .z269ddsection-header {
        margin-bottom: 2.5rem;
    }

    .z269ddservice-card,
    .z269ddcontact-form-wrapper {
        padding: 1.5rem;
    }

    .z269ddfeature-box {
        padding: 2rem;
    }

    .z269ddstats-grid {
        grid-template-columns: 1fr;
    }

    .z269ddstat-number {
        font-size: 2rem;
    }

    .z269ddcredentials-content {
        grid-template-columns: 1fr;
    }

    .z269ddfaq-question {
        padding: 1rem 1.5rem;
    }

    .z269ddfaq-answer {
        padding: 0 1.5rem;
    }

    .z269ddfaq-item.z269ddactive .z269ddfaq-answer {
        padding: 1rem 1.5rem;
    }

    .z269ddadvantage-number {
        font-size: 2rem;
        min-width: 50px;
    }

    .z269ddadvantage-text h3 {
        font-size: 1.2rem;
    }

    .z269ddadvantage-text p {
        font-size: 0.9rem;
    }

    .z269ddservice-card,
    .z269ddguarantee-item,
    .z269ddcase-card,
    .z269ddcredential-item {
        padding: 1.5rem;
    }

    .z269ddservice-title,
    .z269ddguarantee-item h3,
    .z269ddcase-info h3 {
        font-size: 1.2rem;
    }

    .z269ddprice-card {
        padding: 2rem 1.5rem;
    }

    .z269ddcontact-item {
        padding: 1.5rem;
    }

    .z269ddcontact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .z269ddlogo {
        font-size: 1.2rem;
    }
}

/* 动画效果 */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.z269ddservice-card:hover .z269ddservice-icon {
    animation: float 2s ease-in-out infinite;
}

/* 美化元素 */
.z269ddservices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--z269ddwhite), transparent);
    pointer-events: none;
}

.z269ddadvantages::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;
}

.z269ddadvantages {
    position: relative;
    overflow: hidden;
}

/* 服务保障样式 */
.z269ddguarantee {
    padding: 6rem 0;
    background: var(--z269ddwhite);
}

.z269ddguarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z269ddguarantee-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--z269ddbg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.z269ddguarantee-item:hover {
    transform: translateY(-10px);
    border-color: var(--z269ddprimary-color);
    box-shadow: var(--z269ddshadow-hover);
}

.z269ddguarantee-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.z269ddguarantee-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--z269ddsecondary-color);
}

.z269ddguarantee-item p {
    color: var(--z269ddtext-light);
    line-height: 1.8;
}

/* 客户案例样式 */
.z269ddcases {
    padding: 6rem 0;
    background: var(--z269ddbg-light);
}

.z269ddcases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.z269ddcase-card {
    background: var(--z269ddwhite);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--z269ddshadow);
    transition: all 0.3s ease;
}

.z269ddcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--z269ddshadow-hover);
}

.z269ddcase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.z269ddcase-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--z269ddgradient);
    color: var(--z269ddwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.z269ddcase-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--z269ddsecondary-color);
}

.z269ddcase-info p {
    font-size: 0.9rem;
    color: var(--z269ddtext-light);
    margin: 0;
}

.z269ddcase-content {
    margin-bottom: 1.5rem;
}

.z269ddcase-content p {
    color: var(--z269ddtext-color);
    line-height: 1.8;
    font-style: italic;
}

.z269ddcase-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.z269ddcase-date {
    color: var(--z269ddtext-light);
}

.z269ddcase-rating {
    color: #ffc107;
    font-size: 1rem;
}

/* FAQ样式 */
.z269ddfaq {
    padding: 6rem 0;
    background: var(--z269ddwhite);
}

.z269ddfaq-list {
    max-width: 900px;
    margin: 0 auto;
}

.z269ddfaq-item {
    background: var(--z269ddbg-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.z269ddfaq-item:hover {
    box-shadow: var(--z269ddshadow);
}

.z269ddfaq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.z269ddfaq-question:hover {
    background: rgba(74, 144, 226, 0.05);
}

.z269ddfaq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--z269ddsecondary-color);
    margin: 0;
    flex: 1;
}

.z269ddfaq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--z269ddprimary-color);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.z269ddfaq-item.z269ddactive .z269ddfaq-toggle {
    transform: rotate(45deg);
}

.z269ddfaq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.z269ddfaq-item.z269ddactive .z269ddfaq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.z269ddfaq-answer p {
    color: var(--z269ddtext-light);
    line-height: 1.8;
    margin: 0;
}

/* 资质信誉样式 */
.z269ddcredentials {
    padding: 6rem 0;
    background: var(--z269ddbg-light);
}

.z269ddcredentials-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.z269ddcredential-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--z269ddwhite);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--z269ddshadow);
    border-top: 3px solid var(--z269ddprimary-color);
}

.z269ddcredential-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--z269ddshadow-hover);
}

.z269ddcredential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.z269ddcredential-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--z269ddsecondary-color);
}

.z269ddcredential-item p {
    color: var(--z269ddtext-light);
    line-height: 1.6;
    font-size: 0.95rem;
}
