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

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 头部导航 */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px 0;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f7b3a;
}

.logo p {
    font-size: 0.75rem;
    color: #4b5563;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    font-weight: 500;
    color: #1f2937;
    transition: color 0.2s;
}

nav a:hover {
    color: #0f7b3a;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 12px;
    }
    nav ul {
        gap: 18px;
        justify-content: center;
    }
}

/* 通用区块 */
.section {
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #0f3b2c;
    position: relative;
    display: inline-block;
}
.section-title:after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: #0f7b3a;
    margin-top: 8px;
}

/* 横幅 */
.hero {
    background: linear-gradient(135deg, #e6f7ec 0%, #c8e6df 100%);
    padding: 70px 0;
    text-align: center;
}
.hero h2 {
    font-size: 2.2rem;
    color: #0f3b2c;
    margin-bottom: 16px;
}
.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #2d4a3b;
}
.badge-info {
    background: #fff;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    margin-top: 24px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0f7b3a;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* 关于我们 卡片样式 */
.about-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
}
.about-text {
    flex: 2;
}
.about-stats {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.stat-item {
    margin-bottom: 20px;
    border-left: 4px solid #0f7b3a;
    padding-left: 16px;
}
.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f7b3a;
}

/* 药品列表 */
.drug-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}
.drug-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    transition: 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #eef2f6;
}
.drug-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f3b2c;
    margin-bottom: 12px;
}
.drug-detail {
    font-size: 0.85rem;
    color: #2d3e50;
    margin-bottom: 8px;
}
.drug-tip {
    background: #fef9e3;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-top: 12px;
    color: #a16207;
}

/* 专业人员 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.team-card {
    background: #fff;
    border-radius: 28px;
    text-align: center;
    padding: 28px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.team-avatar {
    font-size: 3.5rem;
    color: #0f7b3a;
    margin-bottom: 16px;
}
.team-name {
    font-size: 1.3rem;
    font-weight: 700;
}
.team-title {
    color: #0f7b3a;
    font-weight: 600;
    margin: 8px 0;
}
.team-cert {
    font-size: 0.8rem;
    background: #f1f5f9;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 40px;
    margin-top: 12px;
}

/* 新闻动态 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.news-item {
    background: #fff;
    padding: 20px 24px;
    border-radius: 20px;
    transition: 0.2s;
    border-left: 4px solid #0f7b3a;
}
.news-date {
    font-size: 0.8rem;
    color: #5b6e8c;
    margin-bottom: 6px;
}
.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

/* 门店导航 + 联系 */
.store-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
.store-card {
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: 1px solid #e2edf2;
}
.contact-info {
    background: #eef2fa;
    border-radius: 24px;
    padding: 28px;
    margin-top: 20px;
}
.contact-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.contact-details i {
    width: 28px;
    color: #0f7b3a;
}

/* 底部 */
footer {
    background-color: #0f2b1f;
    color: #cddfd4;
    padding: 40px 0 24px;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
.footer-links a {
    color: #cbd5e1;
    margin: 0 12px;
    text-decoration: none;
}
.footer-icp {
    font-size: 0.8rem;
    border-top: 1px solid #2d4a3b;
    padding-top: 20px;
    margin-top: 10px;
}
.compliance-note {
    background: #fff7e5;
    border-left: 4px solid #e6b422;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-top: 20px;
    text-align: center;
}

button, .btn {
background: none;
border: none;
}
a {
text-decoration: none;
}
.legal-badge {
font-size: 0.7rem;
background: #eef2ff;
display: inline-block;
border-radius: 30px;
padding: 2px 12px;
}
