/* 茅台酒回收行业专用CSS - 红色金色主题 */
:root {
    --primary-red: #9e2a2b; /* 茅台红 */
    --primary-gold: #d4af37; /* 茅台金 */
    --dark-bg: #1a1a1a; /* 深色背景 */
    --light-bg: #f8f5f0; /* 浅米色背景 */
    --text-dark: #333333; /* 主要文字颜色 */
    --text-light: #ffffff; /* 浅色文字 */
    --border-color: #e0d6c9; /* 边框颜色 */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 阴影效果 */
}

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 头部样式 */
.header {
    background: linear-gradient(135deg, var(--primary-red) 0%, #7a1c1d 100%);
    color: var(--text-light);
    padding: 12px 0;
    box-shadow: var(--shadow);
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ... 您原有的CSS ... */

/* 确保 logo 容器能正确显示其子元素 */
.logo a {
    text-decoration: none;
    display: block; /* 或 inline-block，取决于布局需求 */
}

/* 为文字Logo添加样式，继承或覆盖 .logo 的部分样式 */
.site-name-text {
    font-size: 20px; /* 设置合适的字体大小 */
    font-weight: bold;
    color: white; /* 设置文字颜色与头部背景协调 */
    /* 如果需要特定字体 */
    /* font-family: 'Your-Preferred-Font', sans-serif; */
    /* 如果原来 .logo 有宽高设置，可能需要调整或移除 */
    /* display: flex; align-items: center; justify-content: center; */
    /* height: 100%; */ /* 如果.logo a 是固定高度的block */
}

/* ... 您原有的CSS ... */

/* 响应式调整文字Logo大小 */
@media (max-width: 600px) {
    .site-name-text {
        font-size: 18px; /* 在小屏幕上调整大小 */
    }
    /* ... 您原有的响应式CSS ... */
}

.header-title {
    flex: 1;
    margin: 0 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.header-actions a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    padding: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.header-actions a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 分类导航 */
.category-nav {
    background: var(--light-bg);
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border: 1px solid var(--border-color);
}

.category-nav a {
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    color: var(--text-dark);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.category-nav a:hover,
.category-nav a.on {
    background: var(--primary-red);
    color: var(--text-light);
    border-color: var(--primary-red);
}

/* 区域导航 */
.area-nav {
    background: white;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border: 1px solid var(--border-color);
}

.area-nav a {
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    color: var(--text-dark);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.area-nav a:hover,
.area-nav a.on {
    background: var(--primary-gold);
    color: var(--text-dark);
    border-color: var(--primary-gold);
}

/* 城市导航 */
.city-nav {
    background: white;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border: 1px solid var(--border-color);
}

.city-nav a {
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    color: var(--text-dark);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.city-nav a:hover,
.city-nav a.on {
    background: var(--primary-red);
    color: var(--text-light);
    border-color: var(--primary-red);
}

/* 内容区块 */
.section {
    background: white;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.section-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, #7a1c1d 100%);
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

/* 推荐回收商家 */
.sellers-list {
    padding: 20px;
}

.seller-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.seller-item:last-child {
    border-bottom: none;
}

.seller-info {
    flex: 1;
}

.seller-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.seller-phone {
    color: var(--primary-red);
    font-size: 15px;
    font-weight: 500;
}

.seller-actions {
    display: flex;
    gap: 10px;
}

.copy-btn, .call-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.copy-btn {
    background: var(--primary-gold);
    color: var(--text-dark);
}

.copy-btn:hover {
    background: #c19b2e;
}

.call-btn {
    background: var(--primary-red);
    color: var(--text-light);
}

.call-btn:hover {
    background: #8c2526;
}

.vip-tip {
    font-size: 12px;
    color: var(--primary-gold);
    font-weight: bold;
    margin-left: 10px;
    background: rgba(212, 175, 55, 0.1);
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid var(--primary-gold);
}

/* 信息列表 */
.info-list {
    padding: 20px;
}

.ui-list-mix {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.ui-list-mix:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.ui-list-mix img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
    border: 1px solid var(--border-color);
}

.ui-list-mix .info {
    flex: 1;
}

.ui-list-mix h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.ui-list-mix h3 a {
    color: var(--text-dark);
}

.ui-list-mix h3 a:hover {
    color: var(--primary-red);
}

.ui-list-mix .intro {
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ui-list-mix .meta {
    display: flex;
    gap: 15px;
    color: #999;
    font-size: 13px;
}

.ui-ico-time, .ui-ico-hits {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* 文本列表 */
.text-list {
    padding: 20px;
}

.ui-list-txt {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.ui-list-txt:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.ui-list-txt a {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.ui-list-txt a:hover {
    color: var(--primary-red);
}

.ui-list-txt .intro {
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.ui-list-txt .meta {
    display: flex;
    gap: 15px;
    color: #999;
    font-size: 13px;
}

/* 详情页样式 */
.detail-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    line-height: 1.4;
    padding: 20px 20px 0;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    padding: 0 20px;
}

.detail-meta span {
    display: flex;
    align-items: center;
}

.detail-meta .icon {
    margin-right: 5px;
    width: 16px;
    height: 16px;
}

.category-link {
    color: var(--primary-red);
    padding: 4px 8px;
    background: rgba(158, 42, 43, 0.1);
    border-radius: 4px;
}

.category-link:hover {
    background: rgba(158, 42, 43, 0.2);
}

/* 联系方式区域样式 */
.contact-section {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin: 0 20px 25px;
    border-left: 4px solid var(--primary-red);
}

.contact-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.contact-vip {
    font-size: 16px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.contact-vip b {
    font-weight: bold;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 10px;
    padding: 8px 0;
}

.contact-info li:last-child {
    margin-bottom: 0;
}

.ui-ico-comm {
    font-size: 16px;
    color: var(--primary-red);
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(158, 42, 43, 0.1);
    border-radius: 4px;
    display: inline-block;
}

.highlight {
    color: var(--primary-red);
    font-weight: bold;
}

/* 内容图片样式 */
.content-image {
    margin: 20px;
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

/* 内容详情样式 */
.content-detail {
    line-height: 1.8;
    font-size: 16px;
    color: var(--text-dark);
    padding: 0 20px 20px;
}

.content-detail p {
    margin-bottom: 15px;
}

.content-detail img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

/* 底部导航 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 1px solid var(--border-color);
}

.nav-list {
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    flex: 1;
    text-align: center;
}

.nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    color: #666;
    font-size: 12px;
}

.nav-item.active a,
.nav-item a:hover {
    color: var(--primary-red);
}

.nav-item svg {
    margin-bottom: 4px;
}

/* ... 您原有的CSS ... */

/* 页脚样式 */
.footer {
    text-align: center;
    padding: 20px 10px; /* 调整内边距 */
    color: #666;
    font-size: 13px;
    background: white;
    /* margin: 20px 0; */ /* 移除或减小外边距，避免与底部导航间距过大 */
    margin-top: 20px; /* 只保留上边距 */
    /* 修复：移除 margin-bottom，避免被固定定位的底部导航遮挡 */
    /* margin-bottom: 60px; */
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); /* 简化阴影 */
    border: 1px solid #eee; /* 简化边框颜色 */
}

/* 确保页脚内的图片响应式 */
.footer img {
    max-width: 100%;
    height: auto;
    /* 可以添加最大高度限制，防止在大屏幕上过高 */
    /* max-height: 100px; */
    /* object-fit: contain; */ /* 如果需要保持图片比例并适应容器 */
}

.copyright {
    margin-top: 15px; /* 调整版权与上方文字的间距 */
    font-size: 12px; /* 可以稍微减小版权字体 */
    color: #888; /* 可以使用稍浅的颜色 */
}
/* ... 您原有的CSS ... */

/* 底部导航 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
    z-index: 99; /* 确保 z-index 足够高，显示在内容之上 */
}
.nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-item {
    flex: 1;
    text-align: center;
}
/* 修改：将 a 标签的样式应用到新的 button 标签上 */
/* 为按钮添加基础样式 */
.nav-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    transition: color 0.2s;
    width: 100%; /* 占满 li 容器 */
    height: 100%;
}
.nav-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
}
.nav-text {
    /* 如果需要调整文字样式，可以在这里加 */
}
/* 修改：将原来的 .nav-item a:hover 和 .nav-item.active a 样式应用到 button */
.nav-item:hover .nav-button,
.nav-button:hover, /* 按钮悬停 */
.nav-item.active .nav-button { /* 如果需要 active 状态 */
    color: #ff6700;
}

/* 复制提示 Toast */
.copy-toast {
    position: fixed;
    bottom: 70px; /* 高于导航栏 */
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: rgba(0, 0, 0, 0.7); /* 默认背景色，JS会覆盖 */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    /* 添加最小宽度，避免内容过短时太窄 */
    min-width: 200px;
    text-align: center;
}
.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ... 您原有的响应式CSS ... */





/* 留言模态框 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    border: 1px solid var(--border-color);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.modal-title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: var(--primary-red);
    outline: none;
    box-shadow: 0 0 0 2px rgba(158, 42, 43, 0.2);
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    font-weight: 500;
}

.btn-primary:hover {
    background: #8c2526;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-title {
        font-size: 16px;
    }
    
    .category-nav, .area-nav, .city-nav {
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .category-nav a, .area-nav a, .city-nav a {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .ui-list-mix {
        flex-direction: column;
    }
    
    .ui-list-mix img {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .seller-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .seller-actions {
        margin-top: 10px;
        align-self: flex-end;
    }
    
    .detail-title {
        font-size: 18px;
        padding: 15px 15px 0;
    }
    
    .detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 0 15px;
    }
    
    .contact-section {
        margin: 0 15px 20px;
        padding: 15px;
    }
    
    .content-detail {
        padding: 0 15px 15px;
        font-size: 15px;
    }
    
    .nav-item a {
        padding: 8px 0;
        font-size: 11px;
    }
    
    .nav-item svg {
        width: 20px;
        height: 20px;
    }
}

/* 图标样式 */
.icon-time, .icon-hits {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.icon-time {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/><path d="M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></svg>') no-repeat;
}

.icon-hits {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"/><path d="M12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></svg>') no-repeat;
}