/* 表单页面通用样式 */
.form-section,
.query-section,
.success-section {
    background-color: #f5f5f5;
    margin-bottom: 20px;
}

.form-container,
.query-container,
.success-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

/* 表单介绍区域 */
.form-intro,
.query-intro {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.form-intro h3,
.query-intro h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.intro-content {
    color: #555;
    line-height: 1.6;
}

.intro-content ol {
    padding-left: 20px;
    margin-top: 10px;
}

.intro-content ol li {
    margin-bottom: 8px;
}

/* 表单组样式 */
.form-group {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.form-group:last-child {
    border-bottom: none;
}

.form-group h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e9ecef;
}

/* 表单行样式 */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 20px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-field {
    flex: 1;
    padding: 0 10px;
    min-width: 250px;
}

.form-row.full-width .form-field {
    flex: 0 0 100%;
}

/* 表单元素样式 */
.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    color: #495057;
    transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px;
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.field-tip {
    font-size: 14px;
    color: #6c757d;
    margin-top: 5px;
}

/* 必填项标记 */
.required {
    color: #dc3545;
    margin-left: 2px;
}

/* 上传文件字段 */
.upload-field input[type="file"] {
    padding: 8px 0;
}

/* 复选框样式 */
.checkbox-field {
    display: flex;
    align-items: flex-start;
}

.checkbox-field input[type="checkbox"] {
    margin-top: 4px;
    margin-right: 10px;
}

.checkbox-field label {
    font-weight: normal;
    line-height: 1.5;
}

/* 验证码区域 */
.verification-container {
    display: flex;
    align-items: center;
}

.verification-container input {
    flex: 1;
    margin-right: 10px;
}

.captcha-img {
    height: 40px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.refresh-captcha {
    margin-left: 10px;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.refresh-captcha:hover {
    text-decoration: underline;
}

/* 表单按钮 */
.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.btn-submit,
.btn-reset,
.btn-primary,
.btn-secondary {
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-submit,
.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-submit:hover,
.btn-primary:hover {
    background-color: #0069d9;
}

.btn-reset,
.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-reset:hover,
.btn-secondary:hover {
    background-color: #5a6268;
}

/* 错误状态 */
.form-field input.error,
.form-field select.error,
.form-field textarea.error {
    border-color: #dc3545;
}

/* 查询结果样式 */
.query-result {
    margin-top: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.result-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.result-header h3 {
    color: #333;
    font-size: 18px;
    margin: 0;
}

.result-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
}

.info-label {
    font-weight: 500;
    color: #495057;
    width: 100px;
}

.info-value {
    color: #333;
}

.info-value.status {
    font-weight: 500;
}

.status-processing {
    color: #fd7e14;
}

.status-completed {
    color: #28a745;
}

/* 进度时间线 */
.progress-timeline {
    margin: 30px 0;
}

.progress-timeline h4 {
    margin-bottom: 20px;
    color: #333;
    font-size: 18px;
}

.timeline {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 2px;
    background-color: #e9ecef;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    padding-bottom: 25px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item.completed .timeline-marker {
    background-color: #28a745;
    border-color: #28a745;
}

.timeline-item.active .timeline-marker {
    background-color: #fff;
    border-color: #007bff;
    border-width: 3px;
}

.timeline-content {
    padding: 15px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.timeline-content h5 {
    margin: 0 0 10px;
    color: #333;
    font-size: 16px;
}

.timeline-content p {
    margin: 5px 0;
    color: #6c757d;
    font-size: 14px;
}


/* 成功页面样式 */
.success-container {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.success-icon {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-container h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.application-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    display: inline-block;
}

.application-info p {
    margin: 10px 0;
    font-size: 16px;
}

.success-message {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.next-steps {
    text-align: left;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.next-steps h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.next-steps ol {
    padding-left: 20px;
    margin: 0;
}

.next-steps ol li {
    margin-bottom: 10px;
    color: #495057;
}

.action-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.action-buttons a {
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.2s;
}
.action-buttons a:hover {
    color:#ffffff;
}
.fz16{
	margin-left: 10px;
    color: #007bff;
    text-decoration: none;	
	font-size:16px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-field {
        margin-bottom: 15px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-submit,
    .btn-reset {
        width: 100%;
    }
    
    .result-info {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons a {
        width: 100%;
        margin-bottom: 10px;
    }
}