/* lawlst 金牌律师网 - 律师列表 + 律师详情样式 */

/* 面包屑 */
.breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 10px 0;
	font-size: 13px;
	color: #999;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}
.breadcrumb-home img { width: 14px; height: 14px; display: inline-block; }
.breadcrumb-path a { color: #666; }
.breadcrumb-path a:hover { color: #c42621; }
.breadcrumb-path .current { color: #c42621; }

/* ============ 律师列表页 ============ */
.lvshi-list-section, .lvshi-detail-section { padding: 24px 15px 40px; }

.list-head { margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid #c42621; }
.list-head-main { display: flex; align-items: center; gap: 12px; }
.list-title { font-size: 24px; color: #c42621; font-weight: 700; display: inline-block; margin: 0; line-height: 1.2; }
.list-badge {
	display: inline-block;
	font-size: 12px;
	color: #c42621;
	background: #fdeeed;
	border: 1px solid #f7d3d1;
	border-radius: 12px;
	padding: 1px 10px;
}
.list-sub { font-size: 13px; color: #999; margin-top: 8px; }

/* 筛选面板 */
.filter-panel {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 6px 16px;
	margin-bottom: 18px;
}
.filter-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px dashed #f0f0f0;
}
.filter-row:last-child { border-bottom: none; }
.filter-label {
	flex-shrink: 0;
	width: 72px;
	font-size: 13px;
	color: #999;
	line-height: 26px;
}
.filter-items { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; }
.filter-item {
	display: inline-block;
	padding: 3px 14px;
	font-size: 13px;
	color: #555;
	border: 1px solid transparent;
	border-radius: 14px;
	line-height: 20px;
	cursor: pointer;
}
.filter-item:hover { color: #c42621; background: #fdeeed; }
.filter-item.is-active { background: #c42621; color: #fff; border-color: #c42621; }

/* 律师卡片 */
.lvshi-grid { display: flex; flex-direction: column; gap: 14px; }
.lvshi-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 20px;
	display: flex;
	gap: 20px;
	transition: box-shadow .2s, border-color .2s;
}
.lvshi-card:hover { box-shadow: 0 4px 14px rgba(196,38,33,0.12); border-color: #c42621; }
.lvshi-card[hidden] { display: none; }
.lvshi-avatar {
	width: 110px;
	height: 110px;
	border-radius: 6px;
	overflow: hidden;
	flex-shrink: 0;
	display: block;
	background: #f5f5f5;
}
.lvshi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lvshi-avatar-ph {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	color: #fff;
	background: linear-gradient(135deg, #d9534f, #c42621);
}
.lvshi-info { flex: 1; min-width: 0; }
.lvshi-head { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.lvshi-name { font-size: 19px; color: #c42621; font-weight: 700; }
.lvshi-name:hover { color: #a01c18; }
.lvshi-badge {
	font-size: 12px;
	color: #2e8b57;
	background: #eef8f1;
	border: 1px solid #cfe9d9;
	border-radius: 3px;
	padding: 0 6px;
}
.lvshi-years { font-size: 13px; color: #999; }
.lvshi-meta { font-size: 13px; color: #666; margin-bottom: 8px; }
.lvshi-meta .meta-item { display: inline-block; margin-right: 18px; }
.lvshi-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.lvshi-tag {
	display: inline-block;
	font-size: 12px;
	color: #c42621;
	background: #fdeeed;
	border-radius: 3px;
	padding: 1px 8px;
}
.lvshi-field { font-size: 13px; color: #666; margin-bottom: 8px; }
.lvshi-field .field-label { color: #999; }
.lvshi-field .field-value { color: #c42621; }
.lvshi-intro {
	font-size: 13px;
	color: #777;
	line-height: 1.6;
	max-height: 4.8em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	margin-bottom: 12px;
}
.lvshi-actions { display: flex; gap: 10px; }
.btn-phone-consult, .btn-online-consult {
	display: inline-block;
	padding: 6px 18px;
	font-size: 13px;
	border-radius: 3px;
	border: 1px solid #c42621;
}
.btn-phone-consult { background: #c42621; color: #fff; }
.btn-phone-consult:hover { background: #a01c18; color: #fff; }
.btn-online-consult { background: #fff; color: #c42621; }
.btn-online-consult:hover { background: #fdeeed; color: #c42621; }
.lvshi-empty {
	text-align: center;
	padding: 40px 0;
	color: #999;
	font-size: 14px;
	background: #fff;
	border: 1px dashed #eee;
	border-radius: 6px;
}

/* 分类下暂无律师时的服务端空态块 */
.lvshi-empty-block {
	background: #fff;
	border: 1px solid #eef1f5;
	border-radius: 8px;
	padding: 48px 24px;
	text-align: center;
}
.lvshi-empty-block .empty-title {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 600;
	color: #333;
}
.lvshi-empty-block .empty-desc {
	margin: 0 auto 22px;
	max-width: 620px;
	font-size: 14px;
	line-height: 1.9;
	color: #888;
}
.lvshi-empty-block .empty-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
.lvshi-empty-block .empty-links a {
	display: inline-block;
	padding: 8px 18px;
	font-size: 14px;
	color: #333;
	background: #f6f8fb;
	border: 1px solid #e6ebf2;
	border-radius: 4px;
	transition: all .2s;
}
.lvshi-empty-block .empty-links a:hover {
	color: #fff;
	background: #c42621;
	border-color: #c42621;
}
.lvshi-empty-block .empty-links a.empty-all {
	color: #c42621;
	background: #fff;
	border-color: #f0c4c2;
}
.lvshi-empty-block .empty-links a.empty-all:hover { color: #fff; }

/* 零律师城市兜底推荐 */
.lvshi-reco { margin-top: 26px; }
.lvshi-reco-head {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 14px;
	padding-left: 12px;
	border-left: 4px solid #c42621;
}
.lvshi-reco-head .reco-title {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	color: #222;
}
.lvshi-reco-head .reco-sub { font-size: 13px; color: #999; }
@media (max-width: 768px) {
	.lvshi-reco-head { flex-wrap: wrap; gap: 6px; }
	.lvshi-reco-head .reco-title { font-size: 17px; }
}

/* 分页 */
.pagination { text-align: center; margin-top: 24px; padding-top: 16px; }
.pagination a, .pagination span {
	display: inline-block;
	padding: 6px 12px;
	margin: 0 3px;
	border: 1px solid #ddd;
	color: #666;
	font-size: 13px;
	border-radius: 3px;
}
.pagination a:hover { background: #c42621; color: #fff; border-color: #c42621; }
.pagination .pageActive { background: #c42621; color: #fff; border-color: #c42621; }

/* ============ 律师详情页 ============ */
.lawyer-hero {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 26px 30px;
	display: flex;
	gap: 28px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.hero-avatar-box { position: relative; flex-shrink: 0; width: 170px; }
.hero-avatar {
	width: 170px;
	height: 170px;
	border-radius: 8px;
	object-fit: cover;
	background: #f5f5f5;
}
.hero-avatar-ph {
	width: 170px;
	height: 170px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 60px;
	color: #fff;
	background: linear-gradient(135deg, #d9534f, #c42621);
}
.hero-verified {
	display: block;
	text-align: center;
	margin-top: 10px;
	font-size: 12px;
	color: #2e8b57;
	background: #eef8f1;
	border: 1px solid #cfe9d9;
	border-radius: 12px;
	padding: 2px 0;
}
.hero-main { flex: 1; min-width: 0; }
.hero-name {
	font-size: 28px;
	color: #c42621;
	font-weight: 700;
	display: inline-block;
	margin-right: 12px;
	vertical-align: middle;
}
.hero-badges { display: inline-flex; flex-wrap: wrap; gap: 6px; vertical-align: middle; }
.hero-badge {
	font-size: 12px;
	color: #c42621;
	background: #fdeeed;
	border: 1px solid #f7d3d1;
	border-radius: 3px;
	padding: 1px 8px;
}
.hero-org {
	font-size: 14px;
	color: #666;
	margin-top: 10px;
	padding-bottom: 12px;
	border-bottom: 1px dashed #eee;
}
.hero-meta { display: flex; flex-wrap: wrap; gap: 24px; margin: 14px 0; }
.meta-chip { font-size: 13px; color: #999; }
.meta-chip em { font-style: normal; font-size: 16px; color: #c42621; font-weight: 700; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; min-height: 4px; }
.hero-actions { display: flex; gap: 12px; }
.btn-ask-large {
	display: inline-block;
	padding: 10px 26px;
	background: #c42621;
	color: #fff;
	font-size: 14px;
	border-radius: 4px;
}
.btn-ask-large:hover { background: #a01c18; color: #fff; }
.btn-ask-ghost {
	display: inline-block;
	padding: 10px 26px;
	background: #fff;
	color: #c42621;
	font-size: 14px;
	border: 1px solid #c42621;
	border-radius: 4px;
}
.btn-ask-ghost:hover { background: #fdeeed; color: #c42621; }

.lawyer-body { display: flex; gap: 20px; margin-top: 20px; align-items: flex-start; }
.lawyer-main { flex: 1; min-width: 0; background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 24px 26px; }
.lawyer-side { width: 300px; flex-shrink: 0; }
.detail-section-block { margin-bottom: 26px; }
.detail-section-block:last-child { margin-bottom: 0; }
.detail-block-title {
	font-size: 16px;
	color: #333;
	font-weight: 600;
	margin-bottom: 14px;
	padding-left: 10px;
	line-height: 1.2;
	border-left: 3px solid #c42621;
}
.detail-content { font-size: 14px; color: #444; line-height: 1.9; }
.detail-content img { max-width: 100%; height: auto; margin: 10px 0; }
.field-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.field-card {
	display: block;
	padding: 14px 12px;
	background: #fafafa;
	border: 1px solid #f0f0f0;
	border-radius: 6px;
	text-align: center;
	transition: all .2s;
}
.field-card:hover { background: #fdeeed; border-color: #f7d3d1; }
.field-card-name { display: block; font-size: 14px; color: #c42621; font-weight: 600; margin-bottom: 4px; }
.field-card-desc { display: block; font-size: 12px; color: #999; }
.field-empty { font-size: 13px; color: #999; }
.detail-evaluation { padding: 20px; background: #fafafa; border-radius: 6px; text-align: center; }
.eval-empty { font-size: 13px; color: #999; }

.side-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 18px 20px;
	margin-bottom: 16px;
}
.side-title {
	font-size: 15px;
	color: #333;
	font-weight: 600;
	padding-left: 9px;
	margin-bottom: 14px;
	border-left: 3px solid #c42621;
}
.side-list li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 13px;
	padding: 9px 0;
	border-bottom: 1px dashed #f2f2f2;
}
.side-list li:last-child { border-bottom: none; }
.side-list li span { color: #999; flex-shrink: 0; }
.side-list li em { font-style: normal; color: #444; text-align: right; word-break: break-all; }
.side-card-cta { background: #fdf7f7; border-color: #f7d3d1; }
.side-cta-text { font-size: 13px; color: #777; line-height: 1.7; margin-bottom: 14px; }
.side-cta-btn { display: block; text-align: center; }
.side-cta-tel { font-size: 13px; color: #999; margin-top: 12px; text-align: center; }

.hero-badge-cert { color: #2e8b57; background: #eef8f1; border-color: #cfe9d9; }
.hero-badge-tag { color: #8a6d1f; background: #fdf6e3; border-color: #f0e0b8; }
.hero-license { font-size: 13px; color: #666; margin-bottom: 12px; }
.license-no { letter-spacing: 1px; font-family: Consolas, Menlo, monospace; color: #444; }
.license-tip { font-size: 12px; color: #aaa; margin-left: 6px; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat-card {
	background: #fdf7f7;
	border: 1px solid #f7e2e1;
	border-radius: 6px;
	padding: 16px 10px;
	text-align: center;
}
.stat-num { display: block; font-size: 22px; font-weight: 700; color: #c42621; line-height: 1.2; }
.stat-label { display: block; font-size: 12px; color: #999; margin-top: 4px; }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px; }
.info-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 13px;
	padding: 9px 0;
	border-bottom: 1px dashed #f2f2f2;
}
.info-label { flex-shrink: 0; width: 82px; color: #999; }
.info-value { flex: 1; font-style: normal; color: #444; word-break: break-all; }
.info-uid { font-size: 12px; color: #888; }

.cert-box { display: flex; flex-wrap: wrap; gap: 12px; }
.cert-item {
	flex: 1 1 180px;
	background: #fafafa;
	border: 1px solid #f0f0f0;
	border-radius: 6px;
	padding: 12px 14px;
}
.cert-name { display: block; font-size: 13px; color: #999; margin-bottom: 6px; }
.cert-state { display: block; font-size: 14px; color: #2e8b57; font-weight: 600; word-break: break-all; }

.side-more-link { display: block; font-size: 13px; color: #c42621; line-height: 2; }
.side-more-link:hover { color: #a01c18; }

/* 响应式 */
@media (max-width: 992px) {
	.lawyer-body { flex-direction: column; }
	.lawyer-side { width: 100%; }
	.field-grid { grid-template-columns: repeat(2, 1fr); }
	.info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.lvshi-card { padding: 14px; flex-direction: column; gap: 14px; }
	.lvshi-avatar { width: 88px; height: 88px; }
	.lvshi-avatar-ph { font-size: 32px; }
	.lvshi-actions { flex-wrap: wrap; }
	.filter-label { width: 100%; line-height: 20px; }
	.filter-row { flex-direction: column; gap: 6px; }
	.lawyer-hero { flex-direction: column; padding: 18px; gap: 16px; }
	.hero-avatar-box { width: 100%; display: flex; flex-direction: column; align-items: center; }
	.hero-avatar, .hero-avatar-ph { width: 130px; height: 130px; }
	.hero-verified { width: 130px; }
	.hero-name { font-size: 22px; }
	.hero-meta { gap: 12px; }
	.lawyer-main { padding: 18px 16px; }
	.field-grid { grid-template-columns: 1fr; }
	.stat-grid { grid-template-columns: repeat(2, 1fr); }
}
