html,
body {
    height: 100%;
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Malgun Gothic", Arial, sans-serif;
    background: #f5f6fa;
    color: #222;
    font-size: 16px;
    padding-bottom: 3.5rem;
    /* 页面整体最低宽度，窄于 1080px 时出现横向滚动 */
    min-width: 1080px;
}

@media print {
    body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }
}

a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
}

a:hover {
    text-decoration: none;
    color: rgba(0, 0, 0);
}

p {
    color: #404040;
}

dt {
    font-weight: 500;
}

li {
    list-style: none;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.text-sm {
    font-size: 14px;
}

.text-xs {
    font-size: 12px;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xxl {
    min-width: 960px !important;
    max-width: 1200px !important;
}

.nav-pills .nav-link {
    border-radius: 1.5rem;
    color: #000;
}

.nav-pills .nav-link.active {
    background: #417919;
}

.page-link {
    margin: 0 .5rem;
    border-radius: var(--bs-pagination-border-radius);
}


.book_advance_day {
    padding-left: .5rem;
    padding-right: .5rem;
    color: #000b16;
}

.dropdown-toggle::after {
    display: none;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
    color: #11192559;
}

.border-bottom {
    border-color: #eee;
}

.text-muted {
    color: #11192559;
}

.fs-7 {
    font-size: 14px;
}

div.required label:after {
    content: "*";
    padding-left: 3px;
    height: 5px;
    margin-top: -16px;
    display: inline-block;
    vertical-align: middle;
    color: red;
}

div.required input+div label:before {
    content: "";
    color: red;
}

.scale-1,
.scale-2,
.scale-item {
    overflow: hidden;
}

.scale-1 img,
.scale-2 img,
.scale-item img {
    transition: transform 500ms;
    cursor: pointer;
}

.scale-item img:hover,
.scale-item img:focus,
.scale-1 img:hover,
.scale-1 img:focus {
    transform: scale(1.25);
}

.scale-2 img:hover,
.scale-2 img:focus {
    transform: scale(1.5);
}

main {
    min-height: 32rem;
}

.body_bg {
    background: #F5F5F5;
    width: 100%;
    overflow: hidden;
}

.price-item {
    font-size: .75rem;
    color: #11192559;
}

.price-color {
    font-size: 14px;
    color: #ff5000;
}


/*
 * Header
*/
.header-top {
    color: #838282;
    background: #f5f5f5;
    padding: 0.5rem;
    font-size: .875rem;
}

.header-top {
    display: block;
    width: 100%;
    /* min-width: 1080px !important; */
}

.header-top-right a {
    display: inline-block !important;
}

/**
* PC导航
*/
.header-logo {
    height: 4rem;
}

.brand-logo {
    height: 100%;
    max-width: 16rem;
}

.header-menu {
    padding: 0 1rem;
    background: #fff;
}

.header-menu .nav-item .nav-link,
.header-menu .nav-item .dropdown-item {
    color: #111925;
    font-size: 1.25rem;
    padding: .5rem .75rem;
}

.header-menu .nav-item .nav-link {
    position: relative;
    transition: color .3s ease;
}

.header-menu .nav-item .nav-link::after {
    content: "";
    display: block; /* 覆盖全局 .dropdown-toggle::after{display:none}，否则带下拉的菜单项无下划线 */
    margin-left: 0; /* 重置 Bootstrap 下拉小三角的残留样式 */
    border: 0;
    position: absolute;
    left: .75rem;
    right: .75rem;
    bottom: 0;
    height: 3px;
    background: #376161;
    transform: scaleX(0);
    transition: transform .3s ease;
}

.header-menu .nav-item .nav-link:hover::after,
.header-menu .nav-item .nav-link.active::after,
.header-menu .nav-item.dropdown:hover > .nav-link::after {
    transform: scaleX(1);
}

.header-menu .nav-item.dropdown:hover > .nav-link {
    color: #376161;
}

/* 下拉菜单：hover 展开，带淡入 + 上移动画 */
.header-menu .nav-item.dropdown .dropdown-menu {
    display: block;
    margin-top: 0;
    min-width: 11rem;
    padding: .5rem;
    border: 0;
    border-radius: .5rem;
    box-shadow: 0 10px 30px rgba(17, 25, 37, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

.header-menu .nav-item.dropdown:hover > .dropdown-menu,
.header-menu .nav-item.dropdown:focus-within > .dropdown-menu,
.header-menu .nav-item.dropdown > .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* 下拉项：hover 高亮 + 轻微缩进 */
.header-menu .nav-item .dropdown-item {
    border-radius: .375rem;
    font-size: 1rem;
    transition: background-color .25s ease, color .25s ease, padding-left .25s ease;
}

.header-menu .nav-item .dropdown-item:hover {
    background: #376161;
    color: #fff;
    padding-left: 1rem;
}

.header-menu .nav-item .nav-link:hover {
    color: #376161;
}

.header-menu .nav-item .dropdown-item:active,
.header-menu .nav-item .dropdown-item.active {
    background: #376161;
    color: #fff;
}

/**
 * Header V2：logo（左） | 导航（中） | 语言+登录（右）
 */
.header-main-v2 {
    background: #fff;
    position: relative;
}

.header-row-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0;
}

.header-logo-v2 {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 2rem;
}

.header-logo-v2 .brand-logo {
    height: 40px;
    width: auto;
}

.header-nav-v2 {
    flex: 1 1 auto;
    min-width: 0;
}

.header-nav-v2.navbar {
    padding: 0;
}

.header-nav-v2 .navbar-nav {
    flex-wrap: nowrap;
}

.header-nav-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin-right: .5rem;
    /* border: 1px solid #dee2e6; */
    /* border-radius: .375rem; */
    background: transparent;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-nav-toggler:focus {
    box-shadow: none;
}

.header-nav-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (min-width: 992px) {
    .header-nav-v2 .navbar-collapse {
        display: flex !important;
    }

    .header-nav-toggler {
        display: none !important;
    }
}

.header-actions-v2 {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-actions-v2 .dropdown-toggle,
.header-actions-v2 a {
    text-decoration: none;
}

.header-actions-v2 .dropdown-toggle:hover,
.header-actions-v2 a:hover {
    color: #376161 !important;
}

/* 大字版 / 无障碍 图标 */
.a11y-large-mode-toggle .ico::before,
.a11y-mode-toggle .ico::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal;
    margin-right: .35em;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.a11y-large-mode-toggle .ico::before {
    content: "\f3da";
}

.a11y-mode-toggle .ico::before {
    content: "\f826";
}

.header-main-v2 .nav-item .nav-link,
.header-main-v2 .nav-item .dropdown-item {
    color: #111925;
    font-size: 1.25rem;
    padding: .5rem .75rem;
    white-space: nowrap;
}

.header-main-v2 .nav-item .nav-link:hover,
.header-main-v2 .nav-item .dropdown-item:hover {
    color: #376161;
}

.header-main-v2 .nav-item .dropdown-item:active,
.header-main-v2 .nav-item .dropdown-item.active {
    background: #376161;
    color: #fff;
}

/* Header V2 下拉菜单统一样式 */
.header-v2 .dropdown-menu {
    min-width: 12rem;
    padding: .5rem 0;
    margin-top: .5rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.08);
}

.header-v2 .dropdown-menu-end {
    right: 0;
    left: auto;
}

.header-v2 .dropdown-item {
    padding: .625rem 1rem;
    color: #111925;
    font-size: 1rem;
    line-height: 1.5;
    transition: background-color .15s ease, color .15s ease;
}

.header-v2 .dropdown-item:hover,
.header-v2 .dropdown-item:focus {
    background-color: #f8f9fa;
    color: #376161;
}

.header-v2 .dropdown-item.active,
.header-v2 .dropdown-item:active {
    background-color: #376161;
    color: #fff;
}

.header-v2 .dropdown-divider {
    margin: .5rem 0;
    border-top: 1px solid #e9ecef;
}

@media (max-width: 991.98px) {
    .header-logo-v2 {
        padding: 0 .75rem 0 0;
    }

    .header-logo-v2 .brand-logo {
        height: 36px;
    }

    .header-main-v2 .nav-item .nav-link {
        font-size: 1rem;
        padding: .5rem;
    }

    .header-nav-v2 .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1030;
    }

    .header-nav-v2 .navbar-nav {
        flex-direction: column;
        align-items: flex-start !important;
    }

    /* 小屏折叠菜单内下拉展开 */
    .header-nav-v2 .navbar-collapse .dropdown-menu {
        position: static;
        display: block;
        width: 100%;
        margin: .5rem 0 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        padding: 0;
    }

    .header-nav-v2 .navbar-collapse .dropdown-item {
        padding: .75rem 0;
        border-bottom: 1px solid #f1f1f1;
    }

    .header-nav-v2 .navbar-collapse .dropdown-item:last-child {
        border-bottom: none;
    }
}

/**
  * Page Cover Image
  */
.page-cover {
    padding: 5rem 0;
    align-items: center;
    text-align: center;
}

.page-cover .breadcrumb,
.page-cover .breadcrumb-item,
.page-cover .breadcrumb-item a,
.page-cover .breadcrumb-item.active,
.page-cover .breadcrumb-item+.breadcrumb-item::before,
.page-cover .breadcrumb a {
    color: #e0e0e0;
}

@media screen and (min-width: 1024px) {
    .page-cover {
        padding: calc(5rem + 2vw) 0;
    }
}

@media screen and (min-width: 1600px) {
    .page-cover {
        padding: calc(5rem + 3vw) 0;
    }
}

@media screen and (min-width: 1920px) {
    .page-cover {
        padding: calc(5rem + 4vw) 0;
    }
}

.page-cover h1 {
    letter-spacing: 0.25em;
    margin-bottom: 0;
    color: #fff;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.5;
    font-family: "方正小标宋", "仿宋_GB2312", "Times New Roman", serif;
    width: auto;
}

/* 非中文标题收紧字距：0.25em 仅适合中文方块字 */
html[lang^="en"] .page-cover h1 {
    letter-spacing: 0.05em;
}

html[lang^="ja"] .page-cover h1 {
    letter-spacing: 0.15em;
}

html[lang^="ko"] .page-cover h1 {
    letter-spacing: 0.03em;
}

/* 紧跟封面的内容容器上移，压住封面下缘（无封面的页面不受影响） */
.page-cover+.container-xxl .page-container,
.page-cover+.container-reading .page-container {
    position: relative;
    margin-top: -4rem;
}

/* 阅读型内容列：限宽 960px 居中（需 !important 覆盖主题对 container 的 1600px 上限） */
.container-reading {
    max-width: 960px !important;
}

/**
  * Page Header
  */
.page-header {
    text-align: center;
    border-bottom: 1px solid #f6f6f6;
}

.page-title {
    font-weight: normal;
    font-size: 2.5rem;
    line-height: 1.25;
    padding: 1.5rem 2rem 2rem;
    margin-bottom: 1.5rem;
    color: #111925;
}

.article-container-xxl,
.page-container {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-color {
    color: #ff5000;
}


.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.swiper-container-xxl {
    height: 40rem;
    width: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 31.875rem;
    width: 100%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: unset;
}

.swiper-button-next,
.swiper-button-prev {
    top: 50%;
}

/* RESPONSIVE CSS
-------------------------------------------------- */
.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -3.75rem;
    padding: 0 0 3.75rem;
}

.wrap>.container-xxl {
    padding: 70px 1rem 1.25rem;
}



/* Ticket
-------------------------------------------------- */
/* 当屏幕宽度小于576px时，调整字体大小，适用于大多数手机屏幕 */
@media (max-width: 575.98px) {
    .sibling-cate {
        gap: .5rem;
    }
}

.sibling-cate-item {
    padding: 0;
}

.cate-item_active {
    background-color: #376161 !important;
}

.product-list {}

.product-item {
    border-bottom: 1px solid #ededed;
}

.product-item:last-child {
    border-bottom: none !important;
}

.product-item_excerpt {
    color: #333;
    margin: 1rem 0;
}

.product-image {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.product-item:hover img {
    cursor: pointer;
    transform: scale(1.025);
}

.product-image-thumbs {
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1rem;
}

.product-image-thumb {
    display: block;
    position: relative;
    color: #111925;
    border-radius: .375rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    object-fit: cover;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.product-image-thumb:last-child {
    margin-right: 0;
}

.product-image-thumb.active,
.product-image-thumb:hover {
    cursor: pointer;
    /*opacity: .5;*/
}

.product-image-thumb img {
    max-width: 100%;
    height: auto;
    align-self: center;
    border-radius: .375rem;
    border: 1px solid #dee2e6;
}

.product-image-thumb.active img,
.product-image-thumb:hover img {
    border: 1px solid #376161;
}

.product-item_title {
    font-size: 1.25rem;
}

/**
门票详情
 */
.product-title {
    font-size: 2rem;
    font-weight: bold;
    color: #111925;
    line-height: 1.5;
    display: inline-block;
    margin: 0;
}

.product-price {
    /*font-size: 1.25rem;*/
    color: #ff5000;
    /*font-weight: 500;*/
}

.product-price-text {
    font-size: 14px;
    line-height: 2;
}

.product-price-min,
.product-price-max,
.product-sku-price {}

.product-sku-price small {
    font-size: 1rem;
}

.booking-block {
    /*white-space: pre-line;*/
}

/* sku list */
.item-props {
    box-sizing: border-box;
    margin-bottom: .5rem;
}

.item-props .item-prop-key {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 0;
    padding-top: .5rem;
}

.item-props .item-prop-val {
    color: #999;
}

.item-props .item-prop {
    margin-right: .25rem;
    line-height: 2rem;
    /*height: 2rem;*/
    vertical-align: middle;
    padding: 1px;
    float: left;
}

.item-props .prop {
    display: inline-block;
    background-color: #fff;
    /*white-space: nowrap;*/
    width: auto;
    min-width: 10px;
    padding: 2px 8px;
    text-align: left;
    border: 1px solid #e0e0e0;
    color: #111925;
    text-decoration: none;
    cursor: pointer
}

.item-props .prop:hover {
    border: 2px solid #ff5b45;
    margin: -1px
}

.item-props .prop:focus {
    outline: 0
}

.item-props .hide {
    display: none
}

.item-props .selected {
    border: 2px solid #ff5b45;
    margin: -1px;
    color: #ee5742
}

.item-props .disabled {
    border: 1px dashed #d6d6d8;
    color: #cdcdcd;
    margin: 0;
    cursor: not-allowed
}

.product-desc {
    box-sizing: border-box;
    color: #999;
}

.product-desc .desc-name,
.product-desc .desc-value {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 0;
}

.book-nums {
    max-width: 150px;
}

.btn-reduce,
.btn-plus {
    border-color: #dfe2e6;
    padding: .25rem .75rem;
    font-size: 1rem;
}

.btn-booking,
.btn-buy {
    color: #fff;
    background-color: #ff5000;
    border: 1px solid #ff5000;
}

.btn-booking:hover,
.btn-buy:hover {
    color: #fff;
    background-color: #f71d00;
    border: 1px solid #f71d00;
}

.btn-add-cart {
    color: #e90;
    border: 1px solid #e90;
}

.btn-add-cart:hover {
    color: #e90;
    background-color: #ffeeae;
    border: 1px solid #e90;
}

.btn-pay,
.btn-pay:hover {
    background-color: #07c160;
    color: #fff;
}

.btn-collect {}

.btn-collect:hover {}

.td_sku_intro {
    font-size: 14px;
    color: #737373 !important;
}

/**
  * ticket view
  */
.thumbSwiper {
    height: 80%;
    width: 100%;
}

.productSwiper {
    height: 7.25rem;
    box-sizing: border-box;
    padding: 10px 0;
}

.productSwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.productSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.product-detail .detail-item {
    padding: 1.75rem 0 0 0;
    margin-bottom: 2rem;
}

.product-detail .detail-item:first-child {
    padding-top: 0;
}

.product-detail .detail-header {
    border-top: 1px solid #f5f5f5;
    font-size: 1.125rem;
    padding: 1.75rem 0;
    font-weight: 700;
}

.product-detail .product-content {
    font-size: 1rem;
}

.product-detail .product-content p {
    margin-bottom: 1rem;
}

.product-detail .product-content p:last-child {
    margin-bottom: 0;
}

.product-detail .product-content img {
    width: 100%;
    max-width: 52rem;
    height: auto;
}

.node-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.node-title span {
    display: inline-block;
    padding: .5rem 0;
    font-weight: 700;
}

.attr_block {
    padding: 0 1rem;
}

.attr_dt {}

.attr_dt dt {
    font-weight: normal;
}

.attr_dt dt,
.attr_dt dd {
    font-size: 14px;
    color: #999;
    line-height: 30px;
}

.ipt_book,
.ipt_playdate {
    max-width: 10rem;
}

#sidebar-recommend {
    padding: 1rem !important;
}

#sidebar-recommend .sidebar-recommend-item:last-child {
    border-bottom: 0 !important;
}

.sidebar-product-top-item {
    display: block;
}

.sidebar-product-top-item .block-product-cover_image {
    display: none;
}

.sidebar-product-top-item.active {
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.sidebar-product-top-item.active .block-product-cover_image {
    display: block !important;
}

.sidebar-product-top-item.active .block-product-cover_image img {
    border-radius: 0.375rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

/* Book Page
-------------------------------------------------- */
.book-node-title {
    font-size: 1.125rem;
    /*border-bottom: 2px solid #4e7905;*/
    color: #fff;
    background: #376161 !important;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.book-node-title span {
    display: inline-block;
    padding: .5rem 0;
    font-weight: 500;
    /*background: #4e7905;*/
    /*border-bottom: 3px solid #4e7905;*/
}

/* Pay Page
-------------------------------------------------- */
.pay-node-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    /*padding-left: 1rem;*/
    /*padding-right: 1rem;*/
}

.pay-node-title span {
    display: inline-block;
    padding: .5rem 0;
    font-weight: 700;
}

/* Footer
-------------------------------------------------- */
footer {
    color: #838383;
    font-size: 14px;
    padding: 3rem 1rem;
}

footer a {
    color: #838383;
}

footer a:hover {
    color: #838383;
    text-decoration: underline;
}

.footer p,
.footer div {
    font-size: 14px;
    margin-bottom: .5rem;
    color: #838383;
}

.wechat_qrcode_img,
.h5_qrcode_img {
    max-width: 10rem;
}

/* 页脚左侧信息 */
.footer_info,
.footer_phones,
.footer_rescue {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer_info a {
    color: #9fb3b8;
    text-decoration: none;
}

.footer_info a:hover {
    color: #fff;
}

.footer .footer_info_line {
    margin-bottom: 0.4rem;
    line-height: 1.7;
    color: #b9c0c5;
}

.footer .footer_info_label {
    color: #838383;
}

.footer .footer_info_official {
    margin-top: 0.6rem;
    font-weight: 500;
    color: #dee2e6;
}

.footer .footer_info_official i {
    margin-right: 0.35rem;
    color: #5fa8a0;
}

.footer .footer_info_logo {
    margin-bottom: 1rem;
}

.footer .footer_info_logo img {
    display: block;
    height: 6rem;
    width: auto;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.5rem;
}

@media (max-width: 991.98px) {
    .footer .footer_info_logo img {
        margin: 0 auto;
    }
}

/* 页脚联系电话 */
.footer .footer_gov_hotline {
    margin-bottom: 1rem;
}

.footer .footer_gov_line {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.15rem;
}

.footer .footer_gov_title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.footer .footer_gov_num {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.footer .footer_rescue_header {
    margin-bottom: 0.5rem;
}

.footer .footer_rescue_title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.15rem;
}

.footer .footer_phone_en {
    font-size: 0.72rem;
    color: #838383;
    letter-spacing: 0.03em;
    margin-bottom: 0;
}

.footer .footer_phone_row {
    display: flex;
    align-items: center;
    padding: 0.35rem 0;
    margin-bottom: 0;
}

.footer .footer_phone_label {
    flex-shrink: 0;
    width: 12rem;
    margin-bottom: 0;
}

.footer .footer_phone_label_cn {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e9ecef;
    line-height: 1.3;
    margin-bottom: 0;
}

.footer .footer_phone_nums {
    padding-left: 1rem;
    margin-bottom: 0;
    /* border-left: 1px solid #495057; */
}

.footer .footer_phone_num {
    font-size: 1.45rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.45;
    margin-bottom: 0;
    font-variant-numeric: tabular-nums;
}

/* 三列布局（992px 以上），中等屏幕适当收窄字号 */
@media (min-width: 992px) and (max-width: 1199.98px) {

    .footer .footer_gov_title,
    .footer .footer_rescue_title {
        font-size: 1.1rem;
    }

    .footer .footer_gov_num {
        font-size: 1.7rem;
    }

    .footer .footer_phone_label {
        width: 8rem;
    }

    .footer .footer_phone_num {
        font-size: 1.25rem;
    }
}

@media (max-width: 991.98px) {

    .footer_info,
    .footer_phones,
    .footer_rescue {
        text-align: center;
    }

    .footer .footer_phones,
    .footer .footer_rescue {
        margin-top: 2rem;
    }

    .footer .footer_gov_title,
    .footer .footer_rescue_title {
        font-size: 1.1rem;
    }

    .footer .footer_gov_num {
        font-size: 1.7rem;
    }

    .footer .footer_phone_row {
        justify-content: center;
    }

    .footer .footer_phone_label {
        width: auto;
        min-width: 5.5rem;
        max-width: 9rem;
        padding-right: 0.75rem;
        text-align: right;
    }

    .footer .footer_phone_en {
        display: none;
    }

    .footer .footer_phone_num {
        font-size: 1.15rem;
    }
}

.jumbotron {
    text-align: center;
    background-color: transparent;
}

.jumbotron .btn {
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
}


/* 内容列表
-------------------------------------------------- */
.article-list {
    padding: 0;
}

.article-item {
    display: block;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ededed;
}

.article-item:last-child {
    border-bottom: none;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.article-item:hover img {
    transform: scale(1.125);
    animation: article-item-hover-animation 0.3s ease-in-out forwards;
}

.article-item img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

/** .article-item:hover img 鼠标退出动画 */
.article-item:not(:hover) img {
    animation: article-item-hover-animation-reverse 0.3s ease-in-out forwards;
}

@keyframes article-item-hover-animation-reverse {
    from {
        transform: scale(1.125);
    }

    to {
        transform: scale(1);
    }
}

@keyframes article-item-hover-animation {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.125);
    }
}

.article-item_cover_image {
    display: block;
    position: relative;
    color: #111925;
    overflow: hidden;
    margin-bottom: 1rem;
}

.article-item_cover_image img {
    list-style: none;
    color: #111925;
    vertical-align: middle;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.article-item-grid {
    cursor: pointer;
}

.article-item-grid img {
    transition: transform 500ms;
}

.article-item-grid:hover img,
.article-item-grid:focus img {
    transform: scale(1.25);
}

.article-item_cover_image_top {
    overflow: hidden;
}

.article-item_detail {
    /*height: 130px;*/
}

h3.article-item_title {
    color: #111925;
    font-size: calc(1rem + .5vw);
    line-height: 1.5;
    font-weight: normal;
    height: auto;
    /*max-height: 6rem;*/
    margin-bottom: 0.75rem;
}


.article-item_excerpt {
    line-height: 1.5rem;
    margin-bottom: 1.25rem;
}

.article-item_meta {
    position: relative;
    color: #11192559;
    font-size: 14px;
    height: 22px;
}

.article-item_meta span {
    margin-right: .625rem;
}

.article-item_meta span.is_top {
    color: #dc3545;
    font-weight: bold;
}

.article-item_meta span.is_good {
    color: #28a745;
    font-weight: bold;
}

/* 详情 */
.article {
    padding-top: 3rem;
}

.article-title {
    font-weight: normal;
    font-size: 2.5rem;
    line-height: 1.25;
    padding: 1.5rem 1.5rem 0 1.5rem;
    color: #111925;
    text-align: center;
}

.article-meta {
    margin-bottom: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f6f6f6;
    text-align: center;
    color: #999;
}

.article-meta span {
    margin-right: .5rem;
}

.article-meta span:last-child {
    margin-right: 0;
}

.article-meta span a {
    color: #999;
}

.article-meta_separator {
    margin-right: .25rem;
    color: #999;
    font-size: 1rem;
    font-weight: 400;
}

.article-content {
    width: 100%;
}

.page-content,
.article-content {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

/* 单页内容限宽后行高收紧，长文更紧凑 */
.page-content {
    line-height: 2;
}

.page-content h1,
.page-content h2,
.page-content h3,
.article-content h1,
.article-content h2,
.article-content h3 {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 2;
}

.page-content h4,
.page-content h5,
.page-content h6,
.article-content h4,
.article-content h5,
.article-content h6,
.page-content p,
.article-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 2;
}

.page-content p:last-child,
.article-content p:last-child {
    margin-bottom: 0;
}

.page-content img,
.article-content img {
    width: 100%;
}

.page-content a,
.article-content a {
    color: #0d6efd;
}

.page-content a:hover,
.article-content a:hover {
    text-decoration: underline;
    text-decoration-color: #0d6efd;
    text-underline-offset: 0.25rem;
}

.page-content iframe,
.article-content iframe {
    width: 100%;
    height: 100vh;
}

/* 边栏 */
.block {
    /* border: 1px solid rgba(0, 0, 0, .125); */
    background: #fff;
    padding: 1.5rem 1rem 0 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.block-header {
    border-bottom: 2px solid rgba(0, 0, 0, .125);
    height: 2.5rem;
}

.block-title {
    display: inline-block;
    border-bottom: 2px solid #111925;
    height: 2.5rem;
    font-size: 1.25rem;
    font-weight: normal;
}

.block-body {
    padding: 1.25rem 0;
}

.block-body ul {
    margin-bottom: 0;
}

.block-body ul li:last-child,
.block-body p:last-child {
    margin-bottom: 0;
}

.block-body ul li {
    /*border-bottom: 1px dashed #ccc;*/
}

.block-body ul li:hover {
    /*text-decoration: underline;*/
    /*text-decoration-color: rgba(0, 0, 0, 0.7);;*/
    /*text-underline-offset: 0.25rem;*/
    /*border-bottom: 1px dashed #ccc;*/
}

.block-body ul li:last-child {
    border-bottom: 0;
}

.block-body ul li a,
.block-body a {
    display: block;
    padding: .75rem 0;
    font-size: 1.125rem;
    line-height: 1.75;
    border-bottom: 1px dashed #ccc;
}

.block-body ul li a:hover,
.block-body a {
    color: #111925;
}

.block-body ul li:last-child a {
    border-bottom: none;
}

/* 文字资讯 */
.block-list {
    margin-bottom: 0;
    padding-top: 1rem;
}

.block-list .block-list-item {
    padding: .5rem 0;
    border-bottom: 1px dashed #ccc;
    /*font-size:.875rem;*/
    display: flex;
    align-items: center;
    gap: 1rem;
}

.block-list .block-list-item:last-child {
    border-bottom: none;
}

.block .block-list .block-list-item a {
    display: inline-block;
    width: calc(100% - 90px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.block-list .block-list-item span {
    width: 20%;
    display: block;
    float: right;
    text-align: right;
}


/* 图文资讯 */
.block-body img.image-text-list-item-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 4 / 3;
    /* 设置宽高比为 4:3 */
    object-fit: cover;
    /* 确保图片填充容器，裁剪多余部分 */
}

.card {
    /*border-width: 0;*/
    box-shadow: 0 2px 4px rgba(0, 21, 41, .08);
}

.card-header {
    border-bottom-color: rgba(0, 0, 0, 0.125);
}

.card-body p:last-child {
    margin-bottom: 0;
}

.card-img-top {}

.list-group-item {
    border-bottom-color: rgba(0, 0, 0, 0.125);
}

.block-footer {
    border-top: 1px solid #eaeaea;
    font-size: 14px;
    text-align: center;
    padding: .5rem;
}

.block-footer .view_more {
    display: inline-block;
}


/**
 * content
 */
.content-body {
    color: #404040;
    font-size: 16px;
    line-height: 32px;
    font-family: Arial, "Hiragino Sans GB", STHeiti, "Helvetica Neue", Helvetica, "Microsoft Yahei", "WenQuanYi Micro Hei", sans-serif;
}

.content-body img {
    width: auto;
    max-width: 100%;
}

.content-body figure.image {
    text-align: center;
}

.content-body .table>thead>tr>th,
.content-body .table>tbody>tr>th,
.content-body .table>tfoot>tr>th,
.content-body .table>thead>tr>td,
.content-body .table>tbody>tr>td,
.content-body .table>tfoot>tr>td {
    border: 0;
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5 {
    margin: 36px 0 1.5rem;
    font-size: 18px;
    font-weight: 600;
}

.content-body ul,
.content-body ol,
.content-body p {
    margin: 2rem 0 1.5rem 0;
}

.content-body p {
    text-align: justify;
    margin: 2rem 0 1.5rem 0;
}

/**
 * 用户中心
 */
.login-title span {
    text-align: center;
    font-size: 20px;
}

.user-nav .dropdown-toggle::after {
    content: none;
}

.user-nav .btn-logout {
    display: block;
    width: 100%;
    color: #212529;
    text-decoration: none;
}

.user-nav .btn-logout:hover {
    text-decoration: none;
}

.user-nav .user_icon_link {
    border-radius: 8px;
    width: 2rem;
    height: 2rem;
    text-align: center;
    padding: .25rem !important;
    display: block;
}

.user-nav .user-dropdown {
    font-size: 1rem;
    vertical-align: top !important;
    color: #f5f5f5;
}

.user-nav .user-dropdown:hover,
.user-nav .user-dropdown:focus,
.user-nav .user-dropdown:focus-within {
    color: #fff;
}

.user-nav .nav-link:hover {
    background: transparent;
}

.user-container-xxl {
    margin-top: 32px;
    min-height: 45rem;
}

/**
 * comment
 */
.comments .comment-author-avatar {
    float: left;
    width: 60px;
}

.comments .comment-author-avatar img {
    width: 60px;
}

/**
 * auth-clients
 */
.auth-icon {
    display: block;
    width: 32px;
    height: 32px;
    /*background: url(authchoice.png) no-repeat;*/
    border-radius: 3px;
    margin: 0 auto;
}

.auth-clients {
    display: block;
    list-style: none;
    overflow: auto;
}

.auth-clients li {
    float: left;
    display: block;
    margin: 0 1em 0 0;
    text-align: center;
}

.auth-title {
    display: block;
    margin-top: 0.4em;
    text-align: center;
    width: 58px;
}

/*
 * 订单支付页面
 * ==========
 */
.qrcode_pay_block {}

.qrcode_pay_block .wechat_pay {
    max-width: 12rem;
    text-align: center;
    padding: 1rem 0;
    margin: 0 auto;
}

.qrcode_pay_block .pay_logo {
    width: 145px;
}

.goto_alipay_logo {
    height: 1.25rem;
}

.qrcode_pay_block .pay_qrcode {
    width: 185px;
}

.btn_alipay,
.btn_wepay {
    margin-bottom: .5rem;
    margin-right: .5rem;
}

.btn_wepay,
.btn_wepay:focus {
    font-size: 1.25rem;
    text-align: center;
}

.wap_wepay_logo,
.wap_alipay_logo {
    height: 2rem;
}

.bg-wepay,
.bg-wepay:focus,
.bg-wepay:active {
    background: #04be02;
    color: #fff;
}

.pay_tab_icon {
    height: 1rem;
}

.ipt_book {
    /*max-width: 10rem;*/
    /*padding-left: 0;*/
}

/*
 * 视频页面
 */
.video_iframe {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: 82.5rem;
}

.vr-block {
    /*width: 100%;*/
    /*max-width: 48.75rem;*/
}

.vr-block .vr-item {}

.vr-item h6 span {
    border-bottom: 2px solid #111;
}

.vr-item_lang a {
    font-size: 14px;
    color: rgba(0, 0, 0, .8);
    /* padding: 0 .5rem; */
}

.vr-item_lang a:hover {
    text-decoration: underline;
    color: #111;
}

td.sku_intro {
    color: #212529bf;
}

/* 企业微信按钮 */
.btn-consult {
    margin-bottom: .5rem;
}

.btn-wework {
    color: #0079de;
    align-items: center;
    text-align: center;
}

.btn-consult svg,
.wework_consult_img {
    height: 16px;
    margin-bottom: 2px;
}


/* goods channel */
.goods-item:last-child {
    border-bottom: none !important;
}

.goods-item .goods-title {
    font-size: 16px;
    line-height: 1.5;
}

.info-item {
    display: flex !important;
    justify-content: space-between !important;
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
}

.info-item .info-item-label {
    color: rgba(0, 0, 0, 0.9);
}

.info-item .info-item-value {
    color: rgba(0, 0, 0, 0.55);
}


.card-header {
    padding: 1rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
}

.card-action-right {
    font-size: .875rem;
}

.category-list-item {
    margin-bottom: 1rem !important;
    transition: all 0.35s ease;
    padding: 1rem;
    border-radius: var(--bs-border-radius) !important;
}

.category-list-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: transparent;
}

.category-list-item:last-child {
    margin-bottom: 0 !important;
}

.category-list-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.category-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-list-image img:hover {
    transform: scale(1.05);
}

.category-list-item:hover .category-list-item_title {
    color: #376161;
}

.category-list-item_title {
    line-height: 1.5;
    font-size: 1.125rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ================================
   Video List
   ================================ */
.video-list {
    padding: 1rem 0;
}

.video-list .row {
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.video-list .row>[class*="col-"] {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-bottom: 2.5rem;
}

.video-item {
    display: block;
    position: relative;
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.video-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.video-item_cover_image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f5f5f5;
}

.video-item_cover_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.video-item:hover .video-item_cover_image img {
    transform: scale(1.08);
}

.video-item_cover_image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-item_cover_image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
    z-index: 3;
    margin-left: 4px;
    transition: all 0.3s ease;
}

.video-item:hover .video-item_cover_image::before {
    background: rgba(65, 121, 25, 0.85);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item:hover .video-item_cover_image::after {
    border-color: transparent transparent transparent #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item .video-item_title {
    padding: 1rem;
    font-size: 1.125rem !important;
    font-weight: 500;
    line-height: 1.5;
    color: #111925;
    margin: 0;
    /* height: 2.5rem; */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.video-item:hover .video-item_title {
    color: #376161;
}

.video-item .video-item_excerpt {
    padding: 0 1rem;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    max-height: 2.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex: 1;
}

.video-item .video-item_meta {
    padding: 1rem;
    font-size: 13px;
    color: #11192559;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-item .video-item_meta span {
    display: inline-flex;
    align-items: center;
    margin-right: 0;
}

.video-item .video-item_meta .author::before {
    content: '👤';
    margin-right: 4px;
    font-size: 12px;
}

.video-item .video-item_meta .copy-from::before {
    content: '📄';
    margin-right: 4px;
    font-size: 12px;
}

.video-item .video-item_meta .publish_date::before {
    content: '📅';
    margin-right: 4px;
    font-size: 12px;
}

/* ================================
   Channel Grid
   ================================ */
.channel-gird-container-xxl {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.channel-gird-col img {
    margin-bottom: 1.5rem;
    display: block;
    height: 400px;
}

/* ================================
   Gallery List
   ================================ */
.gallery-container-xxl {
    padding: 2rem 0;
}

.gallery-list {
    margin-bottom: 2rem;
}

.gallery-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.gallery-item .gallery-item_cover_image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item .gallery-item_cover_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item_cover_image img {
    transform: scale(1.08);
}

.gallery-item .gallery-item_detail {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gallery-item .gallery-item_title {
    font-size: 1.125rem !important;
    font-weight: 500;
    line-height: 1.5;
    color: #111925;
    max-height: 3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.gallery-item .gallery-item_title a {
    color: inherit;
    text-decoration: none;
}

.gallery-item:hover .gallery-item_title {
    color: #376161;
}

.gallery-item .gallery-item_excerpt {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    max-height: 5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex: 1;
}

.gallery-item .gallery-item_meta {
    font-size: 13px;
    color: #11192559;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 1rem;
}

.gallery-item .gallery-item_meta span {
    display: inline-flex;
    align-items: center;
}

.gallery-item .gallery-item_meta .pinned {
    background: #ff4d4f;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
}

.gallery-item .gallery-item_meta .recommended {
    background: #376161;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
}

.gallery-item .gallery-item_meta .author::before {
    content: '👤';
    margin-right: 4px;
    font-size: 12px;
}

.gallery-item .gallery-item_meta .copy-from::before {
    content: '📄';
    margin-right: 4px;
    font-size: 12px;
}

.gallery-item .gallery-item_meta .publish_date::before {
    content: '📅';
    margin-right: 4px;
    font-size: 12px;
}


/**
 * 无障碍模式
 */
.a11y-large-mode .header-menu .nav-item {
    margin-bottom: 0;
}

.a11y-large-mode .header-menu .nav-item .nav-link {
    font-size: 1rem;
}



/* ========================================
           右侧浮动客服
           ======================================== */
.float-kefu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.12);
    border-radius: .5rem;
}

/* 图标按钮 */
.kefu-icon-btn {
    position: relative;
    width: 64px;
    height: 64px;
    min-height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    border: none;
    outline: 2px solid transparent;
    text-decoration: none;
    background: #fff;
    padding: 6px 2px;
}

.kefu-icon-btn img {
    width: 22px;
    max-height: 22px;
}

.kefu-icon-btn .kefu-text {
    font-size: 0.75rem;
    line-height: 1;
    color: #333;
    white-space: nowrap;
}

.kefu-icon-btn:hover .kefu-text,
.kefu-icon-btn.active .kefu-text {
    color: #fff;
}

.kefu-icon-btn:hover,
.kefu-icon-btn.active {
    color: #FFF;
    /* border-top-left-radius: var(--bs-border-radius-lg);
            border-bottom-left-radius: var(--bs-border-radius-lg) */
}

/* 各图标颜色 */
.kefu-icon-btn.phone {
    background: #ff6a00;
    border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.kefu-icon-btn.phone {
    background: #fff;
}

.kefu-icon-btn.phone:hover,
.kefu-icon-btn.phone.active {
    background: #e55f00;
}

.kefu-icon-btn.wxwork {
    background: #01ca54;
}

.kefu-icon-btn.wxwork {
    background: #fff;
}

.kefu-icon-btn.wxwork:hover,
.kefu-icon-btn.wxwork.active {
    background: #06ad56;
}

.kefu-icon-btn.wechat {
    background: #07c160;
}

.kefu-icon-btn.wechat {
    background: #fff;
}

.kefu-icon-btn.wechat:hover,
.kefu-icon-btn.wechat.active {
    background: #4cae4c;
}

.kefu-icon-btn.miniprogram {
    background: #07c160;
}

.kefu-icon-btn.miniprogram {
    background: #fff;
}

.kefu-icon-btn.miniprogram:hover,
.kefu-icon-btn.miniprogram.active {
    background: #4cae4c;
}

.kefu-icon-btn.h5 {
    background: #12b7f5;
    margin-bottom: 0;
    border-bottom-left-radius: 0 !important;
}

.kefu-icon-btn.h5 {
    background: #fff;
}

.kefu-icon-btn.h5:hover,
.kefu-icon-btn.h5.active {
    background: #0ea5e0;
}

.kefu-icon-btn.ai {
    background: #6c5ce7;
    margin-bottom: 0;
    border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.kefu-icon-btn.ai {
    background: #fff;
}

.kefu-icon-btn.ai:hover,
.kefu-icon-btn.ai.active {
    background: #5b4cc7;
    color: #fff;
}

/* 内容面板 */
.kefu-panel {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) scale(0.85);
    width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform-origin: right center;
    overflow: hidden;
    pointer-events: none;
}

.kefu-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
}

/* AI 客服面板 */
.kefu-panel-ai {
    width: 420px;
    height: 640px;
    top: auto;
    bottom: 0;
    transform: translateY(0) scale(0.85);
    transform-origin: right bottom;
    display: flex;
    flex-direction: column;
}

.kefu-panel-ai.show {
    transform: translateY(0) scale(1);
}

/* 面板头部 */
.kefu-header {
    padding: 18px;
    text-align: center;
    color: #fff;
}

.kefu-header.phone {
    background: linear-gradient(135deg, #ff6a00 0%, #e55f00 100%);
}

.kefu-header.wxwork {
    background: linear-gradient(135deg, #07c160 0%, #06ad56 100%);
}

.kefu-header.wechat {
    background: linear-gradient(135deg, #5cb85c 0%, #4cae4c 100%);
}

.kefu-header.h5 {
    background: linear-gradient(135deg, #12b7f5 0%, #0ea5e0 100%);
}

.kefu-header.ai {
    background: linear-gradient(135deg, #6c5ce7 0%, #5b4cc7 100%);
    position: relative;
}

.kefu-header h5 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 600;
}

.kefu-header p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.9;
    color: #fff;
}

/* 面板内容 */
.kefu-body {
    padding: 16px;
}

.kefu-body .phone-num {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff6a00;
    text-align: center;
    margin: 10px 0;
}

.kefu-body .call-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #ff6a00;
    color: #fff;
    text-align: center;
    border-radius: var(--bs-border-radius-lg);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.kefu-body .call-btn:hover {
    background: #e55f00;
}

.kefu-body .work-time {
    text-align: center;
    color: #888;
    font-size: 0.8rem;
    margin-top: 16px;
}

.kefu-body .work-time i {
    color: #ff6a00;
    margin-right: 4px;
}

/* 二维码区域 */
.kefu-qrcode {
    padding: 16px;
    text-align: center;
}

.kefu-qrcode img {
    width: 200px;
}

.kefu-qrcode p {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: #666;
}

.kefu-qrcode .qrcode-tip {
    font-size: 0.75rem;
    color: #888;
    margin-top: 6px;
}

/* H5 面板 */
.kefu-h5-content {
    padding: 20px;
    text-align: center;
}

.kefu-h5-content .h5-icon {
    font-size: 3rem;
    color: #12b7f5;
    margin-bottom: 10px;
}

.kefu-h5-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.kefu-h5-content .h5-btn {
    display: inline-block;
    padding: 10px 30px;
    background: #12b7f5;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.kefu-h5-content .h5-btn:hover {
    background: #0ea5e0;
}

/* AI 客服面板内容 */
.kefu-ai-body {
    flex: 1;
    min-height: 0;
    width: 100%;
}

.kefu-ai-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.kefu-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
}

.kefu-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* 回到顶部 */
.back-to-top {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #888;
    font-size: 1.2rem;
    border: none;
    outline: 2px solid transparent;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #5cb85c;
    color: #fff;
}



.modal-body h3 {
    font-size: 1.125rem;
    font-weight: 450;
    margin-top: 1rem;
}
.modal-body h3:first-child {
    margin-top: 0;
}
.modal-body p {
    margin-bottom: .25rem;
}
