/* 现代化内容页样式 */

/* 全局字体设置 */
* {
    font-family: var(--font-family);
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-md);
    line-height: var(--line-height-normal);
    color: var(--text-primary);
}

:root {
    --primary-color: #0066cc;
    --primary-hover: #0052a3;
    --secondary-color: #48dbfb;
    --accent-color: #ff5837;
    --success-color: #2ecc71;
    --warning-color: #ffb74d;
    --danger-color: #ff4757;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --border-radius-sm: 4px;
    --border-radius-md: 6px;
    --border-radius-lg: 8px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-xxl: 28px;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;
}

/* 顶部导航栏 */
.top-nav {
    height: 70px;
    border: none;
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-md);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-lg);
}

/* 自定义图标样式 */
.icon-collect::before {
    content: "★";
    margin-right: 5px;
    color: #ffd700;
}

.icon-share::before {
    content: "↗";
    margin-right: 5px;
    color: #1da9ff;
}

.icon-report::before {
    content: "⚠";
    margin-right: 5px;
    color: #ff6b6b;
}

/* 频道名称样式 */
.channel-name {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    color: #1da9ff;
    display: inline-block;
    line-height: 1;
    font-family: 'Noto Sans SC', sans-serif;
    margin: 0;
    padding: 0;
}

/* 企业名称样式优化 */
.company-header dd h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin: 0;
    line-height: 1.4;
    color: var(--text-primary);
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.uinfo {
    float: none;
    width: auto;
    border-right: none;
    display: flex;
    align-items: center;
}

.uinfo dl {
    padding: 0;
    height: auto;
    display: flex;
    align-items: center;
}

.uinfo dt {
    float: none;
    width: 56px;
    height: 56px;
    margin-right: var(--spacing-md);
}

.uinfo dt a, .uinfo dt a img {
    display: block;
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-md);
    object-fit: cover;
}

.uinfo dd {
    margin-left: 0;
}

.uinfo dd h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.uinfo dd h4 a {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.uinfo dd h4 a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.dinfo {
    float: none;
    display: flex;
    align-items: center;
}

.dinfo ul {
    float: none;
    margin: 0;
    display: flex;
    align-items: center;
}

.dinfo li {
    float: none;
    border-right: 1px solid var(--border-color);
    padding: 0 20px;
    text-align: center;
    color: var(--text-secondary);
    line-height: 24px;
}

.dinfo li:last-child {
    border-right: none;
}

.dinfo li strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    font-size: 16px;
}

.dinfo .smobile {
    float: none;
    position: relative;
    z-index: 10;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 20px;
}

.dinfo .smobile a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    color: #ffffff;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-md);
    margin: 0;
    padding: 0 16px;
    transition: background-color 0.3s ease;
}

.dinfo .smobile a:hover {
    background-color: var(--primary-hover);
}

.dinfo .smobile a i {
    float: none;
    width: 16px;
    height: 16px;
    margin: 0 8px 0 0;
    background-position: -19px -54px;
}

.dinfo .qrcode {
    position: absolute;
    display: none;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px;
    -webkit-animation: topFadeIn 0.3s ease-out;
    -moz-animation: topFadeIn 0.3s ease-out;
    animation: topFadeIn 0.3s ease-out;
}

.dinfo .qrcode i, .dinfo .qrcode s {
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    top: -8px;
    margin-left: -8px;
    overflow: hidden;
    border: solid 8px transparent;
}

.dinfo .qrcode i {
    border-bottom-color: #e0e0e0;
}

.dinfo .qrcode s {
    margin-top: -7px;
    border-bottom-color: #ffffff;
}

#qrcode {
    padding: 0;
    display: block;
    width: 160px;
    height: 160px;
}

.dinfo .qrcode img {
    width: 160px;
    height: 160px;
    display: block;
    border-radius: 4px;
}

/* 大图幻灯 */
.slider {
    float: left;
    width: 320px;
    height: 400px;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-right: var(--spacing-lg);
}

.w1200 .slider {
    width: 380px;
}

.slider .album {
    position: relative;
    height: 320px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.slider .album li {
    float: left;
    position: relative;
    width: 100%;
    height: 320px;
}

.slider .album li i {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.slider .album li a {
    display: block;
    height: 320px;
    text-align: center;
}

.slider .album li img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: scale-down;
    display: inline-block;
    z-index: 1;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.w1200 .slider .album li img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: scale-down;
}

.slider .thumb {
    position: relative;
    margin-top: var(--spacing-sm);
    padding: 0 16px;
}

.slider .plist {
    width: 280px;
    height: 70px;
    overflow: hidden;
    margin: 0 auto;
}

.w1200 .slider .plist {
    width: 340px;
}

.slider .plist li {
    float: left;
    width: 70px;
    height: 70px;
    margin-right: 8px;
}

.slider .plist i {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.slider .plist a {
    width: 60px;
    height: 60px;
    overflow: hidden;
    outline: 0;
    text-align: center;
    text-decoration: none;
    display: block;
    border: 2px solid var(--border-light);
    cursor: pointer;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.slider .plist a:hover {
    border-color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.15);
}

.slider .plist .on a {
    border-color: #0066cc;
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.15);
}

.slider .plist img {
    max-width: 80px;
    max-height: 80px;
    display: inline;
    z-index: 0;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

.slider .sprev, .slider .snext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    height: 40px;
    width: 40px;
    line-height: 40px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slider .sprev:hover, .slider .snext:hover {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.slider .sprev {
    left: 0;
}

.slider .snext {
    right: 0;
}

.w1200 .slider .sprev {
    left: 0;
}

.w1200 .slider .snext {
    right: 0;
}

.slider .sprev i, .slider .snext i {
    width: 16px;
    height: 16px;
    position: absolute;
    margin-left: -8px;
    margin-top: -8px;
    top: 50%;
    left: 50%;
}

.slider .sprev i {
    background-position: -34px -74px;
}

.slider .snext i {
    background-position: -46px -74px;
}

.slider a:hover.sprev i {
    background-position: -58px -74px;
}

.slider a:hover.snext i {
    background-position: -70px -74px;
}

/* 基本信息 */
.detail {
    position: relative;
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    flex-wrap: wrap;
}

/* 当没有图片时，property区域占据整个宽度 */
.detail:not(:has(.slider)) .property {
    width: 100%;
}

.property {
    position: relative;
    overflow: hidden;
    padding-left: 0;
    flex: 1;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-lg);
    min-height: 400px;
    height: 400px;
    margin-right: var(--spacing-lg);
}

.w1200 .property {
    min-height: 400px;
    height: 400px;
}

.property h1 {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-bold);
}

.property .tags {
    padding: 0 0 var(--spacing-md);
    height: auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.property .tags i {
    float: none;
    position: relative;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    margin-right: 0;
    font-size: var(--font-size-xs);
    color: #ffffff;
    line-height: 24px;
    background-color: #e0e0e0;
    font-style: normal;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.property .tags i:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.property .tags i s {
    display: none;
}

.property .tags i.hj {
    background-color: #ff4757;
}

.property .tags i.zd {
    background-color: #ffb74d;
    color: #743820;
}

.property .tags i.dt {
    background-color: #48dbfb;
}

.property .tags i.rc {
    background-color: #54a0ff;
}

.property dl {
    padding: var(--spacing-md) 0 0;
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.property dt {
    float: left;
    width: auto;
    padding: 0;
    margin-right: var(--spacing-sm);
    text-align: left;
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    white-space: nowrap;
}

.property dd {
    float: left;
    padding: 0;
    min-height: auto;
    color: var(--text-secondary);
    font-size: var(--font-size-md);
    flex: 1;
    margin: 0;
    width: calc(100% - 80px);
}

.property dl::after {
    content: "";
    display: table;
    clear: both;
}

.property dd img {
    display: inline-block;
}

.property dd a {
    color: #0066cc;
    transition: color 0.3s ease;
}

.property dd a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.property .price {
    font-weight: var(--font-weight-bold);
    color: var(--accent-color);
    font-size: var(--font-size-xxl);
    line-height: var(--line-height-tight);
    margin: var(--spacing-md) 0;
}

.property .tel {
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-tight);
}

.property .tel img {
    vertical-align: middle;
    display: inline-block;
    _display: inline;
}

.property .tel .tel-text {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-right: 12px;
}

.property .tel a {
    font-size: var(--font-size-sm);
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    display: inline-block;
    vertical-align: middle;
    margin-top: -5px;
}

.property .tel strong {
    padding: 0 3px;
    color: var(--accent-color);
    font-size: var(--font-size-lg);
}

.property .tel a:hover {
    text-decoration: underline;
}

.property .tool {
    margin-top: 24px;
    height: auto;
    padding-left: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.property .tool a {
    float: none;
    margin-right: 0;
    color: #666666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    line-height: 1;
}

.property .tool a:hover {
    background-color: #e9ecef;
    color: #333333;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.property .tool a i {
    float: none;
    margin: 0 6px 0 0;
    width: auto;
    height: auto;
    background: none;
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    vertical-align: middle;
}

.property .tool .fov i {
    width: auto;
    height: auto;
    background: none;
    color: #ffd700;
}

.property .tool .curr {
    color: #ff5837;
    background-color: #fff5f3;
    border-color: #ffd5ce;
}

.property .tool .fov.curr i {
    background: none;
    color: #ff9800;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.property .tool .share i {
    width: auto;
    height: auto;
    background: none;
    color: #1da9ff;
    margin-top: 0;
    margin-right: 6px;
}

.property .tool .report i {
    width: auto;
    height: auto;
    background: none;
    color: #ff6b6b;
    margin-right: 6px;
}

.property .tool .edit i {
    width: 16px;
    height: 16px;
    background-position: -22px -93px;
    margin-right: 6px;
}

/* 过期提示 */
.expired {
    position: absolute;
    z-index: 5;
    top: 120px;
    left: 200px;
    width: 611px;
    height: 263px;
}

.w1200 .expired {
    left: 400px;
}

/* 公司信息区域 */
.company-info {
    float: right;
    width: 260px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-lg);
    height: 400px;
    display: flex;
    flex-direction: column;
}

.w1200 .company-info {
    width: 300px;
}

/* 调整主内容区域宽度，确保总宽度与下方一致 */
.main-content {
    flex: 1;
    min-width: 0;
}

/* 优化公司信息区域样式，参照产品信息 */
.company-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
}

.company-header dl {
    display: flex;
    align-items: center;
}

.company-header dt {
    width: 56px;
    height: 56px;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
}

.company-header dt a, .company-header dt a img {
    display: block;
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-md);
    object-fit: cover;
}

.company-header dd {
    flex: 1;
    min-width: 0;
}

.company-header h4 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 优化信息统计区域，参照产品信息样式 */
.info-stats {
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.info-stats ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.info-stats li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border-light);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.info-stats li strong {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    margin-top: 4px;
    display: block;
    word-break: break-all;
}

/* 优化操作按钮区域 */
.info-actions {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

.info-actions .smobile {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.info-actions .smobile a {
    display: block;
    width: 100%;
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

/* 调整二维码样式 */
.info-actions .qrcode {
    margin-top: var(--spacing-sm);
    text-align: center;
}

.info-actions .qrcode img {
    max-width: 100%;
    height: auto;
}

/* 右侧公司信息区域样式优化 */

/* 公司头部信息 */
.company-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
}

.company-header dl {
    display: flex;
    align-items: center;
}

.company-header dt {
    width: 48px;
    height: 48px;
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
}

.company-header dt a, 
.company-header dt a img {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    object-fit: cover;
}

.company-header dd {
    flex: 1;
    min-width: 0;
}

.company-header dd h4 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    margin: 0;
    line-height: 1.4;
    color: var(--text-primary);
}

.company-header dd h4 a {
    color: var(--text-primary);
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.company-header dd h4 a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* 信息统计区域 */
.info-stats {
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.info-stats ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.info-stats li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-xs) 0;
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
}

.info-stats li strong {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    margin-top: 2px;
    display: block;
    word-break: break-all;
}

/* 操作按钮区域 */
.info-actions {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

.info-actions .smobile {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.info-actions .smobile a {
    display: block;
    width: 100%;
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
}

.info-actions .smobile a.gx {
    background-color: #ffde01;
    color: #743820;
}

.info-actions .smobile a.gx:hover {
    background-color: #ffd700;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.info-actions .smobile a.qc {
    background-color: var(--primary-color);
    color: #ffffff;
}

.info-actions .smobile a.qc:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* 二维码区域 - 鼠标经过时显示 */
.info-actions .qrcode {
    margin-top: var(--spacing-sm);
    text-align: center;
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-white);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    z-index: 10;
    margin-bottom: var(--spacing-xs);
}

.info-actions .qrcode::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--bg-white) transparent transparent transparent;
}

.info-actions .qrcode img {
    max-width: 120px;
    height: auto;
    border-radius: var(--border-radius-sm);
}

/* 鼠标悬停时显示二维码 */
.info-actions .smobile:hover .qrcode {
    display: block;
}

/* 确保操作按钮区域有相对定位，使二维码的绝对定位生效 */
.info-actions .smobile {
    position: relative;
}

/* 确保整体布局正确 */
.detail {
    align-items: stretch;
}

/* 确保主内容和公司信息区域高度一致 */
.main-content,
.company-info {
    height: 400px;
}

/* 调整公司信息区域宽度 */
.company-info {
    width: 200px;
}

.w1200 .company-info {
    width: 240px;
}

/* 主内容区域 */
.main-content {
    display: flex;
    flex: 1;
    gap: var(--spacing-lg);
    align-items: flex-start;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-lg);
    height: 400px;
    min-width: 0;
}

.main-content .slider {
    margin-right: 0;
    box-shadow: none;
    background: transparent;
    border-radius: var(--border-radius-md);
    flex-shrink: 0;
    height: auto;
    overflow: visible;
}

/* 确保小图区域正确显示 */
.main-content .slider .thumb {
    position: relative;
    margin-top: var(--spacing-sm);
    padding: 0 16px;
    display: block;
    visibility: visible;
    opacity: 1;
}

/* 确保小图列表正确显示 */
.main-content .slider .plist {
    width: 100%;
    max-width: 280px;
    height: 70px;
    overflow: hidden;
    margin: 0 auto;
}

.w1200 .main-content .slider .plist {
    max-width: 340px;
}

/* 确保小图正确显示 */
.main-content .slider .plist img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
    object-fit: cover;
}

/* 确保小图容器有正确的高度 */
.main-content .slider {
    min-height: 320px;
}

/* 调整主内容区域的高度，确保小图能够显示 */
.main-content {
    height: auto;
    min-height: 400px;
}

.main-content .property {
    margin-right: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    height: auto;
    min-height: auto;
    flex: 1;
    min-width: 0;
}

/* 确保整体布局总宽度与下方描述区域一致 */
.detail {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-lg);
    align-items: stretch;
}

/* 调整三个模块的宽度分配，确保总宽度与下方一致 */
.main-content {
    flex: 1;
    min-width: 0;
}

/* 调整slider宽度，确保整体布局协调 */
.slider {
    width: 280px;
}

.w1200 .slider {
    width: 340px;
}

/* 调整公司信息区域宽度，确保总宽度正确 */
.company-info {
    width: 220px;
}

.w1200 .company-info {
    width: 260px;
}

/* 优化公司信息区域的整体样式，使其与产品信息区域更加协调 */
.company-info {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    height: 400px;
}

/* 优化公司信息区域的标题样式，与产品信息区域保持一致 */
.company-header h4 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xs) 0;
    line-height: 1.4;
}

/* 优化公司信息区域的统计数据样式，与产品信息区域保持一致 */
.info-stats li {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border-light);
}

.info-stats li strong {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    margin-top: 4px;
    display: block;
}

/* 优化公司信息区域的操作按钮样式，与产品信息区域保持一致 */
.info-actions .smobile a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
}

/* 确保整体布局的总宽度与下方项目描述区域完全一致 */
.detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

#content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* 优化公司信息区域的整体样式，参照产品信息 */
.company-info {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    height: 400px;
}

/* 优化公司信息区域的标题样式 */
.company-header h4 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

/* 优化公司信息区域的链接样式 */
.company-header a {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.company-header a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* 优化信息统计区域的样式，使其更接近产品信息 */
.info-stats li {
    padding: var(--spacing-sm) 0;
}

.info-stats li strong {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    margin-top: 2px;
}

/* 确保在不同屏幕尺寸下的布局正确 */
@media (max-width: 1199px) {
    .detail {
        max-width: 1000px;
        gap: var(--spacing-md);
    }
    
    .slider {
        width: 280px;
    }
    
    .company-info {
        width: 220px;
    }
}

@media (max-width: 991px) {
    .detail {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .main-content,
    .company-info {
        width: 100%;
        float: none;
    }
    
    .main-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .main-content .slider {
        margin-bottom: var(--spacing-lg);
    }
}

/* 调整间距，确保整体布局紧凑 */
.main-content {
    gap: var(--spacing-md);
}

/* 确保整体布局与下方描述区域宽度一致 */
.detail,
#content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* 优化公司信息区域的边框样式，与产品信息区域保持一致 */
.company-header {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.info-actions {
    border-top: 1px solid var(--border-light);
    padding-top: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

/* 优化公司信息区域的图标样式 */
.info-actions .smobile a i {
    margin-right: 6px;
}

/* 确保响应式布局在不同屏幕尺寸下正确显示 */
@media (max-width: 768px) {
    .detail {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .main-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .slider {
        width: 100%;
        max-width: 400px;
    }
    
    .company-info {
        width: 100%;
        max-width: 100%;
    }
}

/* 优化公司信息区域的操作按钮样式 */
.info-actions .smobile a {
    border-radius: var(--border-radius-sm);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
}

.info-actions .smobile a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* 确保响应式布局正确 */
@media (max-width: 1199px) {
    .company-info {
        width: 240px;
    }
    
    .main-content {
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }
}

@media (max-width: 991px) {
    .detail {
        flex-direction: column;
    }
    
    .main-content,
    .company-info {
        width: 100%;
        float: none;
        margin-bottom: var(--spacing-lg);
    }
}

/* tab */
.nav-tabs {
    position: relative;
    margin-top: 40px;
    border-bottom: 2px solid #f0f0f0;
    background-color: #ffffff;
    border-radius: 8px 8px 0 0;
    padding: 0 24px;
}

.fix {
    position: fixed;
    top: 0;
    margin: 0;
    z-index: 100;
    width: 1000px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.w1200 .fix {
    width: 1200px;
}

.nav-tabs li {
    position: relative;
    z-index: 1;
    float: left;
    border: none;
    text-align: center;
    font-size: 16px;
    border-bottom: 0;
    margin-right: 0;
    margin-left: 24px;
}

.nav-tabs li:first-child {
    margin-left: 0;
}

.nav-tabs li.curr {
    z-index: 2;
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs li a {
    display: block;
    line-height: 56px;
    padding: 0 16px;
    color: #666666;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-tabs li a:hover {
    color: #333333;
    text-decoration: none;
}

.nav-tabs li.curr a {
    color: #0066cc;
    border-bottom-color: #0066cc;
    font-weight: 600;
}

/* 内容 */
.w-con {
    padding: 0;
    line-height: 1.6em;
    font-size: 16px;
    background-color: #ffffff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.w-con .description {
    display: none;
    -webkit-animation: topFadeIn 0.3s ease-out;
    -moz-animation: topFadeIn 0.3s ease-out;
    animation: topFadeIn 0.3s ease-out;
    padding: 24px;
}

.attributes {
    font-size: 14px;
    border-top: 1px solid #f0f0f0;
    line-height: 1.6em;
    margin-bottom: 24px;
}

.attributes dl {
    background-color: #f8f9fa;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.attributes dl:hover {
    background-color: #e9ecef;
    transform: translateX(4px);
}

.attributes dt {
    float: left;
    width: 120px;
    padding: 0;
    text-align: left;
    border-right: none;
    font-weight: 500;
    color: #333333;
}

.attributes dd {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    padding: 0 0 0 130px;
    color: #666666;
}

.w-con .content {
    padding: 0;
    line-height: 1.7em;
}

.w-con .content p {
    margin-bottom: 16px;
}

.w-con .content h2, .w-con .content h3, .w-con .content h4 {
    margin: 24px 0 16px;
    color: #333333;
}

.w-con .content h2 {
    font-size: 22px;
    font-weight: 600;
}

.w-con .content h3 {
    font-size: 20px;
    font-weight: 600;
}

.w-con .content h4 {
    font-size: 18px;
    font-weight: 500;
}

.w-con .content ul, .w-con .content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.w-con .content li {
    margin-bottom: 8px;
}

/* 图片列表 */
.pic-list {
    text-align: center;
    padding: 24px;
}

.pic-list img {
    display: block;
    max-width: 100%;
    padding: 16px;
    margin: 0 auto 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.pic-list img:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.pic-list p {
    margin-bottom: 24px;
    font-size: 14px;
    color: #666666;
}

/* 其它帖子 */
.elist {
    padding: 24px;
}

.elist .item {
    padding: 20px;
    height: auto;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    background-color: #f8f9fa;
}

.elist .item:hover {
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    transform: translateY(-2px);
}

.elist .pic {
    float: left;
    width: 160px;
    height: 160px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
}

.elist .pic a {
    position: relative;
    display: block;
    width: 160px;
    height: 160px;
    overflow: hidden;
    background: url('/static/images/ui/loading.gif') no-repeat center;
    text-align: center;
    transition: all 0.3s ease;
}

.elist .pic a:hover {
    transform: scale(1.05);
}

.elist .pic a i {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.elist .pic a img {
    display: inline;
    z-index: 0;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    -ms-interpolation-mode: bicubic;
}

.elist .right {
    float: right;
    position: relative;
    width: 200px;
    height: 160px;
    border-left: 1px solid #f0f0f0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.elist .right .tel {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    text-align: left;
    font-size: 18px;
    color: #ff5837;
    margin-bottom: 12px;
}

.elist .right .tel s {
    display: inline-block;
    _display: inline;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    background-position: -6px -93px;
}

.elist .right .tel span {
    display: block;
    color: #888888;
    font-size: 13px;
    line-height: 1em;
    margin-top: 4px;
}

.elist .right .date {
    position: static;
    right: auto;
    bottom: auto;
    font-size: 14px;
    color: #666666;
}

.elist .info {
    margin: 0 240px 0 180px;
}

.elist .info h3 {
    height: auto;
    margin-bottom: 12px;
}

.elist .info h3 a {
    float: none;
    max-width: 100%;
    font-size: 18px;
    color: #333333;
    overflow: hidden;
    white-space: normal;
    text-overflow: clip;
    line-height: 1.3em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.elist .info h3 a:hover {
    text-decoration: none;
    color: #0066cc;
}

.elist .info h3 i {
    float: left;
    margin: 6px 0 0 10px;
    height: 22px;
    padding: 0 8px;
    line-height: 22px;
    background-color: #e0e0e0;
    color: #ffffff;
    font-size: 12px;
    font-style: normal;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.elist .info h3 i:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.elist .info h3 i.hj {
    background-color: #ff4757;
}

.elist .info h3 i.zd {
    background-color: #ffb74d;
    color: #743820;
}

.elist .info h3 i.dt {
    background-color: #48dbfb;
}

.elist p {
    line-height: 1.4em;
    font-size: 14px;
    margin-bottom: 8px;
}

.elist .desc {
    color: #888888;
    overflow: hidden;
    white-space: normal;
    text-overflow: clip;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.elist .type, .elist .type a {
    color: #0066cc;
    font-weight: 500;
}

.elist .type a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.elist .type a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.elist .sall {
    height: 48px;
    font-size: 15px;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 6px;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.elist .sall:hover {
    background-color: #e9ecef;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.elist .sall a {
    display: block;
    line-height: 48px;
    color: #0066cc;
    font-weight: 500;
    transition: color 0.3s ease;
}

.elist .sall a:hover {
    color: #0052a3;
    text-decoration: none;
}

/* 评论 */
.comment {
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.5em;
}

.comment .c-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.comment .c-title h4 {
    float: none;
    font-size: 18px;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 28px;
    font-weight: 600;
    color: #333333;
}

.comment .c-title h4 small {
    font-size: 13px;
    margin-left: 12px;
    color: #999999;
}

.comment .c-title h4 small a {
    color: #0066cc;
    transition: color 0.3s ease;
}

.comment .c-title h4 small a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.comment .c-title .tnum {
    float: none;
    font-size: 14px;
    color: #666666;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 28px;
    cursor: default;
}

.comment .c-area {
    border: 1px solid #e0e0e0;
    margin-top: 0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comment .c-area:hover {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.05);
}

.comment .c-area .textarea {
    padding: 16px;
    height: 100px;
    overflow-y: auto;
    font-size: 15px;
    border: 0;
    outline: none;
    resize: none;
    background-color: #f8f9fa;
}

.comment .c-area .c-sub {
    border-top: 1px solid #f0f0f0;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background-color: #ffffff;
}

.comment .c-area .c-sub .np-login {
    float: none;
    line-height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
}

.comment .c-area .c-sub .np-login .u img {
    float: none;
    width: 36px;
    height: 36px;
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 12px;
}

.comment .c-area .c-sub .np-login .u span {
    padding: 0;
    color: #379be9;
    font-weight: 500;
}

.comment .c-area .c-sub .np-login .o {
    color: #999999;
    margin-left: 16px;
    transition: color 0.3s ease;
}

.comment .c-area .c-sub .np-login .o:hover {
    color: #666666;
}

.comment .c-area .c-sub .subtn {
    float: none;
    width: 80px;
    line-height: 36px;
    height: 36px;
    text-align: center;
    background-color: #0066cc;
    margin: 0;
    color: #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
    font-weight: 500;
}

.comment .c-area .c-sub .subtn:hover {
    color: #ffffff;
    background-color: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.2);
}

.comment .c-area .c-sub .subtn.login {
    background-color: #48dbfb;
}

.comment .c-area .c-sub .subtn.login:hover {
    background-color: #21c5e8;
}

.comment .c-area .c-sub .subtn.loading {
    font-size: 0;
    text-indent: -999em;
    background-color: #ffffff;
    background-image: url('/static/images/dots32.gif');
    background-repeat: no-repeat;
    background-position: center;
}

.comment .c-content {
    margin-top: 24px;
}

.comment .c-nav {
    border-bottom: 1px solid #f0f0f0;
    height: 56px;
    line-height: 56px;
    font-size: 16px;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.comment .c-nav li {
    float: none;
    margin-right: 0;
    position: relative;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    color: #666666;
    transition: all 0.3s ease;
}

.comment .c-nav li:hover {
    color: #333333;
}

.comment .c-nav li.c-orderby {
    float: none;
    padding-top: 0;
    margin-right: 0;
    text-align: right;
    line-height: 36px;
    font-size: 14px;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment .c-nav li.c-orderby a {
    float: none;
    text-align: center;
    padding: 0 16px;
    border: solid 1px #e0e0e0;
    background: #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.comment .c-nav li.c-orderby a:hover {
    border-color: #0066cc;
    background: #f0f8ff;
    color: #0066cc;
}

.comment .c-nav li.c-orderby a.active {
    border-color: #0066cc;
    color: #ffffff;
    background: #0066cc;
}

.comment .c-nav li.c-orderby a.ctime {
    border-radius: 4px;
}

.comment .c-nav li.c-orderby a.chot {
    border-radius: 4px;
}

.comment .c-subnav {
    border-bottom: 1px solid #f0f0f0;
    height: 44px;
    line-height: 44px;
    font-size: 15px;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    padding: 0 24px;
    background-color: #ffffff;
}

.comment .c-subnav li {
    float: left;
    margin-right: 24px;
    color: #0066cc;
    font-weight: 500;
}

.comment .c-subnav li.hot {
    color: #ff2968;
}

.comment .c-list .empty {
    line-height: 120px;
    height: 120px;
    text-align: center;
    font-size: 16px;
    color: #999999;
    background-color: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

.comment .c-list .loading {
    width: 80px;
    height: 8px;
    display: block;
    margin: 50px auto;
    background: url('/static/images/loading_h8.gif') no-repeat;
}

.comment .c-list li {
    position: relative;
    padding-left: 60px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
    padding: 24px;
    transition: all 0.3s ease;
}

.comment .c-list li:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 0 16px;
}

.comment .c-list li .children li img {
    width: 36px;
    height: 36px;
}

.comment .children li li li li {
    margin-left: -36px;
}

.comment .c-list li img {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    border-radius: 50%;
    object-fit: cover;
}

.comment .c-list li .c-body {
    padding-left: 16px;
}

.comment .c-list li .c-header {
    padding-top: 0;
    line-height: 24px;
    color: #999999;
    margin-bottom: 12px;
}

.comment .c-list li .c-header a {
    color: #0066cc;
    font-weight: 500;
    transition: color 0.3s ease;
}

.comment .c-list li .c-header a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.comment .c-list li .c-header span {
    margin: 0 8px 0 12px;
    font-size: 13px;
}

.comment .c-list li p {
    margin-top: 0;
    font-size: 15px;
    line-height: 24px;
    word-break: break-all;
    color: #333333;
    margin-bottom: 16px;
}

.comment .c-list li .c-footer {
    margin-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.comment .c-list li .c-footer a {
    display: inline-flex;
    align-items: center;
    margin-right: 0;
    color: #999999;
    font-size: 13px;
    transition: all 0.3s ease;
}

.comment .c-list li .c-footer a:hover {
    color: #0066cc;
}

.comment .c-list li .c-footer a s {
    float: none;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    background: url('../images/listSprite.png') no-repeat;
}

.comment .c-list li .c-footer .praise s {
    background-position: -38px -93px;
    margin-top: 0;
}

.comment .c-list li .c-footer .reply s {
    width: 15px;
    height: 11px;
    margin-top: 0;
    background-position: -62px -93px;
}

.comment .c-list li .c-footer a:hover.praise s, .comment .c-list li .c-footer .praise.active s {
    background-position: -50px -93px;
    color: #0066cc;
}

.comment .c-list li .c-footer a:hover.reply s, .comment .c-list li .c-footer .reply.active s {
    background-position: -62px -104px;
    color: #0066cc;
}

.comment .c-list li .children li {
    border-bottom: 0;
    border-top: 1px solid #f0f0f0;
    padding: 16px 24px 0 80px;
    margin: 16px 0 0;
}

.comment .c-list li .children li:hover {
    background-color: transparent;
    border-radius: 0;
    margin: 16px 0 0;
}

#loadMore {
    background-color: #f8f9fa;
    color: #666666;
    text-align: center;
    height: 48px;
    line-height: 48px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 24px;
    border: 1px solid #e0e0e0;
}

#loadMore:hover {
    background-color: #e9ecef;
    color: #333333;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

#loadMore.loading {
    font-size: 0;
    text-indent: -999em;
    background-color: #e9ecef;
    background-image: url('/static/images/loading-grey.gif');
    background-repeat: no-repeat;
    background-position: center;
}

.comment .c-list .c-area {
    display: none;
    margin: 16px 0 0 0;
}

/* 热门推荐 */
.recon {
    margin-top: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.recon .rt {
    position: relative;
    height: 64px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background-color: #f8f9fa;
}

.recon .rt h4 {
    position: static;
    left: auto;
    top: auto;
    line-height: 64px;
    padding: 0;
    font-size: 18px;
    color: #333333;
    font-weight: 600;
    border-bottom: none;
}

.recon .rt a {
    float: none;
    line-height: 64px;
    font-size: 14px;
    text-decoration: none;
    color: #0066cc;
    transition: color 0.3s ease;
}

.recon .rt a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.recon .rc {
    padding: 24px;
    overflow: hidden;
}

.recon .rc ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.recon .rc li {
    float: none;
    width: auto;
    margin-right: 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.recon .rc li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.recon .rc .pic {
    width: 100%;
    height: 180px;
    display: block;
    border: none;
    background: url('/static/images/ui/loading.gif') no-repeat center;
    text-align: center;
    overflow: hidden;
}

.recon .rc .pic i {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.recon .rc .pic img {
    display: inline;
    z-index: 0;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    -ms-interpolation-mode: bicubic;
    transition: all 0.3s ease;
}

.recon .rc li:hover .pic img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

/* 图片悬停效果增强 */
.pic img {
    transition: transform 0.5s ease, filter 0.3s ease;
}

.pic:hover img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.recon .rc h5 {
    font-size: 15px;
    overflow: hidden;
    white-space: normal;
    text-overflow: clip;
    padding: 16px;
    line-height: 1.3em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 60px;
}

.recon .rc h5 a {
    color: #333333;
    transition: color 0.3s ease;
}

.recon .rc h5 a:hover {
    color: #0066cc;
    text-decoration: none;
}

.recon .rc .type {
    font-size: 13px;
    padding: 0 16px 8px;
}

.recon .rc .type a {
    color: #ff5837;
    transition: color 0.3s ease;
}

.recon .rc .type a:hover {
    color: #ff3717;
    text-decoration: underline;
}

.recon .rc p {
    color: #808080;
    font-size: 13px;
    padding: 0 16px 16px;
    margin-bottom: 0;
}

.recon .rc p a {
    color: #808080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recon .rc p a:hover {
    color: #666666;
    text-decoration: underline;
}

/* 动画效果 */
@-webkit-keyframes topFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@-moz-keyframes topFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes topFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@-moz-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@-webkit-keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@-moz-keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* 全局过渡效果 */
a, button, input, textarea {
    transition: all 0.3s ease;
}

/* 卡片悬停效果 */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .detail {
        flex-direction: column;
    }
    
    .slider {
        float: none;
        width: 100%;
        margin-bottom: 24px;
    }
    
    .slider .album li img {
        max-width: 100%;
    }
    
    .property {
        padding: 24px;
    }
    
    .elist .info {
        margin: 0 0 0 180px;
    }
    
    .elist .right {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        height: auto;
    }
    
    .dinfo ul {
        flex-wrap: wrap;
        margin: 16px 0 0;
    }
    
    .dinfo li {
        padding: 0 12px;
        margin-bottom: 12px;
    }
    
    .property h1 {
        font-size: 24px;
    }
    
    .property dl {
        grid-template-columns: 1fr;
    }
    
    .property .tool {
        flex-wrap: wrap;
    }
    
    .property .tool a {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .nav-tabs li {
        margin-left: 16px;
    }
    
    .nav-tabs li a {
        padding: 0 12px;
    }
    
    .elist .pic {
        width: 120px;
        height: 120px;
    }
    
    .elist .pic a {
        width: 120px;
        height: 120px;
    }
    
    .elist .info {
        margin: 0 0 0 140px;
    }
    
    .recon .rc ul {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
    
    .recon .rc .pic {
        height: 140px;
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}