/**
 * 批发商申请表单样式
 */

.baijia-wf-wrapper {
	max-width: 700px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* 头部区域（整体卡片：标题+Google链接+必填提示） */
.baijia-wf-header {
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-top: 10px solid #8B7355;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 12px;
}

.baijia-wf-header-main {
	padding: 30px;
}

.baijia-wf-title {
	font-size: 32px;
	font-weight: 400;
	color: #333;
	margin: 0 0 20px 0;
	line-height: 1.3;
}

.baijia-wf-description {
	color: #555;
	font-size: 14px;
	line-height: 1.6;
}

.baijia-wf-description ul {
	margin: 0;
	padding-left: 20px;
}

.baijia-wf-description li {
	margin-bottom: 8px;
}

.baijia-wf-description strong {
	color: #333;
}

/* Google链接提示 */
.baijia-wf-google-link {
	font-size: 14px;
	color: #555;
	padding: 12px 30px;
	border-top: 1px solid #e0e0e0;
}

.baijia-wf-google-link a {
	color: #1a73e8;
	text-decoration: none;
}

.baijia-wf-google-link a:hover {
	text-decoration: underline;
}

/* 必填提示 */
.baijia-wf-required-notice {
	color: #d93025;
	font-size: 14px;
	padding: 12px 30px;
	border-top: 1px solid #e0e0e0;
}

.baijia-wf-required {
	color: #d93025;
	margin-left: 4px;
}

/* 字段卡片 */
.baijia-wf-field-card {
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 12px;
	transition: box-shadow 0.2s ease;
}

.baijia-wf-field-card:hover {
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* 区域标题卡片 - 与其他卡片统一样式 */

/* 区域标题 */
.baijia-wf-section-title {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	margin: 0;
}

/* 图片卡片 */
.baijia-wf-image-card {
	padding: 20px;
}

.baijia-wf-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

/* 销售渠道内图片 */
.baijia-wf-channel-image {
	margin-top: 20px !important;
	margin-bottom: 20px !important;
	padding: 0;
}

/* 标签 */
.baijia-wf-label {
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #333;
	margin-bottom: 16px;
}

/* 输入框 */
.baijia-wf-input {
	width: 100%;
	max-width: 400px;
	padding: 8px 0;
	font-size: 14px;
	color: #333;
	background: transparent;
	border: none;
	border-bottom: 1px solid #dadce0;
	outline: none;
	transition: border-color 0.2s ease;
}

.baijia-wf-input::placeholder {
	color: #999;
}

.baijia-wf-input:focus {
	border-bottom: 2px solid #8B7355;
	padding-bottom: 7px;
}

/* 单选按钮组 */
.baijia-wf-radio-group {
	margin-top: 10px;
}

.baijia-wf-radio-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 12px 0;
	font-size: 14px;
	color: #333;
}

.baijia-wf-radio-label input[type="radio"] {
	display: none;
}

.baijia-wf-radio-custom {
	width: 20px;
	height: 20px;
	border: 2px solid #5f6368;
	border-radius: 50%;
	margin-right: 12px;
	position: relative;
	transition: border-color 0.2s ease;
	flex-shrink: 0;
}

.baijia-wf-radio-label input[type="radio"]:checked + .baijia-wf-radio-custom {
	border-color: #8B7355;
}

.baijia-wf-radio-label input[type="radio"]:checked + .baijia-wf-radio-custom::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	background-color: #8B7355;
	border-radius: 50%;
}

.baijia-wf-radio-text {
	line-height: 1;
}

/* 按钮区域 */
.baijia-wf-buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	margin-top: 10px;
}

.baijia-wf-submit {
	background-color: #fff;
	color: #8B7355;
	border: 1px solid #8B7355;
	padding: 10px 24px;
	font-size: 14px;
	font-weight: 500;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.baijia-wf-submit:hover {
	background-color: #8B7355;
	color: #fff;
}

.baijia-wf-clear {
	background: none;
	border: none;
	color: #8B7355;
	font-size: 14px;
	cursor: pointer;
	padding: 10px 0;
	transition: opacity 0.2s ease;
}

.baijia-wf-clear:hover {
	opacity: 0.7;
}

/* 消息提示 */
.baijia-wf-message {
	padding: 15px 20px;
	border-radius: 4px;
	margin-top: 15px;
	font-size: 14px;
}

.baijia-wf-message.success {
	background-color: #e6f4ea;
	color: #137333;
	border: 1px solid #137333;
}

.baijia-wf-message.error {
	background-color: #fce8e6;
	color: #c5221f;
	border: 1px solid #c5221f;
}

/* 加载状态 */
.baijia-wf-submit.loading {
	opacity: 0.7;
	pointer-events: none;
}

.baijia-wf-submit.loading::after {
	content: '...';
}

/* 响应式 */
@media (max-width: 768px) {
	.baijia-wf-header {
		padding: 20px;
	}

	.baijia-wf-title {
		font-size: 24px;
	}

	.baijia-wf-field-card {
		padding: 18px;
	}

	.baijia-wf-input {
		max-width: 100%;
	}

	.baijia-wf-buttons {
		flex-direction: column-reverse;
		gap: 15px;
		align-items: flex-start;
	}
}
