:root {
    --primary: #BE123C;
    --primary-dark: #9F1239;
    --primary-light: #FFE4E6;
    --secondary: #EF4444;
    --background: #FEF1F2;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-800: #1e293b;
    --search-bg: #f8fafc;
    --search-border: #9ca3af;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    padding-bottom: 50px;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
ul {
    list-style: none;
}
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0px;
}
.main-layout {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.main-content {
    flex: 0 0 830px;
    min-width: 0;
}
.sidebar {
    flex: 1;
    min-width: 330px;
}
.site-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(190, 18, 60, 0.25);
    height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-link {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    padding: 4px 0;
}
.logo-text-brand {
    font-size: 1.4rem;
    color: var(--white);
    margin-left: -10px;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.logo-link > span:not(.logo-text-brand) {
    font-size: 0.85rem;
    opacity: 0.85;
    white-space: nowrap;
    margin-left: 5px;
}
.city-selector {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.sub-text {
    font-size: 14px;
    position: relative;
    top: 2px;
}
.btn-city {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    will-change: transform;
    animation: gentle-breathe 3s ease-in-out infinite;
}
.btn-city:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}
.city-popup {
    position: absolute;
    top: 100%;
    right: 0;
    width: auto;
    min-width: 220px;
    max-width: min(400px, calc(100vw - 32px));
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 20px;
    margin-top: 12px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.city-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.city-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}
.city-item {
    padding: 8px 5px;
    text-align: center;
    background: var(--gray-50);
    border-radius: var(--radius);
    color: var(--text-primary);
    transition: var(--transition);
    font-size: 0.9rem;
    white-space: nowrap;
    border: 1px solid var(--border);
}
.city-item:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.25);
}

@keyframes gentle-breathe {
    0%, 100% {
        transform: scale(1);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.03);
        background: rgba(255, 255, 255, 0.25);
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
    }
}

.more-cities {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-top: 10px;
}
.more-cities a {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.more-cities a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
.head-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px;
    background-color: var(--white);
    border: 1px solid var(--border);
    position: sticky;
    top: 48px;
    z-index: 99;
    margin-top: 0;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.search-form {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 8px;
}
.search-input {
    flex: 1;
    position: relative;
    min-width: 0;
}
.search-input input[type="search"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--search-border);
    border-radius: var(--radius);
    font-size: 16px;
    background: var(--search-bg);
    transition: var(--transition);
    -webkit-appearance: none;
    min-height: 40px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}
.search-input input[type="search"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(190, 18, 60, 0.2), inset 0 1px 2px rgba(0, 0, 0, 0.05);
}
.search-btn {
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 44px;
    box-shadow: 0 4px 6px rgba(190, 18, 60, 0.2);
}
.search-btn:hover {
    background: var(--primary-dark);
}
.content-section {
    margin: 15px 0;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--white), var(--gray-50));
}
.sidebar .content-section:first-child {
    margin-top: 0;
}
.content-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-200);
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    flex-wrap: nowrap;
}

.section-title > * {
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--primary);
    border-radius: 3px;
}
.wechat-notice {
    font-size: 14px;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid var(--border);
    white-space: nowrap;
}
.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 5px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-800) var(--gray-200);
}
.scroll-container::-webkit-scrollbar {
    height: 8px;
}
.scroll-container::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 4px;
}
.scroll-container::-webkit-scrollbar-thumb {
    background: var(--gray-800);
    border-radius: 4px;
}
.scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--text-primary);
}
.scroll-item {
    flex: 0 0 auto;
    min-width: 120px;
    padding: 10px 6px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    scroll-snap-align: start;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.scroll-item:hover, .scroll-item.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.info-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    transition: var(--transition);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.info-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.info-item:last-child {
    border-bottom: none;
}
.info-item img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}
.info-item:hover img {
    transform: scale(1.05);
}
.info-item .info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    margin: 5px 10px;
}
.info-item .info-content h3 {
    margin: 0;
    font-size: 19px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    color: var(--gray-800);
}
.info-item .info-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    line-height: 40px;
}
.info-item .info-content h3 a:hover {
    color: var(--primary);
}
.info-item .info-content .intro {
    margin: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
}
.info-item .info-content .info-meta {
    font-size: 14px;
    color: var(--gray-800);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.no-data {
    text-align: center;
    padding: 40px 15px;
    color: var(--gray-800);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: 17px;
    background: linear-gradient(135deg, var(--white), var(--gray-50));
}
.sidebar-section {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--white), var(--gray-50));
}
.sidebar-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.sidebar-title {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    position: relative;
    font-weight: 600;
}
.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sidebar-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
    padding: 7px 0;
    border-bottom: 1px dashed var(--border);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-list a:last-child {
    border-bottom: none;
}
.sidebar-list a:hover, .sidebar-list a.on {
    color: var(--primary);
    font-weight: 500;
}
.sidebar-list a.on {
    font-weight: 600;
}
.sidebar-grid {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    flex-wrap: wrap;
}
.sidebar-grid a {
    flex: 0 0 auto;
    min-width: 70px;
    padding: 8px 6px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
    transition: var(--transition);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.sidebar-grid a:hover,
.sidebar-grid a.on {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.sidebar-grid a.on {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.pagination {
    margin: 20px;
    text-align: center;
}
.pagination li {
    float: left;
    text-decoration: none;
    list-style-type: none;
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 5px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--gray-800);
    border: 1px solid var(--border);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.pagination a:hover, .pagination li.active a {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.pagination span {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 12px rgba(190, 18, 60, 0.15);
    z-index: 999;
    padding: 10px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
}
.nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}
.nav-link, .nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    padding: 8px 4px;
    transition: var(--transition);
    border-radius: 14px;
    margin: 0 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: calc(100% - 12px);
    text-decoration: none;
}
.nav-link:hover, .nav-button:hover {
    color: var(--primary);
    background: rgba(190, 18, 60, 0.05);
}
.nav-icon {
    font-size: 22px;
    margin-bottom: 5px;
    display: block;
    height: 26px;
    line-height: 26px;
    padding: 1px 0;
    color: var(--primary);
}
.nav-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}
.nav-icon-svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
.site-footer {
    background: var(--white);
    color: var(--text-primary);
    padding: 25px 0 80px 0;
    margin-top: 25px;
    border-top: 1px solid var(--border);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.footer-links-container {
    text-align: center;
    width: 100%;
}
.footer-links-container a {
    display: inline-block;
    padding: 3px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    color: var(--text-secondary);
}
.footer-links-container a:hover {
    background-color: var(--primary);
    color: var(--white);
}
.copy-toast {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}
.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.section {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--white), var(--gray-50));
}
.section-header {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}
.friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.friend-links a {
    display: inline-block;
    padding: 8px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}
.friend-links a:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.sellers-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.seller-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    gap: 12px;
    min-height: 50px;
}
.seller-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}
.seller-info {
    flex: 1;
    display: flex;
    min-width: 0;
    overflow: hidden;
}
.seller-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}
.seller-phone {
    font-size: 14px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
    max-width: 100px;
}
.call-btn {
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(190, 18, 60, 0.2);
    border: 1px solid transparent;
    min-width: 60px;
    cursor: pointer;
}
.call-btn:hover {
    background: var(--primary-dark);
}

.main-layout {
    align-items: flex-start;
}

.main-content .content-section:first-child,
.sidebar .content-section:first-child {
    margin-top: 0;
}

.compliance-banner {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 20px 0 10px 0;
    border-radius: 0;
    position: fixed;
    bottom: 53px;
    left: 0;
    right: 0;
    z-index: 1000;
}
.compliance-banner strong {
    color: #ffd700;
    font-weight: bold;
}
#copyNumberBtn {
    animation: copyFlash 4s infinite;
}

.nav-item a[href^="tel:"] {
    animation: callFlash 4s infinite;
}

@keyframes callFlash {
    0%, 50% { opacity: 1; }
    62.5% { opacity: 0.3; }
    75%, 100% { opacity: 1; }
}

@keyframes copyFlash {
    0%, 62.5% { opacity: 1; }
    75% { opacity: 0.3; }
    87.5%, 100% { opacity: 1; }
}
@media (max-width: 768px) {
    .container {
        padding: 0px;
    }
    .main-layout {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
	margin-top: 8px;
    }
    .sidebar {
        width: 100%;
        order: 2;
        max-width: none;
    }
    .main-content {
        order: 1;
        flex: 0 0 auto;
        width: 100%;
    }
    .header-container {
        padding: 0 8px;
    }
    .logo-link {
        font-size: 0.9rem;
    }
    .logo-text-brand {
        font-size: 1.2rem;
    }
    .head-bar {
        display: none;
    }
    .content-section {
        margin: 8px 0;
        padding: 14px;
    }
    .section-title {
        font-size: 20px;
        margin-bottom: 12px;
        padding: 0 0 8px 0;
    }
    .info-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        box-shadow: var(--shadow);
        border-radius: var(--radius);
    }
    .info-item img {
        width: 90px;
        height: 90px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }
    .info-item .info-content {
        flex: 1;
        min-width: 0;
    }
    .info-item .info-content h3 {
        font-size: 16px;
    }
    .info-item .info-content .intro {
        font-size: 14px;
    }
    .info-item .info-content .info-meta {
        font-size: 12px;
    }
    .sidebar-section {
        margin-bottom: 8px;
        padding: 14px;
    }
    .search-form {
        gap: 6px;
    }
    .search-input input[type="search"] {
        padding: 12px 14px;
        font-size: 15px;
        min-height: 44px;
        border-radius: var(--radius);
    }
    .search-btn {
        padding: 12px 18px;
        font-size: 15px;
        min-height: 44px;
        border-radius: var(--radius);
    }
    .city-selector {
        margin-left: auto;
    }
    .city-popup {
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        max-width: none;
        min-width: 0;
        height: calc(100vh - 124px);
        margin: 0;
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 1002;
        padding-top: 20px;
    }
    .city-popup.active {
        transform: translateX(0);
        height: 270px;
    }
    .city-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .city-item {
        padding: 14px 10px;
        font-size: 1rem;
    }
    .more-cities a {
        font-size: 1rem;
    }
    .seller-item {
        padding: 12px 16px;
        gap: 12px;
        min-height: 60px;
        flex-direction: row;
    }
    .seller-info {
        gap: 12px;
        flex-direction: row;
    }
    .seller-name {
        font-size: 16px;
    }
    .seller-phone {
        font-size: 15px;
        max-width: 100px;
    }
    .call-btn {
        padding: 8px 14px;
        font-size: 14px;
        min-width: 65px;
    }
    .wechat-notice {
        font-size: 14px;
        padding: 6px 12px;
    }
    .bottom-nav {
        padding: 8px 0;
    }
    .nav-link, .nav-button {
        padding: 6px 2px;
        margin: 0 3px;
    }
    .nav-icon {
        font-size: 20px;
        height: 24px;
        line-height: 24px;
        margin-bottom: 4px;
    }
    .nav-text {
        font-size: 11px;
    }
    .site-footer {
        padding: 18px 0 70px 0;
    }
    .footer-container {
        padding: 0 10px;
        gap: 10px;
    }
    .footer-links-container {
        gap: 10px;
        padding: 0 5px;
        justify-content: flex-start;
    }
    .footer-links-container a {
        padding: 3px;
        font-size: 14px;
    }
    .sidebar-grid {
        gap: 10px;
    }
    .sidebar-grid a {
        min-width: 60px;
        padding: 6px 4px;
        font-size: 12px;
        border-radius: var(--radius);
    }
    .scroll-item {
        min-width: 100px;
        padding: 8px 4px;
        font-size: 13px;
        border-radius: var(--radius);
    }
    .section {
        margin: 8px 0;
        padding: 14px;
    }
    .section-header {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .friend-links {
        gap: 10px;
    }
    .friend-links a {
        padding: 6px 12px;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0px;
    }
    .main-layout {
        gap: 8px;
    }
    .header-container {
        padding: 0 8px;
    }
    .logo-link {
        margin-left: 3px;
    }
    .head-bar {
        display: none;
    }
    .content-section {
        margin: 8px 0;
        padding: 10px;
    }
    .section-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .info-item {
        padding: 10px 0;
        gap: 10px;
    }
    .info-item img {
        width: 80px;
        height: 80px;
    }
    .info-item .info-content h3 {
        font-size: 15px;
    }
    .info-item .info-content .intro {
        font-size: 13px;
    }
    .sidebar-section {
        margin-bottom: 8px;
        padding: 10px;
    }
    .search-form {
        gap: 4px;
    }
    .search-input input[type="search"] {
        padding: 10px 12px;
        font-size: 16px;
        min-height: 40px;
        border-radius: var(--radius);
    }
    .search-btn {
        padding: 10px 14px;
        font-size: 14px;
        min-height: 40px;
        border-radius: var(--radius);
    }
    .seller-item {
        padding: 10px 12px;
        gap: 10px;
        flex-direction: row;
    }
    .seller-info {
        gap: 10px;
        flex-direction: row;
    }
    .seller-name {
        font-size: 14px;
    }
    .seller-phone {
        font-size: 13px;
        max-width: 80px;
    }
    .call-btn {
        padding: 6px 12px;
        font-size: 13px;
        min-width: 55px;
    }
    .wechat-notice {
        font-size: 12px;
        padding: 4px 10px;
    }
    .nav-link, .nav-button {
        padding: 5px 1px;
        margin: 0 2px;
    }
    .nav-icon {
        font-size: 18px;
        height: 20px;
        line-height: 20px;
    }
    .nav-text {
        font-size: 10px;
    }
    .sidebar-grid {
        gap: 10px;
    }
    .sidebar-grid a {
        min-width: 55px;
        padding: 5px 3px;
        font-size: 11px;
        border-radius: var(--radius);
    }
    .scroll-item {
        min-width: 90px;
        padding: 6px 3px;
        font-size: 12px;
        border-radius: var(--radius);
    }
    .site-footer {
        padding: 12px 0 65px 0;
    }
    .footer-links-container {
        gap: 8px;
        padding: 0 5px;
    }
    .footer-links-container a {
        padding: 2px;
        font-size: 13px;
    }
    .section {
        margin: 8px 0;
        padding: 10px;
    }
    .section-header {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .friend-links {
        gap: 8px;
    }
    .friend-links a {
        padding: 5px 10px;
        font-size: 13px;
    }
}