:root {
    --primary: #121212;      /* 曜石黑 */
    --secondary: #E5BA73;    /* 香槟金 */
    --bg-dark: #121212;
    --bg-card: #1F1F1F;      /* 深炭灰 */
    --bg-light: #2A2A2A;
    --text-gold: #E5BA73;
    --text-light: #CFCFCF;
    --text-muted: #999999;
    --accent-green: #00FF66; /* 极光绿 */
    --border-gold: rgba(229, 186, 115, 0.3);
    --shadow: 0 8px 32px rgba(0,0,0,0.6);
    --font: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container-6460e0 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- 通用按钮 ----- */
.btn-b703a3 {
    display: inline-block;
    padding: 14px 44px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
}
.btn-primary-67fdaf {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(229, 186, 115, 0.3);
}
.btn-primary-67fdaf:hover {
    background: #d4a85c;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229, 186, 115, 0.5);
}
.btn-outline-f54176 {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}
.btn-outline-f54176:hover {
    background: var(--secondary);
    color: var(--primary);
}
.btn-green-c394ff {
    background: var(--accent-green);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.25);
}
.btn-green-c394ff:hover {
    background: #00e65a;
    transform: scale(1.03);
}

/* ----- 通用标题 ----- */
.section-b4f7d8 {
    padding: 80px 0;
    border-bottom: 1px solid rgba(229, 186, 115, 0.08);
}
.section-alt-782562 {
    background: var(--bg-card);
}
.section-header-496c31 {
    text-align: center;
    margin-bottom: 50px;
}
.section-title-6ee262 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}
.section-title-6ee262::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    margin: 12px auto 0;
    border-radius: 4px;
}
.section-subtitle-882ece {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* ----- 导航栏 (黑金) ----- */
.header-a0781a {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
}
.navbar-25f8cd { padding: 0 20px; }
.nav-container-d5f65b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
}
.nav-logo-b8b241 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
}
.nav-logo-icon-75f1cb {
    font-size: 2rem;
    color: var(--secondary);
}
.nav-logo-text-c2fba0 { color: var(--secondary); }
.nav-menu-a6b96e {
    display: flex;
    gap: 6px;
    align-items: center;
}
.nav-item-51bcec .nav-link-acc77d {
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}
.nav-item-51bcec .nav-link-acc77d:hover,
.nav-item-51bcec .nav-link-acc77d.active {
    color: var(--secondary);
    background: rgba(229, 186, 115, 0.1);
}
.nav-item-51bcec .nav-link-acc77d.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}
.nav-toggle-62828f {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle-62828f .bar-f2c8cd {
    width: 28px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: 0.3s;
}
@media (max-width: 992px) {
    .nav-menu-a6b96e {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        gap: 8px;
        display: none;
        border-bottom: 1px solid var(--border-gold);
    }
    .nav-menu-a6b96e.active { display: flex; }
    .nav-toggle-62828f { display: flex; }
}

/* ----- Hero (黑金氛围) ----- */
.hero-92b567 {
    background: radial-gradient(circle at 30% 40%, #1a1a1a, #0a0a0a 80%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-gold);
}
.hero-92b567::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229,186,115,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content-6b8d32 { position: relative; z-index: 1; }
.hero-text-a6e59e { max-width: 800px; }
.hero-title-385e2c {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 12px;
}
.hero-title-385e2c .gold-f4802b {
    color: var(--secondary);
    text-shadow: 0 0 30px rgba(229,186,115,0.2);
}
.hero-subtitle-ea3e90 {
    font-size: 1.4rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    font-weight: 300;
    margin-bottom: 30px;
}
.hero-features-685167 {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0 40px;
}
.hero-feature-be3158 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-light);
}
.hero-feature-be3158 i {
    font-size: 1.8rem;
    color: var(--secondary);
}
.hero-buttons-506320 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-buttons-506320 .btn-green-c394ff i {
    margin-right: 8px;
}
@media (max-width: 768px) {
    .hero-title-385e2c { font-size: 2.4rem; }
    .hero-subtitle-ea3e90 { font-size: 1.1rem; }
    .hero-features-685167 { gap: 20px; }
}

/* ----- 卡片通用 (深色背景，金边) ----- */
.card-9bb702 {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px 25px;
    border: 1px solid var(--border-gold);
    transition: all 0.4s;
    box-shadow: var(--shadow);
}
.card-9bb702:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 12px 40px rgba(229,186,115,0.08);
}

/* ----- 关于我们 (顺序提前) ----- */
.about-content-290074 {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}
.about-text-f25367 { flex: 1; min-width: 300px; }
.about-text-f25367 h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 16px;
}
.about-text-f25367 p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 25px;
}
.about-features-603b42 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-feature-9a1e96 {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.about-feature-9a1e96 i {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-top: 4px;
}
.about-feature-content-41171d h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2px;
}
.about-feature-content-41171d p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}
.about-image-b47d6e { flex: 1; min-width: 280px; }
.about-image-b47d6e img {
    border-radius: 20px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow);
}
.company-values-68c2cc {
    margin-top: 50px;
    text-align: center;
}
.company-values-68c2cc h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 35px;
}
.values-grid-37dabb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}
.value-item-a426ef {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid var(--border-gold);
    transition: 0.3s;
}
.value-item-a426ef:hover {
    border-color: var(--secondary);
    transform: scale(1.02);
}
.value-icon-9082d6 {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
}
.value-item-a426ef h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.value-item-a426ef p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ----- 服务 (核心服务) ----- */
.services-grid-44272e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.service-card-6e2fbc {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 35px 25px;
    border: 1px solid var(--border-gold);
    text-align: center;
    transition: 0.4s;
    box-shadow: var(--shadow);
}
.service-card-6e2fbc:hover {
    border-color: var(--secondary);
    transform: translateY(-8px);
}
.service-icon-feb15e {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(229, 186, 115, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--secondary);
    border: 1px solid var(--border-gold);
}
.service-card-6e2fbc h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 12px;
}
.service-card-6e2fbc p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.services-stats-680d2f {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid var(--border-gold);
}
.stat-item-e79976 {
    display: flex;
    align-items: center;
    gap: 16px;
}
.stat-item-e79976 i {
    font-size: 2.4rem;
    color: var(--secondary);
}
.stat-content-b302aa .stat-number-2a3e42 {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}
.stat-content-b302aa .stat-label-7bcdec {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ----- 优势 ----- */
.advantages-content-99acbe {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}
.advantages-text-1aa45d { flex: 1; min-width: 300px; }
.advantage-item-a73c0d {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}
.advantage-icon-387f62 {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(229, 186, 115, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--secondary);
    border: 1px solid var(--border-gold);
}
.advantage-content-6a1755 h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 6px;
}
.advantage-content-6a1755 p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.advantages-image-e6713e { flex: 1; min-width: 280px; }
.advantages-image-e6713e img {
    border-radius: 20px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow);
}

/* ----- 产品 (更多卡片) ----- */
.product-categories-e2c4b6 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.category-filter-b15bcf {
    padding: 8px 26px;
    border-radius: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.95rem;
}
.category-filter-b15bcf:hover,
.category-filter-b15bcf.active {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}
.products-grid-b96c8e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.product-card-487054 {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    transition: 0.4s;
    box-shadow: var(--shadow);
}
.product-card-487054:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.product-image-a92bd8 {
    height: 200px;
    overflow: hidden;
    background: #1a1a1a;
}
.product-image-a92bd8 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-info-f4e8b2 { padding: 20px 22px 25px; }
.product-info-f4e8b2 h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 4px;
}
.product-category-tag-130f14 {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.product-desc-d39d86 {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 14px;
}
.product-features-e4a586 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.product-features-e4a586 span i {
    color: var(--accent-green);
    margin-right: 4px;
}

/* ----- 新闻 ----- */
.news-grid-f2f5ce {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.news-card-10dbcf {
    display: flex;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    transition: 0.3s;
}
.news-card-10dbcf:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}
.news-date-4cb686 {
    min-width: 80px;
    background: rgba(229, 186, 115, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border-right: 1px solid var(--border-gold);
}
.news-date-4cb686 .date-day-e734dd {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}
.news-date-4cb686 .date-month-4e1093 {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.news-content-a8cf9c { padding: 18px 22px; flex: 1; }
.news-content-a8cf9c h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.news-content-a8cf9c h3 a {
    color: var(--text-light);
    transition: 0.3s;
}
.news-content-a8cf9c h3 a:hover { color: var(--secondary); }
.news-content-a8cf9c p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 10px;
}
.news-meta-0e87da {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.news-meta-0e87da i { color: var(--secondary); margin-right: 4px; }
.news-more-eeed98 { text-align: center; margin-top: 40px; }

/* ----- FAQ (金色边框) ----- */
.faq-container-001dc4 { max-width: 800px; margin: 0 auto; }
.faq-item-b456fa {
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border-gold);
    overflow: hidden;
    transition: 0.3s;
}
.faq-item-b456fa:hover { border-color: var(--secondary); }
.faq-question-f8b81d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
}
.faq-question-f8b81d h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
}
.faq-icon-87fc91 {
    color: var(--secondary);
    transition: 0.3s;
    font-size: 1.2rem;
}
.faq-item-b456fa.active .faq-icon-87fc91 { transform: rotate(180deg); }
.faq-answer-b39734 {
    padding: 0 25px 20px;
    color: var(--text-muted);
    display: none;
    line-height: 1.8;
}
.faq-item-b456fa.active .faq-answer-b39734 { display: block; }

/* ----- 口碑 (评论) ----- */
.testimonials-grid-bde16f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.testimonial-card-d0e716 {
    background: var(--bg-card);
    padding: 28px 25px;
    border-radius: 16px;
    border: 1px solid var(--border-gold);
    transition: 0.3s;
}
.testimonial-card-d0e716:hover {
    border-color: var(--secondary);
    transform: translateY(-6px);
}
.testimonial-header-94e9ee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.testimonial-info-7025d5 h4 {
    font-size: 1.1rem;
    color: var(--secondary);
}
.testimonial-rating-0cb73b {
    color: var(--secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
}
.testimonial-content-780347 p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
}
.testimonials-stats-cafe61 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    padding: 30px 20px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-gold);
}
.testimonials-stats-cafe61 .stat-item-e79976 {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonials-stats-cafe61 .stat-icon-a50414 {
    font-size: 2.2rem;
    color: var(--secondary);
}

/* ----- 友情链接 (暗色) ----- */
.flink-section-e2f121 {
    padding: 30px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}
.flink-header-524e2e {
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.flink-section-e2f121 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.flink-section-e2f121 ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: 0.3s;
}
.flink-section-e2f121 ul li a:hover {
    color: var(--secondary);
}

/* ----- 页脚 (黑金) ----- */
.footer-6bbd84 {
    background: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-gold);
}
.footer-content-accb7f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo-f1a059 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}
.footer-logo-f1a059 i { color: var(--secondary); }
.footer-desc-bf75a3 {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social-a299c5 {
    display: flex;
    gap: 16px;
}
.social-link-e3a61c {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(229, 186, 115, 0.08);
    border-radius: 50%;
    color: var(--secondary);
    font-size: 1.2rem;
    border: 1px solid var(--border-gold);
    transition: 0.3s;
}
.social-link-e3a61c:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}
.footer-section-49305e h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 18px;
    position: relative;
}
.footer-section-49305e h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--secondary);
    margin-top: 8px;
}
.footer-links-b6e1d1 li { margin-bottom: 10px; }
.footer-links-b6e1d1 li a {
    color: var(--text-muted);
    transition: 0.3s;
    font-size: 0.95rem;
}
.footer-links-b6e1d1 li a:hover {
    color: var(--secondary);
    padding-left: 6px;
}
.contact-item-ff676f {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}
.contact-item-ff676f i {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-top: 3px;
    min-width: 20px;
}
.contact-content-0c051c {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}
.contact-content-0c051c span:first-child {
    opacity: 0.6;
    font-size: 0.8rem;
}
.contact-content-0c051c a {
    color: var(--text-light);
}
.contact-content-0c051c a:hover { color: var(--secondary); }
.footer-bottom-f27e98 {
    border-top: 1px solid var(--border-gold);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.footer-bottom-f27e98 a {
    color: var(--text-muted);
    margin-left: 20px;
    transition: 0.3s;
}
.footer-bottom-f27e98 a:hover { color: var(--secondary); }

/* ----- 回到顶部 ----- */
.back-to-top-8738cf {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(229,186,115,0.3);
    cursor: pointer;
    transition: 0.3s;
    display: none;
    z-index: 999;
}
.back-to-top-8738cf:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(229,186,115,0.5);
}

/* 响应式 */
@media (max-width: 768px) {
    .section-b4f7d8 { padding: 50px 0; }
    .section-title-6ee262 { font-size: 2rem; }
    .hero-title-385e2c { font-size: 2rem; }
    .about-features-603b42 { grid-template-columns: 1fr; }
    .footer-content-accb7f { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .footer-content-accb7f { grid-template-columns: 1fr; }
    .footer-bottom-f27e98 { flex-direction: column; align-items: center; }
    .footer-bottom-f27e98 a { margin: 0 10px; }
}