/* 网站建设页面专用样式 - 避免与其他页面冲突 */

/* 页面横幅 */
.wd-page-banner {
    background: var(--gradient-1);
    padding: 100px 20px 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.wd-page-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -50px;
    animation: wd-float 8s ease-in-out infinite;
}

@keyframes wd-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.wd-banner-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.wd-banner-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.wd-banner-content h1 i {
    font-size: 42px;
}

.wd-banner-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    color: white;
}

/* 快捷特性展示 */
.wd-features-quick {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.wd-quick-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.wd-quick-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.wd-quick-item i {
    font-size: 20px;
    color: white;
}

.wd-quick-item span {
    font-size: 15px;
    font-weight: 600;
    color: white;
}

/* 服务介绍区域 */
.wd-intro-section {
    background: white;
}

.wd-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.wd-intro-card {
    background: white;
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 169, 236, 0.08);
    box-shadow: var(--shadow-sm);
}

.wd-intro-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 169, 236, 0.15);
}

.wd-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.4s;
}

.wd-intro-card:hover .wd-intro-icon {
    transform: scale(1.1) rotate(5deg);
}

.wd-intro-card:nth-child(2n) .wd-intro-icon {
    background: var(--gradient-2);
}

.wd-intro-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.wd-intro-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* 网站类型区域 */
.wd-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.wd-type-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 169, 236, 0.08);
    box-shadow: var(--shadow-sm);
}

.wd-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 169, 236, 0.15);
}

.wd-type-image {
    height: 180px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: white;
}

.wd-type-card:nth-child(2) .wd-type-image {
    background: var(--gradient-2);
}

.wd-type-card:nth-child(3) .wd-type-image {
    background: var(--gradient-3);
}

.wd-type-card:nth-child(4) .wd-type-image {
    background: linear-gradient(135deg, #a71d31 0%, #c41e3a 100%);
}

.wd-type-content {
    padding: 30px;
}

.wd-type-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.wd-type-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.wd-type-features {
    list-style: none;
    padding: 0;
}

.wd-type-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wd-type-features li i {
    color: var(--primary-color);
    font-size: 12px;
}

/* 建站流程 */
.wd-process-timeline {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

.wd-process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.wd-process-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.wd-process-item:nth-child(odd) {
    flex-direction: row;
}

.wd-process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.wd-process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 169, 236, 0.3);
}

.wd-process-item:nth-child(even) .wd-process-number {
    background: var(--gradient-2);
}

.wd-process-content {
    flex: 1;
    background: white;
    padding: 25px 30px;
    border-radius: 5px;
    box-shadow: var(--shadow-md);
    margin: 0 30px;
    border: 1px solid rgba(0, 169, 236, 0.08);
    transition: all 0.3s;
}

.wd-process-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.wd-process-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.wd-process-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* 优势区域 */
.wd-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.wd-advantage-item {
    background: white;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(0, 169, 236, 0.08);
    box-shadow: var(--shadow-sm);
}

.wd-advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.wd-advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    transition: all 0.4s;
}

.wd-advantage-item:hover .wd-advantage-icon {
    transform: rotateY(360deg);
}

.wd-advantage-item:nth-child(2n) .wd-advantage-icon {
    background: var(--gradient-2);
}

.wd-advantage-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.wd-advantage-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wd-banner-content h1 {
        font-size: 32px;
        flex-direction: column;
    }

    .wd-banner-content h1 i {
        font-size: 36px;
    }

    .wd-banner-content > p {
        font-size: 16px;
    }

    .wd-features-quick {
        gap: 15px;
        margin-top: 30px;
    }

    .wd-quick-item {
        padding: 12px 20px;
    }

    .wd-quick-item i {
        font-size: 18px;
    }

    .wd-quick-item span {
        font-size: 14px;
    }

    .wd-process-timeline::before {
        left: 40px;
    }

    .wd-process-item,
    .wd-process-item:nth-child(even) {
        flex-direction: row;
    }

    .wd-process-number {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .wd-process-content {
        margin-left: 20px;
        margin-right: 0;
    }
}

