* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #333333;
    background: #f5f7fa;
    min-width: 1200px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.wrap {
    width: 1200px;
    margin: 0 auto;
}

/* ========== Top Bar ========== */
.top-bar {
    height: 34px;
    line-height: 34px;
    background: #f0f2f5;
    color: #666666;
    font-size: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.top-bar .wrap {
    display: flex;
    justify-content: space-between;
}

.top-bar-l a,
.top-bar-r a {
    color: #666666;
    transition: color 0.2s;
    margin-left: 10px;
}

.top-bar-l a:hover,
.top-bar-r a:hover {
    color: #22d3ee;
}

.top-bar-split {
    margin: 0 10px;
    color: #ccc;
}

.top-bar-l a:first-child {
    margin-left: 0;
}

/* ========== Header ========== */
.header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 46px;
    max-width: 180px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #22d3ee, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* Search */
.search-box {
    max-width: 500px;
    margin: 0 auto;
}

.search-box form {
    display: flex;
    width: 400px;
    max-width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    height: 40px;
    background: #f8f9fb;
    transition: border-color 0.3s;
}

.search-box form:focus-within {
    border-color: #22d3ee;
    box-shadow: 0 0 0 3px rgba(34,211,238,0.1);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 15px;
    font-size: 13px;
    height: 100%;
    background: transparent;
    color: #1a1a2e;
}

.search-input::placeholder {
    color: #999999;
}

.search-btn {
    width: 72px;
    border: none;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
    font-weight: 500;
}

.search-btn:hover {
    opacity: 0.9;
}

.hot-words {
    margin-top: 6px;
    font-size: 12px;
    color: #999999;
}

.hot-words span {
    color: #999999;
}

.hot-words a {
    color: #666666;
    margin-right: 10px;
    transition: color 0.2s;
}

.hot-words a:hover {
    color: #22d3ee;
}

/* Header Cart */
.header-cart {
    flex-shrink: 0;
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: #f8f9fb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #555555;
    font-size: 13px;
    transition: all 0.3s;
}

.cart-btn:hover {
    border-color: #22d3ee;
    color: #22d3ee;
    box-shadow: 0 0 12px rgba(34,211,238,0.1);
}

.cart-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4H6zM3 6h18M16 10a4 4 0 11-8 0' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ========== Nav Bar ========== */
.nav-bar {
    background: #f8f9fb;
    height: 46px;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner .nav-bar {
    background: none;
    height: auto;
    border-bottom: none;
    display: flex;
    gap: 4px;
}

.header-inner .nav-bar a {
    display: flex;
    align-items: center;
    padding: 0 18px;
    height: 40px;
    color: #cbd5e1;
    font-size: 14px;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.2s;
}

.header-inner .nav-bar a:hover {
    color: #ffffff;
    background: rgba(34,211,238,0.1);
}

.header-inner .nav-bar a.active {
    color: #22d3ee;
    background: rgba(34,211,238,0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    height: 100%;
}

.category-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    height: 100%;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.cat-menu-icon {
    font-size: 16px;
}

.cat-arrow {
    font-size: 10px;
    opacity: 0.7;
    margin-left: auto;
}

.category-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    z-index: 999;
    padding: 4px 0;
    max-height: 560px;
    overflow-y: auto;
}

.category-menu:hover .category-dropdown {
    display: block;
}

.category-drop-item {
    position: relative;
    padding: 0;
    border-bottom: 1px solid #f3f4f6;
}

.category-drop-item:last-child {
    border-bottom: none;
}

.category-drop-title {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 14px;
    color: #333333;
    transition: all 0.15s;
    font-weight: 500;
    text-decoration: none;
}

.category-drop-title:hover {
    background: #f8f9fb;
    color: #22d3ee;
}

.cat-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 9px;
    color: #999;
    margin-right: 6px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    cursor: pointer;
    line-height: 1;
}

.category-drop-item.expanded .cat-toggle {
    transform: rotate(90deg);
    color: #22d3ee;
}

.cat-toggle-placeholder {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    flex-shrink: 0;
}

.category-drop-children {
    display: none;
    padding: 4px 16px 10px 38px;
    background: #fafbfc;
    flex-wrap: wrap;
    gap: 4px 8px;
}

.category-drop-item.expanded .category-drop-children {
    display: flex;
}

.category-drop-child {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    color: #666666;
    border-radius: 4px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #eee;
}

.category-drop-child:hover {
    color: #22d3ee;
    background: #e0f7ff;
    border-color: #22d3ee;
}

.nav-links {
    display: flex;
    height: 100%;
    margin-left: 0;
}

.nav-links a {
    display: flex;
    align-items: center;
    padding: 0 24px;
    height: 100%;
    color: #555555;
    font-size: 15px;
    transition: all 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: #22d3ee;
}

.nav-links a.active {
    color: #22d3ee;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: #22d3ee;
    border-radius: 1px;
}

/* ========== Hero Banner ========== */
.hero-banner {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 40%, #f0f4f8 70%, #e5e7eb 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -35%;
    right: -6%;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(34,211,238,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -4%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(139,92,246,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 44px;
    font-weight: 700;
    background: linear-gradient(135deg, #22d3ee, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.banner-content p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 36px;
    letter-spacing: 6px;
}

.banner-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.banner-btn {
    display: inline-block;
    padding: 12px 36px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.banner-btn-primary {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: #fff;
}

.banner-btn-primary:hover {
    box-shadow: 0 0 24px rgba(34,211,238,0.3);
    transform: translateY(-2px);
}

.banner-btn-outline {
    border: 1px solid #d1d5db;
    color: #555555;
}

.banner-btn-outline:hover {
    border-color: #22d3ee;
    color: #22d3ee;
    background: rgba(34,211,238,0.05);
}

/* ========== Sections ========== */
.seckill-section,
.hot-section,
.floor-section,
.new-section {
    margin-bottom: 40px;
}

.content-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.content-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    position: relative;
    padding-left: 16px;
}

.content-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(180deg, #22d3ee, #8b5cf6);
    border-radius: 2px;
}

.content-header p {
    font-size: 13px;
    color: #999999;
    margin-left: 16px;
}

.content-header .more-link {
    margin-left: auto;
    font-size: 13px;
    color: #999999;
    transition: color 0.2s;
    flex-shrink: 0;
}

.content-header .more-link:hover {
    color: #22d3ee;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Seckill Grid */
.seckill-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.seckill-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.seckill-item:hover {
    border-color: #f43f5e;
    box-shadow: 0 0 20px rgba(244,63,94,0.1);
    transform: translateY(-2px);
}

.seckill-item a {
    display: block;
}

.seckill-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #f5f7fa;
    transition: transform 0.4s;
}

.seckill-item:hover img {
    transform: scale(1.04);
}

.seckill-name {
    padding: 8px 10px 0;
    font-size: 12px;
    color: #555555;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.seckill-price {
    padding: 6px 10px 10px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-curr {
    font-size: 16px;
    font-weight: 700;
    color: #f43f5e;
}

.price-old {
    font-size: 11px;
    color: #999999;
    text-decoration: line-through;
}

/* Hot / New Grids */
.hot-grid,
.new-grid {
    display: grid;
    gap: 12px;
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* Goods Item (shared by hot/new/floor) */
.goods-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.goods-item:hover {
    border-color: #e5e7eb;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.goods-item a {
    display: block;
}

.goods-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #ffffff;
    transition: transform 0.4s;
}

.goods-item:hover img {
    transform: scale(1.04);
}

.goods-name {
    padding: 10px 12px 0;
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    background: #0f172a;
}

.goods-price {
    padding: 6px 12px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #22d3ee;
    background: #0f172a;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ========== Floor Section ========== */
.floor-layout {
    display: flex;
    gap: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.floor-nav {
    width: 180px;
    flex-shrink: 0;
    padding: 20px;
    background: linear-gradient(180deg, #f8f9fb, #ffffff);
    border-right: 1px solid #e5e7eb;
}

.floor-nav h3 {
    font-size: 18px;
    font-weight: 600;
    color: #22d3ee;
    margin-bottom: 10px;
}

.floor-goods {
    flex: 1;
    padding: 16px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.floor-goods .goods-item {
    border: none;
    border-radius: 6px;
}

/* ========== Features Bar ========== */
.features-bar {
    background: #ffffff;
    padding: 28px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.feature-items {
    display: flex;
    justify-content: space-around;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    font-size: 26px;
    color: #22d3ee;
    opacity: 0.8;
}

.feature-text {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.feature-desc {
    font-size: 11px;
    color: #999999;
    font-weight: normal;
}

/* ========== Footer ========== */
.footer {
    background: #f0f2f5;
    padding-top: 36px;
    border-top: 1px solid #e5e7eb;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #f8f9fb;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col h4 {
    font-size: 15px;
    color: #1a1a2e;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-col a {
    color: #999999;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #22d3ee;
}

.footer-qrcode {
    text-align: center;
    color: #666666;
    font-size: 12px;
}

.qrcode-icon {
    display: block;
    font-size: 48px;
    color: #999;
    margin-bottom: 6px;
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
    color: #999;
    font-size: 12px;
    line-height: 2;
}

.footer-bottom a {
    color: #999999;
}

.footer-bottom a:hover {
    color: #22d3ee;
}

/* ========== Scrollbar ========== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f5f7fa;
}

::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
}

/* ========== Product Detail Page ========== */
.detail-page {
    padding: 20px 0 40px;
}

.breadcrumb {
    padding: 14px 0;
    font-size: 13px;
    color: #666666;
}

.breadcrumb a {
    color: #666666;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #22d3ee;
}

.breadcrumb span {
    margin: 0 8px;
}

.breadcrumb .current {
    color: #555555;
}

.detail-main {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

/* Gallery */
.detail-gallery {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 600px;
    flex-shrink: 0;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 78px;
    flex-shrink: 0;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 4px;
}

.gallery-thumbs::-webkit-scrollbar {
    width: 4px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 2px;
}

.gallery-thumb {
    width: 72px;
    height: 72px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
    opacity: 0.6;
    flex-shrink: 0;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: #22d3ee;
    opacity: 1;
}

.gallery-thumb {
    background: #ffffff;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-main {
    flex: 1;
    min-width: 0;
    height: 520px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-placeholder {
    font-size: 16px;
    color: #999999;
}

/* Info */
.detail-info {
    flex: 1;
    min-width: 0;
}

.detail-name {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 6px;
}

.detail-subtitle {
    font-size: 13px;
    color: #666666;
    margin-bottom: 20px;
}

.detail-intro {
    color: #d63031;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
}

.detail-price-box {
    background: linear-gradient(135deg, #e5e7eb, #ffffff);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-label {
    font-size: 13px;
    color: #666666;
    width: 50px;
    flex-shrink: 0;
}

.detail-price-current {
    font-size: 28px;
    font-weight: 700;
    color: #f43f5e;
}

.detail-price-origin {
    font-size: 14px;
    color: #999999;
    text-decoration: line-through;
}

.price-row-muted {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
}

.detail-price-market {
    font-size: 14px;
    color: #999999;
}

/* Meta */
.detail-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.meta-label {
    color: #666666;
}

.meta-value {
    color: #555555;
}

.text-green {
    color: #22c55e !important;
}

.text-red {
    color: #f43f5e !important;
}

/* Specs */
.detail-specs {
    margin-bottom: 24px;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 13px;
}

.spec-label {
    color: #666666;
    min-width: 50px;
}

.spec-value {
    color: #555555;
}

/* Actions */
.detail-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.detail-secondary-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 40px;
    border: none;
    background: #f8f9fb;
    color: #555555;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.15s;
}

.qty-btn:hover {
    background: #e8ecf0;
    color: #22d3ee;
}

.qty-input {
    width: 50px;
    height: 40px;
    border: none;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    background: #ffffff;
    color: #1a1a2e;
    text-align: center;
    font-size: 15px;
    outline: none;
}

.btn-add-cart {
    flex: 1;
    padding: 0 28px;
    height: 40px;
    border: 1px solid #f43f5e;
    border-radius: 6px;
    background: transparent;
    color: #f43f5e;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.btn-add-cart:hover {
    background: #f43f5e;
    color: #fff;
    box-shadow: 0 0 16px rgba(244,63,94,0.2);
}

.btn-buy-now {
    flex: 1;
    padding: 0 28px;
    height: 40px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-buy-now:hover {
    box-shadow: 0 0 20px rgba(244,63,94,0.3);
    transform: translateY(-1px);
}

.btn-collect {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 16px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: transparent;
    color: #999999;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-collect:hover {
    border-color: #f43f5e;
    color: #f43f5e;
}

.btn-collect.collected {
    border-color: #f43f5e;
    color: #f43f5e;
}

.collect-heart {
    font-size: 16px;
    line-height: 1;
}

.btn-equipment {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 16px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: transparent;
    color: #999999;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-equipment:hover {
    border-color: #22c55e;
    color: #22c55e;
}

.btn-equipment.equipped {
    border-color: #22c55e;
    color: #22c55e;
}

.equipment-icon {
    font-size: 16px;
    line-height: 1;
}

/* Service */
.detail-service {
    display: flex;
    gap: 20px;
}

.service-item {
    font-size: 12px;
    color: #999999;
}

/* Bottom */
.detail-bottom {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.detail-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}

.detail-tab {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #555555;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.detail-tab.active {
    color: #22d3ee;
    border-bottom-color: #22d3ee;
}

.detail-content {
    padding: 24px;
    color: #555555;
    font-size: 14px;
    line-height: 1.8;
    min-height: 300px;
}

.detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.detail-empty {
    text-align: center;
    padding: 80px 0;
    color: #999999;
    font-size: 14px;
}

/* Tab panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Param table */
.param-table {
    width: 100%;
    border-collapse: collapse;
}

.param-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.param-table tr:last-child {
    border-bottom: none;
}

.param-table td {
    padding: 12px 16px;
    font-size: 13px;
}

.param-name {
    color: #666666;
    width: 160px;
    background: #f8f9fb;
    font-weight: 500;
}

.param-value {
    color: #555555;
}

.param-html {
    margin-bottom: 16px;
}

.param-html table {
    width: 100%;
    border-collapse: collapse;
}

.param-html td,
.param-html th {
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    color: #555555;
}

.param-html th {
    background: #f8f9fb;
    color: #666666;
}

/* ========== List / Search Page ========== */
.list-page {
    padding: 20px 0 40px;
    min-height: 60vh;
}

.list-header {
    margin-bottom: 20px;
}

.list-breadcrumb {
    font-size: 14px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.list-breadcrumb a {
    color: #666666;
    transition: color 0.2s;
}

.list-breadcrumb a:hover {
    color: #22d3ee;
}

.list-breadcrumb strong {
    color: #22d3ee;
}

.cat-filter-bar {
    margin-bottom: 16px;
}

.filter-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 8px;
}

.filter-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    white-space: nowrap;
}

.filter-back {
    color: #22d3ee;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s;
}

.filter-back:hover {
    color: #0ea5e9;
}

.filter-sep {
    color: #ddd;
    font-size: 14px;
}

.filter-current-l1 {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    margin-right: 4px;
}

.filter-chip {
    display: inline-block;
    padding: 3px 12px;
    font-size: 12px;
    color: #555;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.15s;
    white-space: nowrap;
}

.filter-chip:hover {
    border-color: #22d3ee;
    color: #22d3ee;
    background: #e0f7ff;
}

.filter-chip.active {
    background: #22d3ee;
    color: #fff;
    border-color: #22d3ee;
}

.list-count {
    margin-left: 12px;
    font-size: 13px;
    color: #999999;
}

.list-grid {
    display: grid;
    gap: 14px;
}

.list-empty {
    text-align: center;
    padding: 80px 0 100px;
}

.empty-icon {
    font-size: 56px;
    opacity: 0.3;
    margin-bottom: 16px;
}

.empty-text {
    font-size: 18px;
    color: #666666;
    margin-bottom: 8px;
}

.empty-hint {
    font-size: 13px;
    color: #999999;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.page-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #555555;
    font-size: 14px;
    transition: all 0.2s;
}

.page-btn:hover {
    border-color: #22d3ee;
    color: #22d3ee;
    background: rgba(34,211,238,0.05);
}

.page-info {
    font-size: 13px;
    color: #999999;
}

/* List grid price styles */
.list-grid .goods-price .price-curr {
    font-size: 15px;
    font-weight: 700;
    color: #f43f5e;
}

.list-grid .goods-price .price-old {
    font-size: 11px;
    color: #64748b;
    text-decoration: line-through;
    margin-left: 6px;
}

/* ========== Info Pages (Help / Notice) ========== */
.info-page {
    display: flex;
    gap: 24px;
    padding: 24px 0 40px;
    min-height: 60vh;
    align-items: flex-start;
}

.info-sidebar {
    width: 220px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    position: sticky;
    top: 20px;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-cat {
    margin-bottom: 2px;
}

.sidebar-cat a {
    display: block;
    padding: 8px 12px;
    color: #555555;
    font-size: 13px;
    border-radius: 4px;
    transition: all 0.15s;
}

.sidebar-cat a:hover {
    color: #22d3ee;
    background: rgba(34,211,238,0.05);
}

.sidebar-empty {
    color: #999999;
    font-size: 13px;
    padding: 8px 12px;
}

.info-main {
    flex: 1;
    min-width: 0;
}

.info-main.info-full {
    max-width: 960px;
    margin: 0 auto;
}

.info-breadcrumb {
    font-size: 14px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.info-breadcrumb a {
    color: #666666;
    transition: color 0.2s;
}

.info-breadcrumb a:hover {
    color: #22d3ee;
}

.info-breadcrumb .current {
    color: #555555;
}

/* Help */
.help-category {
    margin-bottom: 28px;
}

.help-cat-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

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

.help-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #0f1628;
    transition: background 0.15s;
}

.help-item:hover {
    background: rgba(34,211,238,0.03);
}

.help-item.help-empty {
    color: #999999;
    font-size: 13px;
}

.help-item a {
    color: #555555;
    font-size: 14px;
    flex: 1;
    transition: color 0.2s;
}

.help-item a:hover {
    color: #22d3ee;
}

.help-date {
    font-size: 12px;
    color: #999999;
    flex-shrink: 0;
    margin-left: 16px;
}

/* Notice */
.notice-list {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.notice-item {
    padding: 18px 24px;
    border-bottom: 1px solid #0f1628;
    transition: background 0.15s;
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-item:hover {
    background: rgba(34,211,238,0.02);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.notice-top {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(244,63,94,0.1);
    color: #f43f5e;
    font-size: 11px;
    border-radius: 3px;
    font-weight: 600;
    flex-shrink: 0;
}

.notice-title {
    color: #555555;
    font-size: 15px;
    font-weight: 500;
    flex: 1;
    transition: color 0.2s;
}

.notice-title:hover {
    color: #22d3ee;
}

.notice-date {
    font-size: 12px;
    color: #999999;
    flex-shrink: 0;
}

.notice-excerpt {
    font-size: 13px;
    color: #999999;
    line-height: 1.6;
    margin: 0;
    padding-left: 0;
}

/* Article (help detail / notice detail) */
.info-detail {
    max-width: 860px;
    margin: 0 auto;
}

.info-article {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
}

.article-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13px;
    color: #999999;
}

.notice-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(244,63,94,0.1);
    color: #f43f5e;
    font-size: 11px;
    border-radius: 3px;
    font-weight: 600;
}

/* ========== Article / News Detail Page ========== */

.article-detail-page {
    padding: 24px 0 40px;
}

.article-detail-main {
    flex: 1;
    min-width: 0;
}

.article-detail-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.article-detail-layout {
    display: flex;
    gap: 24px;
}

/* Breadcrumb */
.article-breadcrumb {
    font-size: 14px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 12px 0;
}

.article-breadcrumb a {
    color: #666666;
    text-decoration: none;
    transition: color 0.2s;
}

.article-breadcrumb a:hover {
    color: #22d3ee;
}

/* Hero */
.article-detail-hero {
    position: relative;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 60%, #f8f9fb 100%);
    min-height: 160px;
    display: flex;
    align-items: flex-end;
}

.article-detail-hero.has-cover {
    min-height: 320px;
}

.hero-cover-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-cover-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-detail-hero.has-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 32px 40px;
    width: 100%;
}

.hero-cat {
    display: inline-block;
    padding: 4px 14px;
    background: #22d3ee;
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.hero-cat:hover {
    opacity: 0.85;
    color: #1a1a2e;
}

.hero-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin: 0 0 14px;
}

.hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    color: #555555;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ========== Article Content (shared by help/notice/news detail) ========== */

.article-content {
    font-size: 16px;
    color: #333333;
    line-height: 1.9;
    word-break: break-word;
}

.article-content p {
    margin: 0 0 18px;
}

.article-content a {
    color: #22d3ee;
    text-decoration: none;
    border-bottom: 1px solid rgba(34,211,238,0.3);
    transition: all 0.2s;
}

.article-content a:hover {
    color: #67e8f9;
    border-bottom-color: #67e8f9;
}

.article-content strong,
.article-content b {
    color: #1a1a2e;
}

.article-content em,
.article-content i {
    color: #555555;
}

.article-content h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 32px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.article-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 28px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 24px 0 12px;
}

.article-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 20px 0 10px;
}

/* Images */
.article-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.article-content img.aligncenter,
.article-content img.size-full,
.article-content img.size-large {
    margin-left: auto;
    margin-right: auto;
}

.article-content img.alignleft {
    float: left;
    margin: 8px 20px 16px 0;
    max-width: 40%;
}

.article-content img.alignright {
    float: right;
    margin: 8px 0 16px 20px;
    max-width: 40%;
}

/* Figure */
.article-content figure {
    margin: 24px 0;
    text-align: center;
}

.article-content figure img {
    margin-bottom: 10px;
}

.article-content figcaption {
    font-size: 13px;
    color: #666666;
    font-style: italic;
}

/* Blockquote */
.article-content blockquote {
    margin: 24px 0;
    padding: 18px 24px;
    border-left: 4px solid #22d3ee;
    background: rgba(34,211,238,0.05);
    border-radius: 0 8px 8px 0;
    color: #555555;
    font-style: italic;
}

.article-content blockquote p {
    margin: 0;
}

/* Lists */
.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-left: 24px;
    color: #333333;
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.8;
}

/* Code / Pre */
.article-content code {
    background: rgba(0,0,0,0.05);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #67e8f9;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.article-content pre {
    background: #f8f9fb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
}

.article-content pre code {
    background: none;
    padding: 0;
    color: #1a1a2e;
    font-size: 13px;
    line-height: 1.7;
}

/* Horizontal Rule */
.article-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
    margin: 32px 0;
}

/* YouTube / iframe embeds */
.article-content iframe {
    display: block;
    max-width: 100%;
    margin: 24px auto;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: none;
}

.article-content .fluid-iframe {
    max-width: 800px;
    margin: 24px auto;
}

.article-content .fluid-iframe__inner {
    position: relative;
    width: 100%;
    padding-top: 52.5%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.article-content .fluid-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Product Buttons (from RSS source) */
.article-content .product-button-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
    justify-content: center;
}

.article-content .button.product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.article-content .button.product-button.blue {
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: #1a1a2e;
}

.article-content .button.product-button.blue:hover {
    background: linear-gradient(135deg, #38ddf8, #06b6d4);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(34,211,238,0.35);
    color: #1a1a2e;
}

/* Tables */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}

.article-content table th,
.article-content table td {
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.article-content table th {
    background: #ffffff;
    color: #1a1a2e;
    font-weight: 600;
}

.article-content table td {
    background: #ffffff;
}

/* Empty content */
.article-empty-content {
    text-align: center;
    color: #666666;
    padding: 40px 0;
    font-size: 15px;
}

/* ========== Related Articles ========== */

.article-related {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.related-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
}

.related-item:hover {
    background: rgba(34,211,238,0.05);
}

.related-thumb {
    width: 60px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.related-item-title {
    font-size: 13px;
    color: #555555;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-item-time {
    font-size: 11px;
    color: #666666;
}

/* ========== Sidebar (News Detail) ========== */

.article-detail-sidebar .sidebar-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 16px;
}

.article-detail-sidebar .sidebar-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

/* Sidebar Hot List */
.hot-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-item {
    display: flex;
    align-items: center;
    padding: 8px 6px;
    border-radius: 6px;
    transition: background 0.15s;
    gap: 4px;
}

.hot-item:hover {
    background: rgba(34,211,238,0.04);
}

.hot-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex: 1;
    min-width: 0;
}

.hot-rank {
    width: 22px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #666666;
    flex-shrink: 0;
}

.rank-top {
    color: #f59e0b;
    font-style: normal;
}

.hot-title {
    font-size: 13px;
    color: #333333;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.hot-views {
    font-size: 11px;
    color: #999999;
    flex-shrink: 0;
}

/* Sidebar Category List */
.cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 16px;
    background: #ffffff;
    font-size: 12px;
    transition: all 0.15s;
}

.cat-item a {
    color: #555555;
    text-decoration: none;
}

.cat-item:hover {
    background: #1e2a45;
}

.cat-item.active {
    background: #22d3ee;
    font-weight: 600;
}

.cat-item.active a {
    color: #1a1a2e;
}

/* ========== Article Detail Responsive ========== */

@media (max-width: 900px) {
    .article-detail-layout {
        flex-direction: column;
    }
    .article-detail-sidebar {
        width: 100%;
    }
    .hero-title {
        font-size: 22px;
    }
    .article-detail-hero.has-cover {
        min-height: 240px;
    }
    .hero-content {
        padding: 24px;
    }
    .article-content img.alignleft,
    .article-content img.alignright {
        float: none;
        max-width: 100%;
        margin: 20px auto;
    }
}

.info-empty {
    text-align: center;
    padding: 80px 0 100px;
}

/* ========== Search Page ========== */
.search-hero {
    padding: 60px 0 80px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-hero-inner {
    width: 100%;
    max-width: 680px;
    text-align: center;
}

.search-hero-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.search-hero-desc {
    font-size: 14px;
    color: #666666;
    margin: 0 0 28px;
}

.search-hero-form {
    position: relative;
    margin-bottom: 24px;
}

.search-hero-input-wrap {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.search-hero-input-wrap:focus-within {
    border-color: #22d3ee;
    box-shadow: 0 0 0 3px rgba(34,211,238,0.1);
}

.search-hero-input {
    flex: 1;
    height: 52px;
    padding: 0 20px;
    border: none;
    background: transparent;
    color: #1a1a2e;
    font-size: 16px;
    outline: none;
}

.search-hero-input::placeholder {
    color: #999999;
}

.search-hero-btn {
    height: 52px;
    padding: 0 32px;
    border: none;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.search-hero-btn:hover {
    background: linear-gradient(135deg, #38ddf8, #06b6d4);
    box-shadow: 0 0 20px rgba(34,211,238,0.3);
}

/* Suggest dropdown */
.search-suggest {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.suggest-item {
    display: block;
    padding: 12px 20px;
    color: #555555;
    font-size: 14px;
    border-bottom: 1px solid #0f1628;
    transition: all 0.15s;
}

.suggest-item:last-child {
    border-bottom: none;
}

.suggest-item:hover {
    background: rgba(34,211,238,0.06);
    color: #22d3ee;
}

/* Hot words */
.search-hot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hot-label {
    font-size: 13px;
    color: #999999;
    flex-shrink: 0;
}

.hot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.hot-tag {
    display: inline-block;
    padding: 5px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    color: #555555;
    font-size: 13px;
    transition: all 0.2s;
}

.hot-tag:hover {
    border-color: #22d3ee;
    color: #22d3ee;
    background: rgba(34,211,238,0.06);
}

/* ========== 登录页 ========== */
.login-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 50%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.login-page .top-bar {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.login-page .header {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 0;
}

.login-header-simple {
    display: flex;
    align-items: center;
    height: 70px;
}

.login-nav-link {
    color: #555555;
    transition: color 0.2s;
}

.login-nav-link:hover {
    color: #22d3ee;
}

.top-bar-active {
    color: #22d3ee !important;
}

.login-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.login-container {
    width: 420px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.login-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.login-tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    color: #666666;
    cursor: pointer;
    font-size: 15px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.login-tab.active {
    color: #22d3ee;
    border-bottom-color: #22d3ee;
}

.login-tab:hover {
    color: #555555;
}

.login-tab.active:hover {
    color: #22d3ee;
}

.login-panel {
    min-height: 280px;
}

.qr-box {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-box img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.qr-placeholder {
    text-align: center;
    color: #999;
}

.qr-loading-icon {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e5e5;
    border-top-color: #07c160;
    border-radius: 50%;
    animation: qr-spin 0.8s linear infinite;
    margin: 0 auto 12px;
}

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

.qr-expired {
    text-align: center;
    color: #999;
}

.qr-expired-icon {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e5e5;
    border-radius: 50%;
    margin: 0 auto 12px;
    position: relative;
}

.qr-expired-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 3px;
    height: 20px;
    background: #ff4d4f;
    border-radius: 2px;
}

.qr-expired-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 3px;
    height: 20px;
    background: #ff4d4f;
    border-radius: 2px;
}

.qr-expired a {
    color: #07c160;
    cursor: pointer;
    font-size: 13px;
}

.qr-tip {
    text-align: center;
    color: #555555;
    font-size: 13px;
}

.phone-form .form-group {
    margin-bottom: 16px;
}

.form-group-code {
    display: flex;
    gap: 10px;
}

.login-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    color: #1a1a2e;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.login-input:focus {
    border-color: #22d3ee;
}

.login-input::placeholder {
    color: #666666;
}

.login-input-code {
    flex: 1;
}

.send-code-btn {
    width: 120px;
    height: 44px;
    border: 1px solid #22d3ee;
    border-radius: 6px;
    background: transparent;
    color: #22d3ee;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.send-code-btn:hover {
    background: rgba(34,211,238,0.1);
}

.send-code-btn:disabled {
    border-color: #d1d5db;
    color: #999999;
    cursor: not-allowed;
}

.login-submit-btn {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.login-submit-btn:hover {
    background: linear-gradient(135deg, #38bdf8, #22d3ee);
    box-shadow: 0 4px 15px rgba(34,211,238,0.3);
}

.phone-tip {
    text-align: center;
    color: #666666;
    font-size: 12px;
    margin-top: 16px;
}

.login-footer {
    text-align: center;
    padding: 24px 0;
    color: #999999;
    font-size: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ==================== 会员中心 ==================== */
.member-main {
    padding: 24px 0 48px;
    min-height: calc(100vh - 300px);
}

.member-skeleton {
    display: flex;
    gap: 24px;
}

.sk-sidebar {
    width: 260px;
    min-height: 360px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f4f8, #ffffff);
    opacity: 0.6;
}

.sk-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sk-banner {
    height: 120px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f4f8, #ffffff);
    opacity: 0.6;
}

.sk-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sk-card {
    height: 100px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f4f8, #ffffff);
    opacity: 0.6;
}

.skeleton-box {
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.member-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.member-sidebar {
    width: 260px;
    flex-shrink: 0;
}

.member-card {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid rgba(56,189,248,0.3);
    background: #f8f9fb;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.member-mobile {
    font-size: 13px;
    color: #666666;
    margin-bottom: 8px;
}

.member-level {
    display: inline-block;
    font-size: 12px;
    color: #38bdf8;
    background: rgba(56,189,248,0.1);
    padding: 2px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(56,189,248,0.2);
}

.member-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

.stat-label {
    font-size: 12px;
    color: #666666;
    margin-top: 4px;
}

.logout-btn {
    display: block;
    width: 100%;
    text-align: center;
    color: #ef4444;
    font-size: 13px;
    padding: 8px 24px;
    margin-top: 8px;
    border-radius: 8px;
    border: 1px solid rgba(239,68,68,0.3);
    transition: all 0.2s;
    cursor: pointer;
}

.logout-btn:hover {
    background: rgba(239,68,68,0.1);
    border-color: rgba(239,68,68,0.5);
}

.member-content {
    flex: 1;
}

.member-banner {
    background: linear-gradient(135deg, #0f3460 0%, #ffffff 50%, #f0f4f8 100%);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid rgba(56,189,248,0.1);
}

.member-banner h2 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-banner p {
    font-size: 13px;
    color: #666666;
}

.quick-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.qc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    background: linear-gradient(135deg, #f0f4f8, #ffffff);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
}

.qc-item:hover {
    transform: translateY(-3px);
    border-color: rgba(56,189,248,0.3);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.qc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.qc-icon-order {
    background: rgba(56,189,248,0.15);
    color: #38bdf8;
}

.qc-icon-cart {
    background: rgba(250,204,21,0.15);
    color: #facc15;
}

.qc-icon-coupon {
    background: rgba(245,158,11,0.15);
    color: #f59e0b;
}

.qc-icon-address {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
}

.qc-icon-fav {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
}

.qc-icon-wallet {
    background: rgba(168,85,247,0.15);
    color: #a855f7;
}

.qc-icon-point {
    background: rgba(236,72,153,0.15);
    color: #ec4899;
}

.qc-icon-setting {
    background: rgba(148,163,184,0.15);
    color: #555555;
}

.qc-icon-sign {
    background: rgba(20,184,166,0.15);
    color: #14b8a6;
}

.qc-label {
    font-size: 13px;
    color: #555555;
}

.qc-item:hover .qc-label {
    color: #333333;
}

/* 未登录面板 */
.unlogin-panel {
    text-align: center;
    padding: 80px 40px;
}

.unlogin-icon {
    margin-bottom: 20px;
    opacity: 0.4;
}

.unlogin-panel h3 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 8px;
}

.unlogin-panel p {
    color: #666666;
    font-size: 14px;
    margin-bottom: 24px;
}

.unlogin-btn {
    display: inline-block;
    padding: 10px 32px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
    text-decoration: none;
}

.unlogin-btn:hover {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    box-shadow: 0 4px 15px rgba(14,165,233,0.3);
}

/* ============================================================
   Quick Cards 扩展
   ============================================================ */
.quick-cards { grid-template-columns: repeat(5, 1fr); }

.qc-icon-fp {
    background: rgba(34,211,238,0.15);
    color: #22d3ee;
}

.qc-icon-acct {
    background: rgba(250,204,21,0.15);
    color: #facc15;
}

.qc-icon-equip {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
}

/* ============================================================
   侧边栏导航
   ============================================================ */
.sidebar-nav {
    margin-top: 16px;
    padding: 0 12px;
}

.sidebar-nav-item {
    display: block;
    padding: 10px 16px;
    color: #555555;
    font-size: 13px;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
    margin-bottom: 2px;
}

.sidebar-nav-item:hover {
    background: rgba(56,189,248,0.08);
    color: #333333;
}

.sidebar-nav-item.active {
    background: rgba(56,189,248,0.15);
    color: #38bdf8;
    font-weight: 500;
}

.sidebar-nav-back {
    margin-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 12px;
    color: #666666;
    font-size: 12px;
}

.sidebar-nav-back:hover {
    color: #555555;
}

/* ============================================================
   页面骨架屏
   ============================================================ */
.page-skeleton .sk-li {
    width: 100%;
    height: 80px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: linear-gradient(90deg, #f0f4f8 25%, #e5e7eb 50%, #f0f4f8 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

/* ============================================================
   内容区通用
   ============================================================ */
.content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.content-header h3 {
    font-size: 18px;
    color: #1a1a2e;
    font-weight: 600;
    margin: 0;
}

.loading-tip {
    color: #666666;
    font-size: 13px;
    text-align: center;
    padding: 40px;
}

.empty-hint {
    text-align: center;
    padding: 60px 20px;
    color: #666666;
    font-size: 14px;
}

.empty-hint p {
    margin: 0;
}

/* ============================================================
   按钮
   ============================================================ */
.btn-sm {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    color: #38bdf8;
    background: rgba(56,189,248,0.1);
    border: 1px solid rgba(56,189,248,0.2);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-sm:hover {
    background: rgba(56,189,248,0.2);
    color: #7dd3fc;
}

.btn-sm-danger {
    color: #ef4444;
    background: rgba(239,68,68,0.1);
    border-color: rgba(239,68,68,0.2);
}

.btn-sm-danger:hover {
    background: rgba(239,68,68,0.2);
    color: #fca5a5;
}

.btn-add {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    color: #38bdf8;
    background: rgba(56,189,248,0.1);
    border: 1px solid rgba(56,189,248,0.2);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add:hover {
    background: rgba(56,189,248,0.2);
}

.btn-save {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-save:hover {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    box-shadow: 0 4px 15px rgba(14,165,233,0.3);
}

/* ============================================================
   分页
   ============================================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 24px 0;
    flex-wrap: wrap;
}

.pager-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 13px;
    color: #555555;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.pager-item:hover {
    background: rgba(56,189,248,0.1);
    color: #38bdf8;
    border-color: rgba(56,189,248,0.2);
}

.pager-active {
    background: rgba(56,189,248,0.15);
    color: #38bdf8;
    border-color: rgba(56,189,248,0.25);
    font-weight: 500;
    cursor: default;
}

.pager-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================================
   订单页
   ============================================================ */
.order-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 3px;
}

.order-tabs a {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    color: #555555;
    text-decoration: none;
    transition: all 0.2s;
}

.order-tabs a:hover { color: #333333; }

.order-tabs a.active {
    background: rgba(56,189,248,0.15);
    color: #38bdf8;
}

.order-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.order-card-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 12px;
}

.order-no { color: #666666; }

.order-status { color: #38bdf8; }

.order-card-bd {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    gap: 14px;
}

.order-goods-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255,255,255,0.04);
}

.order-info {
    flex: 1;
    min-width: 0;
}

.order-goods-name {
    color: #333333;
    font-size: 14px;
    margin: 0 0 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-time {
    color: #666666;
    font-size: 12px;
    margin: 0;
}

.order-money {
    color: #ef4444;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.order-card-ft {
    padding: 10px 16px;
    border-top: 1px solid rgba(255,255,255,0.04);
    text-align: right;
}

.order-card-ft .btn-sm {
    margin-left: 8px;
}

/* ============================================================
   优惠券
   ============================================================ */
.coupon-card {
    display: flex;
    position: relative;
    background: linear-gradient(135deg, #e5e7eb, #f0f4f8);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    min-height: 90px;
}

.coupon-card.coupon-used {
    opacity: 0.5;
}

.coupon-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    min-width: 120px;
    background: rgba(245,158,11,0.08);
    border-right: 1px dashed rgba(255,255,255,0.1);
}

.coupon-money {
    font-size: 28px;
    font-weight: 700;
    color: #f59e0b;
    line-height: 1;
}

.coupon-sign { font-size: 14px; }

.coupon-condition {
    font-size: 11px;
    color: #666666;
    margin-top: 4px;
}

.coupon-right {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coupon-name {
    font-size: 14px;
    color: #333333;
    margin-bottom: 6px;
}

.coupon-info {
    font-size: 12px;
    color: #666666;
    margin-bottom: 4px;
}

.coupon-expire {
    font-size: 11px;
    color: #ef4444;
}

.coupon-status-tag {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(245,158,11,0.15);
    color: #f59e0b;
}

.coupon-used .coupon-status-tag {
    background: rgba(100,116,139,0.15);
    color: #666666;
}

/* ============================================================
   收货地址
   ============================================================ */
.addr-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
}

.addr-card.addr-default {
    border-color: rgba(56,189,248,0.2);
}

.addr-card-body { margin-bottom: 10px; }

.addr-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.addr-name { color: #333333; font-size: 14px; font-weight: 500; }

.addr-mobile { color: #666666; font-size: 13px; }

.addr-tag {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(56,189,248,0.15);
    color: #38bdf8;
}

.addr-detail {
    color: #666666;
    font-size: 13px;
    word-break: break-all;
}

.addr-card-actions {
    font-size: 12px;
    color: #666666;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 10px;
}

.addr-card-actions a {
    color: #38bdf8;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

.addr-card-actions a:hover { color: #7dd3fc; }

.danger-link { color: #ef4444 !important; }
.danger-link:hover { color: #fca5a5 !important; }

/* 地址弹窗 */
.address-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.address-modal[style*="display: flex"] { display: flex !important; }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.modal-box {
    position: relative;
    width: 460px;
    max-width: 90vw;
    background: #e5e7eb;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
}

.modal-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.modal-hd h4 { margin: 0; color: #1a1a2e; font-size: 16px; }

.modal-close {
    color: #666666;
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
}

.modal-close:hover { color: #333333; }

.modal-bd { padding: 20px; }

.modal-ft {
    padding: 14px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-modal-cancel {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    color: #555555;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    cursor: pointer;
}

.btn-modal-save {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border: none;
    text-decoration: none;
    cursor: pointer;
}

/* ============================================================
   收藏
   ============================================================ */
.fav-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    margin-bottom: 10px;
}

.fav-img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255,255,255,0.04);
    flex-shrink: 0;
}

.fav-info {
    flex: 1;
    min-width: 0;
}

.fav-name {
    color: #333333;
    font-size: 14px;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    margin-bottom: 6px;
}

.fav-name:hover { color: #38bdf8; }

.fav-price {
    color: #ef4444;
    font-size: 15px;
    font-weight: 600;
}

.fav-del {
    color: #666666;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(239,68,68,0.08);
    transition: all 0.2s;
}

.fav-del:hover {
    color: #ef4444;
    background: rgba(239,68,68,0.15);
}

/* ============================================================
   账户明细
   ============================================================ */
.acct-list { }

.acct-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.acct-item:last-child { border-bottom: none; }

.acct-item-l { flex: 1; min-width: 0; }

.acct-remark {
    display: block;
    color: #333333;
    font-size: 13px;
    margin-bottom: 4px;
}

.acct-time {
    display: block;
    color: #666666;
    font-size: 12px;
}

.acct-item-r {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 16px;
    color: #555555;
}

.item-plus { color: #22c55e; }

.item-minus { color: #ef4444; }

.acct-type-tag {
    display: inline-block;
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 8px;
    background: rgba(148,163,184,0.1);
    color: #666666;
    vertical-align: middle;
}

/* ============================================================
   个人资料
   ============================================================ */
.profile-form {
    max-width: 520px;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.form-row label:first-child {
    width: 80px;
    flex-shrink: 0;
    color: #555555;
    font-size: 13px;
    text-align: right;
    margin-right: 14px;
}

.form-row input[type="text"],
.form-row select {
    flex: 1;
    padding: 9px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #333333;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}

.form-row input:focus,
.form-row select:focus {
    border-color: rgba(56,189,248,0.3);
}

.form-row input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-row select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.profile-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-avatar-wrap img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    object-fit: cover;
}

.profile-tip {
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
}

.tip-success {
    background: rgba(34,197,94,0.1);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.2);
}

.tip-error {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.2);
}

.checkbox-label {
    color: #555555;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    accent-color: #38bdf8;
}

/* ============================================================
   签到
   ============================================================ */
.signin-box {
    background: linear-gradient(135deg, #e5e7eb, #f0f4f8);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 28px;
}

.signin-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.signin-days {
    font-size: 18px;
    color: #1a1a2e;
    font-weight: 600;
}

.signin-btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.signin-btn:hover {
    box-shadow: 0 4px 15px rgba(245,158,11,0.3);
}

.signin-done {
    background: linear-gradient(135deg, #666666, #999999);
    cursor: default;
    pointer-events: none;
}

.signin-done:hover { box-shadow: none; }

.signin-award { margin-bottom: 24px; }

.award-title {
    font-size: 14px;
    color: #555555;
    margin-bottom: 12px;
    font-weight: 500;
}

.award-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.award-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 10px 16px;
    text-align: center;
    min-width: 100px;
}

.award-day { display: block; font-size: 12px; color: #666666; margin-bottom: 4px; }

.award-desc { display: block; font-size: 13px; color: #f59e0b; font-weight: 500; }

.signin-list { }

.sign-log-title {
    font-size: 14px;
    color: #555555;
    margin-bottom: 10px;
    font-weight: 500;
}

.sign-log-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
    color: #555555;
}

.sign-log-item:last-child { border-bottom: none; }

/* ============================================================
   足迹
   ============================================================ */
.fp-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    margin-bottom: 10px;
}

.fp-img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255,255,255,0.04);
    flex-shrink: 0;
}

.fp-info {
    flex: 1;
    min-width: 0;
}

.fp-name {
    color: #333333;
    font-size: 14px;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    margin-bottom: 4px;
}

.fp-name:hover { color: #38bdf8; }

.fp-price {
    color: #ef4444;
    font-size: 13px;
    margin-bottom: 2px;
}

.fp-time {
    font-size: 11px;
    color: #666666;
}

.fp-del {
    color: #666666;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(239,68,68,0.08);
    transition: all 0.2s;
}

.fp-del:hover {
    color: #ef4444;
    background: rgba(239,68,68,0.15);
}

/* 账户明细筛选 */
#acct-type-filter {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #333333;
    font-size: 12px;
    outline: none;
}

/* ========== SKU 选择弹窗 ========== */
.sku-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: skuFadeIn 0.2s ease;
}
@keyframes skuFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes skuSlideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.sku-popup {
    background: #141428;
    border-radius: 16px;
    width: 540px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    border: 1px solid #2a2a4a;
    animation: skuSlideUp 0.25s ease;
}
.sku-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #1e293b;
}
.sku-popup-header h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #e8eaed;
}
.sku-popup-close {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #64748b;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.15s;
    line-height: 1;
}
.sku-popup-close:hover { color: #e8eaed; background: rgba(255,255,255,0.08); }
.sku-popup-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}
/* SKU info card — image + name + price */
.sku-info-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 20px;
}
.sku-info-img {
    width: 90px; height: 90px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
}
.sku-info-img img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.sku-info-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sku-info-name {
    font-size: 15px;
    color: #e8eaed;
    font-weight: 500;
    margin: 0 0 8px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.sku-info-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}
.sku-info-price {
    font-size: 22px;
    font-weight: 700;
    color: #c9a96e;
}
.sku-info-price-old {
    font-size: 13px;
    color: #64748b;
    text-decoration: line-through;
}
.sku-info-stock {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}
.sku-info-stock span { font-weight: 500; }
/* Spec selector */
.spec-selector { padding: 0; }
.spec-group { margin-bottom: 18px; }
.spec-group:last-child { margin-bottom: 0; }
.spec-group-name {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 10px;
    font-weight: 500;
}
.appearance-desc-link {
    color: #c9a96e;
    font-size: 12px;
    margin-left: 6px;
    text-decoration: none;
    border-bottom: 1px dashed rgba(201,169,110,0.4);
    transition: color .2s;
}
.appearance-desc-link:hover { color: #e2c888; border-bottom-color: #e2c888; }
.spec-group-values { display: flex; flex-wrap: wrap; gap: 8px; }
.spec-val-btn {
    padding: 9px 20px;
    border: 1px solid #2a2a4a;
    background: rgba(255,255,255,0.04);
    color: #c0c0cc;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    font-family: inherit;
    line-height: 1.4;
}
.spec-val-btn:hover {
    border-color: #c9a96e;
    color: #c9a96e;
    background: rgba(201,169,110,0.06);
}
.spec-val-btn.selected {
    border-color: #c9a96e;
    background: rgba(201,169,110,0.15);
    color: #c9a96e;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(201,169,110,0.15);
}
.spec-val-btn.out-of-stock {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}
.spec-nomatch {
    padding: 14px;
    text-align: center;
    color: #f87171;
    font-size: 13px;
    background: rgba(248,113,113,0.06);
    border-radius: 8px;
    margin-top: 8px;
}
/* Quantity selector */
.sku-popup-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #1e293b;
}
.sku-popup-qty .qty-label { color: #94a3b8; font-size: 13px; }
.sku-popup-qty .qty-btn {
    width: 36px; height: 36px;
    border: 1px solid #2a2a4a;
    background: rgba(255,255,255,0.04);
    color: #c0c0cc;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.15s;
    display: flex; align-items: center; justify-content: center;
    font-family: inherit;
}
.sku-popup-qty .qty-btn:hover {
    border-color: #c9a96e;
    color: #c9a96e;
    background: rgba(201,169,110,0.08);
}
.sku-popup-qty .qty-btn:active { transform: scale(0.95); }
.sku-popup-qty .qty-input-wrap {
    min-width: 52px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #e8eaed;
    background: rgba(255,255,255,0.04);
    border: 1px solid #2a2a4a;
    border-radius: 8px;
}
/* Footer — two buttons */
.sku-popup-footer {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #1e293b;
    background: rgba(0,0,0,0.15);
}
.sku-btn-cart, .sku-btn-buy {
    flex: 1;
    height: 44px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    letter-spacing: 0.5px;
}
.sku-btn-cart {
    background: rgba(201,169,110,0.12);
    color: #c9a96e;
    border: 1px solid rgba(201,169,110,0.3);
}
.sku-btn-cart:hover {
    background: rgba(201,169,110,0.2);
    border-color: rgba(201,169,110,0.5);
    box-shadow: 0 4px 15px rgba(201,169,110,0.15);
}
.sku-btn-buy {
    background: linear-gradient(135deg, #c9a96e, #b8943d);
    color: #0a0a16;
    box-shadow: 0 4px 15px rgba(201,169,110,0.25);
}
.sku-btn-buy:hover {
    box-shadow: 0 6px 20px rgba(201,169,110,0.4);
    transform: translateY(-1px);
}
.sku-btn-cart:active, .sku-btn-buy:active { transform: scale(0.98); }
/* Disabled state */
.sku-btn-cart.disabled, .sku-btn-buy.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ══════════════════════════ PC 购物车页面 ══════════════════════════ */
.cart-page-wrap { padding: 30px 0 50px; min-height: 500px; }
.cart-page-header { display: flex; align-items: baseline; gap: 20px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid #22d3ee; }
.cart-page-header h2 { font-size: 24px; color: #e0e0e0; margin: 0; }
.cart-success-tip { padding: 10px 20px; margin-bottom: 16px; background: rgba(16,185,129,0.12); color: #10b981; border-radius: 6px; font-size: 14px; font-weight: 500; border: 1px solid rgba(16,185,129,0.25); }
.cart-count-text { color: #555555; font-size: 14px; }
.cart-count-text em { color: #22d3ee; font-style: normal; font-weight: 600; }
.cart-main { display: flex; gap: 20px; align-items: flex-start; }
.cart-items-wrap { flex: 1; background: #f0f4f8; border-radius: 8px; overflow: hidden; }
.cart-table-header { display: flex; align-items: center; padding: 14px 20px; background: #ffffff; border-bottom: 1px solid #2a2a4a; color: #555555; font-size: 13px; }
.cth-info { flex: 2; }
.cth-price { flex: 1; text-align: center; }
.cth-qty { flex: 1; text-align: center; }
.cth-subtotal { flex: 1; text-align: center; }
.cth-action { width: 80px; text-align: center; }
.cth-check { width: 48px; text-align: center; flex-shrink: 0; padding-left: 6px; margin-left: -15px; }
.cth-check input[type="checkbox"] { width: 22px; height: 22px; cursor: pointer; accent-color: #22d3ee; }
.cart-loading, .cart-empty { padding: 80px 20px; text-align: center; color: #555555; }
.cart-empty .empty-icon { font-size: 64px; display: block; margin-bottom: 16px; }
.go-shopping-btn { display: inline-block; margin-top: 16px; padding: 10px 30px; background: linear-gradient(135deg, #22d3ee, #0ea5e9); color: #fff; border-radius: 6px; text-decoration: none; font-weight: 600; }
.cart-item { display: flex; align-items: center; padding: 16px 20px; border-bottom: 1px solid #2a2a4a; transition: background 0.15s; }
.cart-item:hover { background: #1e2a45; }
.cart-item-info { flex: 2; display: flex; align-items: center; gap: 14px; }
.cart-item-check { width: 48px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding-left: 6px; margin-left: -15px; }
.cart-item-check input[type="checkbox"] { width: 22px; height: 22px; cursor: pointer; accent-color: #22d3ee; }
.cart-item-img { width: 80px; height: 80px; flex-shrink: 0; border-radius: 6px; overflow: hidden; background: #ffffff; display: flex; align-items: center; justify-content: center; }
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-detail { min-width: 0; }
.cart-item-name { display: block; color: #e0e0e0; font-size: 14px; text-decoration: none; line-height: 1.4; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.cart-item-name:hover { color: #22d3ee; }
.cart-item-spec { color: #666666; font-size: 12px; margin-top: 4px; }
.cart-item-price { flex: 1; text-align: center; color: #e0e0e0; font-size: 15px; font-weight: 500; }
.cart-item-qty { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0; }
.cart-item-qty .qty-btn { width: 30px; height: 30px; border: 1px solid #3a3a5c; background: #ffffff; color: #555555; font-size: 16px; cursor: pointer; transition: all 0.15s; display: flex; align-items: center; justify-content: center; }
.cart-item-qty .qty-btn:first-child { border-radius: 4px 0 0 4px; }
.cart-item-qty .qty-btn:last-child { border-radius: 0 4px 4px 0; }
.cart-item-qty .qty-btn:hover { background: #22d3ee; color: #fff; border-color: #22d3ee; }
.cart-item-qty .qty-input { width: 46px; height: 30px; border: 1px solid #3a3a5c; border-left: none; border-right: none; background: #1a1a2e; color: #e0e0e0; text-align: center; font-size: 14px; }
.cart-item-subtotal { flex: 1; text-align: center; color: #22d3ee; font-size: 16px; font-weight: 600; }
.cart-item-action { width: 80px; text-align: center; }
.cart-remove-btn { padding: 5px 12px; background: none; border: 1px solid #4a3030; color: #f87171; border-radius: 4px; cursor: pointer; font-size: 12px; transition: all 0.15s; }
.cart-remove-btn:hover { background: #4a3030; color: #fca5a5; }
.cart-sidebar { width: 300px; flex-shrink: 0; }
.cart-summary-box { background: #f0f4f8; border-radius: 8px; padding: 24px; position: sticky; top: 20px; }
.cart-summary-row { display: flex; justify-content: space-between; padding: 10px 0; color: #555555; font-size: 14px; }
.cart-summary-total { display: flex; justify-content: space-between; padding: 16px 0; margin-top: 10px; border-top: 1px solid #2a2a4a; color: #e0e0e0; font-size: 16px; font-weight: 600; }
.cart-pay-price { color: #ff6b6b; font-size: 22px; }
.cart-checkout-btn { width: 100%; margin-top: 20px; padding: 14px 0; background: linear-gradient(135deg, #22d3ee, #0ea5e9); color: #fff; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.cart-checkout-btn:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(34,211,238,0.3); }
.cart-freight { color: #4ade80; }
@media (max-width: 900px) {
    .cart-main { flex-direction: column; }
    .cart-sidebar { width: 100%; }
    .cart-table-header { display: none; }
    .cth-check, .cart-item-check { width: 36px; margin-left: -10px; }
    .cart-item { flex-wrap: wrap; gap: 8px; }
    .cart-item-info { flex: 0 0 100%; }
    .cart-item-price, .cart-item-qty, .cart-item-subtotal, .cart-item-action { flex: 0 0 auto; }
}

/* ══════════════════════════ 客服悬浮球 + 弹出面板 ══════════════════════════ */
.kefu-float-btn {
    position: fixed; bottom: 120px; right: 24px; z-index: 9999;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee, #0ea5e9);
    color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 4px 20px rgba(34,211,238,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    user-select: none;
}
.kefu-float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(34,211,238,0.6); }
.kefu-float-icon { font-size: 22px; line-height: 1; }
.kefu-float-text { font-size: 10px; margin-top: 1px; }

.kefu-popup-panel {
    position: fixed; bottom: 120px; right: 90px; z-index: 9998;
    width: 400px; height: 520px;
    background: #fff;
    border-radius: 12px 12px 0 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    display: none; flex-direction: column; overflow: hidden;
    transition: opacity 0.25s;
}
.kefu-popup-panel.open { display: flex; }
.kefu-popup-header {
    flex-shrink: 0;
    padding: 12px 16px;
    background: linear-gradient(135deg, #22d3ee, #0ea5e9);
    color: #fff;
    display: flex; justify-content: space-between; align-items: center;
}
.kefu-popup-title { font-size: 15px; font-weight: 600; }
.kefu-popup-close { font-size: 22px; cursor: pointer; line-height: 1; opacity: 0.8; }
.kefu-popup-close:hover { opacity: 1; }
.kefu-popup-body { flex: 1; min-height: 0; overflow: hidden; background: #f5f5f5; }
.kefu-popup-body iframe { width: 100%; height: 100%; border: none; }

.back-to-top-btn {
    position: fixed; bottom: 60px; right: 24px; z-index: 9997;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(26,26,46,0.75);
    color: #555555;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.back-to-top-btn.visible { opacity: 1; visibility: visible; }
.back-to-top-btn:hover { background: #22d3ee; color: #fff; }
.btt-arrow { font-size: 16px; }

@media (max-width: 768px) {
    .kefu-popup-panel { width: 90vw; right: 5vw; height: 60vh; bottom: 100px; }
    .kefu-float-btn { bottom: 80px; right: 16px; width: 48px; height: 48px; }
}



/* ══════════════════════════ PC 新闻 v2 ══════════════════════════ */
.news-page-v2 { padding-top: 24px; }
.news-hero-v2 { display: flex; gap: 16px; margin-bottom: 24px; min-height: 360px; }
.hero-main-v2 { flex: 1.5; position: relative; overflow: hidden; border-radius: 12px; display: block; text-decoration: none; }
.hero-main-bg { position: absolute; inset: 0; }
.hero-main-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-main-overlay { position: relative; z-index: 1; padding: 32px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(transparent 30%, rgba(0,0,0,0.75)); }
.hero-main-overlay .cat-tag { margin-bottom: 10px; }
.hero-main-title { font-size: 24px; font-weight: 700; color: #fff; margin: 0 0 10px; line-height: 1.3; text-shadow: 0 2px 4px rgba(0,0,0,0.08); }
.hero-main-desc { font-size: 14px; color: rgba(255,255,255,0.85); margin: 0 0 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-main-meta { font-size: 12px; color: rgba(255,255,255,0.6); display: flex; gap: 14px; }
.hero-side-v2 { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.hero-side-item { flex: 1; display: flex; gap: 10px; padding: 14px; background: #f0f4f8; border-radius: 8px; text-decoration: none; transition: background 0.15s; overflow: hidden; }
.hero-side-item:hover { background: #1e2a45; }
.hero-side-img { width: 100px; height: 80px; flex-shrink: 0; border-radius: 6px; overflow: hidden; background: #1a1a2e; }
.hero-side-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-side-text { min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.hero-side-text .cat-tag { align-self: flex-start; }
.hero-side-title { font-size: 14px; font-weight: 600; color: #e0e0e0; line-height: 1.4; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.hero-side-meta { font-size: 11px; color: #666666; }

/* 分类色标 */
.cat-tag { display: inline-block; padding: 2px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; color: #fff; }
.cat-1, .scat-1 .scat-dot { background: #ef4444; }
.cat-2, .scat-2 .scat-dot, .catbar-2 .catbar-dot { background: #f59e0b; }
.cat-3, .scat-3 .scat-dot, .catbar-3 .catbar-dot { background: #22d3ee; }
.cat-4, .scat-4 .scat-dot, .catbar-4 .catbar-dot { background: #8b5cf6; }
.cat-5, .scat-5 .scat-dot, .catbar-5 .catbar-dot { background: #ec4899; }
.cat-6, .scat-6 .scat-dot, .catbar-6 .catbar-dot { background: #10b981; }

/* 分类导航条 */
.news-catbar-v2 { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 0; margin-bottom: 20px; border-bottom: 1px solid #2a2a4a; }
.catbar-item { display: flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 20px; background: #f0f4f8; color: #555555; text-decoration: none; font-size: 13px; transition: all 0.2s; }
.catbar-item:hover { color: #e0e0e0; background: #1e2a45; }
.catbar-item.active { background: #22d3ee; color: #1a1a2e; font-weight: 600; }
.catbar-item.active .catbar-dot { background: #1a1a2e; }
.catbar-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.catbar-count { font-size: 11px; color: #666666; }
.catbar-item.active .catbar-count { color: rgba(15,15,35,0.7); }

/* 文章列表+侧栏 */
.news-body-v2 { display: flex; gap: 24px; align-items: flex-start; }
.news-main-v2 { flex: 1; min-width: 0; }
.news-card-v2 { display: flex; gap: 16px; padding: 16px; margin-bottom: 14px; background: #f0f4f8; border-radius: 10px; text-decoration: none; transition: background 0.15s; }
.news-card-v2:hover { background: #1e2a45; }
.news-card-img { width: 200px; height: 130px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: #1a1a2e; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-img-ph { display: flex; align-items: center; justify-content: center; font-size: 40px; color: #3a3a5c; }
.news-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.news-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.news-card-source { font-size: 11px; color: #666666; }
.news-card-title { font-size: 16px; font-weight: 600; color: #e0e0e0; margin: 0 0 8px; line-height: 1.35; }
.news-card-desc { font-size: 13px; color: #555555; margin: 0 0 10px; line-height: 1.5; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.news-card-meta { font-size: 11px; color: #666666; display: flex; gap: 12px; }

/* 侧栏 */
.news-sidebar-v2 { width: 300px; flex-shrink: 0; }
.sidebar-card-v2 { background: #f0f4f8; border-radius: 10px; padding: 20px; margin-bottom: 16px; }
.sidebar-heading-v2 { font-size: 15px; font-weight: 600; color: #e0e0e0; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid #2a2a4a; }

/* 热门排行 */
.hot-rank-v2 { list-style: none; padding: 0; margin: 0; }
.hot-rank-item { margin-bottom: 2px; }
.hot-rank-item a { display: flex; align-items: center; gap: 10px; padding: 8px 6px; border-radius: 6px; text-decoration: none; transition: background 0.15s; }
.hot-rank-item a:hover { background: #1e2a45; }
.hot-rank-num { width: 22px; text-align: center; font-size: 14px; font-weight: 700; color: #666666; flex-shrink: 0; }
.hot-rank-num.hot { color: #ef4444; }
.hot-rank-text { min-width: 0; }
.hot-rank-title { display: block; font-size: 13px; color: #c0c0c0; line-height: 1.4; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hot-rank-src { font-size: 11px; color: #666666; display: block; margin-top: 2px; }

/* 侧栏分类标签 */
.sidebar-cats-v2 { display: flex; flex-wrap: wrap; gap: 6px; }
.scat-item { display: flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 16px; background: #ffffff; color: #555555; text-decoration: none; font-size: 12px; transition: all 0.15s; }
.scat-item:hover { background: #1e2a45; color: #e0e0e0; }
.scat-item.active { background: #22d3ee; color: #1a1a2e; font-weight: 600; }
.scat-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.scat-item.active .scat-dot { background: #1a1a2e; }

/* RSS源展示 */
.sidebar-feed-v2 .feed-desc { font-size: 12px; color: #666666; margin: 0 0 10px; line-height: 1.5; }
.sidebar-feed-v2 .feed-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.sidebar-feed-v2 .feed-tags span { padding: 3px 8px; background: #ffffff; border-radius: 4px; font-size: 11px; color: #555555; font-weight: 600; }

/* 分页 */
.news-pagination-v2 { display: flex; justify-content: center; align-items: center; gap: 16px; padding: 24px 0; }
.pgn-btn { padding: 8px 20px; background: #f0f4f8; color: #555555; border-radius: 6px; text-decoration: none; font-size: 13px; transition: all 0.2s; }
.pgn-btn:hover { background: #22d3ee; color: #1a1a2e; }
.pgn-info { font-size: 13px; color: #666666; }

/* 空状态 */
.news-empty-v2 { text-align: center; padding: 60px 20px; color: #666666; }
.empty-icon-v2 { font-size: 56px; display: block; margin-bottom: 12px; }

@media (max-width: 900px) {
    .news-hero-v2 { flex-direction: column; }
    .hero-main-v2 { min-height: 240px; }
    .hero-side-v2 { flex-direction: row; }
    .hero-side-item { flex: 1 1 auto; }
    .hero-side-img { width: 70px; height: 60px; }
    .news-body-v2 { flex-direction: column; }
    .news-sidebar-v2 { width: 100%; }
    .news-card-v2 { flex-direction: column; }
    .news-card-img { width: 100%; height: 180px; }
}


/* === Custom Alert Modal === */
.stock-alert-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    animation: alertFadeIn 0.2s ease;
}
@keyframes alertFadeIn { from { opacity: 0; } to { opacity: 1; } }
.stock-alert-box {
    background: #f0f4f8; border: 1px solid #22d3ee; border-radius: 12px;
    padding: 32px 40px; max-width: 420px; width: 90%; text-align: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08); animation: alertSlideIn 0.25s ease;
}
@keyframes alertSlideIn { from { transform: translateY(-30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.stock-alert-icon {
    font-size: 44px; margin-bottom: 16px; color: #22d3ee;
}
.stock-alert-msg {
    color: #e0e0e0; font-size: 16px; line-height: 1.6; margin-bottom: 24px;
    word-break: break-all;
}
.stock-alert-btn {
    display: inline-block; padding: 10px 36px; background: #22d3ee;
    color: #1a1a2e; border: none; border-radius: 6px; font-size: 15px;
    font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.stock-alert-btn:hover { background: #06b6d4; }

/* ========== Lens Recommend (商品详情页镜头推荐) ========== */
.lens-recommend-section {
    margin-bottom: 24px;
}

.lens-recommend-section .section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.lens-recommend-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.lens-item {
    display: block;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.lens-item:hover {
    border-color: #22d3ee;
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.12);
    transform: translateY(-2px);
}

.lens-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #ffffff;
}

.lens-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.lens-item:hover .lens-img-wrap img {
    transform: scale(1.04);
}

.lens-no-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
    font-size: 13px;
}

.lens-info {
    padding: 12px 14px 14px;
}

.lens-name, .lens-item-name {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
}

.lens-price, .lens-item-price {
    font-size: 15px;
    font-weight: 600;
    color: #e53e3e;
}

.order-detail-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(30,41,59,0.1);
    overflow: hidden;
}
.order-detail-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #f8fafc;
    border-bottom: 1px solid rgba(30,41,59,0.08);
}
.od-info { font-size: 14px; color: #1e293b; }
.od-label { color: #94a3b8; }
.od-status-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(56,189,248,0.1);
    color: #38bdf8;
}
.order-detail-bd { padding: 24px; }
.od-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(30,41,59,0.06);
}
.od-section:last-child { margin-bottom: 0; border-bottom: none; }
.od-section h4 {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
    padding-left: 10px;
    border-left: 3px solid #38bdf8;
}
.od-section p {
    font-size: 13px;
    color: #475569;
    line-height: 2;
    margin: 0;
}
.od-goods-table {
    width: 100%;
    border-collapse: collapse;
}
.od-goods-table th {
    padding: 10px 12px;
    font-size: 12px;
    color: #94a3b8;
    text-align: left;
    border-bottom: 1px solid rgba(30,41,59,0.08);
    font-weight: 500;
}
.od-goods-table td {
    padding: 12px;
    font-size: 13px;
    color: #334155;
    border-bottom: 1px solid rgba(30,41,59,0.04);
    vertical-align: middle;
}
.od-goods-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}
.od-goods-img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    object-fit: contain;
    background: #f1f5f9;
    border: 1px solid rgba(30,41,59,0.06);
    flex-shrink: 0;
}
.order-detail-ft {
    padding: 16px 24px;
    border-top: 1px solid rgba(30,41,59,0.08);
    text-align: right;
    background: #f8fafc;
}
.btn-sm {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(56,189,248,0.3);
    color: #38bdf8;
    background: transparent;
    transition: all 0.2s;
}
.btn-sm:hover {
    background: rgba(56,189,248,0.1);
}
.btn-sm-danger {
    border-color: rgba(239,68,68,0.3);
    color: #ef4444;
}
.btn-sm-danger:hover {
    background: rgba(239,68,68,0.1);
}
.btn-back {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 12px;
    text-decoration: none;
    color: #64748b;
    border: 1px solid rgba(100,116,139,0.2);
    transition: all 0.2s;
}
.btn-back:hover {
    background: rgba(100,116,139,0.05);
    color: #334155;
}
.btn-pay {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    background: #e94560;
    color: #fff;
    border: none;
    transition: all 0.2s;
    margin-right: 10px;
}
.btn-pay:hover { background: #d63851; }

/* ============================================================
   装备列表页 — 商品卡片网格
   ============================================================ */
.equip-list {
    position: relative;
}

.goods-item {
    position: relative;
}

.equip-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    background: rgba(0,0,0,0.45);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
    z-index: 2;
}

.goods-item:hover .equip-remove {
    opacity: 1;
}

.equip-remove:hover {
    background: #ef4444;
}

.empty-hint {
    text-align: center;
    padding: 60px 20px;
    color: #999999;
}

.empty-hint p {
    font-size: 16px;
    margin-bottom: 16px;
}

.empty-link {
    display: inline-block;
    padding: 8px 24px;
    background: #e94560;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.empty-link:hover {
    background: #d63851;
}

.loading-tip {
    text-align: center;
    padding: 40px;
    color: #999999;
    font-size: 14px;
}

/* 骨架屏 */
.page-skeleton {
    display: flex;
    gap: 20px;
}

.page-skeleton .sk-sidebar {
    width: 220px;
    min-height: 400px;
}

.page-skeleton .sk-content {
    flex: 1;
}

.page-skeleton .sk-banner {
    height: 100px;
    margin-bottom: 20px;
}

.page-skeleton .sk-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-skeleton .sk-li {
    height: 80px;
}

.skeleton-box {
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes skeleton-pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== 机主点评 (PC) ===== */
.review-section-pc { min-height: 200px; padding: 20px 0; }
.review-empty-pc { text-align: center; color: #999999; font-size: 15px; padding: 80px 0; }
.review-card-pc {
    padding: 20px 0; border-bottom: 1px solid #e5e7eb;
}
.review-card-pc:first-child { padding-top: 0; }
.review-hd-pc { display: flex; align-items: center; margin-bottom: 12px; }
.review-avatar-pc {
    width: 44px; height: 44px; border-radius: 50%; margin-right: 12px;
    object-fit: cover; background: #e5e7eb;
}
.review-meta-pc { display: flex; flex-direction: column; }
.review-name-pc { font-size: 14px; color: #000000; font-weight: 600; }
.review-time-pc { font-size: 12px; color: #888888; margin-top: 2px; }
.review-body-pc { font-size: 14px; color: #000000; line-height: 1.7; margin-bottom: 12px; }
.review-imgs-pc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.review-imgs-pc img {
    width: 100px; height: 100px; border-radius: 6px; cursor: pointer;
    object-fit: cover; background: #f0f0f0; border: 1px solid #e5e7eb;
}
.review-ft-pc { display: flex; gap: 24px; font-size: 13px; color: #888888; }
.review-like-pc { cursor: pointer; color: #888888; }
.review-like-pc.liked { color: #c9a96e; }
.review-like-icon-pc { width: 18px; height: 18px; vertical-align: middle; margin-right: 2px; }
.review-load-more-pc { text-align: center; color: #c9a96e; font-size: 13px; padding: 16px 0; cursor: pointer; }
.review-load-more-pc:hover { color: #d4b87a; }

/* ===== 机主点评 评论/跟评 (PC) ===== */
.review-comment-link-pc { color: #888888; text-decoration: none; cursor: pointer; }
.review-comment-link-pc:hover { color: #c9a96e; }
.review-delete-pc {
    color: #e74c3c; text-decoration: none; cursor: pointer; font-size: 13px;
    margin-left: auto;
}
.review-delete-pc:hover { color: #ff6b6b; }
.review-comments-pc { margin-top: 12px; padding-top: 12px; border-top: 1px solid #e5e7eb; }
.comment-item-pc { display: flex; align-items: flex-start; margin-bottom: 14px; }
.comment-avatar-pc { width: 32px; height: 32px; border-radius: 50%; margin-right: 10px; object-fit: cover; background: #e5e7eb; flex-shrink: 0; }
.comment-content-pc { display: flex; flex-direction: column; }
.comment-name-pc { font-size: 12px; color: #555555; margin-bottom: 2px; }
.comment-time-pc { font-size: 11px; color: #888888; margin-left: 8px; }
.comment-text-pc { font-size: 13px; color: #333333; line-height: 1.6; margin-top: 4px; }
.comment-form-pc { display: flex; gap: 8px; margin-bottom: 14px; margin-top: 4px; }
.comment-input-pc { flex: 1; min-height: 36px; padding: 8px 12px; border: 1px solid #cccccc; border-radius: 6px; background: #fafafa; color: #333333; font-size: 13px; resize: vertical; outline: none; box-sizing: border-box; }
.comment-input-pc:focus { border-color: #c9a96e; }
.comment-btn-pc { padding: 6px 18px; background: #c9a96e; color: #1a1a2e; border: none; border-radius: 6px; font-size: 12px; cursor: pointer; font-weight: 600; }
.comment-btn-pc:hover { background: #d4b87a; }
.comment-loading-pc { text-align: center; color: #888888; font-size: 13px; padding: 16px 0; }
.comment-empty-pc { text-align: center; color: #888888; font-size: 13px; padding: 12px 0; }
.comment-load-more-pc { text-align: center; color: #666666; font-size: 12px; padding: 10px 0; cursor: pointer; }
.comment-load-more-pc:hover { color: #c9a96e; }

/* ===== 机主点评 发布入口 (PC) ===== */
.review-action-bar-pc { text-align: right; padding: 0 0 16px; }
.review-post-btn-pc { padding: 8px 24px; background: #c9a96e; color: #1a1a2e; border: none; border-radius: 6px; font-size: 14px; cursor: pointer; font-weight: 600; }
.review-post-btn-pc:hover { background: #d4b87a; }
.review-modal-overlay-pc { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); z-index: 9999; display: flex; align-items: center; justify-content: center; animation: skuFadeIn 0.2s ease; }
.review-modal-panel-pc { background: #141428; border-radius: 16px; width: 520px; max-height: 85vh; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.5); border: 1px solid #2a2a4a; animation: skuSlideUp 0.25s ease; }
.review-modal-header-pc { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid #1e293b; }
.review-modal-header-pc h3 { margin: 0; font-size: 17px; font-weight: 600; color: #e8eaed; }
.review-modal-close-pc { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 20px; color: #888888; cursor: pointer; transition: all 0.15s; }
.review-modal-close-pc:hover { background: rgba(255,255,255,0.08); color: #e8eaed; }
.review-modal-body-pc { padding: 20px 24px; flex: 1; overflow-y: auto; }
.review-modal-textarea-pc { width: 100%; min-height: 120px; padding: 14px 16px; border: 1px solid #2a2a4a; border-radius: 10px; background: #0d0d1a; color: #e2e8f0; font-size: 14px; line-height: 1.7; resize: vertical; outline: none; }
.review-modal-textarea-pc:focus { border-color: #c9a96e; }
.review-modal-textarea-pc::placeholder { color: #666688; }
.review-modal-footer-pc { padding: 14px 24px; border-top: 1px solid #1e293b; display: flex; justify-content: flex-end; gap: 10px; }
.review-modal-cancel-pc { padding: 8px 22px; background: transparent; color: #8899aa; border: 1px solid #2a2a4a; border-radius: 8px; font-size: 14px; cursor: pointer; transition: all 0.15s; }
.review-modal-cancel-pc:hover { border-color: #556677; color: #ccddee; }
.review-modal-submit-pc { padding: 8px 26px; background: #c9a96e; color: #141428; border: none; border-radius: 8px; font-size: 14px; cursor: pointer; font-weight: 600; transition: all 0.15s; }
.review-modal-submit-pc:hover { background: #d4b87a; }

.review-confirm-overlay-pc { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); z-index: 10000; display: flex; align-items: center; justify-content: center; animation: skuFadeIn 0.2s ease; }
.review-confirm-panel-pc { background: #141428; border-radius: 16px; width: 420px; padding: 32px 28px 24px; text-align: center; box-shadow: 0 24px 80px rgba(0,0,0,0.5); border: 1px solid #2a2a4a; animation: skuSlideUp 0.25s ease; }
.review-confirm-icon-pc { font-size: 40px; margin-bottom: 16px; }
.review-confirm-text-pc { color: #c9d1db; font-size: 15px; line-height: 1.8; margin: 0 0 24px; }
.review-confirm-btns-pc { display: flex; justify-content: center; gap: 12px; }
.review-confirm-cancel-pc { padding: 9px 24px; background: transparent; color: #8899aa; border: 1px solid #2a2a4a; border-radius: 8px; font-size: 14px; cursor: pointer; transition: all 0.15s; }
.review-confirm-cancel-pc:hover { border-color: #556677; color: #ccddee; }
.review-confirm-ok-pc { padding: 9px 24px; background: #c9a96e; color: #141428; border: none; border-radius: 8px; font-size: 14px; cursor: pointer; font-weight: 600; transition: all 0.15s; }
.review-confirm-ok-pc:hover { background: #d4b87a; }

/* ===== 样片赏析 (PC) ===== */
.sample-grid-pc {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 20px 0;
    min-height: 200px;
}
.sample-empty-pc { text-align: center; color: #999999; font-size: 15px; padding: 80px 0; grid-column: 1 / -1; }
.sample-loading-pc { text-align: center; color: #888888; font-size: 15px; padding: 80px 0; grid-column: 1 / -1; }
.sample-card-pc {
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.sample-card-pc:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.sample-img-wrap-pc { position: relative; width: 100%; padding-top: 100%; overflow: hidden; background: #f0f0f0; }
.sample-img-pc {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; cursor: pointer; transition: transform 0.3s;
}
.sample-img-pc:hover { transform: scale(1.05); }
.sample-delete-pc {
    position: absolute; top: 6px; right: 6px; width: 24px; height: 24px;
    background: rgba(0,0,0,0.5); color: #ffffff; border-radius: 50%;
    text-align: center; line-height: 22px; font-size: 14px; cursor: pointer; z-index: 2;
}
.sample-delete-pc:hover { background: rgba(220,50,50,0.8); }
.sample-info-pc { padding: 10px 12px 12px; }
.sample-content-pc { font-size: 13px; color: #333333; line-height: 1.6; margin-bottom: 8px; }
.sample-exif-pc { padding: 6px 0 8px; }
.sample-exif-item-pc { display: block; font-size: 12px; color: #888888; line-height: 1.6; margin-bottom: 2px; }
.sample-exif-item-pc:last-child { margin-bottom: 0; }
.sample-ft-pc { display: flex; justify-content: space-between; font-size: 12px; color: #888888; }
.sample-like-pc { cursor: pointer; color: #999999; }
.sample-like-pc.liked { color: #e74c3c; }
.sample-comment-link-pc { color: #888888; text-decoration: none; cursor: pointer; }
.sample-comment-link-pc:hover { color: #c9a96e; }
.sample-comments-pc { margin-top: 10px; padding-top: 8px; border-top: 1px solid #e5e7eb; }
.sample-load-more-pc { text-align: center; color: #c9a96e; font-size: 13px; padding: 16px 0; cursor: pointer; grid-column: 1 / -1; }
.sample-load-more-pc:hover { color: #d4b87a; }

.sample-action-bar-pc { text-align: right; padding: 0 0 16px; }
.sample-upload-btn-pc { padding: 8px 24px; background: #c9a96e; color: #1a1a2e; border: none; border-radius: 6px; font-size: 14px; cursor: pointer; font-weight: 600; }
.sample-upload-btn-pc:hover { background: #d4b87a; }

.sample-upload-modal-pc {
    display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999; align-items: center; justify-content: center;
}
.sample-modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); }
.sample-modal-content {
    position: relative; width: 520px; max-width: 90%; max-height: 90vh;
    background: #ffffff; border-radius: 12px; overflow: hidden; z-index: 1;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.sample-modal-hd { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid #e5e7eb; font-size: 16px; font-weight: 600; color: #1a1a2e; }
.sample-modal-close { cursor: pointer; font-size: 22px; color: #888888; }
.sample-modal-close:hover { color: #333333; }
.sample-modal-body { padding: 20px; }
.sample-upload-preview { margin-bottom: 12px; text-align: center; }
.sample-upload-preview img { max-width: 100%; max-height: 300px; border-radius: 8px; }
.sample-upload-drop {
    border: 2px dashed #cccccc; border-radius: 8px; padding: 40px;
    text-align: center; color: #888888; cursor: pointer; font-size: 14px;
    margin-bottom: 12px; transition: border-color 0.2s;
}
.sample-upload-drop:hover { border-color: #c9a96e; color: #c9a96e; }
.sample-drop-icon { display: block; font-size: 36px; margin-bottom: 8px; }
.sample-upload-textarea-pc {
    width: 100%; min-height: 80px; padding: 12px; margin-bottom: 12px;
    border: 1px solid #cccccc; border-radius: 6px; background: #fafafa;
    color: #333333; font-size: 13px; resize: vertical; outline: none; box-sizing: border-box;
}
.sample-upload-textarea-pc:focus { border-color: #c9a96e; }
.sample-upload-actions { text-align: right; }

/* 样片大图预览 (PC) */
.sample-img-preview-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92); z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.sample-img-preview-overlay.zoomed {
    overflow: auto; cursor: zoom-out;
}
.sample-img-preview-close {
    position: fixed; top: 20px; right: 30px;
    font-size: 40px; color: #cccccc; z-index: 10001;
    line-height: 1; cursor: pointer;
}
.sample-img-preview-close:hover { color: #ffffff; }
.sample-img-preview-overlay img {
    max-width: 92vw; max-height: 92vh; flex-shrink: 0;
    object-fit: contain; cursor: zoom-in;
    border-radius: 4px;
    transition: opacity 0.3s;
}
.sample-img-preview-overlay.zoomed img {
    max-width: none; max-height: none;
    cursor: zoom-out;
}
