* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "PingFang SC", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}
body {
    background-color: #f4f5f7;
    color: #222;
    line-height: 1.6;
    padding-bottom: 70px; /* 防止底部悬浮栏遮挡正文 */
}
a { text-decoration: none; color: inherit; }

/* 顶部红金条 (跑马灯) */
.top-bar {
    background: #b81c22;
    color: #fff;
    height: 38px;
    line-height: 38px;
    font-size: 13px;
    padding: 0 40px;
    overflow: hidden;
    position: relative;
}
.top-bar marquee {
    font-weight: 500;
    letter-spacing: 1px;
}

/* 导航栏 */
.header-nav {
    background-color: #ffffff;
    height: 95px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo-area { display: flex; align-items: center; }
.logo-img {
    height: 52px;
    object-fit: contain;
}

.nav-menu { display: flex; align-items: center; height: 100%; gap: 8px; }
.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}
.nav-item.highlight-tab {
    background-color: #b81c22;
    color: #fff;
}
.nav-item:hover:not(.highlight-tab) { color: #b81c22; }

/* 修改后的右侧电话框样式：采用水平居中、纵向排列，自适应高度防止挤压 */
.phone-box {
    display: flex;
    align-items: center;
    background: #b81c22;
    border-radius: 35px;
    color: #ffffff;
    font-weight: bold;
    padding: 6px 20px 6px 8px;
    box-shadow: 0 4px 12px rgba(184, 28, 34, 0.3);
}

/* 内部号码文字区域包装 */
.phone-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* 主号码（400电话）样式 */
.phone-main-num {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* 下方手机号样式（保持与主号码协调） */
.phone-sub-num {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.7px;
    opacity: 0.95;
    line-height: 1.2;
    margin-top: 2px;
}

.phone-icon-circle {
    width: 38px; 
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 12px;
    font-size: 16px;
    flex-shrink: 0;
}

/* Banner (已配置尺寸及背景图片与图层叠加) */
.hero-banner {
    position: relative;
    height: 380px;
    background-image: linear-gradient(rgba(15, 18, 24, 0.75), rgba(15, 18, 24, 0.85)), url('images/other/banner_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    border-bottom: 5px solid #b81c22;
}
.hero-badge {
    background: rgba(184, 28, 34, 0.3);
    border: 1px solid rgba(184, 28, 34, 0.6);
    color: #ff9999;
    font-size: 13px;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
}
.hero-title {
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #dcdcdc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle { font-size: 16px; color: #c5a059; letter-spacing: 4px; font-weight: bold; }

/* 面包屑导航样式 */
.breadcrumb-bar {
    max-width: 1380px;
    margin: 20px auto 0;
    padding: 0 25px;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}
.breadcrumb-bar a:hover {
    color: #b81c22;
    text-decoration: underline;
}
.breadcrumb-bar .current {
    color: #b81c22;
    font-weight: bold;
}

/* Container - 自动居中 */
.container {
    max-width: 1380px;
    margin: 20px auto 40px;
    padding: 0 25px;
    display: flex;
    gap: 35px;
    align-items: flex-start;
    justify-content: center;
    transition: all 0.4s ease;
}

/* 悬浮“律师列表”按钮包装容器（已整体上移，并控制层级防止覆盖和被覆盖） */
.floating-list-wrapper {
    position: fixed;
    left: 20px;
    top: 320px; /* 【修改点】把手往上提：从原来的 520px 改为 320px */
    z-index: 99; /* 控制在合理层级，既不会盖住重要弹窗/吸顶导航，又不会被正文非必要元素吞没 */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    will-change: top, position;
}
.floating-list-btn {
    background: linear-gradient(135deg, #c92a30 0%, #b81c22 100%);
    color: #fff;
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    box-shadow: 6px 6px 20px rgba(184, 28, 34, 0.45);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.2);
    border-left: none;
    transition: all 0.3s;
}
.floating-list-btn:hover { background: linear-gradient(135deg, #b81c22 100%, #96141a 100%); transform: translateX(3px); box-shadow: 8px 8px 25px rgba(184, 28, 34, 0.6); }
.floating-list-btn span.icon { font-size: 24px; }

/* 动态闪动的小手指示标识 */
.flash-hand {
    font-size: 36px;
    margin-top: 10px;
    margin-left: 14px;
    animation: handFlash 1.2s ease-in-out infinite;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
    pointer-events: none; /* 防止鼠标穿透或意外遮挡点击 */
}
@keyframes handFlash {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(8px) scale(1.25);
        opacity: 0.3;
    }
}

/* 左侧多位律师滚动选择菜单 (默认隐藏) */
.team-sidebar {
    width: 0;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    position: sticky;
    top: 110px;
    flex-shrink: 0;
    border: 1px solid #eaeaea;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.container.sidebar-open .team-sidebar {
    width: 310px;
    opacity: 1;
    visibility: visible;
}
.container.sidebar-open {
    justify-content: flex-start;
}

.sidebar-header {
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
    color: #d4af37;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 800;
    border-bottom: 3px solid #b81c22;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}
.sidebar-header span { font-size: 12px; color: #aaa; font-weight: normal; }

.sidebar-scroll-box {
    max-height: 620px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #b81c22 #f1f1f1;
    width: 310px;
}
.sidebar-scroll-box::-webkit-scrollbar { width: 6px; }
.sidebar-scroll-box::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
.sidebar-scroll-box::-webkit-scrollbar-thumb:hover { background: #b81c22; }

.lawyer-menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s;
    border-left: 5px solid transparent;
    border-bottom: 1px solid #f6f6f6;
    white-space: nowrap;
}
.lawyer-menu-item:hover { background-color: #fafafa; }
.lawyer-menu-item.active {
    background: linear-gradient(90deg, #fff0f0 0%, #ffffff 100%);
    border-left-color: #b81c22;
}
.menu-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #2b303a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid #ddd;
}
.menu-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lawyer-menu-item.active .menu-avatar { border-color: #b81c22; }
.menu-info { flex: 1; min-width: 0; }
.menu-name { font-size: 15px; font-weight: bold; color: #222; }
.menu-title { font-size: 11px; color: #777; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* 主体 Card */
.main-content {
    flex: 1;
    min-width: 0;
    transition: all 0.4s ease;
}
.lawyer-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.07);
    display: flex;
    overflow: hidden;
    margin-bottom: 35px;
    border: 1px solid #eaeaea;
}
.lawyer-photo {
    width: 340px;
    background: linear-gradient(180deg, #2b303a 0%, #15181e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0;
    border-right: 1px solid #eee;
    overflow: hidden;
}
.photo-box {
    width: 100%; height: 100%;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
}
.photo-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.lawyer-info { padding: 35px 40px; flex: 1; }
.lawyer-name-title {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}
.lawyer-name { font-size: 32px; font-weight: 900; }
.lawyer-title {
    font-size: 14px;
    color: #b81c22;
    background: #fff0f0;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #fecaca;
}
.lawyer-tags { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.tag {
    background: #f8f9fa;
    color: #444;
    border: 1px solid #ddd;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}
.tag.highlight { background: #fff0f0; color: #b81c22; border-color: #fecaca; }
.lawyer-intro { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 25px; }

.lawyer-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
}
.stat-item { text-align: center; border-right: 1px solid #eee; }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 22px; font-weight: 900; color: #b81c22; }
.stat-label { font-size: 12px; color: #666; }

/* 内容板块样式 */
.content-section {
    background: #fff;
    border-radius: 12px;
    padding: 35px 40px;
    border: 1px solid #eaeaea;
    margin-bottom: 35px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.07);
}
.section-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.section-header h3 {
    font-size: 22px;
    font-weight: 800;
    padding-left: 14px;
    position: relative;
}
.section-header h3::before {
    content: "";
    position: absolute;
    left: 0; top: 4px; bottom: 4px;
    width: 5px;
    background: #b81c22;
    border-radius: 3px;
}

.case-tabs { display: flex; gap: 10px; margin-bottom: 25px; }
.tab-btn {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    background: #f4f5f7;
    border-radius: 30px;
}
.tab-btn.active { color: #fff; background: #b81c22; }

.case-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.case-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); border-color: #fecaca; }
.case-type {
    font-size: 11px; font-weight: bold; color: #b81c22; background: #fff0f0; padding: 2px 8px; border-radius: 4px;
}
.case-title { font-size: 16px; font-weight: 800; margin: 10px 0 8px; line-height: 1.4; }
.case-summary { font-size: 13px; color: #666; margin-bottom: 15px; line-height: 1.6; }

.honor-article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 25px;
}
.honor-article-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.35s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.honor-article-card:hover {
    transform: translateY(-6px);
    border-color: #b81c22;
    box-shadow: 0 16px 30px rgba(184, 28, 34, 0.15);
}
.article-img-box {
    height: 220px; 
    background: linear-gradient(135deg, #1e222b 0%, #0d0f13 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 4px solid #c5a059;
    color: #fff;
    overflow: hidden;
}
.article-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.article-content { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.article-title { font-size: 17px; font-weight: 800; color: #1a1a1a; line-height: 1.45; margin-bottom: 10px; }
.article-summary { font-size: 13.5px; color: #666; line-height: 1.65; margin-bottom: 18px; }
.article-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: #888; border-top: 1px solid #f0f0f0; padding-top: 14px; }
.article-link-btn { color: #b81c22; font-weight: bold; display: flex; align-items: center; gap: 4px; font-size: 13px; }

/* 全局荣誉墙 - 无缝循环滚动 */
.global-honor-section {
    background: #f2f4f7;
    color: #222;
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-top: 60px;
    position: relative;
}
.global-honor-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 45px;
    position: relative;
}
.global-honor-header { text-align: center; margin-bottom: 40px; }
.global-honor-header h3 { font-size: 28px; font-weight: 900; color: #111; letter-spacing: 2px; margin-bottom: 10px; }
.global-honor-header p { font-size: 14px; color: #b81c22; letter-spacing: 3px; font-weight: 600; }

.honor-carousel-box { position: relative; display: flex; align-items: center; }
.honor-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 45px; height: 45px; background: #ffffff; border: 1px solid #d1d5db;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: bold; color: #333; cursor: pointer; z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); transition: all 0.3s ease;
}
.honor-nav-btn:hover { background: #b81c22; color: #fff; border-color: #b81c22; }
.honor-prev-btn { left: -20px; }
.honor-next-btn { right: -20px; }

.honor-marquee-wrapper { overflow: hidden; width: 100%; position: relative; padding: 10px 0; }
.honor-marquee-track {
    display: flex; 
    gap: 24px; 
    width: max-content;
    animation: seamlessScroll 28s linear infinite;
}
.honor-marquee-track:hover { animation-play-state: paused; }

@keyframes seamlessScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}

.global-honor-card {
    width: 310px; flex-shrink: 0; background: #ffffff; border: 1px solid #e2e8f0;
    border-radius: 10px; text-align: center; overflow: hidden; cursor: pointer;
    transition: all 0.35s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.global-honor-card:hover { transform: translateY(-6px); border-color: #b81c22; box-shadow: 0 12px 25px rgba(184, 28, 34, 0.12); }
.global-honor-img-box {
    height: 180px; 
    background: linear-gradient(135deg, #f7f8fa 0%, #eef0f4 100%);
    display: flex; align-items: center; justify-content: center;
    border-bottom: 2px solid #eaeaea;
    overflow: hidden;
}
.global-honor-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.global-honor-title { font-size: 16px; font-weight: 800; margin: 18px 15px 8px; color: #1a1a1a; }
.global-honor-desc { font-size: 13px; color: #666; padding: 0 15px 22px; line-height: 1.5; }

/* Modal 弹窗 */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); display: none; justify-content: center; align-items: center; z-index: 2000;
}
.modal-content {
    background: #fff; width: 90%; max-width: 800px; border-radius: 12px;
    padding: 40px; position: relative; max-height: 85vh; overflow-y: auto;
}
.close-modal { position: absolute; top: 20px; right: 20px; font-size: 28px; cursor: pointer; color: #888; }
.modal-title { font-size: 22px; font-weight: 800; border-bottom: 3px solid #b81c22; padding-bottom: 12px; margin-bottom: 20px; }
.modal-text { background: #f8f9fa; padding: 18px; border-radius: 6px; font-size: 14px; line-height: 1.8; margin-bottom: 15px; }

/* 底部深色排版 */
.footer {
    background: #181a1f;
    color: #b0b5bc;
    padding: 50px 40px 30px;
    border-top: 2px solid rgba(255,255,255,0.05);
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 40px;
    gap: 40px;
}
.footer-left-qr { display: flex; gap: 15px; }
.qr-item { text-align: center; }
.qr-box {
    width: 123px !important;    /* 增大宽度 */
    height: 123px !important;   /* 增大高度，确保手机容易扫上 */
    background: #fff; 
    padding: 6px;
    margin-bottom: 8px; 
    border-radius: 6px;
}
.qr-box img { width: 100%; height: 100%; object-fit: cover; }
.qr-text { font-size: 11px; color: #ccc; }
.footer-center-logo {
  width: auto !important;          
  max-width: none !important;      
  overflow: visible !important;    
}

.footer-logo-img {
  max-height: 60px !important;     
  width: auto !important;          
  display: block !important;
  filter: brightness(0) invert(1); 
}
.footer-right-info { display: flex; flex-direction: column; gap: 10px; font-size: 13px; align-items: flex-start; }
.footer-right-top {
    display: flex; align-items: center; gap: 15px;
    background: #111317; padding: 10px 20px;
    border-radius: 6px; border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 5px;
}
.footer-red-phone-icon {
    width: 32px; height: 32px;
    background: #b81c22; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
}
.footer-phone-num { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: 1px; }

.footer-sub-phones {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
    background: rgba(255,255,255,0.03);
    padding: 8px 12px;
    border-radius: 4px;
    width: 100%;
}
.sub-phone-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
    font-size: 14px;
    font-weight: 600;
}
.sub-phone-row .sub-icon {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.info-row { display: flex; align-items: center; gap: 8px; color: #a0a5ad; width: 100%; }
.info-row span.icon { font-size: 14px; width: 20px; text-align: center; display: inline-block; }
.footer-bottom { text-align: center; font-size: 12px; color: #666; margin-top: 25px; }

/* ================= 底部悬浮专题导航栏样式 ================= */
.bottom-fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 99999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}
.bar-left-topic {
    display: flex;
    align-items: center;
    height: 100%;
    background-color: #b81c22;
    color: #fff;
    padding: 0 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    user-select: none;
    z-index: 10;
}
.bar-left-topic:hover {
    background-color: #96141a;
}
.bar-left-topic span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bar-middle-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #ffffff;
    padding: 8px 30px;
    border-radius: 30px;
    margin-left: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: opacity 0.3s ease;
}
.bar-middle-nav a {
    color: #111111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s;
}
.bar-middle-nav a:hover {
    color: #b81c22;
}
.bar-center-consult {
    position: relative;
    margin-left: 120px;
    display: flex;
    align-items: center;
}
.wx-consult-btn {
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,232,118,0.4);
    white-space: nowrap;
}
.wx-qrcode-box {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    text-align: center;
    display: none;
    z-index: 100000;
}
.wx-qrcode-box img {
    width: 120px;
    height: 120px;
    display: block;
    margin-bottom: 5px;
}
.wx-qrcode-box p {
    font-size: 12px;
    color: #333;
    font-weight: bold;
}
.bar-center-consult:hover .wx-qrcode-box {
    display: block;
}
.top-right-close {
    position: absolute;
    top: 4px;
    right: 6px;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 20;
}
.top-right-close:hover {
    background: #ff3333;
}
.bottom-fixed-bar.collapsed {
    background-color: transparent !important;
    box-shadow: none !important;
    width: auto;
}
.bottom-fixed-bar.collapsed .bar-middle-nav,
.bottom-fixed-bar.collapsed .bar-center-consult,
.bottom-fixed-bar.collapsed .top-right-close {
    display: none !important;
}