/*
#renzheng_box .container {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

#renzheng_box h1 {
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 28px;
}

#renzheng_box .cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

#renzheng_box .card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 280px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e6e9ed;
    text-align: center;
}

#renzheng_box .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

#renzheng_box .card.selected {
    border-color: #4d6bfe;
    background-color: #f0f8ff;
}

#renzheng_box .card.selected .icon {
    background-color: #4d6bfe;
    color: white;
}

#renzheng_box .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e6e9ed;
    color: #7f8c8d;
    font-size: 28px;
    transition: all 0.3s ease;
}

.card-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-desc {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
}

.submit-btn {
    margin-top: 40px;
    padding: 14px 40px;
    background-color: #3f5ef8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
}

.submit-btn:hover {
    background-color: #3f5ef8;
}

@media (max-width: 650px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }
}

.goback{
    width: 80%;
    margin: 14px auto;
    color: #4d6bfe;
    cursor: pointer;
    font-size: 16px;
}*/
  /*表单信息提交*/
#renzheng_box {
    padding: 20px;
}
#renzheng_box .container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 900px;
    overflow: hidden;
}

#renzheng_box header {
    background: #4d6bfe;
    color: white;
    padding: 25px;
    text-align: center;
}

#renzheng_box h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

#renzheng_box .tabs {
    display: flex;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

#renzheng_box .tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #555;
}

#renzheng_box .tab.active {
    color:#4d6bfe;
    border-bottom: 3px solid #4d6bfe;
    background-color: white;
}

#renzheng_box .form-container {
    padding: 30px;
}

#renzheng_box .form-section {
    display: none;
}

#renzheng_box .form-section.active {
    display: block;
}

#renzheng_box .form-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4d6bfe;
}

#renzheng_box .layui-form-item {
    margin-bottom: 20px;
}

#renzheng_box .layui-form-label {
    font-weight: 500;
}

#renzheng_box .required::before {
    content: '*';
    color: red;
    margin-right: 4px;
}

#renzheng_box .upload-area {
    border: 2px dashed#4d6bfe;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 25px 0;
    transition: all 0.3s;
    background-color: #f8fafc;
}

#renzheng_box .upload-area:hover {
    background-color: #e8f4ff;
}

#renzheng_box .upload-area i {
    font-size: 40px;
    color:#4d6bfe;
    margin-bottom: 10px;
}

#renzheng_box .upload-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

#renzheng_box .browse-btn {
    background-color:#4d6bfe;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#renzheng_box .browse-btn:hover {
    background-color: #526ef6;
}

#renzheng_box .preview-container {
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 15px;
    margin-top: 20px;
}

#renzheng_box .preview-card {
    width: calc(50% - 7.5px);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#renzheng_box .preview-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}

#renzheng_box .preview-footer {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
}

#renzheng_box .delete-btn {
    color: #e74c3c;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

#renzheng_box .file-input {
    display: none;
}

#renzheng_box .paths-container {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

#renzheng_box .paths-container h3 {
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 16px;
}

#renzheng_box .path-item {
    padding: 8px;
    background-color: white;
    border-radius: 6px;
    margin-bottom: 8px;
    font-family: monospace;
    word-break: break-all;
    border-left: 4px solid #4d6bfe;
    font-size: 14px;
}

#renzheng_box .hidden {
    display: none;
}

#renzheng_box .status {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

#renzheng_box .status.success {
    background-color: #d4edda;
    color: #155724;
}

#renzheng_box .status.error {
    background-color: #f8d7da;
    color: #721c24;
}

#renzheng_box .status.review {
    background-color: #fff3cd;
    color: #856404;
}

#renzheng_box .submit-btn {
    background: #4d6bfe;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    width: 100%;
    margin-top: 25px;
    transition: opacity 0.3s;
}

#renzheng_box .submit-btn:hover {
    opacity: 0.9;
}

#renzheng_box .submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#renzheng_box .review-info {
    padding: 15px;
    background-color: #e7f3ff;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #4d6bfe;
}

#renzheng_box .review-info h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

#renzheng_box .review-info p {
    color: #555;
    line-height: 1.5;
}
#renzheng_box .layui-form-mid {
    padding: 0 !important;
}

@media (max-width: 768px) {
    #renzheng_box .preview-card {
        width: 100%;
    }

    #renzheng_box .tab {
        padding: 5px 15px;
        font-size: 16px;
    }
}