/* ============================
   安途生乘用车 - PbootCMS 定制模板
   匹配老站：黑色导航 + 黄色主色调
   ============================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
    background: #fff;
}
a { color: #333; text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #d4a000; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
.container { max-width: 1200px; padding: 0 15px; margin: 0 auto; }

/* ====================
   主导航
   ==================== */
.main-nav {
    background: #000;
    width: 100%;
    position: relative;
    z-index: 999;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-logo img {
    height: 58px;
    width: auto;
}
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu li {
    margin: 0;
    padding: 0;
}
.nav-menu li a {
    display: block;
    color: #fff;
    font-size: 15px;
    padding: 0 28px;
    line-height: 76px;
    height: 76px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.nav-menu li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.nav-menu li.active a {
    background: #ffd700;
    color: #000;
    font-weight: 600;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
}
@media (max-width: 991px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #111;
        flex-direction: column;
        padding: 0;
    }
    .nav-menu.open { display: flex; }
    .nav-menu li { width: 100%; }
    .nav-menu li a {
        line-height: 52px;
        height: 52px;
        padding: 0 20px;
        border-bottom: 1px solid #222;
    }
    .nav-logo img { height: 46px; }
}

/* ====================
   首页Banner
   ==================== */
.home-banner { width: 100%; overflow: hidden; }
.home-banner .swiper-slide img { width: 100%; height: auto; display: block; }
.home-banner .swiper-button-prev,
.home-banner .swiper-button-next {
    color: #fff;
    background: rgba(0,0,0,0.35);
    width: 44px;
    height: 60px;
    margin-top: -30px;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.home-banner .swiper-button-prev:hover,
.home-banner .swiper-button-next:hover {
    background: #ffd700;
    color: #000;
}
.home-banner .swiper-button-prev::after,
.home-banner .swiper-button-next::after { font-size: 20px; }
.home-banner .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}
.home-banner .swiper-pagination-bullet-active {
    background: #ffd700;
    opacity: 1;
}

/* ====================
   黄色数字条
   ==================== */
.numbers-bar {
    background: #ffd700;
    padding: 35px 0;
}
.numbers-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}
.num-item {
    flex: 1;
}
.num-value {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
}
.num-unit {
    font-size: 18px;
    font-weight: 400;
    margin-left: 4px;
}
.num-label {
    font-size: 16px;
    color: #333;
    margin-top: 6px;
}
@media (max-width: 768px) {
    .num-value { font-size: 32px; }
    .num-unit { font-size: 14px; }
    .num-label { font-size: 13px; }
    .numbers-bar { padding: 25px 0; }
}

/* ====================
   通用区块标题
   ==================== */
.sec-title {
    text-align: center;
    padding: 50px 0 30px;
}
.sec-title h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.sec-line {
    width: 40px;
    height: 3px;
    background: #ffd700;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .sec-title { padding: 35px 0 20px; }
    .sec-title h2 { font-size: 22px; }
}

/* ====================
   门店分布
   ==================== */
.section-store {
    background: #fff;
    padding-bottom: 50px;
}
.store-map {
    text-align: center;
}
.store-map img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* ====================
   企业荣誉
   ==================== */
.section-certs {
    background: #f9f9f9;
    padding-bottom: 60px;
}
.certs-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cert-item {
    width: calc(20% - 16px);
    min-width: 160px;
    background: #fff;
    border: 1px solid #eee;
    padding: 8px;
    transition: all 0.3s ease;
}
.cert-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.cert-item img {
    width: 100%;
    height: auto;
}
@media (max-width: 992px) {
    .cert-item { width: calc(33.33% - 14px); }
}
@media (max-width: 576px) {
    .cert-item { width: calc(50% - 10px); min-width: 140px; }
}

/* ====================
   页脚 - 背景图片(匹配老站)
   ==================== */
.site-footer {
    background: url('../images/footer-bg.jpg?v=20260804') no-repeat center bottom;
    background-size: cover;
    color: #000;
    height: 240px;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 86px 25px 27px;
    min-height: 200px;
}
.footer-mascot {
    display: none;
}
.footer-phone {
    flex: 0 0 auto;
    text-align: right;
    margin-right: 30px;
}
.phone-label {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}
.phone-num {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}
.footer-qrcodes {
    flex: 0 0 auto;
    display: flex;
    gap: 15px;
}
.qrcode-item {
    text-align: center;
}
.qrcode-item img {
    width: 100px;
    height: 100px;
    padding: 4px;
    margin-bottom: 6px;
}
.qrcode-item span {
    font-size: 12px;
    color: #333;
    display: block;
}
.footer-bottom {
    background: #000;
    text-align: center;
    padding: 12px 0;
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 15px;
    }
    .phone-num { font-size: 32px; }
    .footer-phone { text-align: center; margin-right: 0; }
    .footer-qrcodes { justify-content: center; }
}

/* ====================
   联系我们 - 文字样式
   ==================== */
.section-contact {
    background: #f8f9fa;
    padding: 60px 0 80px;
    min-height: calc(100vh - 300px);
}
.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.contact-main {
    flex: 1;
}
.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.contact-subtitle {
    font-size: 15px;
    color: #888;
    margin-bottom: 36px;
}
/* 信息卡片网格 */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}
.contact-extra {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-item {
    background: #fff;
    border-radius: 10px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}
.contact-item:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff9e6;
    border-radius: 12px;
}
.contact-detail h3 {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px;
}
.contact-detail p {
    font-size: 17px;
    color: #222;
    margin: 0;
    line-height: 1.5;
}
.contact-phone {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #d4a000 !important;
    letter-spacing: 1px;
}
/* 右侧二维码 */
.contact-sidebar {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.qrcode-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.qrcode-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 8px;
}
.qrcode-card span {
    font-size: 12px;
    color: #666;
    display: block;
}
@media (max-width: 768px) {
    .contact-wrapper { flex-direction: column; }
    .contact-sidebar { flex: none; width: 100%; flex-direction: row; justify-content: center; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .contact-title { font-size: 26px; }
    .contact-phone { font-size: 22px !important; }
}

/* ====================
   返回顶部
   ==================== */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 60px;
    width: 42px;
    height: 42px;
    background: #ffd700;
    color: #000;
    border-radius: 4px;
    text-align: center;
    line-height: 42px;
    cursor: pointer;
    display: none;
    z-index: 999;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.back-to-top:hover { background: #e6c200; }

/* ====================
   内页公共样式
   ==================== */
.page-top {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
    position: relative;
}
.page-top::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
}
.page-top .container { position: relative; z-index: 1; }
.page-top-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.page-top-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

.breadcrumb-nav {
    background: #f5f5f5;
    padding: 12px 0;
    font-size: 13px;
    color: #999;
    border-bottom: 1px solid #e8e8e8;
}
.breadcrumb-nav a { color: #666; }
.breadcrumb-nav a:hover { color: #d4a000; }

.pages { padding: 40px 15px 60px; min-height: 400px; }
.pages img { max-width: 100%; height: auto; }

/* 产品列表 */
.product-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.product-img {
    height: 220px;
    background: #f9f9f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: all 0.3s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-info { padding: 18px; }
.product-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}
.product-sub {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-more {
    font-size: 13px;
    color: #d4a000;
    font-weight: 500;
}

/* 产品详情 */
.product-detail-img {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 30px;
    text-align: center;
}
.product-detail-img img { max-height: 400px; object-fit: contain; }
.product-title { font-size: 24px; font-weight: 700; color: #000; margin-bottom: 10px; }
.product-subtitle { font-size: 15px; color: #666; margin-bottom: 15px; }
.product-tags { margin-bottom: 20px; }
.product-tags .tag {
    display: inline-block;
    padding: 3px 12px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
    margin-right: 8px;
}
.product-content { font-size: 15px; line-height: 2; color: #333; }
.product-content img { max-width: 100%; border-radius: 6px; margin: 10px 0; }
.product-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
    font-size: 13px;
    color: #999;
}
.product-prev-next {
    margin-top: 30px;
    padding: 15px 0;
    border-top: 1px solid #e8e8e8;
    font-size: 13px;
    color: #666;
}

/* 分页 */
.page-list { text-align: center; padding: 30px 0; }
.page-list a {
    display: inline-block;
    padding: 6px 14px;
    margin: 0 3px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    color: #666;
    font-size: 13px;
    transition: all 0.3s ease;
}
.page-list a:hover, .page-list a.active {
    background: #ffd700;
    color: #000;
    border-color: #ffd700;
}
.page-list span { padding: 0 5px; color: #999; }

/* 关于页面 */
.about-page { font-size: 15px; line-height: 2; color: #333; }
.about-page img { max-width: 100%; border-radius: 6px; margin: 15px 0; }

@media (max-width: 768px) {
    .page-top { padding: 40px 0; }
    .page-top-title { font-size: 22px; }
}

/* ====================
   门店展示 - 无缝拼接布局(匹配老站)
   ==================== */
.section-store-show {
    background: #fff;
    padding-bottom: 0;
}
.store-mosaic {
    display: flex;
    flex-direction: column;
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
}
.mosaic-row {
    display: flex;
    width: 100%;
    height: 293px;
}
.mosaic-cell {
    overflow: hidden;
    position: relative;
}
.mosaic-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* 第1行：左宽右窄 */
.row-top .cell-wide { flex: 6; }
.row-top .cell-narrow { flex: 4; }
/* 第2行：左窄右宽 */
.row-bottom .cell-wide { flex: 6; }
.row-bottom .cell-narrow { flex: 4; }
/* 底部黄色装饰条 */
.mosaic-bar {
    height: 30px;
    background: #ffd700;
    width: 100%;
}
@media (max-width: 768px) {
    .mosaic-row { flex-direction: column; height: auto; }
    .row-top .cell-wide,
    .row-top .cell-narrow,
    .row-bottom .cell-wide,
    .row-bottom .cell-narrow {
        flex: none;
        height: 200px;
    }
}

/* ====================
   工厂展示 - 原图自带样式+文字介绍
   ==================== */
.section-factory {
    background: #fff;
    padding: 10px 0 0;
}
.factory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0 10px;
}
.factory-item {
    text-align: center;
    padding: 0 8px;
}
/* 原图自带黄圈效果，不加CSS装饰 */
.factory-item > img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px;
}
/* 标题 */
.factory-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
    line-height: 1.4;
}
/* 描述文字 */
.factory-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}
.factory-banner-img {
    margin-top: 15px;
    line-height: 0;
}
.factory-banner-img img {
    width: 572px;
    height: 200px;
    object-fit: cover;
    display: block;
}
@media (max-width: 992px) {
    .factory-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 480px) {
    .factory-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====================
   精准用油 - 产品分类
   ==================== */
.section-oil {
    background: #fff;
    padding-bottom: 50px;
}
.oil-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.oil-card {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}
.oil-card:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.oil-img {
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    min-height: 280px;
}
.oil-img img {
    max-width: 100%;
    max-height: 260px;
    object-fit: contain;
}
.oil-info {
    padding: 16px 18px 18px;
    position: relative;
    border-top: 1px solid #f0f0f0;
}
.oil-info h3 {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}
.oil-info p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin: 0;
    padding-right: 24px;
}
.oil-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #ccc;
    transition: color 0.3s;
}
.oil-card:hover .oil-arrow {
    color: #d4a000;
}
@media (max-width: 768px) {
    .oil-grid { grid-template-columns: 1fr; gap: 20px; }
    .oil-img { min-height: 220px; }
}

/* ====================
   服务项目 - 4图拼接+悬停文字(匹配老站)
   ==================== */
.section-services {
    background: #fff;
    padding-bottom: 0;
}
.services-mosaic {
    display: flex;
    width: 100%;
}
.service-hover-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-hover-item > img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.service-hover-item:hover > img {
    transform: scale(1.05);
}
/* 悬停遮罩层 */
.service-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    padding: 20px;
    text-align: center;
}
.service-hover-item:hover .service-overlay {
    opacity: 1;
}
.service-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    margin: 0 0 12px;
}
.service-overlay p {
    font-size: 13px;
    color: #fff;
    line-height: 1.8;
    margin: 0;
}
/* 底部黄色装饰条 */
.services-bar {
    height: 12px;
    background: #ffd700;
    width: 100%;
}
@media (max-width: 768px) {
    .services-mosaic { flex-wrap: wrap; }
    .service-hover-item { flex: 0 0 50%; }
    .service-hover-item > img { height: 200px; }
    .service-overlay h3 { font-size: 16px; }
    .service-overlay p { font-size: 12px; }
}


/* ====================
   门店分布栏目
   ==================== */
.section-store { background: #fff; padding: 30px 0 50px; }

.store-summary {
    background: #fffdf5;
    border: 1px solid #f0e6b0;
    border-left: 4px solid #ffd700;
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 22px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}
.store-summary strong { color: #e6a800; font-size: 18px; padding: 0 2px; }

/* 省份快捷导航 */
.prov-nav {
    position: sticky;
    top: 60px;
    z-index: 20;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.prov-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border: 1px solid #ffd700;
    border-radius: 20px;
    color: #b8860b;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.prov-chip:hover { background: #ffd700; color: #000; }
.prov-count {
    background: rgba(255,215,0,0.25);
    color: #8a6d00;
    border-radius: 10px;
    padding: 0 7px;
    font-size: 12px;
    font-weight: 700;
}
.prov-chip:hover .prov-count { background: rgba(0,0,0,0.12); color: #000; }

/* 省份区块 */
.prov-block { margin-bottom: 38px; scroll-margin-top: 120px; }
.prov-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 8px;
    margin-bottom: 18px;
}
.prov-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0;
    position: relative;
    padding-left: 12px;
}
.prov-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: #ffd700;
    border-radius: 2px;
}
.prov-total { font-size: 13px; color: #999; }

/* 门店表格 */
.store-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    font-size: 14px;
}
.store-table thead th {
    background: #ffd700;
    color: #5a4500;
    font-weight: 700;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid #f0c000;
    white-space: nowrap;
}
.store-table tbody td {
    padding: 11px 16px;
    border-bottom: 1px solid #f2f2f2;
    color: #555;
    vertical-align: top;
    line-height: 1.6;
}
.store-table tbody tr:nth-child(even) { background: #fffef8; }
.store-table tbody tr:hover { background: #fff8e0; }
.store-table tbody tr:last-child td { border-bottom: none; }
.col-idx { width: 60px; text-align: center; color: #999; font-size: 13px; }
.col-name { font-weight: 600; color: #222; min-width: 180px; }
.col-phone { width: 150px; white-space: nowrap; }
.col-phone a { color: #c9961a; text-decoration: none; font-weight: 600; }
.col-phone a:hover { text-decoration: underline; }
.col-addr { color: #777; }

@media (max-width: 768px) {
    .store-table { font-size: 13px; }
    .store-table thead th, .store-table tbody td { padding: 9px 10px; }
    .col-idx { width: 42px; }
    .col-name { min-width: 120px; }
    .col-phone { width: 110px; }
}
@media (max-width: 560px) {
    .prov-nav { top: 0; position: static; }
    /* 手机端改为卡片式表格，避免挤压 */
    .store-table, .store-table thead, .store-table tbody, .store-table th, .store-table td, .store-table tr {
        display: block;
        width: 100%;
    }
    .store-table thead { display: none; }
    .store-table tbody tr {
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 10px;
        padding: 4px 0;
    }
    .store-table tbody td {
        border: none;
        padding: 6px 14px;
        display: flex;
        gap: 8px;
    }
    .store-table tbody td::before {
        content: attr(data-label);
        flex: 0 0 70px;
        font-weight: 700;
        color: #999;
        font-size: 12px;
    }
    .col-idx { display: none !important; }
}
