/* ===== 全局重置 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "新宋体", sans-serif;
}

body {
    background: #f5f5f5;
    color: #222;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}
ul {
    list-style: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
    background: #fff;
}
/* ===== 顶部栏 ===== */
.top-bar {
    background: #1a1a1a;
    color: #aaa;
    font-size: 12px;
    padding: 4px 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.top-bar a {
    color: #ccc;
    text-decoration: none;
    margin: 0 4px;
}
.top-bar a:hover {
    color: #fff;
}
.top-bar .hotline a {
    color: #ffd700;
}
.top-bar-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}
.top-bar-left span {
    color: #ffd700;
    margin-left: 8px;
}
.top-bar-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px;
}
.top-bar-right a:hover {
    color: #ffd700;
}
.top-bar-right span a {
    color: #ffd700;
    font-weight: bold;
}

/* ===== 头部 ===== */
.header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 12px;
    border-bottom: 1px solid #eee;
    position: relative;
}
.logo-img {
    height: 60px;
    width: auto;
}
.search-area {
    margin: 0 20px;
    margin-top: 45px;
    min-width: 180px;
    flex:1;text-align:center
}
.search-area .hot-keys {
     display:inline-block;
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}
.search-area .hot-keys a {
    margin-right: 8px;
    color: #1a73e8;
}
.search-area .hot-keys .red {
    color: #c00;
}
.contact-area {
    text-align: right;
    white-space: nowrap;
}
.contact-area .tel {
    font-size: 22px;
    font-weight: 700;
    color: #d40000;
}
.contact-area .tel a {
    color: #d40000;
}
.contact-area .time {
    font-size: 12px;
    color: #888;
    display: block;
}

/* ===== 主导航 ===== */
.main-nav {
    background: linear-gradient(135deg, #1a3a6b, #0f2a4f);
    padding: 0 10px;
    border-radius: 6px;
    margin: 12px 0;
}
.main-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0;
    padding: 0;
}
.main-nav ul li a {
    display: block;
    color: #fff;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: 0.2s;
}
.main-nav ul .on a{
    background: rgba(255, 255, 255, 0.08);
    border-bottom-color: #ffb347;
}
.main-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-bottom-color: #ffb347;
}
.main-nav ul li a.active {
    background: rgba(255, 255, 255, 0.15);
    border-bottom-color: #ffb347;
}
.main-nav a.active {
    background: rgba(255, 255, 255, 0.15);
    border-bottom-color: #ffb347;
}

.hdTxt {
    display: none;
}
footer .f_menu {
  display: none;
}
/* ===== Banner ===== */
.banner {
    position: relative;
    background: #e9edf2;
    border-radius: 10px;
    overflow: hidden;
    margin: 12px 0;
    aspect-ratio: 1000 / 400;
    max-height: 400px;
    width: 100%;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== 面包屑 ===== */
.breadcrumb {
    font-size: 14px;
    color: #666;
    padding: 8px 0 12px;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}
.breadcrumb a {
    color: #1a3a6b;
}

/* ===== 卡片 ===== */
.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}
.card-title {
    background: linear-gradient(90deg, #1a3a6b, #2b5590);
    color: #fff;
    padding: 8px 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}
.card-title a {
    color: #ffd966;
    font-size: 13px;
}
.card-body {
    padding: 14px 12px;
}

/* ===== 两列布局 ===== */
.two-col {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}
.left-side {
    flex: 0 0 260px;
    min-width: 285px;
}
.right-side {
    flex: 1;
    min-width: 280px;
}

/* ===== 预订表单 ===== */
.book-form .form-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.book-form .form-row label {
    width: 60px;
    font-size: 13px;
    color: #333;
}
.book-form .form-row input,
.book-form .form-row select,
.book-form .form-row textarea {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    min-width: 120px;
}
.book-form .form-row:has(input[name="checkcode"]) {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
}
.book-form .form-row:has(input[name="checkcode"]) label {
    flex-shrink: 0 !important;
    width: 60px !important;
    font-size: 13px !important;
}
.book-form .form-row:has(input[name="checkcode"]) input {
    width: 80px !important;
    flex: none !important;
    height: 30px !important;
    padding: 4px 6px !important;
    font-size: 13px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
}
.book-form .form-row:has(input[name="checkcode"]) img {
    height: 30px !important;
    width: auto !important;
    flex-shrink: 0 !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    cursor: pointer !important;
}

.btn-submit {
    background: #d40000;
    color: #fff;
    border: none;
    padding: 8px 30px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
}

/* ===== 联系我们 ===== */
.contact-info table {
    width: 100%;
    font-size: 13px;
    border-collapse: collapse;
}
.contact-info td {
    padding: 4px 6px;
}
.contact-info strong {
    color: #c00;
}

/* ===== 服务项目 ===== */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    text-align: center;
    font-size: 13px;
}
.service-grid img {
    margin: 0 auto 4px;
    width: 51px;
    height: 47px;
    background: #eee;
    object-fit: cover;
}

/* ===== 景点标签 ===== */
.jingdian-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 15px;
    padding: 4px 0;
}
.jingdian-tags a {
    padding: 4px 12px;
    background: #f0f4fa;
    border-radius: 4px;
    color: #1a3a6b;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}
.jingdian-tags a:hover {
    background: #1a3a6b;
    color: #fff;
}

/* ===== 右侧介绍 ===== */
.intro-text {
    line-height: 1.8;
    font-size: 14px;
    color: #444;
}
.intro-text a {
    color: #1a3a6b;
    font-weight: 500;
}

/* ===== 两列小模块 ===== */
.row-two {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 4px;
}
.row-two .half-large {
    flex: 2.5;
    min-width: 280px;
}
.row-two .half {
    flex: 1;
    min-width: 200px;
}
.row-two .half-small {
    flex: 1.2;
    min-width: 160px;
    max-width: 280px;
}

/* ===== 实用工具 ===== */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    text-align: center;
    font-size: 12px;
}
.tool-grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 6px 4px;
}
.tool-grid img {
    width: 32px;
    height: 32px;
    background: #ddd;
    object-fit: cover;
    margin-bottom: 2px;
}

/* ===== 景点详情 ===== */
.spot-detail {
    font-size: 13px;
    line-height: 1.8;
    color: #444;
}
.spot-detail p {
    margin-bottom: 8px;
}

/* ===== 车型展示（首页） ===== */
.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.car-item {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 8px 6px 10px;
    text-align: center;
    background: #fafafa;
}
.car-item a {
    display: block;
    text-decoration: none;
}
.car-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #f0f0f0;
    border-radius: 4px;
}
.car-item .car-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    flex-wrap: nowrap;
}
.car-item .car-info b {
    font-size: 13px;
    color: #1a3a6b;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.car-item .car-info .price {
    color: #d40000;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

/* ===== 车型网格 4列（列表页） ===== */
.car-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.car-item-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px 6px 10px;
    text-align: center;
    transition: all 0.3s ease;
}
.car-item-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    transform: translateY(-3px);
}
.car-item-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    background: #f5f5f5;
}
.car-item-card .car-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a3a6b;
    margin-top: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.car-item-card .car-tag {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}
.car-item-card .car-price {
    font-size: 14px;
    font-weight: 700;
    color: #d40000;
    margin-top: 4px;
}

/* ===== 新闻列表 ===== */
.news-list {
    list-style: none;
    font-size: 13px;
    line-height: 2;
    padding: 0 6px;
    margin: 0;
}
.news-list li {
    border-bottom: 1px dashed #eee;
    padding: 6px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.news-list li a {
    color: #1a3a6b;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    font-size: 13px;
}
.news-list li a:hover {
    color: #d40000;
}
.news-list .date {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ===== 热门线路 ===== */
.hot-links-bar {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    margin: 16px 0;
    background: #fafafa;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.hot-label {
    font-weight: bold;
    color: #1a3a6b;
}
.hot-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
}
.hot-links a {
    background: #f0f4fa;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
}

/* ===== 友情链接 ===== */
.friend-links {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 14px 16px;
    margin: 16px 0;
    background: #fafafa;
    line-height: 2;
}
.friend-links b {
    color: #1a3a6b;
    display: block;
    margin-bottom: 4px;
}
.friend-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
}
.friend-links-list a {
    color: #1a73e8;
    font-size: 13px;
}
.friend-links-list a:hover {
    text-decoration: underline;
}

/* ===== 页脚 ===== */
.footer {
    background: #1a2a3a;
    color: #ccc;
    padding: 24px 16px 16px;
    border-radius: 10px 10px 0 0;
    margin-top: 24px;
}
.footer a {
    color: #ffd966;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 12px;
}
.footer-info {
    text-align: center;
    font-size: 13px;
    border-top: 1px solid #444;
    padding-top: 16px;
    line-height: 1.8;
}
.footer-info .wechat {
    color: #ffd700;
}

/* ===== 租车信息页面 ===== */
.news-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 16px 0;
}
.news-left {
    flex: 0 0 250px;
    min-width: 200px;
}
.news-right {
    flex: 1;
    min-width: 280px;
}

.news-intro {
    border: 1px solid #999;
    border-radius: 4px;
    padding: 8px 10px;
    margin-bottom: 12px;
    background: #fafafa;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.news-intro-img {
    flex: 0 0 83px;
}
.news-intro-img img {
    width: 83px;
    height: 63px;
    border: 1px solid #ccc;
    padding: 3px;
    background: #ddd;
    object-fit: cover;
}
.news-intro p {
    flex: 1;
    font-size: 13px;
    line-height: 2;
    color: #333;
    margin: 0;
}
.news-intro p a:hover {
    color: #d40000;
    text-decoration: underline;
}
.news-intro p strong {
    color: #d40000;
}

.news-list-wrap {
    border: 1px solid #999;
    border-radius: 4px;
    overflow: hidden;
}
.news-item {
    padding: 8px 12px;
    border-bottom: 1px solid #666;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
}
.news-item:last-child {
    border-bottom: none;
}
.news-item a {
    color: #1a3a6b;
    text-decoration: none;
    font-size: 13px;
    flex: 1;
}
.news-item a:hover {
    color: #d40000;
    text-decoration: underline;
}
.news-item .news-date {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
    margin-left: 10px;
}

/* ===== 租车信息详情页 ===== */
.news-detail-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 16px 0;
}
.news-detail-left {
    flex: 0 0 250px;
    min-width: 200px;
}
.news-detail-right {
    flex: 1;
    min-width: 280px;
}

.news-detail-content {
    border: 1px solid #999;
    border-radius: 4px;
    padding: 0 12px 12px;
    background: #fafafa;
}
.news-detail-title {
    border-bottom: 1px solid #999;
    text-align: center;
    line-height: 35px;
    font-size: 15px;
}
.news-detail-meta {
    border-bottom: 1px solid #efefef;
    line-height: 22px;
    padding: 2px 0;
    font-size: 13px;
    color: #555;
}
.news-detail-body {
    padding: 8px 0;
    font-size: 13px;
    line-height: 2.8;
    color: #333;
}
.news-detail-body p {
    margin-bottom: 6px;
}
.news-detail-body a:hover {
    color: #d40000;
    text-decoration: underline;
}
.news-detail-body strong {
    color: #1a3a6b;
}
.news-detail-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #efefef;
    padding-top: 6px;
    margin-top: 4px;
    font-size: 13px;
}
.news-detail-nav a:hover {
    color: #d40000;
    text-decoration: underline;
}

.news-related {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid #efefef;
    margin-top: 4px;
    line-height: 26px;
    font-size: 13px;
}
.news-related-left,
.news-related-right {
    flex: 1;
    min-width: 150px;
}
.news-related a:hover {
    color: #d40000;
    text-decoration: underline;
}

/* ===== 租车问答页面 ===== */
.qa-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 16px 0;
}
.qa-main {
    flex: 1;
    min-width: 280px;
}
.qa-sidebar {
    flex: 0 0 260px;
    min-width: 200px;
}

.qa-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: #fafafa;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.qa-top {
    background: #f0f4fa;
    border-color: #1a3a6b;
}
.qa-top h2 a {
    color: #1a3a6b;
    font-size: 16px;
}
.qa-date {
    flex: 0 0 60px;
    text-align: center;
    background: #1a3a6b;
    color: #fff;
    border-radius: 4px;
    padding: 4px 0;
    height: 56px;
    align-self: flex-start;
}
.qa-date .qa-day {
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
}
.qa-date .qa-month {
    display: block;
    font-size: 11px;
    opacity: 0.85;
}
.qa-content {
    flex: 1;
    min-width: 180px;
}
.qa-content h2 {
    font-size: 15px;
    margin-bottom: 4px;
}
.qa-content h2 a {
    color: #1a3a6b;
    text-decoration: none;
}
.qa-content h2 a:hover {
    color: #d40000;
    text-decoration: underline;
}
.qa-content p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin: 4px 0 6px;
}
.qa-meta {
    font-size: 12px;
    color: #999;
    border-top: 1px dashed #eee;
    padding-top: 6px;
}

.qa-main .pagination {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 16px;
    text-align: center;
    background: #fafafa;
}
.qa-main .pagination a,
.qa-main .pagination .current {
    display: inline-block;
    padding: 2px 10px;
    margin: 0 2px;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    color: #1a3a6b;
}
.qa-main .pagination a:hover {
    background: #1a3a6b;
    color: #fff;
}
.qa-main .pagination .current {
    background: #d40000;
    color: #fff;
}

/* ===== 侧边栏 ===== */
.sidebar-box {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 16px;
    overflow: hidden;
}
.sidebar-title {
    background: #1a3a6b;
    color: #fff;
    font-weight: bold;
    padding: 6px 14px;
    font-size: 15px;
}
.sidebar-calendar {
    padding: 10px 12px;
}
.sidebar-list {
    list-style: none;
    padding: 6px 14px;
    margin: 0;
}
.sidebar-list li {
    padding: 4px 0;
    border-bottom: 1px dashed #eee;
    font-size: 13px;
}
.sidebar-list li:last-child {
    border-bottom: none;
}
.sidebar-list li a {
    color: #1a3a6b;
    text-decoration: none;
}
.sidebar-list li a:hover {
    color: #d40000;
}
.sidebar-list .count {
    color: #999;
    font-size: 12px;
}

.sidebar-search {
    padding: 10px 14px;
}
.sidebar-search form {
    display: flex;
    gap: 6px;
}
.sidebar-search input {
    flex: 1;
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
}
.sidebar-search button {
    background: #1a3a6b;
    color: #fff;
    border: none;
    padding: 4px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}
.sidebar-search button:hover {
    background: #2b5590;
}

.sidebar-comments {
    list-style: none;
    padding: 6px 14px;
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
}
.sidebar-comments li {
    padding: 4px 0;
    border-bottom: 1px dashed #eee;
}
.sidebar-comments li:last-child {
    border-bottom: none;
}
.sidebar-comments li a {
    color: #333;
    text-decoration: none;
}
.sidebar-comments li a:hover {
    color: #1a3a6b;
}
.sidebar-comments li b {
    color: #1a3a6b;
}

/* ===== 分页 ===== */
.pagination {
    padding: 10px 12px;
    text-align: center;
    font-size: 13px;
    color: #333;
    line-height: 2;
    border: 1px solid #999;
    border-radius: 4px;
    margin-top: 12px;
    background: #fafafa;
}
.pagination a {
    color: #1a3a6b;
    text-decoration: none;
    padding: 0 2px;
}
.pagination a:hover {
    color: #d40000;
    text-decoration: underline;
}
.pagination .current {
    color: #d40000;
    font-weight: bold;
}

/* ===== 租车问答详情页 ===== */
.qa-detail-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 16px 0;
}
.qa-detail-main {
    flex: 1;
    min-width: 280px;
}
.qa-detail-sidebar {
    flex: 0 0 260px;
    min-width: 200px;
}

.qa-detail-box {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 16px 20px;
    background: #fafafa;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.qa-detail-date {
    flex: 0 0 60px;
    text-align: center;
    background: #1a3a6b;
    color: #fff;
    border-radius: 4px;
    padding: 4px 0;
    height: 56px;
    align-self: flex-start;
}
.qa-detail-date .qa-detail-day {
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
}
.qa-detail-date .qa-detail-month {
    display: block;
    font-size: 11px;
    opacity: 0.85;
}
.qa-detail-content {
    flex: 1;
    min-width: 200px;
}
.qa-detail-content h2 {
    font-size: 18px;
    color: #1a3a6b;
    margin-bottom: 10px;
}
.qa-detail-body {
    font-size: 14px;
    line-height: 3;
    color: #333;
    padding: 6px 0;
}
.qa-detail-body a:hover {
    color: #d40000;
    text-decoration: underline;
}
.qa-detail-tags {
    font-size: 13px;
    color: #666;
    padding: 4px 0;
    border-bottom: 1px dashed #eee;
}
.qa-detail-tags a:hover {
    color: #d40000;
    text-decoration: underline;
}
.qa-detail-meta {
    font-size: 13px;
    color: #999;
    padding: 4px 0;
}
.qa-detail-meta a:hover {
    color: #d40000;
}
.qa-detail-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid #eee;
    margin-top: 4px;
    font-size: 13px;
}
.qa-detail-nav a:hover {
    color: #d40000;
    text-decoration: underline;
}

/* ===== 景点包车页面 ===== */
.jdbc-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 8px 12px !important;
    margin-bottom: 16px !important;
}
.jdbc-tags-label {
    flex: 0 0 58px !important;
    background: #1a3a6b !important;
    color: #fff !important;
    font-weight: bold !important;
    font-size: 14px !important;
    text-align: center !important;
    padding: 10px 4px !important;
    border-radius: 4px !important;
    line-height: 1.3 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 48px !important;
}
.jdbc-tags-list {
    flex: 1 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px 10px !important;
    padding: 2px 0 !important;
}
.jdbc-tags-list a {
    color: #1a3a6b !important;
    text-decoration: none !important;
    font-size: 14px !important;
    padding: 2px 4px !important;
    border-radius: 3px !important;
    background: transparent !important;
    border: none !important;
    transition: color 0.3s ease !important;
    white-space: nowrap !important;
}
.jdbc-tags-list a:hover {
    color: #d40000 !important;
    text-decoration: underline !important;
}

.jdbc-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fafafa;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 0;
}
.jdbc-item-img {
    flex: 0 0 180px;
    padding: 8px 8px 8px 10px;
}
.jdbc-item-img img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #f0f0f0;
}
.jdbc-item-info {
    flex: 1;
    padding: 8px 8px 8px 2px;
    min-width: 200px;
    font-size: 13px;
    line-height: 1.7;
    color: #444;
}
.jdbc-item-info a {
    color: #1a3a6b;
    text-decoration: none;
}
.jdbc-item-info a:hover {
    color: #d40000;
    text-decoration: underline;
}
.jdbc-item-info b {
    font-size: 15px;
    display: inline-block;
    margin-bottom: 2px;
}
.jdbc-item-info p {
    margin: 1px 0;
    font-size: 13px;
    line-height: 1.6;
}
.jdbc-item-footer {
    width: 100%;
    background: #1a3a6b;
    color: #fff;
    padding: 4px 14px;
    font-size: 13px;
    line-height: 28px;
    border-radius: 0 0 6px 6px;
}

.jdbc-guide {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 12px;
    background: #fff8e8;
    font-size: 13px;
    line-height: 1.8;
    color: #333;
}
.jdbc-guide span {
    color: #d40000;
    font-weight: bold;
}
.jdbc-guide a:hover {
    color: #d40000;
    text-decoration: underline;
}

.jdbc-detail-box {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 14px;
    background: #fafafa;
}
.jdbc-detail-img {
    float: left;
    padding-right: 12px;
}
.jdbc-detail-img img {
    width: 200px;
    height: 130px;
    border: 1px solid #ccc;
    background: #ddd;
    object-fit: cover;
    border-radius: 4px;
}
.jdbc-detail-meta {
    overflow: hidden;
}
.jdbc-detail-row {
    border-bottom: 1px solid #efefef;
    line-height: 22px;
    padding: 3px 0;
    font-size: 13px;
    color: #333;
}
.jdbc-detail-row:last-child {
    border-bottom: none;
}
.jdbc-detail-desc {
    clear: both;
    padding-top: 10px;
    font-size: 13px;
    line-height: 1.8;
    color: #333;
}
.jdbc-detail-desc p {
    margin-bottom: 6px;
}
.jdbc-detail-desc a:hover {
    color: #d40000;
    text-decoration: underline;
}

/* ===== 在线预订页面 ===== */
.booking-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 16px 0;
}
.booking-left {
    flex: 0 0 250px;
    min-width: 200px;
}
.booking-right {
    flex: 1;
    min-width: 280px;
}

.booking-form-box .book-form .form-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.booking-form-box .book-form .form-row>label:first-child {
    width: 70px;
    font-size: 13px;
    color: #333;
    flex-shrink: 0;
}
.booking-form-box .book-form .form-row .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    align-items: center;
    flex: 1;
}
.booking-form-box .book-form .form-row .radio-group label {
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    margin-right: 0;
    font-weight: normal;
}
.booking-form-box .book-form .form-row .radio-group input[type="radio"] {
    width: 14px;
    height: 14px;
    margin: 0;
    flex: none;
    accent-color: #1a3a6b;
    margin-right: 6px;
    cursor: pointer;
}
.booking-form-box .book-form .form-row .select-group select {
    flex: 1;
    min-width: 120px;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    height: 34px;
}
.booking-form-box .book-form .form-row .select-group a {
    color: #1a3a6b;
    font-size: 13px;
    white-space: nowrap;
}
.booking-form-box .book-form .form-row .label-inline {
    width: auto !important;
    margin-left: 12px;
    font-size: 13px;
    color: #333;
    flex-shrink: 0;
}
.booking-form-box .book-form .form-row input,
.booking-form-box .book-form .form-row select {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    min-width: 100px;
    height: 34px;
}
.booking-form-box .book-form .form-row textarea {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    min-width: 100px;
    resize: vertical;
    font-family: inherit;
    height: 70px;
}
.booking-form-box .book-form .form-row input::placeholder,
.booking-form-box .book-form .form-row textarea::placeholder {
    color: #bbb;
}
.booking-form-box .book-form .form-row.captcha-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
}
.booking-form-box .book-form .form-row.captcha-row>label:first-child {
    flex-shrink: 0;
    width: 70px;
}
.booking-form-box .book-form .form-row.captcha-row input {
    width: 140px;
    flex: none;
    height: 34px;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
}
.booking-form-box .book-form .form-row.captcha-row img {
    height: 34px;
    flex-shrink: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}
.booking-form-box .book-form .btn-submit {
    background: #d40000;
    color: #fff;
    border: none;
    padding: 8px 30px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    margin-top: 4px;
}

/* ===== 全新单选框样式 ===== */
.form-row-new {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.form-label-new {
    width: 70px;
    font-size: 13px;
    color: #333;
    flex-shrink: 0;
}
.radio-group-new {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 25px;
    flex: 1;
}
.radio-item-new {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    background: none !important;
}
.radio-item-new input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    margin: 0 8px 0 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
    accent-color: #1a3a6b;
    cursor: pointer;
}
.radio-text-new {
    display: inline;
    line-height: 1.4;
    font-size: 13px;
    color: #333;
}

/* ===== 备注 ===== */
.booking-note {
    border: 1px solid #999;
    border-radius: 4px;
    padding: 10px 14px;
    margin-top: 10px;
    background: #fff8e8;
    font-size: 13px;
    line-height: 1.8;
    color: #d40000;
    font-weight: bold;
}
.booking-note a {
    color: #1a3a6b;
    text-decoration: none;
    font-weight: normal;
}
.booking-note a:hover {
    color: #d40000;
    text-decoration: underline;
}

/* ===== 热门线路标签 ===== */
.hot-tags-wrap {
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    margin-bottom: 12px !important;
    background: #fafafa !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 6px 12px !important;
}
.hot-tags-list {
    flex: 1 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px 12px !important;
    padding: 4px 0 !important;
}
.hot-tags-list a {
    color: #1a3a6b !important;
    text-decoration: none !important;
    font-size: 14px !important;
    padding: 2px 4px !important;
    background: transparent !important;
    border: none !important;
    transition: color 0.3s ease !important;
    white-space: nowrap !important;
}
.hot-tags-list a:hover {
    color: #d40000 !important;
    text-decoration: underline !important;
}

/* ===== 内容详情 ===== */
.content-detail {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 14px 16px;
    background: #fafafa;
}
.content-detail h2 {
    font-size: 18px;
    color: #1a3a6b;
    border-bottom: 1px solid #efefef;
    padding-bottom: 8px;
    margin-bottom: 12px;
}
.content-detail-body {
    font-size: 14px;
    line-height: 1.9;
    color: #444;
}
.content-detail-body p {
    margin-bottom: 8px;
}
.content-detail-body h3 {
    font-size: 16px;
    color: #1a3a6b;
    margin: 16px 0 8px;
}
.content-detail-body h4 {
    font-size: 15px;
    color: #1a3a6b;
    margin: 12px 0 6px;
}

/* ===== 其他推荐线路 ===== */
.other-links {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #efefef;
}
.other-links-title {
    font-weight: bold;
    color: #1a3a6b;
    font-size: 14px;
    margin-bottom: 6px;
}
.other-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.other-links-list li {
    padding: 4px 0 4px 8px;
    border-bottom: 1px dashed #ddd;
}
.other-links-list li a {
    color: #1a3a6b;
    text-decoration: none;
    font-size: 13px;
}
.other-links-list li a:hover {
    color: #d40000;
    text-decoration: underline;
}

/* ===== 英文报价页面 ===== */
.english-header {
    text-align: center;
    padding: 16px 0 8px;
}
.english-header h1 {
    font-size: 18px;
    font-weight: bold;
    color: #1a3a6b;
}
.english-header h1 a {
    color: #1a3a6b;
    text-decoration: none;
}
.english-header h1 a:hover {
    text-decoration: underline;
}
.english-header h1 span {
    font-weight: normal;
    font-size: 16px;
}
.english-hotline {
    font-size: 14px;
    color: #333;
    margin: 4px 0;
}
.english-contact {
    font-size: 13px;
    line-height: 1.8;
    color: #333;
    margin: 6px 0 10px;
}
.english-contact a {
    color: #1a3a6b;
    text-decoration: none;
}
.english-contact a:hover {
    color: #d40000;
    text-decoration: underline;
}
.english-header hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px 0 16px;
}

/* ===== 英文表格 ===== */
.english-table-wrap {
    overflow-x: auto;
    margin: 0 0 16px;
}
.english-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    border: 1px solid #999;
    min-width: 700px;
}
.english-table thead th {
    background: #1a3a6b;
    color: #fff;
    padding: 6px 4px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #666;
    font-size: 13px;
}
.english-table tbody td {
    padding: 4px 6px;
    border: 1px solid #999;
    text-align: center;
    background: #fafafa;
}
.english-table tbody tr:nth-child(even) td {
    background: #f0f4fa;
}
.english-table tbody tr:hover td {
    background: #e0e8f0;
}

/* ===== 英文须知 ===== */
.english-notes {
    font-size: 12px;
    line-height: 1.8;
    color: #333;
    padding: 10px 4px;
    border-top: 1px solid #ddd;
    margin-top: 8px;
}
.english-notes a {
    color: #1a3a6b;
    text-decoration: none;
}
.english-notes a:hover {
    color: #d40000;
    text-decoration: underline;
}

/* ===== 联系我们页面样式 ===== */
.contact-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 30px 35px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.contact-title {
    font-size: 22px;
    color: #1a3a6b;
    border-bottom: 3px solid #1a3a6b;
    padding-bottom: 14px;
    margin-bottom: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}
.contact-list p {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #f0f0f0;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}
.contact-list p:last-of-type {
    border-bottom: none;
}
.contact-list p i {
    font-size: 20px;
    color: #1a3a6b;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
    margin-right: 10px;
}
.contact-list p a {
    color: #1a3a6b;
    transition: color 0.3s;
}
.contact-list p a:hover {
    color: #d40000;
}
.contact-wx {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact-wx img {
    display: block;
    margin: 0 auto;
}
.contact-wx span {
    display: block;
    margin-top: 10px;
}
.contact-wx span::before {
    content: "📱 ";
}

/* ===== 评论样式 ===== */
.qa-comment-item {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}
.qa-comment-item:last-child {
    border-bottom: none;
}
.qa-comment-name {
    font-size: 14px;
    color: #888;
    margin-bottom: 6px;
}
.qa-comment-name a {
    color: #333;
    font-weight: bold;
}
.qa-comment-name .reply-btn {
    color: #007bff;
    margin-left: 15px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
}
.qa-comment-name .reply-btn:hover {
    text-decoration: underline;
}
.qa-comment-text {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}
.qa-comment-list .tac {
    text-align: center;
    padding: 20px 0;
    color: #999;
}

.qa-comment-sub {
    margin-left: 50px;
    padding: 12px 16px;
    margin-top: 12px;
    border-left: 3px solid #007bff;
    background: #f8faff;
    border-radius: 0 6px 6px 0;
}
.qa-comment-sub .qa-comment-name {
    font-size: 13px;
    color: #555;
}
.qa-comment-sub .qa-comment-text {
    font-size: 14px;
    color: #333;
    margin-top: 4px;
}
.qa-comment-sub .reply-btn {
    font-size: 12px;
    margin-left: 10px;
}

/* ===== 回复表单 ===== */
.reply-form-wrap {
    display: none;
    margin-top: 16px;
    padding: 18px 22px 16px 22px;
    background: #f8faff;
    border-radius: 8px;
    border: 1px solid #e8edf5;
}
.reply-form-wrap .reply-to {
    color: #555;
    font-size: 14px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e0e6ef;
}
.reply-form-wrap .reply-to b {
    color: #007bff;
}
.reply-form-wrap .form-group {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.reply-form-wrap .form-group label {
    width: 70px;
    font-size: 14px;
    color: #555;
    font-weight: normal;
    flex-shrink: 0;
}
.reply-form-wrap .form-group .form-control {
    flex: 1;
    min-width: 200px;
    padding: 8px 12px;
    border: 1px solid #dce1ea;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.2s;
    background: #fff;
    color: #333;
}
.reply-form-wrap .form-group .form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.reply-form-wrap .form-group textarea.form-control {
    resize: vertical;
    min-height: 70px;
}
.reply-form-wrap .form-group .captcha-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.reply-form-wrap .form-group .captcha-wrap .form-control {
    width: 130px;
    flex: none;
    text-align: center;
    letter-spacing: 2px;
}
.reply-form-wrap .form-group .captcha-wrap .captcha-img {
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #dce1ea;
    padding: 2px 4px;
    background: #fff;
    height: 38px;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
}
.reply-form-wrap .form-group .captcha-wrap .captcha-img:hover {
    opacity: 0.8;
}
.reply-form-wrap .form-group .captcha-wrap .captcha-tip {
    font-size: 12px;
    color: #999;
}
.reply-form-wrap .form-actions {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid #eef3f9;
}
.reply-form-wrap .btn-submit {
    padding: 8px 28px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}
.reply-form-wrap .btn-submit:hover {
    background: #0069d9;
}
.reply-form-wrap .btn-cancel {
    padding: 8px 24px;
    background: #e9ecef;
    color: #555;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}
.reply-form-wrap .btn-cancel:hover {
    background: #dde0e4;
}

/* ===== 发表评论表单 ===== */
.qa-comment-post {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f2f5;
}
.qa-comment-post h4 {
    font-size: 18px;
    color: #222;
    margin-bottom: 18px;
    font-weight: 600;
}
.qa-comment-post .form-group {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.qa-comment-post .form-group label {
    width: 90px;
    font-size: 14px;
    color: #555;
    font-weight: normal;
    flex-shrink: 0;
}
.qa-comment-post .form-group label .required {
    color: #e74c3c;
    margin-right: 2px;
}
.qa-comment-post .form-group .form-control {
    flex: 1;
    min-width: 250px;
    padding: 9px 14px;
    border: 1px solid #dce1ea;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.2s;
    background: #fff;
    color: #333;
}
.qa-comment-post .form-group .form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.qa-comment-post .form-group textarea.form-control {
    resize: vertical;
    min-height: 100px;
}
.qa-comment-post .form-group .captcha-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.qa-comment-post .form-group .captcha-wrap .form-control {
    width: 140px;
    flex: none;
    text-align: center;
    letter-spacing: 3px;
}
.qa-comment-post .form-group .captcha-wrap .captcha-img {
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #dce1ea;
    padding: 2px 6px;
    background: #fff;
    height: 42px;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
}
.qa-comment-post .form-group .captcha-wrap .captcha-img:hover {
    opacity: 0.8;
}
.qa-comment-post .form-group .captcha-wrap .captcha-tip {
    font-size: 12px;
    color: #999;
}
.qa-comment-post .form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 6px;
    padding-left: 90px;
}
.qa-comment-post .form-actions .btn-submit {
    padding: 10px 36px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s;
}
.qa-comment-post .form-actions .btn-submit:hover {
    background: #0069d9;
}
.qa-comment-post .form-actions .remember-me {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #777;
    cursor: pointer;
}
.qa-comment-post .form-actions .remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #007bff;
}
.qa-comment-tip {
    margin-top: 14px;
    padding: 12px 16px;
    background: #f8faff;
    border-radius: 5px;
    font-size: 13px;
    color: #888;
    border-left: 3px solid #007bff;
}

/* ===== 左侧菜单 ===== */
.left-menu {
    border: 1px solid #999;
    border-radius: 4px;
    margin-top: 12px;
    overflow: hidden;
}
.left-menu-title {
    background: #1a3a6b;
    color: #fff;
    font-weight: bold;
    padding: 6px 16px;
    font-size: 15px;
}
.left-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.left-menu-list li {
    border-top: 1px solid #999;
    padding: 6px 16px;
    font-size: 13px;
}
.left-menu-list li:first-child {
    border-top: none;
}
.left-menu-list li a {
    color: #1a3a6b;
    text-decoration: none;
}
.left-menu-list li a:hover {
    color: #d40000;
}

/* ===== 车型条目（列表页） ===== */
.car-item-detail {
    border-top: 1px solid #666;
    padding: 10px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    background: #fafafa;
}
.car-item-detail:nth-child(2) {
    border-top: none;
}
.car-item-img {
    flex: 0 0 200px;
}
.car-item-img img {
    width: 200px;
    height: 120px;
    border: 1px solid #ccc;
    background: #ddd;
    object-fit: cover;
    border-radius: 4px;
}
.car-item-info {
    flex: 1;
    min-width: 160px;
    font-size: 13px;
    line-height: 1.8;
    color: #333;
}
.car-item-info a {
    color: #1a3a6b;
    font-weight: bold;
    font-size: 15px;
}
.car-item-info .price-red {
    color: #d40000;
    font-weight: bold;
    font-size: 16px;
}

/* ===== 租车须知 ===== */
.rental-notes {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 16px 20px;
    margin: 16px 0;
    background: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    line-height: 1.9;
    color: #c00;
}
.rental-notes a {
    color: #1a3a6b;
}
.notes-left {
    flex: 1;
    min-width: 200px;
}
.notes-right {
    flex: 2;
    min-width: 280px;
}
.note-title {
    font-weight: bold;
}

/* ===== Layui 日历适配侧边栏 ===== */
#calendar-container .layui-laydate {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}
#calendar-container .layui-laydate-main {
    width: 100% !important;
}
#calendar-container .layui-laydate-header {
    padding: 2px 0 6px 0 !important;
}
#calendar-container .layui-laydate-header i {
    font-size: 12px !important;
}
#calendar-container .layui-laydate-header .laydate-set-ym span {
    font-size: 13px !important;
    font-weight: bold !important;
}
#calendar-container .layui-laydate-content {
    padding: 2px !important;
}
#calendar-container .layui-laydate-content td {
    padding: 1px !important;
}
#calendar-container .layui-laydate-content td .layui-laydate-cell {
    height: 26px !important;
    line-height: 26px !important;
    font-size: 12px !important;
    border-radius: 4px !important;
}
#calendar-container .layui-laydate-content td .layui-laydate-cell:hover {
    background: #e6f2ff !important;
}
#calendar-container .layui-laydate-content th {
    padding: 2px !important;
    font-size: 11px !important;
    color: #999 !important;
    font-weight: normal !important;
}
#calendar-container .layui-laydate-footer {
    display: none !important;
}
#calendar-container .layui-laydate-content td .layui-this {
    background: #007bff !important;
    color: #fff !important;
}

/* ===== 首页左侧栏间距 ===== */
.left-side .card {
    margin-bottom: 28px;
}
.left-side .contact-info table td {
    padding: 10px 6px;
    font-size: 14px;
}
.left-side .contact-info table td:first-child {
    width: 110px;
    color: #666;
}
.left-side .contact-info table td strong {
    font-size: 15px;
}
.left-side .service-grid {
    gap: 16px 14px;
    padding: 4px 0;
}
.left-side .service-grid div {
    padding: 16px 0 14px;
    border-radius: 8px;
    transition: all 0.2s;
}
.left-side .service-grid div img {
    width: 54px;
    height: 50px;
    margin-bottom: 8px;
}
.left-side .service-grid div a {
    font-size: 14px;
    font-weight: 500;
}
.left-side .jingdian-tags {
    gap: 14px 20px !important;
    padding: 10px 2px !important;
}
.left-side .jingdian-tags a {
    padding: 8px 20px !important;
    font-size: 16px !important;
    border-radius: 20px;
    background: #f0f4fa;
    border: 1px solid #e8edf5;
    transition: all 0.25s ease;
}
.left-side .jingdian-tags a:hover {
    background: #1a3a6b;
    color: #fff;
    border-color: #1a3a6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 58, 107, 0.25);
}

/* ============================================================
   移动端 & 平板端 响应式样式
   ============================================================ */
@media (max-width: 992px) {
    .car-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .car-item img {
        height: 140px;
    }
    .car-grid-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .car-item-card img {
        height: 140px;
    }
    .jdbc-item-info {
        width: auto;
        float: none;
    }
    .jdbc-item-img {
        float: none;
        text-align: center;
        padding: 8px 0 0;
    }
    .jdbc-item-img img {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 200/120;
    }
}

@media (max-width: 768px) {
    /* 隐藏 PC 端元素 */
    .main-nav,
    .search-area,
    .contact-area,
    .half-small,
    .half-large,
    .left-ad,
    .top-bar-right,
    .top-bar-left span,.left-side .card {
        display: none !important;
    }
 .container {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
.w{
    padding: 1%;
    width: 100%!important;
     max-width: 100% !important;
}
.two-col{
    gap: 0;
    margin: 5px 0;
}
.iabout{
    display: block!important;
       visibility: visible !important;
}
.jdbc-item-img {
        flex: 0 0 100% !important;
        padding: 8px 10px 0 10px !important;
        text-align: center !important;
    }

    .jdbc-item-img img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        aspect-ratio: 180/110 !important;
    }

    .jdbc-item-info {
        flex: 0 0 100% !important;
        padding: 6px 12px 8px 12px !important;
    }

    .jdbc-tags {
        padding: 8px 10px !important;
        gap: 6px 8px !important;
        width: 100% !important;
    }

    .jdbc-tags-label {
        flex: 0 0 46px !important;
        font-size: 12px !important;
        min-height: 38px !important;
        padding: 6px 2px !important;
    }

    .jdbc-tags-list {
        flex: 1 !important;
        gap: 4px 8px !important;
    }

    .jdbc-tags-list a {
        font-size: 12px !important;
        padding: 2px 4px !important;
    }
.left-jd-side {
        display: block !important;
        flex: 1 1 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        padding: 0 8px !important;
        box-sizing: border-box !important;
        margin-bottom: 12px !important;
    }

    .left-jd-side .card {
        display: block !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .left-jd-side .left-ad {
        display: block !important;
    }

    .left-jd-side .left-ad img {
        width: 100% !important;
        height: auto !important;
    }

    .left-jd-side .left-menu {
        width: 100% !important;
        margin: 0 !important;
    }

    .left-jd-side .left-menu-title {
        width: 100% !important;
        padding: 10px 16px !important;
        font-size: 15px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        cursor: pointer !important;
        background: #1a3a6b !important;
        color: #fff !important;
        font-weight: bold !important;
        border-radius: 6px 6px 0 0 !important;
    }

    .left-jd-side .left-menu-title .menu-arrow {
        font-size: 22px !important;
        font-weight: bold !important;
        transition: transform 0.3s ease !important;
        color: #ffd966 !important;
    }

    .left-jd-side .left-menu-title .menu-arrow.open {
        transform: rotate(45deg) !important;
    }

    .left-jd-side .left-menu-list {
        display: none !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        background: rgba(26, 58, 107, 0.92) !important;
        border-radius: 0 0 6px 6px !important;
    }

    .left-jd-side .left-menu-list.show {
        display: block !important;
    }

    .left-jd-side .left-menu-list li {
        padding: 10px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        list-style: none !important;
    }

    .left-jd-side .left-menu-list li:last-child {
        border-bottom: none !important;
    }

    .left-jd-side .left-menu-list li a {
        color: #fff !important;
        display: block !important;
        text-decoration: none !important;
        font-size: 14px !important;
    }

    .left-jd-side .left-menu-list li a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
    }
     /* ===== 文章内容图片自适应 ===== */
    .qa-detail-body img,
    .news-detail-body img,
    .content-detail-body img,
    .jdbc-detail-desc img,
    .qa-detail-content img,
    .news-detail-content img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 10px auto !important;
        border-radius: 4px !important;
        box-sizing: border-box !important;
    }

    /* 强制覆盖内联样式 */
    .qa-detail-body img[style],
    .news-detail-body img[style],
    .content-detail-body img[style],
    .jdbc-detail-desc img[style] {
        max-width: 100% !important;
        height: auto !important;
        width: auto !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        float: none !important;
    }

    .qa-detail-body p img,
    .news-detail-body p img,
    .content-detail-body p img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 8px auto !important;
    }
.booking-wrap{
    gap: 0px;
    margin: 5px 0;
}
    /* 顶部栏移动端 */
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        font-size: 11px;
    }
    .top-bar-left {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 4px;
    }
    .top-bar-left a {
        font-size: 11px;
    }

    /* Banner 文字 */
    .banner-text h1 {
        font-size: 28px;
    }
    .banner-text p {
        font-size: 16px;
    }

    /* 车型展示 */
    .car-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .car-item {
        padding: 6px 4px 8px;
    }
    .car-item img {
        height: 120px;
    }
    .car-item .car-info b {
        font-size: 12px;
        max-width: 60px;
    }
    .car-item .car-info .price {
        font-size: 11px;
    }
    .car-grid-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .car-item-card {
        padding: 6px 4px 8px;
    }
    .car-item-card img {
        height: 120px;
    }
    .car-item-card .car-name {
        font-size: 12px;
    }
    .car-item-card .car-price {
        font-size: 13px;
    }

    /* 工具网格 */
    .tool-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* 新闻列表 */
    .news-left {
        flex: 1 1 100%;
    }
    .news-right {
        flex: 1 1 100%;
    }
    .news-intro {
        flex-direction: column;
        align-items: flex-start;
    }
    .news-intro-img {
        flex: 0 0 auto;
    }
    .news-intro-img img {
        width: 100%;
        height: auto;
        max-width: 120px;
    }
    .news-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .news-item .news-date {
        margin-left: 0;
        margin-top: 2px;
    }
    .news-detail-left {
        flex: 1 1 100%;
    }
    .news-detail-right {
        flex: 1 1 100%;
    }
    .news-detail-images img {
        width: 100%;
        height: auto;
        aspect-ratio: 200/150;
    }
    .news-related {
        flex-direction: column;
    }
    .news-related-left,
    .news-related-right {
        flex: 1 1 100%;
    }
    .news-detail-nav {
        flex-direction: column;
        height: auto;
        line-height: 2;
    }

    /* 问答页面 */
    .qa-sidebar,.qa-detail-sidebar {
        display: none;
    }
.qa-detail-content,.news-detail-right,.right-side{
    width: 100%;
    max-width: 100%;
        flex: none;
}

    /* 评论表单 */
    .qa-comment-post .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    .qa-comment-post .form-group label {
        width: auto;
        margin-bottom: 4px;
    }
    .qa-comment-post .form-group .form-control {
        min-width: auto;
        width: 100%;
    }
    .qa-comment-post .form-actions {
        padding-left: 0;
    }
    .qa-comment-post .form-group .captcha-wrap .form-control {
        width: 100px;
    }
    .reply-form-wrap .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    .reply-form-wrap .form-group label {
        width: auto;
        margin-bottom: 4px;
    }
    .reply-form-wrap .form-group .form-control {
        min-width: auto;
        width: 100%;
    }
    .reply-form-wrap .form-group .captcha-wrap .form-control {
        width: 100px;
    }
    .qa-comment-sub {
        margin-left: 15px;
        padding: 10px 12px;
    }

    /* ===== 移动端菜单折叠 ===== */
    .left-menu-title {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #1a3a6b;
        color: #fff;
        font-weight: bold;
        padding: 6px 16px;
        font-size: 15px;
    }
    .menu-arrow {
        font-size: 20px;
        font-weight: bold;
        transition: transform 0.3s ease;
        color: #ffd966;
    }
    .menu-arrow.open {
        transform: rotate(45deg);
    }
    .left-menu-list {
        display: block !important;
        padding: 0;
        margin: 0;
        list-style: none;
        background: rgba(26, 58, 107, 0.9);
    }
    .left-menu-list.hide {
        display: none !important;
    }
    .left-menu-list li {
        padding: 8px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        list-style: none;
    }
    .left-menu-list li:last-child {
        border-bottom: none;
    }
    .left-menu-list li a {
        color: #fff;
        display: block;
        text-decoration: none;
        font-size: 14px;
    }
    .left-menu-list li a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* 景点包车 */
    .jdbc-left {
        flex: 1 1 100%;
    }
    .jdbc-right {
        flex: 1 1 100%;
    }
    .jdbc-tags-label {
        flex: 0 0 46px !important;
        font-size: 12px !important;
        min-height: 38px !important;
        padding: 6px 2px !important;
    }
    .jdbc-tags-list a {
        font-size: 12px !important;
        padding: 2px 4px !important;
    }
    .jdbc-item-img {
        flex: 0 0 100%;
        padding: 8px 10px 0 10px;
        text-align: center;
    }
    .jdbc-item-img img {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 180/110;
    }
    .jdbc-item-info {
        flex: 0 0 100%;
        padding: 6px 12px 8px 12px;
    }
    .jdbc-item-info p {
        font-size: 12px;
    }
    .jdbc-item-footer {
        font-size: 12px;
        padding: 3px 12px;
        line-height: 26px;
    }
    .jdbc-detail-left {
        flex: 1 1 100%;
    }
    .jdbc-detail-right {
        flex: 1 1 100%;
    }
    .jdbc-detail-img {
        float: none;
        display: block;
        text-align: center;
        padding-right: 0;
        padding-bottom: 10px;
    }
    .jdbc-detail-img img {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 200/130;
    }
    .jdbc-guide {
        font-size: 12px;
    }
    .jdbc-tags {
        padding: 8px 0 !important;
        gap: 6px 8px !important;
    }

    /* 在线预订 */
    .booking-left {
        flex: 1 1 100%;
    }
    .booking-right {
        flex: 1 1 100%;
    }
    .booking-form-box .book-form .form-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .booking-form-box .book-form .form-row>label:first-child {
        width: 100%;
        margin-bottom: 2px;
    }
    .booking-form-box .book-form .form-row input,
    .booking-form-box .book-form .form-row select,
    .booking-form-box .book-form .form-row textarea {
        width: 100%;
        flex: none;
    }
    .booking-form-box .book-form .form-row .radio-group {
        width: 100%;
    }
    .booking-form-box .book-form .form-row .select-group {
        width: 100%;
    }
    .booking-form-box .book-form .form-row .label-inline {
        margin-left: 0;
        margin-top: 4px;
    }
    .booking-form-box .book-form .form-row.captcha-row {
        flex-wrap: wrap;
    }
    .booking-form-box .book-form .form-row.captcha-row input {
        width: 120px;
    }

    /* 热门线路 */
    .hot-tags-wrap {
        padding: 8px 10px !important;
        gap: 4px 8px !important;
    }
    .hot-tags-label {
        flex: 0 0 46px !important;
        font-size: 12px !important;
        min-height: 36px !important;
        padding: 6px 2px !important;
    }
    .hot-tags-list a {
        font-size: 12px !important;
        padding: 2px 4px !important;
    }

    .content-detail h2 {
        font-size: 16px;
    }
    .content-detail-body {
        font-size: 13px;
    }
    .content-detail-body h3 {
        font-size: 15px;
    }
    .content-detail-body h4 {
        font-size: 14px;
    }
    .other-links-list li a {
        font-size: 12px;
    }

    /* 联系我们 */
    .contact-card {
        padding: 18px 16px;
    }
    .contact-title {
        font-size: 18px;
    }
    .contact-list p {
        font-size: 13px;
        padding: 8px 0;
    }
    .contact-list p i {
        font-size: 18px;
        width: 28px;
    }
    .contact-wx {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-wx img {
        width: 130px;
        height: 130px;
    }

    /* 分页 */
    .pagination {
        font-size: 12px;
        padding: 8px 6px;
    }

    /* 其他 */
    .pagebar .pagination a {
        padding: 6px 10px;
        font-size: 12px;
    }
    .car-list-col {
        min-width: 100%;
    }
    .car-item-img {
        flex: 0 0 100%;
    }
    .car-item-img img {
        width: 100%;
        height: auto;
        aspect-ratio: 200/120;
    }
    .rental-notes {
        flex-direction: column;
    }
    .shuttle-left {
        flex: 1 1 100%;
    }
    .shuttle-right {
        flex: 1 1 100%;
    }
    .shuttle-car-img {
        flex: 0 0 100%;
    }
    .shuttle-car-img img {
        width: 100%;
        height: auto;
        aspect-ratio: 200/120;
    }
    .shuttle-car-table table td {
        padding: 3px 6px;
        font-size: 12px;
    }
    .shuttle-car-table table td:first-child,
    .shuttle-car-table table td:nth-child(3) {
        width: 60px;
    }
    .shuttle-car-table table td:nth-child(2),
    .shuttle-car-table table td:last-child {
        width: 80px;
    }
    .airport-left {
        flex: 1 1 100%;
    }
    .airport-right {
        flex: 1 1 100%;
    }
    .airport-table {
        font-size: 12px;
    }
    .airport-table thead th,
    .airport-table tbody td {
        padding: 4px 5px;
    }
    .airport-title {
        font-size: 14px;
        padding: 6px 10px;
    }
    .airport-notes {
        font-size: 12px;
    }
    .english-header h1 {
        font-size: 16px;
    }
    .english-header h1 span {
        font-size: 14px;
        display: block;
        margin-top: 4px;
    }
    .english-table {
        font-size: 11px;
        min-width: 600px;
    }
    .english-table thead th,
    .english-table tbody td {
        padding: 3px 4px;
    }
    .english-notes {
        font-size: 11px;
    }
    footer{
        padding: 0!important;
    }
    .f_menu {
        width: 100% !important;
        margin: 0 !important;
        display: block !important;
        background: #2b5590;
        height: 70px;
        position: fixed;
        bottom: 0;
        left: 0 !important;
        right: 0 !important;
        overflow: hidden;
        padding-bottom: env(safe-area-inset-bottom, 0);
        z-index: 99999;
        box-sizing: border-box !important;
    }
    .f_menu ul {
        padding: 12px 0 0 0 !important;
        width: 100% !important;
        margin: 0 !important;
        text-align: center;
        display: flex;
        list-style: none !important;
    }
    .f_menu ul li {
        width: 33.333% !important;
        list-style: none !important;
        text-align: center;
        padding: 0 !important;
        margin: 0 !important;
    }
    .f_menu ul li a {
        color: #fff;
        display: inline-block;
        line-height: 30px;
        text-decoration: none;
        font-size: 12px;
    }
    .f_menu ul li a .iconfont {
        display: block;
        font-size: 28px;
        color: #fff;
        line-height: 1.2;
    }
    .f_menu ul li a .title {
        display: block;
        font-size: 12px;
        color: #fff;
        line-height: 1.4;
    }
    .f_menu .wx {
        display: block;
        line-height: 30px;
    }
  .wx {
    display: block;
    z-index: 2247483630;
    line-height: 30px;
  }
  .jconfirm-holder {
    width: 80%;
    margin: 0 auto;
  }
  .jconfirm-box {
    text-align: center;
  }
  .jconfirm-box img {
    width: 2.49094203rem;
    height: 2.49094203rem;
  }
  .jconfirm-box .wxtitle {
    color: #000;
    font-size: 1.13224638rem;
    line-height: 1.13224638rem;
    font-weight: bold;
    margin: 0.56612319rem 0;
    font-family: STheiti SC, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif;
    margin-top: 0;
  }
  .jconfirm-box .wechat-number,
  .jconfirm-box .desc {
    color: #666;
    line-height: 1.13224638rem;
    margin: 0.56612319rem 0;
  }
  .jconfirm-box .desc {
    margin-bottom: 0;
  }
  .jconfirm-box .jconfirm-content {
    overflow: hidden !important;
  }
  .jconfirm-box .jconfirm-buttons {
    float: none !important;
  }
  .jconfirm-box .jconfirm-buttons .btn {
    background-color: #1aad17 !important;
    border-radius: 0.50951087rem !important;
    width: 8.15217391rem;
    height: 2.54755435rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    color: #fff !important;
  }
}

@media (max-width: 480px) {
    .jingdian-tags {
        gap: 6px 10px;
    }
    .jingdian-tags a {
        font-size: 13px;
        padding: 4px 8px;
    }
    .car-item img {
        height: 100px;
    }
    .car-item .car-info b {
        font-size: 11px;
        max-width: 50px;
    }
    .car-item .car-info .price {
        font-size: 10px;
    }
    .car-item-card img {
        height: 100px;
    }
    .car-item-card .car-name {
        font-size: 11px;
    }
    .car-item-card .car-price {
        font-size: 12px;
    }
    .car-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
    .airport-table {
        font-size: 11px;
    }
    .airport-table thead th,
    .airport-table tbody td {
        padding: 3px 4px;
    }
    .airport-table tbody td {
        word-break: break-all;
    }
    .english-table {
        font-size: 10px;
        min-width: 500px;
    }
    .english-table thead th,
    .english-table tbody td {
        padding: 2px 3px;
    }
    .hot-tags-list {
        gap: 2px 6px;
    }
    .hot-tags-list a {
        font-size: 11px;
        padding: 1px 4px;
    }
}