/* 设计师入驻页面样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 确保 Font Awesome 图标正确显示 - 限制作用域，避免影响footer */
.zh_banner_section .fas, 
.zh_banner_section .far, 
.zh_banner_section .fal, 
.zh_banner_section .fab,
.zh_intro_section .fas, 
.zh_intro_section .far, 
.zh_intro_section .fal, 
.zh_intro_section .fab,
.zh_form_section .fas, 
.zh_form_section .far, 
.zh_form_section .fal, 
.zh_form_section .fab,
.zh_portfolio_section .fas, 
.zh_portfolio_section .far, 
.zh_portfolio_section .fal, 
.zh_portfolio_section .fab,
.zh_designers_section .fas, 
.zh_designers_section .far, 
.zh_designers_section .fal, 
.zh_designers_section .fab,
.zh_contact_section .fas, 
.zh_contact_section .far, 
.zh_contact_section .fal, 
.zh_contact_section .fab,
.zh_modal .fas, 
.zh_modal .far, 
.zh_modal .fal, 
.zh_modal .fab {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Pro", "Font Awesome 5 Brands" !important;
}

.zh_banner_section .fas,
.zh_intro_section .fas,
.zh_form_section .fas,
.zh_portfolio_section .fas,
.zh_designers_section .fas,
.zh_contact_section .fas,
.zh_modal .fas {
    font-weight: 900 !important;
}

.zh_banner_section .far,
.zh_intro_section .far,
.zh_form_section .far,
.zh_portfolio_section .far,
.zh_designers_section .far,
.zh_contact_section .far,
.zh_modal .far {
    font-weight: 400 !important;
}

.zh_banner_section .fab,
.zh_intro_section .fab,
.zh_form_section .fab,
.zh_portfolio_section .fab,
.zh_designers_section .fab,
.zh_contact_section .fab,
.zh_modal .fab {
    font-weight: 400 !important;
}

/* 为页面主要区域的 i 标签确保 Font Awesome 字体 - 限制作用域 */
.zh_banner_section i[class*="fa"],
.zh_intro_section i[class*="fa"],
.zh_form_section i[class*="fa"],
.zh_portfolio_section i[class*="fa"],
.zh_designers_section i[class*="fa"],
.zh_contact_section i[class*="fa"],
.zh_modal i[class*="fa"] {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Pro", "Font Awesome 5 Brands" !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.zh_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner区域 */
.zh_banner_section {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.9), rgba(52, 152, 219, 0.9)),
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&h=800&fit=crop') center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.zh_banner_overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.zh_banner_content {
    text-align: center;
    z-index: 2;
}

.zh_banner_title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.zh_banner_subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.zh_banner_stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.zh_stat_item {
    text-align: center;
}

.zh_stat_item i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1abc9c;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.zh_stat_item span {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.zh_stat_item p {
    font-size: 1rem;
    opacity: 0.8;
}

/* 通用区域样式 */
.zh_intro_section,
.zh_form_section,
.zh_portfolio_section,
.zh_designers_section,
.zh_contact_section {
    padding: 80px 0;
}

.zh_section_header {
    text-align: center;
    margin-bottom: 60px;
}

.zh_section_header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.zh_section_header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1abc9c, #3498db);
    border-radius: 2px;
}

.zh_section_header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* 服务网格 */
.zh_services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.zh_service_item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zh_service_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1abc9c, #3498db);
}

.zh_service_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.zh_service_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1abc9c, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.zh_service_icon i {
    font-size: 2rem;
    color: white;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.zh_service_item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.zh_service_item p {
    color: #7f8c8d;
    margin-bottom: 25px;
}

.zh_service_link {
    display: inline-block;
    color: #1abc9c;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 25px;
    border: 2px solid #1abc9c;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.zh_service_link:hover {
    background: #1abc9c;
    color: white;
    transform: scale(1.05);
}

/* 表单区域 */
.zh_form_section {
    background: white;
}

.zh_form_wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.zh_form_header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.zh_form_header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.zh_application_form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.zh_form_section_block {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.zh_form_section_block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.zh_form_section_block h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zh_form_section_block h3 i {
    color: #1abc9c;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.zh_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.zh_form_group {
    margin-bottom: 20px;
}

.zh_form_group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.zh_required {
    color: #e74c3c;
}

.zh_form_group input,
.zh_form_group select,
.zh_form_group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.zh_form_group input:focus,
.zh_form_group select:focus,
.zh_form_group textarea:focus {
    outline: none;
    border-color: #1abc9c;
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

.zh_form_group textarea {
    resize: vertical;
    min-height: 100px;
}

.zh_form_submit {
    text-align: center;
    margin-top: 30px;
}

.zh_submit_btn {
    background: linear-gradient(135deg, #1abc9c, #3498db);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.zh_submit_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
}

.zh_submit_btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.zh_form_notice {
    margin-top: 20px;
    color: #7f8c8d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.zh_form_notice i {
    color: #3498db;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

/* 作品展示区域 */
.zh_portfolio_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.zh_portfolio_item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.zh_portfolio_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.zh_portfolio_image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.zh_portfolio_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zh_portfolio_item:hover .zh_portfolio_image img {
    transform: scale(1.1);
}

.zh_portfolio_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 188, 156, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.zh_portfolio_item:hover .zh_portfolio_overlay {
    opacity: 1;
}

.zh_portfolio_link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.zh_portfolio_link:hover {
    background: white;
    color: #1abc9c;
}

.zh_portfolio_link i {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.zh_portfolio_info {
    padding: 20px;
}

.zh_portfolio_info h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.zh_portfolio_more,
.zh_designers_more {
    text-align: center;
    margin-top: 50px;
}

.zh_more_btn {
    display: inline-block;
    background: linear-gradient(135deg, #1abc9c, #3498db);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zh_more_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
}

/* 设计师推荐区域 */
.zh_designers_section {
    background: white;
}

.zh_designers_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.zh_designer_card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.zh_designer_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.zh_designer_avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.zh_designer_avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1abc9c;
}

.zh_designer_badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 35px;
    background: #1abc9c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}

.zh_designer_badge i {
    color: white;
    font-size: 0.9rem;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.zh_designer_info h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.zh_designer_tags {
    margin-bottom: 20px;
}

.zh_tag {
    display: inline-block;
    background: #1abc9c;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 0 5px;
}

.zh_designer_link {
    display: inline-block;
    color: #1abc9c;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 25px;
    border: 2px solid #1abc9c;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.zh_designer_link:hover {
    background: #1abc9c;
    color: white;
}

/* 联系我们区域 */
.zh_contact_section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.zh_contact_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.zh_contact_info h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.zh_contact_item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

/* 限制图标圆形背景样式仅作用于页面联系我们区域，不影响footer */
.zh_contact_section .zh_contact_item i {
    width: 50px;
    height: 50px;
    background: #1abc9c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.zh_contact_item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1abc9c;
}

.zh_contact_item p {
    opacity: 0.9;
}

.zh_contact_features h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1abc9c;
}

.zh_feature_list {
    space-y: 25px;
}

.zh_feature_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

/* 限制特性图标圆形背景样式仅作用于页面联系我们区域，不影响footer */
.zh_contact_section .zh_feature_item i {
    width: 50px;
    height: 50px;
    background: rgba(26, 188, 156, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1abc9c;
    flex-shrink: 0;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.zh_feature_item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.zh_feature_item p {
    opacity: 0.8;
    line-height: 1.6;
}

/* 模态框 */
.zh_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.zh_modal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 15px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    animation: slideIn 0.3s ease;
}

.zh_modal_header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e9ecef;
}

.zh_modal_header i {
    font-size: 3rem;
    color: #1abc9c;
    margin-bottom: 15px;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.zh_modal_header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.zh_modal_body {
    padding: 20px 30px;
    text-align: center;
    color: #7f8c8d;
}

.zh_modal_footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.zh_modal_btn {
    background: #1abc9c;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zh_modal_btn:hover {
    background: #16a085;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to { 
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zh_banner_title {
        font-size: 2.5rem;
    }
    
    .zh_banner_subtitle {
        font-size: 1.1rem;
    }
    
    .zh_banner_stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .zh_form_wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .zh_form_row {
        grid-template-columns: 1fr;
    }
    
    .zh_contact_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .zh_services_grid,
    .zh_portfolio_grid,
    .zh_designers_grid {
        grid-template-columns: 1fr;
    }
    
    .zh_section_header h2 {
        font-size: 2rem;
    }
    
    .zh_container {
        padding: 0 15px;
    }
}
