/* =====================================
   全局样式
   ===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;

}

.hide{ display: none !important;}
/* 移除 Tailwind container 最大宽度限制 */
.container{
    max-width: none !important;
}

/* PC端正文内容左右padding */
@media (min-width: 768px) {
    .container {
        padding-left: 111px !important;
        padding-right: 111px !important;
    }
}



/* 面包屑分隔符 */
.breadcrumb-separator {
    display: inline-block;
    margin: 0 8px;
    color: #bbb;
}

.section-adaptive{ padding-left: 1rem; padding-right: 1rem;}

.section-title{ padding: 1rem 1rem;overflow: hidden;}
.section-title .section-title__bg{ background:  url("../images/home/title_bg.png")  no-repeat center center / contain; height:60px; text-align:center; padding-top:34px; font-size:15px; font-weight: bold; color: #07a69b;}

.boundary{ padding-left:1rem ; padding-right:1rem}

/* =====================================
   导航
   ===================================== */
/* 电脑端第二行 */
.desktop-header-row2 {
    height: 83px;
    padding:0px 111px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.desktop-header-row2 .header-container {
    justify-content: space-between;
    gap: 40px;
    display: flex;
    align-items: center;
    height: 100%;
}

/* 容器 — 仅限 header 内部使用 */
.desktop-header .container,
.mobile-header .container {
    width: 100%;
    /*padding: 0 120px;*/
    display: flex;
    align-items: center;
    height: 100%;
}

/* ========== 移动端样式 ========== */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000;
}

/* 移动端第一行 */
.mobile-header-row1 {
    height: 60px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

/* 导航按钮（汉堡菜单） */
.nav-toggle {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background: #1dc7be;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}



.contact-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* 移动端第二行 */
.mobile-header-row2 {
    height: 39px;
    background: #FFFFFF;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;  /* IE和Edge */
    scrollbar-width: none;  /* Firefox */
}

.mobile-header-row2::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

.mobile-nav-scroll {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    padding: 0 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.mobile-nav-scroll a {
    color: #333;
    padding: 0 15px;
    font-size: 14px;
    transition: color 0.3s;
    font-weight:500;
}
.mobile-nav-scroll a.color1{color:#00BAAD}


.mobile-nav-scroll a.active,
.mobile-nav-scroll a:hover {
    color: #ff6b6b;
}

/* 移动端全屏遮罩导航 */
.mobile-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 99px);
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* IE和Edge */
    scrollbar-width: none;  /* Firefox */
}

.mobile-overlay::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-overlay-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    min-height: 100%;
}

.mobile-overlay-nav a {
    color: white;
    font-size: 16px;
    padding: 15px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-overlay-nav a:last-child {
    border-bottom: none;
}

.mobile-overlay-nav a .iconfont {
    flex-shrink: 0;
    font-size: 20px;
}

.mobile-overlay-nav a span {
    flex: 1;
}

.mobile-overlay.active .mobile-overlay-nav a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-overlay.active .mobile-overlay-nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-overlay.active .mobile-overlay-nav a:nth-child(2) { transition-delay: 0.15s; }
.mobile-overlay.active .mobile-overlay-nav a:nth-child(3) { transition-delay: 0.2s; }
.mobile-overlay.active .mobile-overlay-nav a:nth-child(4) { transition-delay: 0.25s; }
.mobile-overlay.active .mobile-overlay-nav a:nth-child(5) { transition-delay: 0.3s; }
.mobile-overlay.active .mobile-overlay-nav a:nth-child(6) { transition-delay: 0.35s; }
.mobile-overlay.active .mobile-overlay-nav a:nth-child(7) { transition-delay: 0.4s; }
.mobile-overlay.active .mobile-overlay-nav a:nth-child(8) { transition-delay: 0.45s; }
.mobile-overlay.active .mobile-overlay-nav a:nth-child(9) { transition-delay: 0.5s; }
.mobile-overlay.active .mobile-overlay-nav a:nth-child(10) { transition-delay: 0.55s; }
.mobile-overlay.active .mobile-overlay-nav a:nth-child(11) { transition-delay: 0.6s; }
.mobile-overlay.active .mobile-overlay-nav a:nth-child(12) { transition-delay: 0.65s; }

.mobile-overlay-nav a.active,
.mobile-overlay-nav a:hover {
    color: #ff6b6b;
}

/* ========== 电脑端样式 ========== */
.desktop-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right:0;
    z-index: 1000;
    background: white;
    
}

/* 电脑端第一行 */
.desktop-header-row1 {
    height: 40px;
    background: #f5f5f5;
}

.mobile-header-row1 .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}

.mobile-header-row1 .logo img{    height:50px;width: auto;object-fit: contain;}

.desktop-header-row1 .container {
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

/* 电脑端第二行 */

.desktop-header-row2 .container {
    justify-content: space-between;
    gap: 40px;
}

.desktop-header-row2 .logo {
    flex-shrink: 0;
}
.desktop-header-row2 .logo img{ height:63px !important; }

/* 电脑端导航 */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.desktop-nav a {
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
    white-space: nowrap;
    text-decoration: none;
}

.desktop-nav a.active,
.desktop-nav a:hover {
    color: #ff6b6b;
}

/* 搜索框 */
.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.search-box input {
    border: none;
    outline: none;
    padding: 8px 15px;
    font-size: 14px;
    width: 200px;
}

.search-box button {
    border: none;
    background: none;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.search-box button:hover svg {
    fill: #ff6b6b;
}

/* ========== 主内容区域 ========== */

/* header 固定置顶，body 自动让出空间 */
body {
    padding-top: 123px; /* 电脑端 header 高度 40px + 83px */
}

/* 电脑端正文左右 padding 统一 111px */
.section-adaptive {
    padding-left:0px;
    padding-right:0px;

}

.section {
    padding: 60px 0;
}

.section .container {
    flex-direction: column;
    align-items: flex-start;
}

.section h1,
.section h2 {
    margin-bottom: 20px;
    color: #333;
}

.section p {
    color: #666;
    line-height: 1.8;
}

#home {
    background: linear-gradient(135deg, #006f69 0%, #00b8ae 55%, #00d4c8 100%);
    color: white;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home .container {
    align-items: center;
    text-align: center;
}

#home h1 {
    font-size: 36px;
    color: white;
}

#home p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* ========== 响应式布局 ========== */
@media screen and (max-width: 768px) {
    /* 移动端显示，电脑端隐藏 */
    .mobile-header {
        display: block;
    }

    .desktop-header {
        display: none;
    }

    /* 移动端 header 高度 60px + 39px */
    body {
        padding-top: 99px;
    }

    main {
        margin-top: 0;
    }

    /* 移动端左右 padding 恢复 1rem */
    .section-adaptive {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* 调整容器内边距 */
    .desktop-header .container,
    .mobile-header .container {
        padding: 0 15px;
    }

    /* 调整首页样式 */
    #home h1 {
        font-size: 24px;
    }

    #home p {
        font-size: 16px;
    }

    .section {
        padding: 40px 0;
    }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
    /* 平板和小屏幕电脑 */
    .desktop-header .container,
    .mobile-header .container {
        padding: 0 40px;
    }

    .desktop-nav {
        gap: 20px;
    }

    .desktop-nav a {
        font-size: 14px;
    }
}

/* ========== 分页样式 ========== */
.pagination-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    font-size: 14px;
    color: #666;
}

/* 共 N 条记录 */
.pagination-total {
    color: #999;
}

/* 页码区域 */
.pagination-pages {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 上一页/下一页 < > */
.pagination-pages > *:first-child,
.pagination-pages > *:last-child {
    padding: 6px 10px;
    color: #999;
    cursor: pointer;
}

/* 页码链接 */
.pagination-pages a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    background: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination-pages a:hover {
    border-color: #667eea;
    color: #667eea;
    background: #f0f0ff;
}

/* 当前页 */
.pagination-pages strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border: 1px solid #667eea;
    border-radius: 6px;
    color: #fff;
    background: #667eea;
    font-weight: 600;
}

/* 前往 N 页 */
.pagination-jump {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
}

.pagination-jump-input {
    width: 48px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.pagination-jump-input:focus {
    border-color: #667eea;
}

@media screen and (max-width: 768px) {
    .pagination-jump {
        display: none;
    }
    .pagination-total {
        display: none;
    }
}

/* ========== pagination-wrapper 分页样式 ========== */
.pagination-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 0;
    font-size: 14px;
    color: #666;
}

.pagination-info {
    color: #999;
    white-space: nowrap;
}

.pagination-info strong {
    color: #333;
    font-weight: 600;
}

/* 页码列表 */
.pagination-controls .pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-controls .pagination li a,
.pagination-controls .pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    background: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.pagination-controls .pagination li a:hover {
    border-color: #667eea;
    color: #667eea;
    background: #f0f0ff;
}

/* 当前页 */
.pagination-controls .pagination li.active span {
    border-color: #667eea;
    background: #667eea;
    color: #fff;
    font-weight: 600;
}

/* 每页显示 */
.pagination-pagesize {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    white-space: nowrap;
}

.pagination-pagesize .form-control {
    height: 32px;
    padding: 0 6px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.pagination-pagesize .form-control:focus {
    border-color: #667eea;
}

/* 跳转 */
.pagination-goto {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    white-space: nowrap;
}

.pagination-goto .form-control {
    width: 52px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.pagination-goto .form-control:focus {
    border-color: #667eea;
}

.pagination-goto .btn {
    height: 32px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-goto .btn:hover {
    border-color: #667eea;
    color: #667eea;
    background: #f0f0ff;
}

@media screen and (max-width: 768px) {
    .pagination-wrapper {
        justify-content: center;
    }
    .pagination-info,
    .pagination-pagesize,
    .pagination-goto {
        display: none;
    }
}

/* ========== Footer ========== */
.site-footer {
    background: #1a1a2e;
    color: #ccc;
    font-size: 14px;
    margin-top: 40px;
}

/* PC端 footer */
.footer-pc {
    display: block;
    padding: 48px 111px 82px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
    display: flex;
    gap: 48px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 0;
}

.footer-brand {
    flex: 1.5;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
    display: block;
}

.footer-desc {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 13px;
}

.footer-copyright,
.footer-icp {
    color: #888;
    font-size: 12px;
    margin-top: 6px;
}

.footer-icp a {
    color: #888;
    text-decoration: none;
}

.footer-icp a:hover {
    color: #fff;
}

.footer-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e53e3e;
    display: inline-block;
}

.footer-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #bbb;
    line-height: 1.5;
}

.footer-info-list li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #e53e3e;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-list a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-qr-group {
    display: flex;
    gap: 16px;
}

.footer-qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-qr-item img {
    width: 90px;
    height: 90px;
    border-radius: 6px;
    background: #fff;
    padding: 4px;
}

.footer-qr-item span {
    font-size: 12px;
    color: #aaa;
}

/* 移动端 footer */
.footer-mobile {
    display: none;
    padding: 24px 16px 90px;
    text-align: center;
}

.footer-mobile-qr {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 20px;
}

.footer-mobile .footer-qr-item img {
    width: 80px;
    height: 80px;
}

.footer-mobile-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-mobile-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #bbb;
    font-size: 13px;
}

.footer-mobile-info-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #e53e3e;
}

.footer-mobile-bottom {
    /*border-top: 1px solid rgba(255,255,255,0.08);*/
    padding-top: 16px;
    color: #888;
    font-size: 12px;
    line-height: 1.8;
}

.footer-logo-sm {
    height: 32px;
    width: auto;
    margin: 0 auto 8px;
    display: block;
    filter: brightness(0.8);
}

.footer-mobile-bottom a {
    color: #888;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .footer-pc {
        display: none;
    }

    .footer-mobile {
        display: block;
    }

    .jst-tabs-scroll{ display: block !important; }
    .jst-tabs-scroll .tab-button {  margin-bottom: 12px}
}





/* ============================================================
      风格 1：温暖橙色渐变风 —— 活泼亲切，适合大众宠物学校
      ============================================================ */
.psc-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
}
.psc-bar--s1 {
    background: linear-gradient(90deg, #42d3c8 0%, #2bb8ad 100%);
    padding: 0;
    box-shadow: 0 -3px 16px rgba(66,211,200,.35);
}
@media screen and (min-width: 769px) {
    #psc-s1.psc-bar--s1 {
        background-image: url('http://pet501cdn.petmrs.com/statics/images/pet_bar.png');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        box-shadow: none;
    }
    #psc-s1 .psc-s1-inner {
        height: 100px;
    }
}
.psc-s1-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.psc-s1-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.psc-s1-icon { font-size: 22px; }
.psc-s1-title { font-size: 15px; font-weight: bold; }
.psc-s1-desc { font-size: 13px; opacity: .85; }
@media(max-width:600px){ .psc-s1-desc { display:none; } }
.psc-s1-actions {
    display: flex;
    gap: 10px;
}
.psc-s1-btn {
    height: 38px;
    padding: 0 22px;
    border-radius: 19px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: transform .22s cubic-bezier(.34,1.56,.64,1),
    box-shadow .22s ease,
    background .2s ease,
    border-color .2s ease,
    color .2s ease;
    white-space: nowrap;
}
.psc-s1-btn:active { transform: scale(.94) !important; animation: none !important; }

/* ---- 立即报名 hover：上浮 + 浅青绿背景 + 脉冲光环 ---- */
@keyframes psc-s1-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(66,211,200,.55), 0 8px 22px rgba(66,211,200,.25); }
    65%  { box-shadow: 0 0 0 10px rgba(66,211,200,0),  0 8px 22px rgba(66,211,200,.25); }
    100% { box-shadow: 0 0 0 0   rgba(66,211,200,0),   0 8px 22px rgba(66,211,200,.25); }
}
.psc-s1-btn--primary {
    background: #fff;
    color: #42d3c8;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.psc-s1-btn--primary:hover {
    transform: translateY(-3px) scale(1.06);
    background: #e8faf9;
    color: #29a89e;
    animation: psc-s1-pulse 1.1s ease-out infinite;
}

/* ---- 联系客服：基础样式 + hover 摇摆 ---- */
.psc-s1-btn--secondary {
    background: rgba(255,255,255,.2);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.7);
}
@keyframes psc-s1-wiggle {
    0%,100% { transform: translateY(-3px) scale(1.06) rotate(0deg);  }
    20%      { transform: translateY(-3px) scale(1.06) rotate(-10deg);}
    50%      { transform: translateY(-3px) scale(1.06) rotate(8deg); }
    75%      { transform: translateY(-3px) scale(1.06) rotate(-5deg);}
}
.psc-s1-btn--secondary:hover {
    background: rgba(255,255,255,.32);
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,.2), 0 8px 20px rgba(0,0,0,.12);
    animation: psc-s1-wiggle .55s ease forwards;
}
/* ============================================================
       跳动问候气泡 —— 浮于"立即报名"按钮正上方，上下不停弹跳
       ============================================================ */
@keyframes psc-bounce {
    0%,100% { transform: translateX(-50%) translateY(0);    }
    40%      { transform: translateX(-50%) translateY(-9px); }
    60%      { transform: translateX(-50%) translateY(-4px); }
}

/* 每个报名按钮需要 position:relative 才能定位气泡 */
.psc-s1-btn--primary,
.psc-s2-btn--enroll,
.psc-s3-btn--enroll,
.psc-s4-enroll,
.psc-s5-btn-big {
    position: relative;
    overflow: visible;
}

.psc-greeting {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #42d3c8;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    padding: 5px 13px;
    border-radius: 20px;
    border: 1.5px solid #42d3c8;
    box-shadow: 0 4px 14px rgba(66,211,200,.28);
    animation: psc-bounce 1.8s ease-in-out infinite;
    pointer-events: none;
    line-height: 1.5;
    z-index: 10;
}
/* 下箭头外边框色 */
.psc-greeting::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #42d3c8;
}
/* 下箭头白色填充 */
.psc-greeting::before {
    content: '';
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #fff;
    z-index: 1;
}


/* ---- 客服弹出卡片 ---- */
.psc-s1-kf-wrap {
    position: relative;
    display: inline-flex;
}

@keyframes psc-kf-in {
    from { opacity: 0; transform: translateX(-50%) translateY(6px) scale(.88); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0)    scale(1);  }
}

.psc-s1-kf-popup {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px) scale(.88);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .25s cubic-bezier(.34,1.5,.64,1);
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px 12px 12px;
    box-shadow: 0 10px 36px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    z-index: 9995;
}
/* 下方箭头 */
.psc-s1-kf-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #fff;
    filter: drop-shadow(0 3px 3px rgba(0,0,0,.08));
}

/* 鼠标悬停时显示 */
.psc-s1-kf-wrap:hover .psc-s1-kf-popup {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
    animation: psc-kf-in .25s cubic-bezier(.34,1.5,.64,1) forwards;
}

/* 头像圆圈 */
.psc-s1-kf-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d0f8f5, #a8eeea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(66,211,200,.3);
}
/* 在线绿点 */
.psc-s1-kf-online {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #4cd964;
    border: 2px solid #fff;
}
@keyframes psc-kf-pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(76,217,100,.5); }
    50%      { box-shadow: 0 0 0 4px rgba(76,217,100,0); }
}
.psc-s1-kf-online { animation: psc-kf-pulse-dot 1.6s ease infinite; }

/* 文字区 */
.psc-s1-kf-info { display: flex; flex-direction: column; gap: 3px; }
.psc-s1-kf-name {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 5px;
}
.psc-s1-kf-tag {
    font-size: 10px;
    background: #e8faf9;
    color: #42d3c8;
    border-radius: 4px;
    padding: 1px 5px;
    font-weight: 600;
}
.psc-s1-kf-msg {
    font-size: 12px;
    color: #666;
}
.psc-s1-kf-msg em {
    font-style: normal;
    color: #42d3c8;
    font-weight: 600;
}
.psc-bar.psc-active { display: flex !important; }


/*tabs自动滚动*/
.jst-tabs-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.jst-tabs-scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.jst-tabs-scroll::-webkit-scrollbar {
    display: none;
}

.jst-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
}


@media screen and (max-width: 768px) {
    .customer-service-pc {
        display: none;
    }
}

/* PC端正文内容左右padding */
@media (min-width: 768px) {
    .customer-service-mobile{display: none;}
    .section-max-width{ max-width:1280px;margin: 0px auto;}
}


