/* 设计师入驻页样式 - 参考深色主题风格 */

body {
    background: #0f0f0f;
}

.zh_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Banner */
.zh_page_banner {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    background: #0f0f0f;
}

.zh_banner_content {
    position: relative;
    z-index: 1;
}

.zh_banner_title {
    font-size: 80px;
    font-weight: 600;
    line-height: 1.335;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 20px;
}

.zh_banner_desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.36px;
    margin-bottom: 30px;
}

.zh_breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
}

.zh_breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.zh_breadcrumb a:hover {
    color: #f20e09;
}

.zh_breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.zh_breadcrumb span {
    color: #fff;
}

/* 入驻流程 */
.zh_process_section {
    padding: 80px 0;
    background: #0f0f0f;
}

.zh_section_header {
    text-align: center;
    margin-bottom: 50px;
}

.zh_section_title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.zh_section_desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
}

.zh_process_steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.zh_process_step {
    background: rgba(148, 148, 148, 0.09);
    backdrop-filter: blur(37px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.zh_process_step:hover {
    border-color: rgba(242, 14, 9, 0.3);
    transform: translateY(-10px);
    background: rgba(148, 148, 148, 0.12);
}

.zh_step_number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(242, 14, 9, 0.1);
    border: 2px solid rgba(242, 14, 9, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #f20e09;
}

.zh_step_title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.zh_step_desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* 表单区域 */
.zh_form_section {
    padding: 80px 0;
    background: #0f0f0f;
}

.zh_form_layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: flex-start;
}

.zh_form_main {
    background: rgba(148, 148, 148, 0.09);
    backdrop-filter: blur(37px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.zh_form_title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.zh_form_block {
    margin-bottom: 35px;
}

.zh_block_header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zh_block_header i {
    font-size: 24px;
    color: #f20e09;
}

.zh_block_header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.zh_form_row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.zh_form_row:last-child {
    margin-bottom: 0;
}

.zh_form_group {
    display: flex;
    flex-direction: column;
}

.zh_form_group.full {
    grid-column: 1 / -1;
}

.zh_form_group label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.required {
    color: #f20e09;
}

.zh_form_group input,
.zh_form_group select,
.zh_form_group textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 15px;
    color: #fff;
    transition: all 0.3s;
}

.zh_form_group input::placeholder,
.zh_form_group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.zh_form_group input:focus,
.zh_form_group select:focus,
.zh_form_group textarea:focus {
    outline: none;
    border-color: #f20e09;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(242, 14, 9, 0.1);
}

.zh_form_group select {
    color: #fff;
    cursor: pointer;
}

.zh_form_group select option {
    background: #1a1a1a;
    color: #fff;
}

.zh_form_tip {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

/* 文件上传区域 */
.zh_upload_area {
    border: 2px dashed rgba(242, 14, 9, 0.5);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s;
    cursor: pointer;
}

.zh_upload_area:hover {
    border-color: #f20e09;
    background: rgba(255, 255, 255, 0.05);
}

.zh_upload_area.has-file {
    border-color: rgba(242, 14, 9, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.zh_upload_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #f20e09;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.zh_upload_btn:hover {
    background: #c40b07;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 14, 9, 0.4);
}

.zh_upload_btn i {
    font-size: 18px;
}

.zh_upload_hint {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.zh_file_preview {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.zh_file_preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(242, 14, 9, 0.3);
}

.zh_file_name {
    flex: 1;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    word-break: break-all;
}

.zh_file_remove {
    width: 32px;
    height: 32px;
    background: rgba(242, 14, 9, 0.1);
    border: 1px solid rgba(242, 14, 9, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f20e09;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.zh_file_remove:hover {
    background: #f20e09;
    color: #fff;
    transform: scale(1.1);
}

.zh_form_footer {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zh_form_actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.zh_form_agreement {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zh_form_agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.zh_form_agreement label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
}

.zh_form_agreement a {
    color: #f20e09;
    text-decoration: none;
    transition: color 0.3s;
}

.zh_form_agreement a:hover {
    color: #c40b07;
}

.zh_submit_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #f20e09;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.zh_submit_btn:hover {
    background: #c40b07;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 14, 9, 0.4);
}

/* 重新填写按钮 */
.zh_reset_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: #f20e09;
    border: 2px solid #f20e09;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.zh_reset_btn:hover {
    background: rgba(242, 14, 9, 0.1);
    border-color: #c40b07;
    color: #c40b07;
    transform: translateY(-3px);
}

/* 侧边栏 */
.zh_form_sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.zh_sidebar_card {
    background: rgba(148, 148, 148, 0.09);
    backdrop-filter: blur(37px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 120px;
}

.zh_card_header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zh_card_header i {
    font-size: 20px;
    color: #f20e09;
}

.zh_card_header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.zh_advantages_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zh_adv_item {
    display: flex;
    gap: 15px;
}

.zh_adv_icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(242, 14, 9, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f20e09;
    font-size: 20px;
    border: 2px solid rgba(242, 14, 9, 0.3);
}

.zh_adv_content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.zh_adv_content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.zh_works_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.zh_work_item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.zh_work_item:hover {
    transform: scale(1.05);
}

.zh_work_item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* 模态框 */
.zh_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.zh_modal.active {
    display: flex;
}

.zh_modal_content {
    background: rgba(148, 148, 148, 0.09);
    backdrop-filter: blur(37px);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    max-width: 480px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zh_modal_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(82, 196, 26, 0.1);
    border: 2px solid rgba(82, 196, 26, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #52c41a;
    font-size: 40px;
}

.zh_modal_content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.zh_modal_content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 30px;
}

.zh_modal_content p strong {
    color: #f20e09;
    font-weight: 600;
    display: block;
    margin-top: 10px;
    padding: 10px;
    background: rgba(242, 14, 9, 0.1);
    border-left: 3px solid #f20e09;
    border-radius: 4px;
}

.zh_modal_btn {
    padding: 14px 40px;
    background: #f20e09;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.zh_modal_btn:hover {
    background: #c40b07;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 14, 9, 0.4);
}

/* 响应式 */
@media (max-width: 1200px) {
    .zh_container {
        max-width: 960px;
    }

    .zh_banner_title {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    .zh_container {
        max-width: 720px;
    }

    .zh_banner_title {
        font-size: 42px;
    }

    .zh_process_steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .zh_form_layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .zh_sidebar_card {
        position: static;
    }
}

@media (max-width: 768px) {
    .zh_page_banner {
        padding: 120px 0 60px;
    }

    .zh_banner_title {
        font-size: 36px;
    }

    .zh_process_steps {
        grid-template-columns: 1fr;
    }

    .zh_form_row {
        grid-template-columns: 1fr;
    }

    .zh_form_main {
        padding: 30px 20px;
    }

    .zh_form_footer {
        flex-direction: column;
        gap: 20px;
    }

    .zh_form_actions {
        flex-direction: column;
        width: 100%;
    }

    .zh_submit_btn,
    .zh_reset_btn {
        width: 100%;
        justify-content: center;
    }

    .zh_upload_area {
        padding: 30px 15px;
    }

    .zh_file_preview {
        flex-direction: column;
        text-align: center;
    }

    .zh_file_preview img {
        width: 100%;
        max-width: 200px;
        height: auto;
    }
}

