/* 全国优选品鉴探店网 - 统一样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "SimHei", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* 顶部导航 */
header {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

nav {
    margin-top: 10px;
}

nav a {
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 8px;
    color: #0066CC;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    text-decoration: underline;
}

/* 页面标题 */
h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

h2 {
    font-size: 20px;
    color: #444;
    margin: 25px 0 15px 0;
    font-weight: bold;
}

h3 {
    font-size: 18px;
    color: #555;
    margin: 20px 0 10px 0;
    font-weight: bold;
}

/* 网站简介 */
.intro {
    background-color: #F9F9F9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    line-height: 2;
}

/* 行业入口 */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.industry-card {
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 4px;
    transition: border-color 0.2s;
}

.industry-card:hover {
    border-color: #0066CC;
}

.industry-card a {
    color: #0066CC;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.industry-card a:hover {
    text-decoration: underline;
}

.industry-card p {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

/* 探店推荐语 */
.featured-text {
    background-color: #F0F7FF;
    padding: 15px;
    border-left: 4px solid #0066CC;
    margin: 20px 0;
    line-height: 2;
    color: #555;
}

/* 门店列表 */
.store-list {
    margin: 25px 0;
}

.store-item {
    border: 1px solid #e8e8e8;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.store-item h3 {
    color: #0066CC;
    margin-bottom: 10px;
}

.store-item p {
    margin-bottom: 8px;
    font-size: 15px;
}

.store-item a {
    color: #0066CC;
    text-decoration: none;
    font-weight: bold;
}

.store-item a:hover {
    text-decoration: underline;
}

/* 门店信息卡 */
.store-info-card {
    background-color: #F9F9F9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
}

.store-info-card p {
    margin-bottom: 10px;
    font-size: 15px;
}

.store-info-card strong {
    color: #333;
}

/* 问答区域 */
.qa-section {
    margin: 25px 0;
}

.qa-item {
    margin-bottom: 25px;
}

.qa-item h3 {
    color: #0066CC;
    background-color: #F0F7FF;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.qa-item p {
    padding-left: 10px;
    line-height: 2;
    color: #444;
}

/* 探店总结 */
.summary {
    background-color: #FFF8E6;
    padding: 20px;
    border-left: 4px solid #FF9900;
    margin: 30px 0;
    line-height: 2;
}

/* 底部版权 */
footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* 底部导航 */
.bottom-nav {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.bottom-nav a {
    color: #0066CC;
    text-decoration: none;
    margin-right: 20px;
}

.bottom-nav a:hover {
    text-decoration: underline;
}

/* 科普区域 */
.science-section {
    background-color: #F5F9FF;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    line-height: 2;
}

/* 响应式适配 */
@media (max-width: 600px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    nav a {
        display: block;
        margin-bottom: 10px;
    }
}
