/* ===== 基础变量与全局 ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --theme-color: #8b2332;
    --theme-bright: #a83244;
    --theme-dark: #6b1a28;
    --gold: #c9a962;
    --gold-light: #e8d9b0;
    --gold-dark: #a68b4b;
    --auxiliary-color: #e8d9b0;
    --herald-color: #3d7a5a;
    --colorend: #8a8a96;
    --text-color: #1a1a22;
    --text-muted: #6b6b78;
    --bg-light: #f7f5f1;
    --bg-page: #f3f0ea;
    --bg-cream: #faf8f5;
    --border-color: #e5e0d8;
    --border-gold: rgba(201, 169, 98, 0.35);
    --shadow-sm: 0 2px 16px rgba(15, 15, 20, 0.05);
    --shadow-md: 0 12px 32px rgba(15, 15, 20, 0.08);
    --shadow-lg: 0 20px 48px rgba(15, 15, 20, 0.12);
    --shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.15);
    --radius: 2px;
    --radius-sm: 2px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-serif: "Noto Serif SC", "Songti SC", "SimSun", serif;
    --font-sans: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
    font-family: var(--font-sans);
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background: var(--bg-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

a {
    transition: color var(--transition);
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(12px, 4vw, 20px);
}

img,
video,
iframe,
svg {
    max-width: 100%;
    height: auto;
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

header {
    background: var(--bg-cream);
}

a:hover {
    color: var(--gold-dark);
}

/* ===== 顶部导航 ===== */
.logo_nav {
    height: auto;
    min-height: 80px;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(201, 169, 98, 0.12);
}

.logo_nav .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 80px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.logo a {
    color: var(--text-color);
    text-decoration: none;
    background: none;
    -webkit-text-fill-color: var(--text-color);
}

.logo a:hover {
    color: var(--gold-dark);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 2.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 0.82em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

nav ul li a {
    display: block;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition);
    color: var(--text-muted);
}

nav ul li.active a,
nav ul li a:hover {
    color: var(--text-color);
}

nav ul li.active a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 1px solid var(--border-color);
    background: transparent;
    border-radius: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 1px;
    background: var(--text-color);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== Banner ===== */
.banner {
    background: #eee;
    position: relative;
    overflow: hidden;
}

.banner .bigimg {
    position: relative;
    width: 100%;
}

.banner .bigimg img,
.bigimg .item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===== 商品列表 Grid 统一布局 ===== */
.proCon ul,
#goods-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 2.5rem 0 0;
    padding: 0;
    list-style: none;
}

.proCon ul li,
#goods-list li {
    margin: 0;
    min-width: 0;
    flex: none;
}

.proCon ul li > a {
    display: block;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.proCon ul li > a:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold);
}

.proCon ul li .pic {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 0;
}

.proCon ul li .pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.proCon ul li:hover .pic img {
    transform: scale(1.05);
}

.proC_content {
    background: #fff;
    padding-bottom: 4px;
}

.proC_cTtitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px 0;
}

.proC_cTtitle h3 {
    flex: 1;
    margin: 0;
    font-family: var(--font-serif);
    font-size: 0.95em;
    font-weight: 500;
    height: auto;
    max-height: 2.8em;
    overflow: hidden;
    float: none;
    width: auto;
    transition: color var(--transition);
    letter-spacing: 0.02em;
}

.proC_cTtitle span {
    flex-shrink: 0;
    margin-left: 8px;
    background: transparent;
    color: var(--gold-dark);
    padding: 4px 0;
    border-radius: 0;
    font-size: 0.9em;
    font-weight: 600;
    font-family: var(--font-serif);
    float: none;
    width: auto;
    border-bottom: 1px solid var(--gold-light);
}

.proC_content i.line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--border-color);
    margin: 10px 16px;
}

.proCText {
    font-size: 0.85em;
    color: var(--text-muted);
    padding: 0 16px;
}

.proCText p {
    height: 3em;
    overflow: hidden;
    line-height: 1.5;
    margin: 0;
}

.proTable {
    display: flex;
    border-top: 1px solid var(--border-color);
    margin-top: 12px;
}

.proTable span {
    flex: 1;
    text-align: center;
    padding: 10px 4px;
    font-size: 0.75em;
    color: var(--text-muted);
    border-right: 1px solid var(--border-color);
}

.proTable span:last-child {
    border-right: none;
}

.fixed-btn {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 20, 0.75);
    color: var(--gold-light);
    font-size: 11px;
    padding: 8px 20px;
    border-radius: 0;
    border: 1px solid rgba(201, 169, 98, 0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all var(--transition);
    z-index: 2;
    backdrop-filter: blur(4px);
}

.fixed-btn:hover {
    background: rgba(15, 15, 20, 0.9);
    border-color: var(--gold);
    color: #fff;
}

.proCon ul li .pic .state {
    position: absolute;
    top: 12px;
    right: -28px;
    color: #fff;
    font-size: 0.75em;
    width: 100px;
    padding: 4px 0;
    transform: rotate(45deg);
    text-align: center;
    z-index: 2;
}

.proCon ul li .pic .colorred { background: var(--theme-color); }
.proCon ul li .pic .colorgreen { background: var(--herald-color); }
.proCon ul li .pic .colorend { background: var(--colorend); }

/* ===== 区块标题 ===== */
.protitle {
    text-align: center;
    padding-top: 2rem;
    position: relative;
}

.protitle .section-label {
    display: block;
    font-size: 0.72em;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.protitle h3 {
    font-family: var(--font-serif);
    font-size: 2.2em;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.protitle h3::before,
.protitle h3::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 20px;
    opacity: 0.6;
}

.protitle p {
    font-size: 0.92em;
    color: var(--text-muted);
    margin: 0.75rem 0 1.75rem;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.protitle a,
.btn-luxury {
    display: inline-block;
    margin-top: 0.5rem;
    border: 1px solid var(--text-color);
    background: transparent;
    border-radius: 0;
    padding: 0.65em 2em;
    font-size: 0.78em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all var(--transition);
    color: var(--text-color);
}

.protitle a:hover,
.btn-luxury:hover {
    background: var(--text-color);
    border-color: var(--text-color);
    color: var(--gold-light);
}

.prolist {
    background: var(--bg-light);
}

.prolist .prolist_Item {
    padding: 3rem 0;
}

/* ===== 分页 ===== */
.pages {
    padding: 1.5rem 0 2.5rem;
    text-align: center;
}

.pages a {
    display: inline-block;
    padding: 10px 18px;
    margin: 0 3px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    border-radius: 0;
    transition: all var(--transition);
    font-size: 0.82em;
    min-width: 40px;
    letter-spacing: 0.05em;
}

.pages a.active,
.pages a:hover:not(.disabled) {
    background: var(--text-color);
    color: var(--gold-light);
    border-color: var(--text-color);
    box-shadow: none;
}

.pages a.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ===== 内页 Banner ===== */
.nybanner {
    position: relative;
    overflow: hidden;
    background: #1a1a2e;
}

.nybanner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
    pointer-events: none;
}

.nybanner img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    opacity: 0.92;
}

.nyContent {
    padding-bottom: 3rem;
    background: var(--bg-page);
}

/* ===== 筛选区 ===== */
.sf-filter {
    padding: 1.4em 1.6em;
    border: 1px solid var(--border-color);
    background: #fff;
    margin: 1.5em 0 0.5em;
    border-radius: var(--radius);
    font-size: 0.9em;
    box-shadow: var(--shadow-sm);
}

.sf-filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    padding: 0.5em 0;
}

.sf-filter-key {
    width: 90px;
    flex-shrink: 0;
    padding: 6px 0;
    font-weight: bold;
    color: #333;
    line-height: 32px;
}

.sf-filter-value {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.unlimited {
    flex-shrink: 0;
}

.condition {
    flex: 1;
    min-width: 0;
}

.unlimited a,
.condition ul li a {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 4px;
    transition: all 0.3s;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    line-height: 1.4;
    white-space: nowrap;
}

.unlimited a.active,
.condition ul li a.active {
    background: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}

.unlimited a:hover,
.condition ul li a:hover {
    background: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}

.condition ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.condition ul li {
    display: block;
    margin: 0;
}

.prolistCon {
    padding-bottom: 2rem;
}

.prolistCon .container-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== 新闻列表 ===== */
.newsContent ul {
    margin: 1.5em auto 0;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsContent ul li {
    margin-bottom: 0;
    padding: 1.5em;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.newsContent ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 1.5em;
    border-bottom: 1px solid var(--border-color);
}

.newsContent ul li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.newsContent ul li a {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.newsContent ul li .pic {
    width: 200px;
    flex-shrink: 0;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.newsContent ul li .pic img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.newsContent ul li .newsText {
    flex: 1;
    padding: 0;
}

.newsText h1 {
    font-size: 1.15em;
    font-weight: 600;
    padding: 0 0 0.75em;
    border-bottom: 1px solid var(--border-color);
    color: #1a1a1a;
    transition: color var(--transition);
}

.newsContent ul li:hover .newsText h1 {
    color: var(--theme-color);
}

.newsText p {
    line-height: 1.75;
    padding: 0.75em 0;
    color: var(--text-muted);
}

.newsText span {
    display: block;
    text-align: right;
    color: var(--text-muted);
    font-size: 0.85em;
}

/* ===== 新闻/商品详情 ===== */
.back-link {
    display: inline-block;
    margin: 1.5rem 0;
    padding: 10px 24px;
    background: transparent;
    color: var(--text-color) !important;
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 0.78em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all var(--transition);
}

.back-link:hover {
    background: var(--text-color);
    border-color: var(--text-color);
    color: var(--gold-light) !important;
    opacity: 1;
}

.newshow h1 {
    text-align: center;
    font-size: 1.6em;
    font-weight: 500;
    padding: 1.5em 0 0.5em;
    line-height: 1.4;
}

.newshow .date {
    padding: 0.75em;
    background: var(--bg-light);
    font-size: 0.85em;
    text-align: center;
    color: var(--text-muted);
    border-radius: var(--radius);
}

.newshow .date span {
    display: inline-block;
    margin: 0 1em;
}

.newshowContent {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2em;
    margin: 1.5em 0;
    background: #fff;
    line-height: 1.8;
}

.newshowContent p {
    margin: 1em 0;
    color: #666;
    text-align: justify;
}

/* ===== 商品详情页 ===== */
.page-detail {
    background: var(--bg-light);
    min-height: 60vh;
    padding-bottom: 3rem;
}

.detail-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-top: 1rem;
}

.detail-card .protop {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.detail-card .proshowleft {
    flex: 1 1 400px;
}

.detail-card .proshowRight {
    flex: 1 1 300px;
}

.detail-card .proshowTitle {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.4;
}

.detail-card .proshowimg img {
    width: 100%;
    border-radius: var(--radius);
}

.detail-card .product-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-card .product-info li {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95em;
}

.detail-card .product-info li span {
    font-weight: 600;
    width: 110px;
    flex-shrink: 0;
    color: #333;
}

.detail-card .proshowContent {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.detail-card .proshowContent h3 {
    font-size: 1.2em;
    margin-bottom: 1rem;
    color: var(--theme-color);
}

/* ===== 关于我们 ===== */
.aboutT_title {
    margin: 3em auto;
    line-height: 2;
    max-width: 900px;
}

.aboutT_title span {
    font-family: var(--font-serif);
    font-size: 2em;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
    display: block;
    margin-bottom: 0.5em;
    letter-spacing: 0.1em;
}

.aboutT_title span::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 16px auto 0;
}

.aboutT_title p {
    margin-top: 1.2em;
    color: var(--text-muted);
    text-align: justify;
}

.honor ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
}

.honor ul li {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 12px;
    background: #fff;
    transition: box-shadow 0.3s;
}

.honor ul li:hover {
    box-shadow: var(--shadow-sm);
}

.honor ul li.honor_imgbox a img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

/* ===== 联系我们 ===== */
.contactCon {
    text-align: center;
    font-weight: 300;
    padding: 1rem 0 2rem;
}

.contactCon h1 {
    margin: 1em 0;
    font-size: 1.5em;
}

.contactCon p {
    padding: 0.5em 0;
    color: var(--text-muted);
}

#allmap {
    width: 100%;
    height: 360px;
    margin: 1em 0 2em;
    border: 4px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

/* ===== Footer ===== */
footer {
    background: #0e0e14;
    color: #9a9aaa;
}

.footer_top {
    padding: 64px 0 52px;
    border-top: 1px solid rgba(201, 169, 98, 0.25);
    position: relative;
}

.footer_top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--gold);
}

.footer_Con {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.footer_column {
    flex: 1 1 220px;
}

.footer_column h3 {
    font-family: var(--font-serif);
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--gold-light);
    letter-spacing: 0.12em;
}

.footer_column p,
.footer_column li {
    font-size: 0.88em;
    color: #9a9ab0;
    line-height: 1.85;
}

.footer_column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_column ul li {
    margin-bottom: 8px;
}

.footer_column ul li a {
    color: #b8b8c8;
}

.footer_column ul li a:hover {
    color: var(--gold);
}

.footer_column img {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
}

.social_icons a {
    display: inline-block;
    margin-right: 10px;
}

.social_icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}

.social_icons img:hover {
    transform: scale(1.1);
}

.footer_bottom {
    background: #08080c;
    padding: 20px 0;
    text-align: center;
    font-size: 0.78em;
    color: #5a5a68;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    letter-spacing: 0.04em;
}

/* ===== QR Code 弹层 ===== */
.QR_code {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.QR_codeContent {
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2em;
    border-radius: var(--radius);
    text-align: center;
}

.QR_code img {
    width: 200px;
}

/* ===== 空状态/加载提示 ===== */
.empty-tip {
    text-align: center;
    padding: 3.5rem 1rem;
    color: var(--text-muted);
    font-size: 0.95em;
}

.detail-loading {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-muted);
    font-size: 0.95em;
}

.detail-loading::before {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    margin: 0 auto 16px;
    border: 3px solid var(--border-color);
    border-top-color: var(--theme-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== 响应式 ===== */
@media screen and (max-width: 992px) {
    .proCon ul,
    #goods-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .honor ul {
        grid-template-columns: repeat(2, 1fr);
    }

    nav ul {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    html, body {
        font-size: 14px;
        overflow-x: hidden;
    }

    .nav-toggle {
        display: flex;
    }

    nav {
        display: none;
        width: 100%;
        order: 10;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid var(--border-color);
    }

    nav.nav-open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    nav ul li {
        border-bottom: 1px solid var(--border-color);
    }

    nav ul li a {
        padding: 12px 0;
    }

    nav ul li.active a::after {
        display: none;
    }

    .proCon ul,
    #goods-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .proC_cTtitle {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .proC_cTtitle span {
        margin-left: 0;
    }

    .proTable {
        flex-direction: column;
    }

    .proTable span {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .newsContent ul li a {
        flex-direction: column;
    }

    .newsContent ul li .pic {
        width: 100%;
    }

    .newsContent ul li .pic img {
        height: 180px;
    }

    .honor ul {
        grid-template-columns: 1fr;
    }

    .honor ul li.honor_imgbox a img {
        height: auto;
    }

    .footer_Con {
        flex-direction: column;
        text-align: center;
    }

    .footer_bottom p {
        font-size: 0.75em;
        line-height: 1.6;
        padding: 0 10px;
    }

    .newshowContent {
        padding: 1.2em;
    }

    .newshow .date span {
        display: block;
        margin: 4px 0;
    }

    .detail-card .protop {
        flex-direction: column;
    }

    .detail-card .proshowleft,
    .detail-card .proshowRight {
        flex: 1 1 100%;
    }

    #allmap {
        height: 260px;
    }

    .aboutT_title {
        margin: 2em auto;
    }

    .sf-filter-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .sf-filter-key {
        width: 100%;
        line-height: 1.4;
        margin-bottom: 4px;
    }

    .sf-filter-value {
        width: 100%;
    }

    .unlimited,
    .condition {
        width: 100%;
    }
}

/* ===== 以下为原有扩展样式（Slick/Banner动画/拍卖详情等） ===== */

.toper {
    height: 45px;
    line-height: 45px;
    background: var(--theme-color);
    font-size: 0.9em;
}

.toper a {
    color: #fff;
    transition: 0.4s;
}

.toper a:hover {
    opacity: 0.7;
}

.toper .t_l a {
    display: inline-block;
    margin-right: 0.75em;
}

.toper .t_l span {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background: #fff;
    border-radius: 50%;
    line-height: 1.5em;
    text-align: center;
    color: var(--theme-color);
    font-size: 0.85em;
}

.toper .t_r a {
    margin-left: 1.5em;
}

.search {
    width: 3em;
    height: 3em;
    float: right;
    background: #f2f7fb;
    padding: 0.8em;
    border-radius: 50%;
}

.banner {
    background: #eee;
    position: relative;
}

.mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 55;
}

.bigimg .item {
    position: relative;
}

.bigimg .item img {
    display: block;
    width:100%;
    /* 或者 width: 100%; */
    height:auto;
    /* 或者 height: 100%; */
    overflow: hidden;
    /* 可选：防止内容溢出 */
}

.bigimgText {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    z-index: 56;
}

.bigimg .item span {
    background: var(--theme-color);
    color: #fff;
    font-size: 1.5em;
    padding: 0.35em 1em;
    font-weight: bold;
}

.bigimg .item h1 {
    color: #fff;
    margin: 0.45em 0 0.25em;
    font-size: 3.5em;
}

.bigimg .item p {
    color: #fff;
    font-size: 1.1em;
}

.price_title {
    background: var(--theme-color);
}

.smallimg .item {
    width:100%;
    display: inline-block;
    margin: 0 0.8em;
    cursor: pointer;
}

.smallimg {
    position: absolute;
    bottom: 2em;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 56;
    max-width:100%; width:auto;
    margin: 0 auto;
}

.smallimg .price_title {
    padding: 0.5em;
    font-weight: bold;
}

.smallimg .price_title .price {
    background: var(--auxiliary-color);
    padding: 1.5em;
    display: inline-block;
    float: left;
}

.smallimg .price_title .title {
    background: var(--theme-color);
    color: #fff;
    padding: 1.5em;
    display: inline-block;
    float: left;
}

.smallContent {
    color: #fff;
    font-size: 0.9em;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5em;
    font-weight: 300;
}

.smallContent font {
    display: inline-block;
    width: 81%;
    vertical-align: middle;
    line-height: 2;
}

.smallContent img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    border: 2px solid #eee;
}

.smallimg .slick-arrow {
    width: 50px;
    height: 50px;
    transform: rotate(0);
    border: 0;
}

.smallimg .slick-next {
    right: -50px;
    background: rgba(0, 0, 0, 0.4) url(../images/icon/next.png) no-repeat center;
    background-size: 50%;
}

.smallimg .slick-prev {
    left: -50px;
    background: rgba(0, 0, 0, 0.4) url(../images/icon/prev.png) no-repeat center;
    background-size: 50%;
}

.bigimg .item .bigimgText .fadeIn {
    position: relative;
    left: 500px;
    opacity: 0;
}

.delay1 {
    transition: 1.5s;
}

.delay2 {
    transition: 2.5s;
}

.delay3 {
    transition: 3.5s;
}

.bigimg .item.slick-active .bigimgText span.fadeIn,
.bigimg .item.slick-active .bigimgText h1.fadeIn,
.bigimg .item.slick-active .bigimgText p.fadeIn {
    left: 0;
    opacity: 1;
}


.smallimg .item.slick-current img {
    border: 2px solid var(--theme-color);
}

/*通知公告*/
.Notice {
    background: #f5fafe;
}

.Notice span,
.Notice ul {
    display: inline-block;
    vertical-align: middle;
    color: #9b9fa2;
}

.Notice ul {
    width: 50%;
    margin: 1.5em 0;
}

.Notice ul li a {
    display: block;
    color: #9b9fa2;
}

.Notice ul li a em {
    float: right;
    font-style: normal;
}

.Notice .more {
    float: right;
    padding: 0.5em 2em;
    background: var(--theme-color);
    margin: 1em 0;
    font-size: 0.95em;
    font-weight: bold;
}

.Notice .more a {
    color: #fff;
}


/*竞拍流程*/
.process {
    padding: 5rem 0;
}

.process_title h3 {
    font-size: 2em;
    color: #272727;
}

.process_title p {
    font-size: 0.95em;
    color: #868686;
    padding: 1.5625rem 0;
}

.process_title i {
    display: block;
    width: 3.75rem;
    height: 2px;
    background: #272727;
}

.processCon {
    margin-top: 3em;
}

.processCon ul li {
    display: inline-block;
    width: 33%;
    margin: 0.95em 0;
}

.processCon ul li .icon {
    width: 70px;
    height: 70px;
    background: #f5fafe;
    display: inline-block;
    border-radius: 50%;
    padding: 1em;
    margin-top: 0.5em;
    transition: 0.4s;
    margin-right: 1.2em;
}

.processText {
    display: inline-block;
    width:100%;
    vertical-align: top;
}

.processText span {
    font-size: 1.1em;
    font-weight: bold;
}

.processText p {
    font-size: 0.9em;
    color: #999;
    line-height: 1.75;
    margin: 1em 0;
    height: 50px;
    overflow: hidden;
}

.processCon ul li:hover .icon {
    background: var(--auxiliary-color);
}


/*prolist - 扩展样式 */
.pro_icon span {
    display: inline-block;
    width: 70px;
    height: 30px;
    border: 2px solid #272727;
    padding: 0.2em;
    position: relative;
}

.pro_icon span:before {
    content: "";
    display: block;
    position: absolute;
    width: 60px;
    height: 2px;
    background: #272727;
    position: absolute;
    top: 50%;
    left: -93%;
    transform: translate(0, -50%);
}

.pro_icon span:after {
    content: "";
    display: block;
    position: absolute;
    width: 60px;
    height: 2px;
    background: #272727;
    position: absolute;
    top: 50%;
    right: -93%;
    transform: translate(0, -50%);
}

.pro_icon span img {
    max-height: 100%;
}

.proCon ul li:hover .proC_cTtitle h3 {
    color: var(--theme-color);
}

.before {
    background: #fff;
}

.protop {
    border: 1px solid #eee;
    padding: 0.75em;
    margin: 1.5em 0;
}

.proshowTitle {
    font-size: 1.2em;
    font-weight: bold;
    padding: 0 0 0.75em;
}

.proshowTitle span {
    color: #fff;
    background: #6E7FA2;
    font-size: 0.85em;
    padding: 0.2em 0.75em;
    font-weight: 500;
    margin-right: 0.5em;
}

.proshowleft {
    width:100%;
    display: inline-block;
    vertical-align: top;
}

.bigimg img {
    display: block;
}

.sm_img img {
    width: 8em;
    padding: 0.5em;
    margin: 0.5em 0;
    border: 1px solid #eee;

}

.sm_img img.slick-current {
    border: 1px solid var(--theme-color);
}

.proshowRight {
    display: inline-block;
    vertical-align: top;
    width:100%;
    padding: 0 4%;
}

.proshowRight span.span {
    display: inline-block;
    vertical-align: middle;
    font-size: 0.9em;
    color: #666;
    width: 5em;
}

.proshowRight .proshowRitem {
    padding: 0.3em 1em;
    border-bottom: 1px solid #eee;
    margin: 0.3em 0;
}

/* 时间倒计时 开始*/
.timer-box {
    width: 80%;
    display: inline-block;
    vertical-align: middle;
}

.timer-box h5 {
    font-size: 24px;
    color: #333;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}


/** Countdown */

#countdown {
    max-width: 100%;
    height: auto;
    margin: 0px auto;
    display: inline-block;
    margin-top: 12px;
}

.dash {
    /* width: 80px; */
    height: 60px;
    background: transparent url(img/t-box.jpg) 0 0 no-repeat;
    float: left;
    position: relative;
    text-align: center;
    margin: 0 0.2em;
    padding: 0 1em;
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.1);
}

.dash .digit {
    font-size: 2em;
    font-weight: bold;
    float: left;
    text-align: center;
    font-family: Arial;
    color: #2f2e2e;
    position: relative;
}

.dash_title {
    position: absolute;
    display: block;
    bottom: 5px;
    text-align: center;
    font-weight: bold;
    width: 32px;
    font-size: 12px;
    color: #2f2e2e;

}


ul.social-link {
    text-align: center;
    margin: 0px;
    padding: 0px;
    margin-top: 25px;
}

ul.social-link li {
    display: inline-block;
    margin-right: 20px;
}

a.fb-link-btn {
    padding: 10px;
    transition: all 0.4s ease 0s;
    background: rgb(238, 238, 238);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 1) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(238, 238, 238, 1)), color-stop(100%, rgba(238, 238, 238, 1)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 1) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 1) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 1) 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 1) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#eeeeee', GradientType=0);
    /* IE6-9 */

    border: 1px solid #CCC;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

a.fb-link-btn:hover {

    background: rgb(247, 247, 247);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(247, 247, 247, 1) 0%, rgba(247, 247, 247, 1) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(247, 247, 247, 1)), color-stop(100%, rgba(247, 247, 247, 1)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(247, 247, 247, 1) 0%, rgba(247, 247, 247, 1) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(247, 247, 247, 1) 0%, rgba(247, 247, 247, 1) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(247, 247, 247, 1) 0%, rgba(247, 247, 247, 1) 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(247, 247, 247, 1) 0%, rgba(247, 247, 247, 1) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#f7f7f7', GradientType=0);
    /* IE6-9 */

}

.fb-link-btn i {
    margin-right: 10px;
    border-right: 1px solid #999;
}

.fb-icon {
    background: url(img/fb.png) no-repeat;
    width: 24px;
    height: 16px;
    top: 4px;
}




a.twt-link-btn {
    padding: 10px;
    transition: all 0.4s ease 0s;
    background: rgb(238, 238, 238);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 1) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(238, 238, 238, 1)), color-stop(100%, rgba(238, 238, 238, 1)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 1) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 1) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 1) 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 1) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#eeeeee', GradientType=0);
    /* IE6-9 */

    border: 1px solid #CCC;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

a.twt-link-btn:hover {

    background: rgb(247, 247, 247);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(247, 247, 247, 1) 0%, rgba(247, 247, 247, 1) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(247, 247, 247, 1)), color-stop(100%, rgba(247, 247, 247, 1)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(247, 247, 247, 1) 0%, rgba(247, 247, 247, 1) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(247, 247, 247, 1) 0%, rgba(247, 247, 247, 1) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(247, 247, 247, 1) 0%, rgba(247, 247, 247, 1) 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(247, 247, 247, 1) 0%, rgba(247, 247, 247, 1) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#f7f7f7', GradientType=0);
    /* IE6-9 */

}

.twt-link-btn i {
    margin-right: 10px;
    border-right: 1px solid #999;
}

.twt-icon {
    background: url(img/twt.png) no-repeat;
    width: 24px;
    height: 16px;
    top: 4px;
}

/* 时间倒计时结束 */



/* 起拍价 */
.start_price {
    padding: 1em 0;
}

.s_priceText {
    display: inline-block;
    vertical-align: middle;
}

.start_price font {
    font-size: 1.5em;
    font-weight: bold;
    padding: 0 0.2em;
    color: var(--theme-color);
}

.start_price em {
    font-style: normal;
    color: var(--theme-color);
}

/* 出价 */
.proshowRight .offer {
    background: #fafafa;
    padding: 1.5em 1em;
    position: relative;
}

.proshowRight .offer .tags {
    font-size: 0.75em;
    background: var(--theme-color);
    padding: 0.3em 0.85em;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 3px;
}

.offer .input {
    display: inline-block;
    vertical-align: top;
    width: 80%;
}

.offer .input input {
    font-size: 1.5em;
    width:100%;
    border: 1px solid #c2bbba;
    background: #ebebe4;
    padding: 0.5em;
}

.offer .input button {
    padding: 0.5em;
    font-size: 1.5em;
    border: 1px solid #C2BBBA;
    background: #C2BBBA;
    color: #fff;
    width: 2em;
}

.offer .input button:active {
    background: #ada4a3;
}

.signup {
    width:100%;
    background: #C21F3A;
    color: #fff;
    font-size: 0.9em;
    text-align: center;
    margin: 0.5em 0;
    padding: 0.5em 0;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

.pay_help {
    display: inline-block;
    vertical-align: middle;
    font-size: 0.85em;
    margin-left: 1em;
}

.pay_help img {
    width: 1.2em;
    vertical-align: middle;
}

.pay_help span {
    display: inline-block;
    vertical-align: middle;
}

.msg {
    border: 1px solid #ffcc7f;
    background: #ffffe5;
    display: inline-block;
    font-size: 0.85em;
    padding: 0.5em 1.5em;
}

/* 信息 */
.pm-bid-mouse {
    border: 1px solid #eee;
    padding: 1em;
}

.pm-bid-mouse ul li {
    font-size: 0.8em;
    color: #666;
    display: inline-block;
    width: 32%;
    padding: 0.5em 0;
}

.pm-bid-mouse p {
    font-size: 0.8em;
    color: #666;
    padding: 0.5em 0;
}

.service-item {
    border: 1px solid #eee;
    padding: 1em 1.5em;
    font-size: 0.85em;
}

.service-item ul li {
    display: inline-block;
    margin-right: 2em;
}

.service-item ul li span {
    display: inline-block;
    padding: 0.2em 0;
}

.consulting {
    float: right;
    background: var(--theme-color);
    margin-right: 0 !important;
}

.consulting a {
    color: #fff;
    padding: 0.2em 0.5em;
    display: inline-block;
}

/* 内容区域 */
.proshowContent {
    min-height: 500px;
    border: 1px solid #eee;
    margin: 1.5em 0;
    padding: 1em;
}

.proshowCLeft {
    min-height: 500px;
    border: 1px solid #eee;
    width:auto;
}


/* 相关推荐 */

.other .otherTitle {
    text-align: center;
    padding: 0.75em 0;
}

.other ul li {
    padding: 0 1em;
    margin-bottom: 1.3em;
}

.other ul li .otherCon h3 {
    font-size: 0.85em;
    font-weight: 500;
    margin: 0.2em 0;
}

.other ul li .pic img {
    display: block;
}

.other ul li .otherStartPrice {
    color: #1FA283;
}

.other ul li .otherStartPrice span {
    font-size: 0.85em;
}

.other ul li .otherStartPrice font {
    font-size: 1.3em;
}

.proshowCRight {
    width:100%;
    border: 1px solid #eee;
    min-height: 500px;
}

.proshowCRTit {
    background: #fafafa;
    border-bottom: 1px solid #eee;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.proshowCRTit ul li span {
    color: var(--theme-color);
}

.proshowCRTit ul li {
    display: inline-block;
    border-right: 1px solid #eee;
}

.proshowCRTit ul li a {
    padding: 0.9em 1.5em;
    display: block;
}

.proshowCRTit ul li a.active {
    color: var(--theme-color);
}

.pai-title {
    font-size: 2rem;
    color: var(--theme-color);
    text-align: center;
    padding: 1em 0;
}

.proshowCrC_item {
    padding: 0 2em;
}

.proshowCrC_item table td {
    padding: 1em;
}

.proshowCrC_item table td:nth-child(1n) {
    width: 5em;
}

.proshowCrC_item table td span {
    color: var(--theme-color);
}

.proshowCrC_item .pic img {
    width: 100%;
    display: block;
    margin-top: 1em;
}

.noticeContent {
    padding: 0 2em;
    text-align: justify;
}

.noticeContent p {
    margin-bottom: 1em;
    text-indent: 2em;
    line-height: 1.5;
}

.noticeContent p span {
    color: var(--theme-color);
}

.J_Content {
    border-bottom: 1px solid #eee;
}

.noticeContent b {
    margin-right: 1.5em;
}

.recordCon {
    margin: 0 2em;
}

.recordCon .thead,
.recordCon .tbody .tbody_item {
    display: flex;
    border-bottom: 1px solid #eee;
}

.recordCon .thead span,
.recordCon .tbody .tbody_item span {
    flex: 1;
    text-align: center;
    padding: 1.5em 0;
    color: #999;
    font-size: 0.85em;
}

.recordCon .tbody .tbody_item span.lead {
    color: var(--theme-color);
}

.recordCon .pages {
    text-align: right;
    margin: 0.75em 0;
    padding: 0.5em 0;
}

.recordCon .pages a {
    border: 1px solid #ddd;
    font-size: 0.85em;
    padding: 0.5em 1.5em;
}

.recordCon .pages a:hover {
    background: var(--theme-color);
    color: #fff;
    border: 1px solid var(--theme-color);
}


/* 筛选 */
.screen {
    font-size: 0.85em;
    border: 1px solid #eee;
    margin: 1em 0;
    padding: 1em;
}

.screen .number span {
    color: var(--theme-color);
}

.screen .number,
.screen .select,
.screen_price,
.screenBtn {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2.5em;
}

.screen_price input {
    border: 1px solid #eee;
    width: 7em;
    padding: 0.5em;
}

.screen_price span {
    margin-right: 0.35em;
}

.screenBtn input {
    background: var(--theme-color);
    color: #fff;
    border: 0;
    padding: 0.45em 1.5em;
}

.searchFixed {
    position: fixed;
    top: 0;
    z-index: 99999;
    background: #fff;
    width: 100%;
    left: 0;
    padding: 1em 0;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
    display: none;
}

.searchFixed input[type="search"] {
    height: 4em;
    border: 1px solid #eee;
    line-height: 4em;
    padding: 0 1em;
    width: 80%;
}

.searchFixed input[type="search"]:focus {
    border: 1px solid var(--theme-color);
}

.searchFixed input[type="submit"] {
    height: 4em;
    border: 1px solid var(--theme-color);
    line-height: 4em;
    width: 19%;
    background: var(--theme-color);
    color: #fff;
}

.searchFixed input[type="submit"]:active {
    opacity: 0.7;
}





/* QR_code */
.QR_code {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.QR_codeContent {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2em;

}

.QR_code img {
    width: 15em;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
}

.QR_codeContent p {
    text-align: center;
    margin-top: 0.5em;
}

.pagination {
    display: flex;
    justify-content: center;
    /* 居中 */
    align-items: center;
    gap: 15px;
    /* 按钮间距 */
    margin: 30px 0;
    font-family: "微软雅黑", sans-serif;
}

.pagination button {
    padding: 8px 18px;
    border: none;
    border-radius: 20px;
    /* 圆角按钮 */
    background-color: #333;
    /* 按钮背景 */
    color: #fff;
    /* 按钮文字颜色 */
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination button:hover:not(:disabled) {
    background-color: #555;
    /* 悬停颜色 */
}

.pagination button:disabled {
    background-color: #ccc;
    /* 禁用状态颜色 */
    cursor: not-allowed;
    color: #888;
}

.pagination #pageInfo {
    font-size: 14px;
    color: #333;
    min-width: 60px;
    text-align: center;
}

/* 拍卖详情页扩展 - 移动端 */
@media screen and (max-width: 768px) {
    .proshowleft,
    .proshowRight {
        width: 100%;
        padding: 0;
    }

    .timer-box,
    .offer .input {
        width: 100%;
    }

    .signup,
    .pay_help {
        width: 100%;
        margin: 0.5em 0;
    }

    .pm-bid-mouse ul li {
        width: 100%;
        display: block;
    }

    .other .otheritem,
    .other .return {
        width: 100%;
        float: none;
    }
}

/* ===== 内页通用 & 旧版样式覆盖 ===== */
.pro_list {
    background: var(--bg-light);
    min-height: 50vh;
}

.honor .aboutT_title {
    margin: 2em auto 1.5em;
}

.newsTitle.aboutT_title {
    margin: 2em auto 1em;
}

/* 新版详情页：覆盖旧版 inline-block 布局 */
.page-detail {
    background: var(--bg-light);
    min-height: 60vh;
    padding: 1.5rem 0 3rem;
}

.page-detail .protop {
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.page-detail .proshowleft,
.page-detail .proshowRight {
    width: auto !important;
    display: block !important;
    vertical-align: unset !important;
    padding: 0 !important;
}

.page-detail .proshowleft {
    flex: 1 1 400px;
}

.page-detail .proshowRight {
    flex: 1 1 300px;
}

.page-detail .proshowTitle {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.4;
    padding: 0;
}

.page-detail .proshowimg img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
}

.page-detail .product-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 8px 16px;
}

.page-detail .product-info li {
    display: flex;
    margin-bottom: 0 !important;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95em;
}

.page-detail .product-info li:last-child {
    border-bottom: none;
}

.page-detail .product-info li span {
    font-weight: 600;
    width: 110px;
    flex-shrink: 0;
    color: #333;
}

.page-detail .proshowContent {
    min-height: auto !important;
    border: none !important;
    margin: 2rem 0 0 !important;
    padding: 2rem 0 0 !important;
    border-top: 1px solid var(--border-color) !important;
}

.page-detail .proshowContent h3 {
    font-size: 1.2em;
    margin-bottom: 1rem;
    color: var(--theme-color);
}

.page-detail .proshowContent p,
.page-detail .proshowContent ul {
    font-size: 0.95em;
    color: #555;
    line-height: 1.8;
}

.detail-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

@media screen and (max-width: 768px) {
    .page-detail .protop {
        flex-direction: column;
    }

    .page-detail .proshowleft,
    .page-detail .proshowRight {
        flex: 1 1 100% !important;
    }

    .page-detail .product-info li span {
        width: 90px;
        font-size: 0.9em;
    }
}

/* ===== 商品详情页增强样式 ===== */
.detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.detail-header h1 {
    font-family: var(--font-serif);
    font-size: 1.65em;
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
    flex: 1;
    color: var(--text-color);
    letter-spacing: 0.04em;
}

.detail-status {
    flex-shrink: 0;
    padding: 6px 18px;
    border-radius: 0;
    font-size: 0.72em;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-status.status-active { background: var(--theme-color); border: 1px solid var(--theme-bright); }
.detail-status.status-pending { background: var(--herald-color); }
.detail-status.status-ended { background: var(--colorend); }

.info-section-title {
    font-family: var(--font-serif);
    font-size: 0.95em;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 14px;
    padding-left: 12px;
    border-left: 2px solid var(--gold);
    letter-spacing: 0.06em;
}

.page-detail .proshowimg {
    background: #f9f9f9;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-detail .proshowimg .slick-slide {
    outline: none;
}

.page-detail .proshowimg .slick-dots {
    bottom: 12px;
}

.page-detail .proshowimg .slick-dots li button:before {
    font-size: 10px;
}

.page-detail .proshowimg .slick-prev,
.page-detail .proshowimg .slick-next {
    z-index: 2;
    width: 36px;
    height: 36px;
}

.price-panel {
    background: linear-gradient(145deg, #12121a 0%, #1e1e2a 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    position: relative;
}

.price-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.price-panel .price-label {
    font-size: 0.75em;
    color: rgba(232, 217, 176, 0.7);
    margin-bottom: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.price-panel .price-main {
    font-family: var(--font-serif);
    font-size: 2.2em;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1.2;
}

.price-panel .price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.price-panel .price-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 12px 14px;
    border-radius: 0;
    border: 1px solid rgba(201, 169, 98, 0.12);
}

.price-panel .price-item .label {
    display: block;
    color: rgba(232, 217, 176, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.7em;
    margin-bottom: 4px;
}

.price-panel .price-item .val {
    display: block;
    color: #f0ebe3;
    font-family: var(--font-serif);
    font-size: 0.95em;
}

.page-detail .product-info ul {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 4px 16px;
}

.page-detail .product-info li em {
    font-style: normal;
    color: #555;
    flex: 1;
    word-break: break-all;
}

.detail-desc {
    line-height: 1.8;
    color: #555;
}

.detail-desc img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

@media screen and (max-width: 768px) {
    .detail-header {
        flex-direction: column;
        gap: 10px;
    }

    .detail-header h1 {
        font-size: 1.25em;
    }

    .price-panel .price-main {
        font-size: 1.6em;
    }

    .price-panel .price-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== 全站内页通用 ===== */
.page-inner {
    background: var(--bg-light);
    min-height: 50vh;
    padding-bottom: 3rem;
}

.content-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    margin-top: 1.5rem;
}

.list-empty {
    grid-column: 1 / -1;
    list-style: none;
    text-align: center;
}

/* ===== 首页 ===== */
.home-section .prolistCon {
    padding-top: 0;
}

/* ===== 珠宝拍卖列表 ===== */
.pro_list {
    padding-top: 1.5rem;
}

.pro_list .page-head {
    margin-bottom: 1rem;
}

.pro_list .page-head h2 {
    font-size: 1.5em;
    color: #222;
    margin: 0 0 0.25em;
}

.pro_list .page-head p {
    color: var(--text-muted);
    font-size: 0.9em;
    margin: 0;
}

.pro_list .proCon ul,
.pro_list #goods-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
}

.pro_list .proCon ul li,
.pro_list #goods-list li {
    margin: 0;
    min-width: 0;
}

@media screen and (max-width: 992px) {
    .pro_list .proCon ul,
    .pro_list #goods-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .pro_list .proCon ul,
    .pro_list #goods-list {
        grid-template-columns: 1fr;
    }
}

/* ===== 新闻列表（补充） ===== */
.news {
    background: var(--bg-page);
}

.newsContent ul li.list-empty {
    border: none;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.newsContent ul li.list-empty:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
}

/* ===== 新闻详情 ===== */
.news-detail-page {
    background: var(--bg-page);
    min-height: 50vh;
    padding: 1.5rem 0 3rem;
}

.news-detail-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    margin-top: 0.5rem;
}

.news-detail-card .newshowContent {
    border: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.news-detail-card .newshowContent img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

/* ===== 关于我们 ===== */
.about .content-card {
    margin-top: 1.5rem;
}

.about .aboutT_title {
    margin: 0 0 2em;
}

.about .honor {
    margin-top: 2em;
}

/* ===== 联系我们 ===== */
.contact {
    background: var(--bg-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

.contact-info-item {
    background: #fff;
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-info-item strong {
    display: block;
    font-size: 0.85em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-info-item span {
    font-size: 1.05em;
    color: #333;
    font-weight: 500;
}

.contact .aboutT_title {
    margin: 1.5em auto 0;
}

@media screen and (max-width: 768px) {
    .content-card,
    .news-detail-card {
        padding: 1.2rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== 全局视觉增强 · 高级拍卖行风格 ===== */
.banner {
    background: #0e0e14;
}

.banner .bigimg .item img {
    max-height: 520px;
    object-fit: cover;
    opacity: 0.95;
}

.banner .slick-prev,
.banner .slick-next {
    z-index: 5;
    width: 48px;
    height: 48px;
    background: rgba(14, 14, 20, 0.6);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 0;
    backdrop-filter: blur(4px);
}

.banner .slick-prev:before,
.banner .slick-next:before {
    color: var(--gold-light);
    font-size: 18px;
    opacity: 1;
}

.banner .slick-dots {
    bottom: 28px;
}

.banner .slick-dots li button:before {
    font-size: 8px;
    opacity: 0.4;
    color: #fff;
}

.banner .slick-dots li.slick-active button:before {
    color: var(--gold);
    opacity: 1;
}

.content-card,
.detail-card,
.news-detail-card {
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.detail-card {
    padding: 36px;
}

.content-card {
    padding: 2.5rem;
}

.page-detail .proshowimg {
    background: #f7f5f1;
}

.page-detail .proshowContent h3,
.detail-card .proshowContent h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.08em;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.newsContent ul li:hover {
    border-color: var(--border-gold);
}

.newsText h1 {
    font-family: var(--font-serif);
    font-weight: 500;
}

.news-detail-card h1 {
    font-family: var(--font-serif);
    font-size: 1.75em;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-color);
}

.news-detail-card .date {
    border-left: 2px solid var(--gold);
    border-radius: 0;
}

.unlimited a.active,
.condition ul li a.active,
.unlimited a:hover,
.condition ul li a:hover {
    background: var(--text-color);
    border-color: var(--text-color);
    color: var(--gold-light);
}

.honor ul li:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.contact-info-item strong {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72em;
}

.contact-card {
    margin-top: 0;
}

.contact-card #allmap {
    margin-bottom: 0;
    border: none;
    box-shadow: inset 0 0 0 1px var(--border-color);
}

.pro_list,
.page-detail,
.about,
.contact,
.prolist,
.news,
.news-detail-page {
    background: var(--bg-page);
}

.prolist .prolist_Item {
    padding: 4rem 0 3.5rem;
}

.detail-loading::before {
    border-top-color: var(--gold);
}

.list-empty .empty-tip {
    padding: 2.5rem 1rem;
    font-style: italic;
}

.newsTitle.aboutT_title::before {
    content: "Announcements";
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72em;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.QR_codeContent {
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.QR_codeContent p {
    font-size: 0.85em;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-top: 1em;
}

.proTable {
    border-top-color: var(--border-color);
}

.proTable span {
    font-size: 0.72em;
    letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
    .protitle h3::before,
    .protitle h3::after {
        display: none;
    }

    .protitle h3 {
        font-size: 1.65em;
    }

    .detail-card {
        padding: 1.5rem;
    }

    .banner .bigimg .item img {
        max-height: 280px;
    }

    .news-detail-card h1 {
        font-size: 1.35em;
    }

    .news-detail-card .date {
        flex-direction: column;
        gap: 6px;
    }
}

/* ===== 全设备自适应（统一断点） ===== */
/* 大屏平板 / 小桌面 */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}

/* 平板 */
@media screen and (max-width: 992px) {
    .logo {
        font-size: 1.35em;
        letter-spacing: 4px;
    }

    nav ul {
        gap: 1.2rem;
    }

    nav ul li {
        font-size: 0.78em;
    }

    .protitle h3 {
        font-size: 1.85em;
    }

    .detail-card {
        padding: 28px;
    }

    .content-card {
        padding: 2rem;
    }

    .nybanner img {
        max-height: 240px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 手机 */
@media screen and (max-width: 768px) {
    .logo_nav .container {
        min-height: 64px;
    }

    .logo {
        font-size: 1.2em;
        letter-spacing: 3px;
    }

    .container {
        padding: 0 14px;
    }

    .prolist .prolist_Item {
        padding: 2.5rem 0 2rem;
    }

    .protitle {
        padding-top: 1.25rem;
    }

    .protitle .section-label {
        font-size: 0.65em;
        letter-spacing: 0.25em;
    }

    .protitle h3 {
        font-size: 1.5em;
    }

    .protitle p {
        font-size: 0.88em;
        margin-bottom: 1.25rem;
    }

    .protitle a,
    .btn-luxury {
        padding: 0.6em 1.5em;
        font-size: 0.72em;
    }

    .pages {
        padding: 1rem 0 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .pages a {
        padding: 8px 12px;
        margin: 0;
        font-size: 0.78em;
        min-width: 32px;
    }

    .nybanner img {
        max-height: 200px;
    }

    .nyContent {
        padding-bottom: 2rem;
    }

    .sf-filter {
        padding: 1rem;
        margin-top: 1rem;
    }

    .unlimited a,
    .condition ul li a {
        padding: 5px 12px;
        font-size: 0.78em;
        white-space: normal;
    }

    .newsTitle.aboutT_title {
        margin: 1.5em auto 0.75em;
    }

    .newsTitle.aboutT_title::before {
        font-size: 0.65em;
        letter-spacing: 0.25em;
    }

    .aboutT_title span {
        font-size: 1.5em;
    }

    .aboutT_title p {
        font-size: 0.92em;
        line-height: 1.75;
    }

    .content-card {
        padding: 1.25rem;
        margin-top: 1rem;
    }

    .detail-card {
        padding: 1.25rem;
    }

    .detail-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .detail-header h1 {
        font-size: 1.25em;
    }

    .page-detail .protop,
    .detail-card .protop {
        flex-direction: column;
        gap: 20px;
    }

    .page-detail .proshowleft,
    .page-detail .proshowRight,
    .detail-card .proshowleft,
    .detail-card .proshowRight {
        flex: 1 1 100% !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .price-panel {
        padding: 20px 16px;
    }

    .price-panel .price-main {
        font-size: 1.65em;
    }

    .price-panel .price-grid {
        grid-template-columns: 1fr;
    }

    .page-detail .product-info li,
    .detail-card .product-info li {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .page-detail .product-info li span,
    .detail-card .product-info li span {
        width: auto;
    }

    .news-detail-page {
        padding: 1rem 0 2rem;
    }

    .news-detail-card {
        padding: 1.25rem;
    }

    .news-detail-card h1 {
        font-size: 1.25em;
    }

    .back-link {
        margin: 1rem 0;
        padding: 8px 16px;
        font-size: 0.72em;
    }

    .footer_top {
        padding: 40px 0 32px;
    }

    .footer_column {
        flex: 1 1 100%;
    }

    .footer_column h3 {
        margin-bottom: 12px;
    }

    .social_icons img {
        width: 28px;
        height: 28px;
    }

    .QR_codeContent {
        width: calc(100% - 40px);
        max-width: 320px;
        padding: 1.5rem;
    }

    .QR_code img {
        width: 160px;
    }

    .banner .slick-prev,
    .banner .slick-next {
        width: 36px;
        height: 36px;
    }

    .banner .slick-prev {
        left: 8px;
    }

    .banner .slick-next {
        right: 8px;
    }

    .page-detail .proshowimg .slick-prev,
    .page-detail .proshowimg .slick-next {
        width: 32px;
        height: 32px;
    }

    #allmap {
        height: 240px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 1.25rem 0;
    }

    .contact-info-item {
        padding: 1.25rem;
    }

    .honor ul li.honor_imgbox a img {
        height: auto;
        min-height: 160px;
    }

    .newshowContent {
        padding: 1rem;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .newshowContent img {
        max-width: 100% !important;
        height: auto !important;
    }

    .detail-desc {
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .detail-desc img {
        max-width: 100% !important;
        height: auto !important;
    }

    .proCon ul li .pic .state {
        font-size: 0.7em;
        width: 90px;
        right: -26px;
    }

    .fixed-btn {
        font-size: 10px;
        padding: 6px 14px;
    }
}

/* 小屏手机 */
@media screen and (max-width: 480px) {
    html, body {
        font-size: 13px;
    }

    .logo {
        font-size: 1.05em;
        letter-spacing: 2px;
    }

    .nav-toggle {
        width: 36px;
        height: 36px;
    }

    .protitle h3 {
        font-size: 1.35em;
    }

    .proC_content {
        padding-bottom: 8px;
    }

    .proCText p {
        height: auto;
        max-height: 3em;
    }

    .pages a {
        padding: 6px 10px;
        font-size: 0.75em;
    }

    .banner .bigimg .item img {
        max-height: 220px;
    }

    .nybanner img {
        max-height: 160px;
    }

    .newsContent ul li {
        padding: 1rem;
    }

    .newsContent ul li .pic img {
        height: 160px;
    }

    .footer_bottom p {
        font-size: 0.7em;
    }

    .price-panel .price-main {
        font-size: 1.45em;
    }

    .detail-status {
        font-size: 0.65em;
        padding: 5px 12px;
    }
}

/* 横屏手机 */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .logo_nav .container {
        min-height: 56px;
    }

    .nybanner img {
        max-height: 140px;
    }

    .banner .bigimg .item img {
        max-height: 200px;
    }

    nav ul li a {
        padding: 8px 0;
    }
}

/* 强制 Grid 布局，覆盖旧版 float/inline-block */
.proCon ul,
#goods-list,
.pro_list .proCon ul,
.pro_list #goods-list {
    display: grid !important;
    list-style: none;
}

.proCon ul li,
#goods-list li,
.pro_list .proCon ul li,
.pro_list #goods-list li {
    float: none !important;
    display: block !important;
    width: auto !important;
    margin: 0 !important;
}

/* Lightbox 移动端 */
@media screen and (max-width: 768px) {
    .lb-outerContainer,
    .lb-dataContainer {
        max-width: 92vw !important;
        width: auto !important;
    }

    .lightbox .lb-image {
        max-width: 92vw !important;
        height: auto !important;
    }

    .lb-nav a.lb-prev,
    .lb-nav a.lb-next {
        opacity: 0.8;
    }
}
