/* 高级定制页面样式 */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}
/* Hero区域 */
.custom-hero {
    background: url('/static/images/bg.png') no-repeat center center;
    background-size: cover;
    padding: 90px 0 0px 0;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.custom-hero::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="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.custom-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.custom-hero-left {
    flex: 1;
}

.custom-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.custom-hero-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.custom-hero-tags .tag {
    background: #250060;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    color: #ffffff;
}

.custom-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
    color: #222222;
}

.custom-hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.custom-hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.custom-hero-features .feature-icon {
    font-size: 20px;
}

.custom-hero-btn {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    background: #250060;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-hero-btn:hover {
    background: #250060;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.custom-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero区域的logo滚动样式 - 竖向滚动 */
.hero-portfolio-scroll {
    width: 814px;
    height: 505px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow: hidden;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-portfolio-col {
    width: 234px;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero-portfolio-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation-duration: 25s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    height: fit-content;
}

/* Hero区域向下滚动的列 */
.hero-portfolio-col[data-direction="down"] .hero-portfolio-track {
    animation-name: heroScrollDown;
}

/* Hero区域向上滚动的列 */
.hero-portfolio-col[data-direction="up"] .hero-portfolio-track {
    animation-name: heroScrollUp;
}

@keyframes heroScrollDown {
    from {
        transform: translateY(-50%);
    }
    to {
        transform: translateY(0%);
    }
}

@keyframes heroScrollUp {
    from {
        transform: translateY(0%);
    }
    to {
        transform: translateY(-50%);
    }
}

.hero-logo-item {
    flex: 0 0 auto;
    width: 233px;
    height: 175px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-logo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-logo-item:hover img {
    transform: scale(1.1);
}

/* 悬停时暂停Hero区域动画 */
.hero-portfolio-scroll:hover .hero-portfolio-track {
    animation-play-state: paused;
}

/* 通用标题样式 */
.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* 服务优势 */
.custom-advantages {
    padding: 100px 0;
    background: #F2F7F7;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.advantage-card {

    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon img {
    width: 100%;
    height: 100%;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* 定制套餐 */
.custom-packages {
    padding: 100px 0;
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.package-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ff6b6b;
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.price-symbol {
    font-size: 20px;
    color: #667eea;
    font-weight: 600;
}

.price-number {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin: 0 4px;
}

.price-unit {
    font-size: 16px;
    color: #666;
}

.package-tag {
    background: #e7f3ff;
    color: #667eea;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 32px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 24px;
    color: #555;
    font-size: 14px;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.step-content{
    display: block !important;
}
.package-card .package-btn {
    background: #667eea;
    color: white;
}

.package-card.featured .package-btn {
    background: #ff6b6b;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* 服务流程 */
.custom-process {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* 作品展示 - 左侧大图右侧四个小图布局 */
.custom-portfolio {
    padding: 60px 0;
    background: #f5f6fa;
    position: relative;
    overflow: hidden;
    background: url('/static/images/蒙版组 46@2x.png')  no-repeat center center;
    background-size:cover ;
}

.custom-portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  
    opacity: 0.3;
    z-index: 0;
}

.custom-portfolio .container {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #8b8b8b;
    margin-bottom: 50px;
    margin-top: -20px;
    font-weight: 400;
}

.portfolio-layout {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.portfolio-main {
    flex: 1;
}

.portfolio-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.portfolio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;

    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-8px);

}

.portfolio-item.large {
    height: 100%;
}

.portfolio-image {
    width: 100%;
    overflow: hidden;
    background: #fafafa;
    position: relative;
}

.portfolio-item.large .portfolio-image {
    height: 470px;
}

.portfolio-item:not(.large) .portfolio-image {
    height: 200px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 20px;
    text-align: center;
    background: white;
}

.portfolio-item:not(.large) .portfolio-content {
    padding: 15px;
}

.portfolio-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.portfolio-item:not(.large) .portfolio-content h4 {
    font-size: 14px;
    margin-bottom: 6px;
}

.portfolio-content p {
    font-size: 13px;
    color: #999;
    line-height: 1.4;
    margin: 0;
}

.portfolio-item:not(.large) .portfolio-content p {
    font-size: 12px;
}

/* 团队设计师介绍 */
.custom-team {
    padding: 100px 0 200px 0;
    background: white;
    background: url('/static/images/蒙版组 57@2x.png')  no-repeat center center;
    background-size: cover;
    position: relative;
}

.custom-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    z-index: 0;
}

.custom-team .container {
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
 
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
 
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
  
}

.team-member:hover::before {
    opacity: 1;
}

.member-avatar {
    width: 270px;
    height: 300px;
    margin: 0 auto 20px;
    /* border-radius: 50%; */
    overflow: hidden;
    background: #f8f9fa;
    border: 4px solid white;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.team-member:hover .member-avatar {
    transform: scale(1.05);
  
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-avatar img {
    transform: scale(1.1);
}
.member-info  {
    background-color: #f9f9f9;
    border-radius: 10px;
}

.member-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.member-title {
    font-size: 16px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
}

.member-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1px;
}

.member-desc {
    font-size: 12px;
    color: #999999;
    line-height: 1.6;
    margin: 0;
}

/* 客户评价 */
.custom-testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-item {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
   
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
   
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: #666;
}

/* 数据统计展示 */
.custom-cta {
    padding: 80px 0;
   
    background: url('/static/images/组 27@2x.png')  round;
    position: relative;
    overflow: hidden;
}

.custom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 0;
}

.custom-cta .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: white;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .custom-hero {
        padding: 60px 0;
    }
    
    .custom-hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .custom-hero h1 {
        font-size: 32px;
    }
    
    .custom-hero-features {
        justify-content: center;
    }
    
    .hero-portfolio-scroll {
        width: 300px;
        height: 300px;
        gap: 15px;
        padding: 15px;
    }
    
    .hero-portfolio-col {
        width: 80px;
    }
    
    .hero-portfolio-track {
        gap: 12px;
    }
    
    .hero-logo-item {
        width: 80px;
        height: 80px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .advantages-grid,
    .packages-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step::after {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    /* 作品展示网格 */
    .custom-portfolio {
        padding: 60px 0;
    }
    
    .portfolio-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }
    
    .portfolio-item.large .portfolio-image {
        height: 250px;
    }
    
    .portfolio-item:not(.large) .portfolio-image {
        height: 200px;
    }
    
    .portfolio-content {
        padding: 16px;
    }
    
    .portfolio-content h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .portfolio-content p {
        font-size: 12px;
    }
    

    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member {
        padding: 25px;
    }
    
    .member-avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 16px;
    }
    
    .member-info h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .member-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .member-desc {
        font-size: 13px;
    }

    /* 数据统计展示 */
    .custom-cta {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .stat-number {
        font-size: 36px;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 14px;
    }
} 