/* Custom styles for Taopuwang Business Services Portal */
:root {
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-500: #3b82f6;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --orange-500: #f97316;
    --indigo-600: #4f46e5;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--gray-50);
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Top Bar */
.top-bar {
    background-color: white;
    border-bottom: 1px solid var(--gray-100);
    padding: 0.5rem 0;
    display: none;
}

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-left span,
.top-bar-left a,
.top-bar-right a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: inherit;
}

.top-bar-left a:hover,
.top-bar-right a:hover {
    color: var(--blue-600);
}

.hotline {
    color: var(--red-500);
    font-weight: 500;
}

/* Header */
.main-header {
    background-color: white;
    padding: 1.5rem 0;
    /* position: sticky; */
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .header-inner {
        flex-direction: row;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;

    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--blue-600);
    margin: 0;
    line-height: 1;
    letter-spacing: -0.05em;
}

.logo-text p {
    font-size: 0.625rem;
    color: var(--gray-400);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.search-container {
    flex: 1;
    max-width: 42rem;
    width: 100%;
}

.search-box {
    display: flex;
}

.search-input-wrapper {
    position: relative;
    overflow: hidden;
    flex: 1;
}

.search-input-wrapper input {
    width: 100%;
    padding: 0.625rem 2.5rem 0.625rem 1rem;
    border: 2px solid var(--blue-600);
    border-radius: 0.375rem 0 0 0.375rem;
    outline: none;
}

.search-icon-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    background: none;
    border: none;
    cursor: pointer;
}

.search-submit-btn {
    width: 100px;
    background-color: var(--blue-600);
    color: white;
    padding: 0 2rem;
    border: none;
    border-radius: 0 0.375rem 0.375rem 0;
    font-weight: bold;
    cursor: pointer;
}

.search-hot-keywords {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.search-hot-keywords a {
    text-decoration: none;
    color: inherit;
}

.search-hot-keywords a:hover {
    color: var(--blue-600);
}

.header-contact {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .header-contact {
        display: flex;
    }
}

.contact-info {
    text-align: right;
}

.contact-info .label {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin: 0;
}

.contact-info .number {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gray-800);
    margin: 0;
}

.qr-box {
    width: 4rem;
    height: 4rem;
    background-color: var(--gray-100);
    border-radius: 0.25rem;
    padding: 0.25rem;
}

.qr-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--gray-300);
    border-radius: 0.125rem;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Navigation */
.main-nav {
    margin-top: 1rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.nav-item {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--gray-700);
    transition: color 0.2s;
}

.nav-item:hover {
    color: var(--blue-600);
}

.nav-item.active {
    color: var(--blue-600);
}

.nav-extra {
    margin-left: auto;
}

.nav-extra button {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-extra button:hover {
    color: var(--blue-600);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.6), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 56rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #dbeafe;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-subtitle .highlight {
    color: #facc15;
    font-weight: bold;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-search {
    flex: 1;
    max-width: 36rem;

}

.hero-search-box {
    display: flex;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-search-box input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem 0 0 0.5rem;
    border: none;
    outline: none;
    color: var(--gray-900);
    height: 50px;
    box-sizing: border-box;
}

.hero-search-btn {
    background-color: var(--blue-600);
    color: white;
    padding: 0 2rem;
    border-radius: 0 0.5rem 0.5rem 0;
    border: none;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.hero-publish-btn {
    background-color: var(--blue-600);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    height: 50px;
}

.hero-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: #dbeafe;
}

.hero-footer label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* Service Grid */
.service-grid-section {
    padding: 3rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.service-card-header {
    padding: 0.75rem 1rem;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bg-blue,
.bg-3 {
    background-color: var(--blue-600) !important;
}

.bg-light-blue,
.bg-5 {
    background-color: var(--blue-500) !important;
}

.bg-dark-blue {
    background-color: var(--blue-700) !important;
}

.bg-indigo,
.bg-1 {
    background-color: var(--indigo-600) !important;
}

.bg-orange,
.bg-4 {
    background-color: var(--orange-500) !important;
}

.bg-red,
.bg-2 {
    background-color: var(--red-600) !important;
}

.service-card-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
}

.service-item-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;

}

.service-icon-box {
    width: 3rem;
    height: 3rem;
    background-color: var(--gray-50);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-500);
    transition: background-color 0.2s;
}

.service-icon-box .fa-solid {
    font-size: 1.2rem;
}

.service-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-align: center;
}



/* Announcement Bar */
.announcement-bar {
    margin-bottom: 3rem;
}

.announcement-inner {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.announcement-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red-500);
    font-weight: bold;
    white-space: nowrap;
}

.divider {
    height: 1rem;
    width: 1px;
    background-color: var(--gray-200);
}

.announcement-links {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    white-space: nowrap;
    color: var(--gray-500);
    flex: 1;
}

.announcement-links a {
    text-decoration: none;
    color: inherit;
}

.announcement-links a:hover {
    color: var(--blue-600);
}

.announcement-text {
    flex: 1;
}

/* Transfer Section */
.transfer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .transfer-section {
        flex-direction: row;
    }
}

.transfer-sidebar {
    width: 250px;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    background-color: var(--indigo-600);
}

.sidebar-content {
    padding: 1.5rem;
    color: white;
    min-height: 250px;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-btn {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sidebar-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-footer {
    margin-top: auto;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.05);
}

.sidebar-placeholder {
    width: 100%;
    height: 8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.transfer-grid {
    flex: 1;
    display: grid;
    /* 这行代码设置 transfer-grid 显示为三列的网格布局，每列平分宽度 */
    /* grid-template-columns: repeat(3, 1fr); */
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}



.transfer-card {
    width: calc(33.33% - 0.8rem);
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-100);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s;
    box-sizing: border-box;
}

.transfer-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.card-title {
    font-weight: bold;
    color: var(--gray-800);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-tag {
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
    background-color: #eff6ff;
    color: var(--blue-600);
    border-radius: 0.25rem;
    border: 1px solid #dbeafe;
    white-space: nowrap;
}

.card-meta {
    margin-bottom: 1rem;
}

.card-meta p {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    color: var(--red-500);
    font-weight: bold;
    font-size: 1.125rem;
}

.card-detail-btn {
    font-size: 0.75rem;
    color: var(--blue-600);
    background: none;
    border: none;
    cursor: pointer;
}

.card-detail-btn:hover {
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background-color: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.footer-col h5 {
    color: white;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    font-size: 0.875rem;
    text-decoration: none;
    color: inherit;
}

.footer-col ul li a:hover {
    color: white;
}

.qr-group {
    display: flex;
    gap: 1rem;
}

.empty-text {
    min-height: 300px;
    text-align: center;
    display: flex;
    justify-content: center;
}


.qr-item {
    width: 4rem;
    height: 4rem;
    background-color: var(--gray-800);
    border-radius: 0.25rem;
    padding: 0.25rem;
    font-size: 0.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-info {
    font-size: 0.75rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-info {
        text-align: left;
    }
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.footer-badges a {
    color: inherit;
    text-decoration: none;
    color: #ddd !important;
}

.badge {
    width: 5rem;
    height: 2rem;
    background-color: var(--gray-800);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 50;
}

.float-btn {
    width: 3rem;
    height: 3rem;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.float-btn:hover {
    background-color: var(--gray-50);
}

.scroll-top {
    background-color: var(--blue-600);
    color: white;
}

.scroll-top:hover {
    background-color: var(--blue-700);
}

.scroll-top svg {
    transform: rotate(-90deg);
}

/* ========== 插入图片样式 ========== */
/* 内容区正文内插入的图片 */
.ShowContent .cnt img,
.ShowContent .cnt p img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
    padding: 0.75rem;
    background-color: white;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

/* 组图（volist 输出的图片） */
.ShowContent .cnt center img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
    padding: 0.75rem;
    background-color: white;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

/* 自定义字段图片（OtherInfos 组图、图片字段） */
.OtherInfos img,
.d_field_images img,
.d_field_field_images2 img,
.field_images img,
.field_images2 img {
    max-width: 100%;
    height: auto;
    padding: 0.5rem;
    background-color: white;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

/* OtherInfos 侧边栏布局 */
.OtherInfos .SideBox {
    clear: both;
}

/* OtherInfos 侧边栏图片保持原有布局（缩略图样式） */
.OtherInfos .SideBox img,
.OtherInfos .d_field_images img,
.OtherInfos .d_field_field_images2 img {
    height: 100px;
    width: auto;
    max-width: none;
    float: left;
    margin: 0.5rem;
    padding: 0.25rem;
    object-fit: cover;
}

/* 图片容器（可选：包裹图片时使用） */
.img-container {
    padding: 1rem 1.25rem;
    background-color: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    margin: 1rem 0;
}

.img-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 图片悬停效果 */
.ShowContent .cnt img:hover,
.OtherInfos img:hover,
.d_field_images img:hover,
.d_field_field_images2 img:hover {
    border-color: var(--blue-500);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.15);
}

/* ========== 详情页头部信息区 pc-detail-header ========== */
.pc-detail-header {
    margin-bottom: 1.5rem;
}

.detail-breadcrumb {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.detail-body {
    display: flex;
    gap: 1.25rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .detail-body {
        flex-direction: column;
    }
}

.detail-main-card {
    flex: 1;
    min-width: 0;
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 1.25rem 1.5rem;
}

.detail-header-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    background-color: #3B66C4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.detail-title-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin: 0;
}

.detail-tag {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    background-color: #FF9900;
    color: white;
    border-radius: 9999px;
}

.detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    font-size: 0.8125rem;
    color: var(--gray-500);
    padding: 0.75rem 0;
    background-color: var(--gray-50);
    border-radius: 0.25rem;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.detail-meta-row a {
    color: inherit;
    text-decoration: none;
}

.detail-meta-row a:hover {
    color: var(--blue-600);
}

.detail-price-banner {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    border-radius: 0.375rem;
    overflow: hidden;
}

.detail-price-block {
    flex: 0 0 35%;
    min-width: 200px;
    background-color: #FFF2E8;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-urgent-tag {
    font-size: 0.75rem;
    padding: 0.125rem 0.375rem;
    background-color: #c71585;
    color: white;
    border-radius: 0.25rem;
}

.detail-urgent-tag .fa {
    margin-right: 0.125rem;
}

.detail-price-text {
    font-weight: 500;
    color: var(--gray-700);
}

.detail-price-text em {
    font-weight: bold;
    color: #dc2626;
    font-style: normal;
    font-size: 1.125rem;
}

.detail-promo-block {
    flex: 1;
    min-width: 240px;
    background: linear-gradient(90deg, #3B66C4, #5b8ae8);
    color: white;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.detail-fav-btn {
    font-size: 0.8125rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    border-radius: 0.25rem;
    cursor: pointer;
    white-space: nowrap;
}

.detail-fav-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.detail-fav-btn .fa {
    margin-right: 0.25rem;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 2rem;
    min-height: 120px;
    background-color: #f0f5ff;
    padding: 15px 15px 0px 15px;
}

@media (max-width: 768px) {
    .detail-info-grid {
        grid-template-columns: 1fr;
    }
}

.detail-info-col p {
    font-size: 0.8125rem;
    color: var(--gray-700);
    margin: 0 0 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.detail-bullet {
    width: 6px;
    height: 6px;
    min-width: 6px;
    margin-top: 0.4rem;
    background-color: #3B66C4;
    border-radius: 50%;
    display: inline-block;
}

.detail-phone-btn {
    width: 100%;
    max-width: 280px;
    padding: 0.75rem 1.5rem;
    background-color: #FF9900;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.detail-phone-btn:hover {
    background-color: #e68a00;
}

.detail-phone-btn .fa {
    font-size: 1.125rem;
}

.detail-trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.75rem;
    color: var(--gray-500);
}

.detail-trust-note {
    margin-left: auto;
}

/* 经纪人侧栏 */
.detail-sidebar {
    width: 260px;
    flex-shrink: 0;
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 1.25rem;
}

@media (max-width: 768px) {
    .detail-sidebar {
        width: 100%;
    }
}

.detail-sidebar-qr {
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
    background-color: var(--gray-100);
    border-radius: 0.25rem;
    overflow: hidden;
}

.detail-sidebar-qr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-sidebar-name {
    font-size: 0.9375rem;
    font-weight: bold;
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 1rem;
}

.detail-sidebar-contact {
    border: 1px dashed var(--gray-200);
    border-radius: 0.25rem;
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-700);
    text-align: center;
}

.detail-sidebar-contact p {
    margin: 0 0 0.5rem 0;
}

.detail-sidebar-contact p:last-child {
    margin-bottom: 0;
}

.detail-stars {
    color: #3B66C4;
    font-size: 1.25rem;
}

.detail-contact-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #3B66C4;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 0.9375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.detail-contact-btn:hover {
    background-color: #2d52a0;
}

/* ========== 交易流程 transaction-process ========== */
.transaction-process {
    margin-bottom: 2rem;
    background-color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.process-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--gray-900);
    margin: 0 0 1.25rem 0;
}

.process-steps {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.process-step {
    flex: 1;
    min-width: 120px;
    background-color: #f0f5ff;
    border-radius: 0.5rem;
    padding: 1rem 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-num {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-800);
}

.step-dots {
    font-size: 0.5rem;
    letter-spacing: 0.25em;
    color: var(--gray-400);
}

.step-label {
    font-size: 0.8125rem;
    color: var(--gray-700);
    line-height: 1.3;
}

.step-arrow {
    width: 1.75rem;
    height: 1.75rem;
    min-width: 1.75rem;
    background-color: var(--blue-500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

/* ========== 类似企业推荐 similar-companies ========== */
.similar-companies {
    margin-bottom: 2rem;
}

.similar-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.25rem;
}

.similar-title-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.similar-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--gray-900);
    margin: 0;
}

.similar-tagline {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.similar-more {
    font-size: 0.875rem;
    color: var(--blue-600);
    text-decoration: none;
}

.similar-more:hover {
    text-decoration: underline;
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .similar-grid {
        grid-template-columns: 1fr;
    }
}

.similar-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
}

.similar-card-name {
    font-size: 1rem;
    font-weight: bold;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.similar-card-info {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.similar-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.similar-info-col:not(:last-child) {
    border-right: 1px solid var(--gray-200);
}

.similar-label {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.similar-value {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.similar-card-price {
    font-size: 1.125rem;
    font-weight: bold;
    color: #ff6600;
}

.similar-card-price span {
    font-size: 1.25rem;
}

/* ========== 基本信息 basic-info-section ========== */
.basic-info-section {
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.basic-info-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--gray-900);
    margin: 0 0 1.25rem 0;
}

.basic-info-content {
    min-height: 120px;
    border: 1px dashed var(--gray-200);
    border-radius: 0.25rem;
    background-color: var(--gray-50);
    margin-bottom: 1.25rem;
    padding: 1.25rem 1.5rem;
}

.basic-info-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.disclaimer-icon {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    background-color: var(--gray-400);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.disclaimer-text {
    line-height: 1.5;
}

/* 公司注册 + 网店转让 双栏区块 */
.dual-column-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.dual-column-inner {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

@media (min-width: 768px) {
    .dual-column-inner {
        flex-direction: row;
    }
}

.dual-col-left {
    flex: 1;
    padding: 1.25rem;
    min-width: 0;
}

@media (min-width: 768px) {
    .dual-col-left {
        flex: 0 0 66%;
        padding: 1.25rem 1.5rem;
    }
}

.dual-col-right {
    padding: 1.25rem;
    border-top: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
    .dual-col-right {
        flex: 0 0 33%;
        border-top: none;
        padding: 1.25rem 1.5rem;
    }
}

.dual-col-divider {
    display: none;
    width: 1px;
    background: var(--gray-200);
}

@media (min-width: 768px) {
    .dual-col-divider {
        display: block;
    }
}

.dual-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.dual-col-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--gray-900);
    margin: 0;
}

.dual-col-title-red {
    color: var(--red-600);
}

.dual-col-icon {
    width: 1.25rem;
    height: 1.25rem;
    background: var(--red-600);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
}

.dual-col-icon-right {
    background: var(--gray-400);
}

/* 精选区 */
.dual-col-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 576px) {
    .dual-col-featured {
        grid-template-columns: 1fr 1fr;
    }
}

.featured-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 0.375rem;
}

.featured-qr {
    flex-shrink: 0;
}

.qr-code-box {
    width: 4.5rem;
    height: 4.5rem;
    color: white;
    font-size: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.25rem;
    border-radius: 0.25rem;
    line-height: 1.2;
}

.featured-graphic {
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    color: var(--blue-600);
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    position: relative;
    overflow: hidden;
}

.graphic-mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.2), transparent);
    border-radius: 0 0 0.25rem 0.25rem;
}

.graphic-text {
    position: relative;
    z-index: 1;
}

.featured-content {
    flex: 1;
    min-width: 0;
}

.featured-title {
    font-size: 0.9375rem;
    font-weight: bold;
    color: var(--gray-900);
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.featured-date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.featured-desc {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0.25rem 0 0 0;
    line-height: 1.4;
}

/* 底部列表 2 列 */
.dual-col-list-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem 1.5rem;
}

.list-grid-col {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.list-row {
    width: calc(50% - 0.75rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.list-link {
    font-size: 0.875rem;
    color: var(--gray-800);
    text-decoration: none;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-link:hover {
    color: var(--blue-600);
}

.list-date {
    font-size: 0.75rem;
    color: var(--gray-500);
    flex-shrink: 0;
}

/* 右侧编号列表 */
.dual-col-numbered-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dual-col-numbered-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.dual-col-numbered-list li:last-child {
    border-bottom: none;
}

.num-badge {
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.num-badge-blue {
    background: var(--blue-600);
}

.num-badge-green {
    background: #22c55e;
}

.num-badge-orange {
    background: var(--orange-500);
}

.num-badge-gray {
    background: var(--gray-500);
}