/* 投诉曝光 */
.exp-page {
	padding: 8px 0 48px;
}

.exp-crumb {
	color: var(--wb-text-muted, #86909C);
	margin-bottom: 16px;
}

.exp-crumb a {
	color: var(--wb-text-secondary, #4E5969);
}

.exp-alert {
	border-radius: var(--wb-radius-inner, 8px);
	padding: 12px 16px;
	margin-bottom: 16px;
	font-size: 14px;
}

.exp-alert-ok {
	background: #e8ffea;
	color: #008020;
	border: 1px solid #b7ebc6;
}

.exp-alert-err {
	background: #ffece8;
	color: #cb2634;
	border: 1px solid #f5c6c0;
}

/* Hero */
.exp-hero {
	position: relative;
	border-radius: var(--wb-radius-card, 8px);
	overflow: hidden;
	margin-bottom: 24px;
	background:
		linear-gradient(105deg, rgba(0, 112, 204, 0.92) 0%, rgba(0, 88, 168, 0.88) 42%, rgba(255, 125, 0, 0.55) 100%),
		url('../images/wb-exposure-hero.png') center / cover no-repeat;
	min-height: 420px;
}

.exp-hero-visual {
	display: none;
}

.exp-hero-inner {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	gap: 28px;
	padding: 28px;
	min-height: 420px;
}

.exp-report {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 380px;
	flex: 0 0 380px;
	max-width: 100%;
	padding: 22px 22px 20px;
	background: #fff;
}

.exp-report-hd h2 {
	margin: 0 0 6px;
	font-size: 22px;
	font-weight: 700;
	color: var(--wb-text, #1D2129);
}

.exp-report-hd p {
	margin: 0 0 18px;
	font-size: 13px;
	color: var(--wb-text-muted, #86909C);
}

.exp-label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--wb-text, #1D2129);
}

.exp-label span {
	color: var(--wb-danger, #F53F3F);
}

.exp-textarea-wrap {
	position: relative;
	margin-bottom: 16px;
}

.exp-textarea-wrap textarea {
	display: block;
	width: 100%;
	min-height: 140px;
	resize: vertical;
	border: 1px solid var(--wb-border, #E5EEF3);
	border-radius: var(--wb-radius-inner, 8px);
	padding: 12px 12px 28px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--wb-text, #1D2129);
	background: #fafbfc;
	outline: none;
	-webkit-transition: border-color .2s, box-shadow .2s;
	transition: border-color .2s, box-shadow .2s;
}

.exp-textarea-wrap textarea:focus {
	border-color: var(--wb-primary, #0070CC);
	box-shadow: 0 0 0 3px rgba(0, 112, 204, 0.12);
	background: #fff;
}

.exp-count {
	position: absolute;
	right: 10px;
	bottom: 8px;
	font-size: 12px;
	color: var(--wb-text-placeholder, #BCC2CE);
	pointer-events: none;
}

.exp-field-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 12px 18px;
	margin-bottom: 14px;
}

.exp-field-row .exp-label {
	margin: 0;
}

.exp-radio {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	font-size: 13px;
	color: var(--wb-text-secondary, #4E5969);
	font-weight: 400;
	margin: 0;
}

.exp-radio input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.exp-radio i {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid #c9d4e0;
	background: #fff;
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 16px;
	flex: 0 0 16px;
}

.exp-radio input:checked + i {
	border-color: var(--wb-primary, #0070CC);
}

.exp-radio input:checked + i:after {
	content: '';
	position: absolute;
	left: 3px;
	top: 3px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--wb-primary, #0070CC);
}

.exp-phone-row {
	margin-bottom: 16px;
}

.exp-phone-row input {
	display: block;
	width: 100%;
	height: 40px;
	border: 1px solid var(--wb-border, #E5EEF3);
	border-radius: var(--wb-radius-inner, 8px);
	padding: 0 12px;
	font-size: 13px;
	color: var(--wb-text, #1D2129);
	background: #fafbfc;
	outline: none;
}

.exp-phone-row input:focus {
	border-color: var(--wb-primary, #0070CC);
	box-shadow: 0 0 0 3px rgba(0, 112, 204, 0.12);
	background: #fff;
}

.exp-phone-row.is-hidden {
	display: none;
}

.exp-submit {
	display: block;
	width: 100%;
	height: 44px;
	border: 0;
	border-radius: var(--wb-radius-inner, 8px);
	background: linear-gradient(90deg, var(--wb-brand-orange, #FF7D00), var(--wb-brand-orange-deep, #e67000));
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.5px;
	cursor: pointer;
	-webkit-transition: -webkit-transform .15s, box-shadow .2s, filter .2s;
	transition: transform .15s, box-shadow .2s, filter .2s;
	box-shadow: 0 8px 18px rgba(255, 125, 0, 0.28);
}

.exp-submit:hover {
	filter: brightness(1.04);
	-webkit-transform: translateY(-1px);
	transform: translateY(-1px);
}

.exp-submit:active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/* Promise copy */
.exp-promise {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
	padding: 12px 8px 12px 12px;
	min-width: 0;
}

.exp-promise-eyebrow {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 600;
	opacity: 0.92;
	letter-spacing: 1px;
}

.exp-promise h1 {
	margin: 0 0 14px;
	font-size: 36px;
	line-height: 1.25;
	font-weight: 800;
	color: #fff;
	text-shadow: 0 2px 18px rgba(0, 40, 90, 0.25);
}

.exp-promise h1 span {
	display: inline;
	color: #ffe6c2;
}

.exp-promise-sub {
	margin: 0 0 24px;
	font-size: 15px;
	line-height: 1.7;
	max-width: 460px;
	opacity: 0.95;
}

.exp-promise-cta {
	display: inline-block;
	-webkit-align-self: flex-start;
	-ms-flex-item-align: start;
	align-self: flex-start;
	height: 44px;
	line-height: 44px;
	padding: 0 28px;
	border-radius: 22px;
	background: #fff;
	color: var(--wb-primary, #0070CC) !important;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	box-shadow: 0 10px 24px rgba(0, 40, 90, 0.2);
	-webkit-transition: -webkit-transform .15s, box-shadow .2s;
	transition: transform .15s, box-shadow .2s;
}

.exp-promise-cta:hover {
	-webkit-transform: translateY(-1px);
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(0, 40, 90, 0.28);
}

.exp-promise-hotline {
	margin: 18px 0 0;
	font-size: 13px;
	opacity: 0.85;
}

/* Cases table */
.exp-cases {
	padding: 0;
	overflow: hidden;
}

.exp-cases-hd {
	padding: 22px 28px 16px;
	border-bottom: 1px solid var(--wb-border-card, #f3f4f6);
}

.exp-cases-hd h2 {
	margin: 0 0 4px;
	font-size: 20px;
	font-weight: 700;
	color: var(--wb-text, #1D2129);
}

.exp-cases-hd p {
	margin: 0;
	font-size: 13px;
	color: var(--wb-text-muted, #86909C);
}

.exp-table {
	width: 100%;
}

.exp-tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #eef2f7;
}

.exp-tr:last-child {
	border-bottom: 0;
}

.exp-th {
	background: #f7faff;
	font-weight: 700;
	color: var(--wb-text, #1D2129);
	font-size: 14px;
}

.exp-td {
	padding: 18px 22px;
	font-size: 13px;
	line-height: 1.7;
	color: var(--wb-text-secondary, #4E5969);
}

.exp-td-user {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 160px;
	flex: 0 0 160px;
	width: 160px;
}

.exp-td-content,
.exp-td-result {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 0;
	flex: 1 1 0;
	min-width: 0;
}

.exp-td-result {
	background: rgba(0, 112, 204, 0.03);
}

.exp-th .exp-td-result {
	background: #f7faff;
}

.exp-user {
	display: inline-block;
	font-weight: 600;
	color: var(--wb-text, #1D2129);
	letter-spacing: 0.3px;
}

.exp-td p {
	margin: 0;
	word-break: break-word;
}

.exp-tr:not(.exp-th):hover .exp-td {
	background: #fbfcff;
}

.exp-tr:not(.exp-th):hover .exp-td-result {
	background: rgba(0, 112, 204, 0.06);
}

.exp-cases-ft {
	padding: 14px 28px 18px;
	border-top: 1px solid var(--wb-border-card, #f3f4f6);
	font-size: 13px;
	color: var(--wb-text-muted, #86909C);
}

.exp-cases-ft a {
	color: var(--wb-primary, #0070CC);
}

.exp-cases-ft span {
	margin: 0 8px;
	color: #d0d7e2;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
	.exp-report {
		-webkit-animation: exp-rise .55s ease both;
		animation: exp-rise .55s ease both;
	}
	.exp-promise {
		-webkit-animation: exp-rise .7s .08s ease both;
		animation: exp-rise .7s .08s ease both;
	}
	.exp-cases {
		-webkit-animation: exp-rise .6s .16s ease both;
		animation: exp-rise .6s .16s ease both;
	}
}

@-webkit-keyframes exp-rise {
	from {
		opacity: 0;
		-webkit-transform: translateY(14px);
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes exp-rise {
	from {
		opacity: 0;
		-webkit-transform: translateY(14px);
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

/* Responsive */
@media (max-width: 991px) {
	.exp-hero-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		padding: 20px;
		min-height: 0;
	}

	.exp-report {
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}

	.exp-promise {
		padding: 8px 4px 4px;
	}

	.exp-promise h1 {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.exp-hero {
		min-height: 0;
		border-radius: 8px;
	}

	.exp-promise h1 {
		font-size: 24px;
	}

	.exp-promise-sub {
		font-size: 13px;
		margin-bottom: 16px;
	}

	.exp-tr {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.exp-th {
		display: none;
	}

	.exp-td {
		padding: 10px 16px;
	}

	.exp-td-user {
		width: auto;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		padding-top: 16px;
		padding-bottom: 4px;
	}

	.exp-td-content:before,
	.exp-td-result:before {
		display: block;
		font-size: 12px;
		font-weight: 700;
		color: var(--wb-text-muted, #86909C);
		margin-bottom: 4px;
	}

	.exp-td-content:before {
		content: '投诉内容';
	}

	.exp-td-result:before {
		content: '处理结果';
	}

	.exp-td-result {
		padding-bottom: 18px;
	}

	.exp-cases-hd,
	.exp-cases-ft {
		padding-left: 16px;
		padding-right: 16px;
	}
}
