 /* 基础样式 */
 .register-container {
 	max-width: 50vw;
 	margin: 6vh auto;
 	min-height: 60vh;
 }

 /* 标题样式 */
 .page-title {
 	text-align: center;
 	margin: 20px 0 40px;
 }

 .page-title h1 {
 	font-size: 28px;
 	color: #2c3e50;
 	margin-bottom: 10px;
 }

 .page-title p {
 	color: #7f8c8d;
 	font-size: 16px;
 }

 /* 步骤指示器 */
 .steps {
 	display: flex;
 	justify-content: space-between;
 	margin-bottom: 40px;
 	position: relative;
 }

 .steps::before {
 	content: '';
 	position: absolute;
 	top: 15px;
 	left: 50px;
 	right: 50px;
 	height: 4px;
 	background-color: #e0e0e0;
 	z-index: 1;
 }

 .progress-bar {
 	position: absolute;
 	top: 15px;
 	/* left: 50px; */
 	height: 4px;
 	background-color: #5abf9e;
 	z-index: 2;
 	transition: width 0.5s ease;
 }

 .step {
 	display: flex;
 	flex-direction: column;
 	align-items: center;
 	position: relative;
 	z-index: 3;
 }

 .step-icon {
 	width: 34px;
 	height: 34px;
 	border-radius: 50%;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	font-weight: bold;
 	margin-bottom: 8px;
 	border: 2px solid #e0e0e0;
 	background-color: white;
 	transition: all 0.3s ease;
 }

 .step.active .step-icon {
 	background-color: #2ecc71;
 	color: white;
 	border-color: #2ecc71;
 }

 .step.completed .step-icon {
 	background-color: #2ecc71;
 	color: white;
 	border-color: #2ecc71;
 }

 .step-label {
 	font-size: 14px;
 	color: #7f8c8d;
 }

 .step.active .step-label,
 .step.completed .step-label {
 	color: #000000;
 	font-weight: 500;
 }

 /* 表单容器 */
 .form-container {
 	background-color: white;
 	border-radius: 8px;
 	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 	padding: 30px;
 	margin-bottom: 30px;
 }
 
 .form-container2 {
 	background-color: white;
 	border-radius: 8px;
 	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 	padding: 30px;
 	margin-bottom: 30px;
	margin-top: 10vh;
 }

 .step-form {
 	display: none;
 }

 .step-form.active {
 	display: block;
 	animation: fadeIn 0.5s ease;
 }

 @keyframes fadeIn {
 	from {
 		opacity: 0;
 		transform: translateY(10px);
 	}

 	to {
 		opacity: 1;
 		transform: translateY(0);
 	}
 }

 .form-title {
 	font-size: 20px;
 	margin-bottom: 20px;
 	color: #2c3e50;
 	padding-bottom: 10px;
 	border-bottom: 1px solid #eee;
 }

 .form-description {
 	color: #7f8c8d;
 	margin-bottom: 25px;
 	font-size: 15px;
 }

 /* 表单元素 */
 .form-group {
 	margin-bottom: 20px;
 }
 
 .text-tilte {
	 font-size: 1vw;
	 font-weight: 600;
 }

 label {
 	display: block;
 	margin-bottom: 8px;
 	font-weight: 500;
 	color: #2c3e50;
 }

 input[type="text"],
 input[type="password"],
 select {
 	width: 98%;
 	padding: 12px 15px;
 	border: 1px solid #ddd;
 	border-radius: 4px;
 	font-size: 16px;
 	transition: border 0.3s ease;
 }

 input[type="tel"] {
 	width: 98%;
 	padding: 12px 1%;
 	border: 1px solid #ddd;
 	border-radius: 4px;
 	font-size: 16px;
 	transition: border 0.3s ease;
 }

 input:focus,
 select:focus {
 	border-color: #3498db;
 	outline: none;
 	box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
 }

 .input-group {
 	display: flex;
 	gap: 10px;
 }

 .input-group input {
 	flex: 1;
 }

 .btn {
 	padding: 12px 20px;
 	border: none;
 	border-radius: 4px;
 	font-size: 16px;
 	font-weight: 500;
 	cursor: pointer;
 	transition: all 0.3s ease;
 }

 .btn-primary {
 	background-color: #63c4a3;
 	color: white;
 }

 .btn-primary:hover {
 	background-color: #51a185;
 }

 .btn-secondary {
 	background-color: #ecf0f1;
 	color: #2c3e50;
 }

 .btn-secondary:hover {
 	background-color: #dcdde1;
 }

 .form-actions {
 	display: flex;
 	justify-content: space-between;
 	margin-top: 30px;
 }

 /* 入驻分类标签 */
 .fenlei-result {
 	display: flex;
 	align-items: baseline;
 }

 /* 验证码按钮 */
 .verify-btn {
 	background-color: #63c4a3;
 	color: white;
 	padding: 12px 20px;
 	border: none;
 	border-radius: 4px;
 	cursor: pointer;
 	white-space: nowrap;
 	transition: all 0.3s ease;
 }

 .verify-btn:hover {
 	background-color: #56ab8d;
 }

 .verify-btn:disabled {
 	background-color: #bdc3c7;
 	cursor: not-allowed;
 }

 /* 店铺类型选择 */
 .radio-group {
 	display: flex;
 	gap: 20px;
 	margin-bottom: 10px;
 }

 .radio-item {
 	display: flex;
 	align-items: center;
 	gap: 5px;
 }

 input[type="radio"] {
 	width: auto;
 }

 /* 文件上传区域 */
 .file-upload {
 	border: 2px dashed #ddd;
 	border-radius: 6px;
 	padding: 30px;
 	text-align: center;
 	cursor: pointer;
 	transition: all 0.3s ease;
 }

 .file-upload:hover {
 	border-color: #3498db;
 	background-color: rgba(52, 152, 219, 0.05);
 }

 .file-upload i {
 	font-size: 24px;
 	color: #7f8c8d;
 	margin-bottom: 10px;
 }

 .file-upload p {
 	color: #7f8c8d;
 	margin-bottom: 5px;
 }

 .file-upload small {
 	color: #bdc3c7;
 	font-size: 12px;
 }

 .file-input {
 	display: none;
 }

 .uploaded-files {
 	margin-top: 15px;
 }

 .file-item {
 	display: flex;
 	align-items: center;
 	padding: 8px 12px;
 	background-color: #f8f9fa;
 	border-radius: 4px;
 	margin-bottom: 8px;
 }

 .file-item i {
 	margin-right: 10px;
 	color: #3498db;
 }

 .file-item span {
 	flex: 1;
 	font-size: 14px;
 }

 .file-item .remove-file {
 	color: #e74c3c;
 	cursor: pointer;
 }

 /* 证件期限选择 */
 .date-group {
 	display: flex;
 	gap: 10px;
 	align-items: center;
 }

 .date-group input {
 	flex: 1;
 }

 /* 错误提示 */
 .error-message {
 	color: #e74c3c;
 	font-size: 14px;
 	margin-top: 5px;
 	display: none;
 }

 .error-message.show {
 	display: block;
 }

 /* 成功页面 */
 .success-page {
 	text-align: center;
 	padding: 40px 20px;
 	display: none;
 }

 .success-page.active {
 	display: block;
 	animation: fadeIn 0.5s ease;
 }

 .success-icon {
 	width: 80px;
 	height: 80px;
 	border-radius: 50%;
 	background-color: #2ecc71;
 	color: white;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	font-size: 40px;
 	margin: 0 auto 20px;
 }

 .success-page h2 {
 	color: #2c3e50;
 	margin-bottom: 15px;
 }

 .success-page p {
 	color: #7f8c8d;
 	margin-bottom: 30px;
 	max-width: 500px;
 	margin-left: auto;
 	margin-right: auto;
 }

 /* 响应式设计 */
 @media (max-width: 600px) {
 	.input-group {
 		flex-direction: column;
 		gap: 15px;
 	}

 	.radio-group {
 		flex-direction: column;
 		gap: 10px;
 	}

 	.date-group {
 		flex-direction: column;
 		align-items: stretch;
 	}

 	.form-actions {
 		flex-direction: column;
 		gap: 10px;
 	}

 	.form-actions .btn {
 		width: 100%;
 	}

 	.step-label {
 		font-size: 12px;
 	}

 	.form-container {
 		padding: 20px;
 	}

 	.register-container {
 		max-width: 90vw;
 		margin: 2vh auto;
 	}

 	/* 标题样式 */
 	.page-title {
 		margin: 10vh 0 40px;
 	}

 	/* 输入框样式 */
 	input[type="text"],
 	input[type="password"],
 	select {
 		width: 90%;
 	}
 }
 
 //审核结果样式
 .shzt-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }
 
 .shzt-header {
     text-align: center;
     margin: 30px 0 40px;
 }
 
 .shzt-h1 {
     color: #2c3e50;
     font-weight: 600;
     margin-bottom: 10px;
     font-size: 28px;
 }
 
 .shzt-subtitle {
     color: #7f8c8d;
     font-size: 16px;
 }
 
 .shzt-card {
  /*   background: white;
     border-radius: 10px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     padding: 30px;
     margin-bottom: 30px;
     transition: transform 0.3s ease, box-shadow 0.3s ease; */
 }
 
 .shzt-card:hover {
    /* transform: translateY(-5px);
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); */
 }
 
 .shzt-status-header {
     display: flex;
     align-items: center;
     margin-bottom: 25px;
     padding-bottom: 15px;
     border-bottom: 1px solid #eee;
 }
 
 .shzt-status-icon {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 15px;
     flex-shrink: 0;
 }
 
 .shzt-status-pending {
     background-color: #fff3cd;
     color: #fd7e14;
 }
 
 .shzt-status-processing {
     background-color: #d1ecf1;
     color: #0c63e4;
 }
 
 .shzt-status-approved {
     background-color: #d4edda;
     color: #28a745;
 }
 
 .shzt-status-rejected {
     background-color: #f8d7da;
     color: #dc3545;
 }
 
 .shzt-status-title {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 5px;
 }
 
 .shzt-status-subtitle {
     color: #6c757d;
     font-size: 14px;
 }
 
 .shzt-info-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     gap: 20px;
     margin-bottom: 30px;
 }
 
 .shzt-info-item {
     background-color: #f8f9fa;
     border-radius: 6px;
     padding: 15px;
 }
 
 .shzt-info-label {
     font-size: 14px;
     color: #6c757d;
     margin-bottom: 5px;
 }
 
 .shzt-info-value {
     font-weight: 500;
     word-break: break-all;
 }
 
 .shzt-timeline {
     position: relative;
     padding-left: 30px;
     margin-top: 30px;
 }
 
 .shzt-timeline::before {
     content: '';
     position: absolute;
     left: 9px;
     top: 0;
     bottom: 0;
     width: 2px;
     background-color: #e9ecef;
 }
 
 .shzt-timeline-item {
     position: relative;
     margin-bottom: 25px;
 }
 
 .shzt-timeline-item::before {
     content: '';
     position: absolute;
     left: -30px;
     top: 5px;
     width: 20px;
     height: 20px;
     border-radius: 50%;
     background-color: white;
     border: 2px solid #e9ecef;
     z-index: 1;
 }
 
 .shzt-timeline-item.shzt-active::before {
     background-color: #3498db;
     border-color: #3498db;
 }
 
 .shzt-timeline-item.shzt-completed::before {
     background-color: #28a745;
     border-color: #28a745;
 }
 
 .shzt-timeline-content {
     background-color: #f8f9fa;
     border-radius: 6px;
     padding: 15px;
 }
 
 .shzt-timeline-time {
     font-size: 14px;
     color: #6c757d;
     margin-bottom: 5px;
 }
 
 .shzt-timeline-title {
     font-weight: 500;
     margin-bottom: 5px;
 }
 
 .shzt-timeline-desc {
     font-size: 14px;
     color: #495057;
 }
 
 .shzt-rejection-reason {
     background-color: #fff5f5;
     border-left: 4px solid #dc3545;
     padding: 15px;
     border-radius: 0 6px 6px 0;
     margin-top: 20px;
 }
 
 .shzt-resend-section {
     margin-top: 20px;
     padding-top: 20px;
     border-top: 1px dashed #eee;
 }
 
 .shzt-btn {
     display: inline-block;
     background-color: #3498db;
     color: white;
     border: none;
     border-radius: 6px;
     padding: 12px 24px;
     font-size: 16px;
     font-weight: 500;
     cursor: pointer;
     transition: background-color 0.3s ease;
 }
 
 .shzt-btn:hover {
     background-color: #2980b9;
 }
 
 .shzt-action-buttons {
     margin-top: 30px;
     display: flex;
     gap: 15px;
     justify-content: center;
 }
 
 .shzt-btn-secondary {
     background-color: #95a5a6;
 }
 
 .shzt-btn-secondary:hover {
     background-color: #7f8c8d;
 }
 
 @media (max-width: 768px) {
     .shzt-info-grid {
         grid-template-columns: 1fr;
     }
     
     .shzt-action-buttons {
         flex-direction: column;
     }
     
     .shzt-btn {
         width: 100%;
     }
     
     .shzt-h1 {
         font-size: 24px;
     }
     
     .shzt-card {
         padding: 20px;
     }
 }