/**
 * 首页「大思政」风格：红 / 白 / 金
 * 仅当 body.home-sizheng 时生效
 */
.home-sizheng {
  --sz-red: #b01012;
  --sz-red-dark: #8a0c0e;
  --sz-gold: #e8c547;
  --sz-gold-light: #f5e6a8;
  --sz-text: #222;
  --sz-muted: #666;
  --sz-footer: #2c2c2c;
  background: #f5f5f5;
  color: var(--sz-text);
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.home-sizheng .placeholder {
  display: none;
}

/* ========== 顶栏 ========== */
.sz-topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 13px;
}
.sz-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
.sz-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sz-brand img {
  height: 44px;
  width: auto;
}
.sz-site-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
}
.sz-topbar-links a {
  color: var(--sz-muted);
  margin-left: 20px;
  text-decoration: none;
}
.sz-topbar-links a:hover {
  color: var(--sz-red);
}

/* ========== 主导航 ========== */
.sz-navbar-wrap {
  background: linear-gradient(180deg, var(--sz-red) 0%, var(--sz-red-dark) 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.sz-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
.sz-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sz-nav-menu > li > a {
  display: block;
  padding: 14px 18px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.sz-nav-menu > li.active > a,
.sz-nav-menu > li > a:hover {
  background: rgba(0, 0, 0, 0.12);
  border-bottom-color: var(--sz-gold);
  color: #fff;
}
.sz-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  margin: 8px 0;
}

@media (max-width: 991px) {
  .sz-nav-toggle {
    display: block;
    width: 100%;
  }
  .sz-nav-menu {
    display: none;
    flex-direction: column;
  }
  .sz-nav-menu.open {
    display: flex;
  }
  .sz-site-title {
    font-size: 15px;
  }
}

/* ========== 主内容区 ========== */
.sz-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px 40px;
}

/* ========== Hero 轮播 ========== */
.sz-hero-wrap {
  position: relative;
  margin: 0 -15px 24px;
  max-width: none;
}
.home-sizheng #myNiceCarousel {
  top: 0 !important;
  margin-bottom: 0 !important;
}
.sz-hero-wrap .carousel-inner > .item > img {
  height: 420px;
  object-fit: cover;
  width: 100%;
}
.sz-hero-slogan {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 80px;
  z-index: 5;
  text-align: center;
  pointer-events: none;
}
.sz-hero-slogan-inner {
  display: inline-block;
  padding: 16px 32px;
  background: rgba(176, 16, 18, 0.85);
  border: 2px solid var(--sz-gold);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.sz-hero-slogan h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--sz-gold-light);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}
@media (max-width: 767px) {
  .sz-hero-slogan-inner {
    padding: 12px 16px;
  }
  .sz-hero-slogan h1 {
    font-size: 16px;
  }
  .sz-hero-wrap .carousel-inner > .item > img {
    height: 260px;
  }
}

.home-sizheng .carousel-caption {
  bottom: 42% !important;
}
.home-sizheng .carousel-caption h3 {
  color: var(--sz-gold-light) !important;
  font-size: 36px !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.home-sizheng .carousel-caption p {
  color: #fff !important;
  font-size: 18px !important;
}
.home-sizheng .carousel-caption a.ccb h3:hover {
  color: var(--sz-gold) !important;
}

/* 轮播下资讯条 */
.home-sizheng .deanhtopbox {
  position: relative !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: -60px auto 0 !important;
  left: auto !important;
  bottom: auto !important;
  height: auto !important;
  min-height: 100px;
  background: rgba(40, 40, 40, 0.88) !important;
  border-radius: 4px;
  padding: 12px 16px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 16px;
}
.home-sizheng .deannotice,
.home-sizheng .deanhdtt {
  flex: 1 1 280px;
}
.home-sizheng .deanerweima {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 4px;
}

/* ========== 区块标题 ========== */
.sz-section {
  margin-top: 36px;
}
.sz-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 5px solid var(--sz-red);
  padding-left: 14px;
  margin-bottom: 18px;
}
.sz-section-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--sz-red-dark);
}
.sz-more {
  font-size: 14px;
  color: var(--sz-muted);
  text-decoration: none;
}
.sz-more:hover {
  color: var(--sz-red);
}

/* ========== 今日思政 ========== */
.sz-jinri-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.sz-jinri-featured {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 280px;
  background: #ddd;
}
.sz-jinri-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}
.sz-jinri-featured .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.sz-jinri-featured .cap a {
  color: #fff;
  text-decoration: none;
}
.sz-excellent-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sz-excellent-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed #e0e0e0;
  font-size: 14px;
}
.sz-excellent-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--sz-red);
  margin-right: 10px;
  flex-shrink: 0;
}
.sz-excellent-list a {
  flex: 1;
  color: var(--sz-text);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sz-excellent-list a:hover {
  color: var(--sz-red);
}
.sz-excellent-list .dt {
  color: #999;
  font-size: 12px;
  margin-left: 8px;
}
@media (max-width: 767px) {
  .sz-jinri-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== 全景思政 横滑 ========== */
.sz-quanjing-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.sz-qj-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.sz-qj-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.sz-qj-card .label {
  background: var(--sz-red);
  color: #fff;
  font-size: 13px;
  padding: 10px 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sz-qj-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ========== VR 思政 红底 ========== */
.sz-vr-block {
  background: linear-gradient(135deg, var(--sz-red) 0%, #7a0a0c 100%);
  border-radius: 8px;
  padding: 24px 16px 28px;
  margin-top: 36px;
}
.sz-vr-block .sz-section-head {
  border-left-color: var(--sz-gold);
}
.sz-vr-block .sz-section-head h2 {
  color: #fff;
}
.sz-vr-block .sz-more {
  color: var(--sz-gold-light);
}
.sz-vr-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-top: 8px;
}
.sz-vr-card {
  flex: 0 0 200px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.sz-vr-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}
.sz-vr-card .t {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sz-red-dark);
  line-height: 1.4;
  min-height: 44px;
}
.sz-vr-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ========== 教学资源 四图标 ========== */
.sz-res-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 16px 0;
}
.sz-res-item {
  text-decoration: none;
  color: inherit;
}
.sz-res-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--sz-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(176, 16, 18, 0.35);
}
.sz-res-item:hover .sz-res-icon {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(176, 16, 18, 0.45);
}
.sz-res-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
}
.sz-res-item p {
  margin: 0;
  font-size: 12px;
  color: var(--sz-muted);
}
@media (max-width: 767px) {
  .sz-res-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== 方针政策 双栏 ========== */
.sz-policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sz-policy-col {
  background: #fff;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.sz-policy-col-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #fafafa;
  border-bottom: 2px solid var(--sz-red);
  font-weight: 700;
  font-size: 17px;
  color: var(--sz-red-dark);
}
.sz-policy-banner {
  height: 120px;
  background: linear-gradient(120deg, #c4121f 0%, #5c0a0c 100%);
  position: relative;
}
.sz-policy-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.sz-policy-list {
  list-style: none;
  margin: 0;
  padding: 12px 16px 16px;
}
.sz-policy-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.sz-policy-list a {
  color: var(--sz-text);
  text-decoration: none;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sz-policy-list a:hover {
  color: var(--sz-red);
}
.sz-policy-list .date {
  color: #999;
  font-size: 12px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .sz-policy-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== 下方原有区块（广告等） ========== */
.home-sizheng .sz-legacy-zones {
  margin-top: 32px;
}

/* ========== 页脚 ========== */
.home-sizheng .footer-sz {
  background: var(--sz-footer) !important;
  color: #ccc !important;
  border-top: 3px solid var(--sz-red) !important;
  margin-top: 48px !important;
  padding: 32px 0 24px !important;
}
.home-sizheng .footer-sz .links a,
.home-sizheng .footer-sz .copyright a,
.home-sizheng .footer-sz p {
  color: #bbb !important;
}
.home-sizheng .footer-sz .links a:hover {
  color: var(--sz-gold) !important;
}
.home-sizheng .footer-sz .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.home-sizheng .footer-sz .copyright {
  float: none !important;
  text-align: left !important;
}

/* 首页各区块与下方全景列表宽度统一 */
.home-sizheng .sz-main {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.home-sizheng .sz-legacy-zones .m,
.home-sizheng .sz-legacy-zones .menu.m,
.home-sizheng .sz-legacy-zones .picture.m,
.home-sizheng .sz-legacy-zones .advert {
  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}
/* ========== 顶栏标题与登录强调（对齐参考图） ========== */
.sz-site-sub {
  font-weight: 700;
  margin-left: 2px;
}
.sz-link-login {
  color: var(--sz-red) !important;
  font-weight: 600;
}

/* ========== Hero：红色氛围 + 底图 + 中心白字 + 书本图形 ========== */
.sz-hero-wrap {
  margin: 0 0 0 !important;
}
.sz-hero-carousel {
  position: relative;
  width: 100% !important;
  min-height: 420px;
  overflow: hidden;
  border-radius: 0;
}
.sz-hero-carousel .carousel-inner {
  position: relative;
  height: 420px;
}
.sz-hero-carousel .carousel-inner > .item {
  height: 420px;
}
.sz-hero-slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #9a0a0c;
}
/* dszk.djszkj.com 首页同源长图（1920×4318 设计稿），裁切顶部作 Hero */
.sz-hero-slide-dszk {
  background-position: center top;
}
.sz-hero-slide-fallback {
  background-image: url("/template/yingzhiy/images/home-hero-ref.png");
}
.sz-hero-center {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-52%);
  z-index: 4;
  text-align: center;
  padding: 0 20px;
  pointer-events: none;
}
.sz-hero-kicker {
  margin: 0 0 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.sz-hero-title-main {
  margin: 0 auto;
  max-width: 920px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
  letter-spacing: 1px;
}
.sz-hero-book {
  margin: 28px auto 0;
  width: 120px;
  height: 56px;
  position: relative;
  pointer-events: none;
}
.sz-hero-book-pages {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px 8px 8px 4px;
  background: linear-gradient(90deg, #f5e6c8 0%, #fff9e6 45%, #e8d5a8 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transform: perspective(400px) rotateX(8deg);
}
.sz-hero-book-pages::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 3px;
  margin-left: -1px;
  background: rgba(139, 0, 0, 0.35);
  border-radius: 1px;
}
.home-sizheng .sz-hero-carousel .carousel-control {
  z-index: 6;
  width: 48px;
  opacity: 0.85;
  background: rgba(0, 0, 0, 0.25);
}
.home-sizheng .sz-hero-carousel .carousel-control.left,
.home-sizheng .sz-hero-carousel .carousel-control.right {
  background-image: none;
}
.home-sizheng .sz-hero-carousel .carousel-control:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .sz-hero-carousel .carousel-inner,
  .sz-hero-carousel .carousel-inner > .item,
  .sz-hero-slide-bg {
    height: 280px !important;
    min-height: 0;
  }
  .sz-hero-title-main {
    font-size: 18px;
  }
  .sz-hero-kicker {
    font-size: 12px;
  }
}

/* 参考图无头条条：隐藏旧资讯浮层 */
.home-sizheng .deanhtopbox {
  display: none !important;
}

/* 区块英文副标题 */
.sz-section-head-en {
  align-items: flex-end;
  border-left: none;
  padding-left: 0;
  border-bottom: 2px solid rgba(176, 16, 18, 0.2);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.sz-section-head-en h2 {
  color: var(--sz-red-dark);
  font-size: 24px;
}
.sz-en-sub {
  margin: 4px 0 0;
  font-size: 13px;
  color: #888;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.sz-en-light {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* 今日思政：侧栏标题与 AI 悬浮 */
.sz-block-jinri {
  position: relative;
}
.sz-ai-float {
  position: fixed;
  right: 18px;
  top: 38%;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff6b35, #c4121f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  cursor: default;
  font-size: 13px;
  font-weight: 800;
}
.sz-excellent-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.sz-excellent-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}
.sz-che {
  color: var(--sz-red);
  margin-left: 4px;
}
.sz-jinri-media {
  display: block;
  position: relative;
  height: 100%;
  min-height: 300px;
}
.sz-jinri-media img {
  min-height: 300px;
}
.sz-jinri-featured .cap {
  background: rgba(0, 0, 0, 0.72) !important;
  padding: 16px 18px !important;
  font-size: 17px !important;
  line-height: 1.5;
}
.sz-excellent-list .sz-li-arrow {
  color: #ccc;
  margin-left: 6px;
}
.sz-excellent-list .dt {
  display: none;
}

/* 全景思政：外框箭头 + 每屏约 5 张 */
.sz-carousel-shell {
  position: relative;
  padding: 0 44px;
}
.sz-quanjing-section .sz-quanjing-track {
  gap: 14px;
  scroll-snap-type: x mandatory;
}
.sz-qj-card {
  flex: 0 0 calc((100% - 56px) / 5);
  min-width: 200px;
  max-width: 220px;
}
.sz-qj-imgwrap {
  height: 132px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.sz-qj-imgwrap img {
  height: 132px;
  width: 100%;
  object-fit: cover;
}
.sz-car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 56px;
  border: none;
  border-radius: 4px;
  background: rgba(176, 16, 18, 0.9);
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.sz-car-btn:hover {
  background: var(--sz-red-dark);
}
.sz-car-prev {
  left: 0;
}
.sz-car-next {
  right: 0;
}
.sz-car-prev::after,
.sz-car-next::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 10px;
  height: 10px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.sz-car-prev::after {
  transform: rotate(45deg);
  margin-left: 14px;
}
.sz-car-next::after {
  transform: rotate(-135deg);
  margin-right: 14px;
}
@media (max-width: 991px) {
  .sz-qj-card {
    flex: 0 0 46%;
    min-width: 140px;
  }
  .sz-carousel-shell {
    padding: 0 36px;
  }
}

/* VR：白卡片横排，左图右文 */
.sz-vr-block {
  border-radius: 0 !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.sz-vr-head {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.sz-vr-card {
  flex: 0 0 260px;
}
.sz-vr-card-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 88px;
}
.sz-vr-thumb {
  flex: 0 0 100px;
  background: #f2f2f2;
}
.sz-vr-thumb img {
  width: 100px;
  height: 100%;
  min-height: 88px;
  object-fit: cover;
  display: block;
}
.sz-vr-txt {
  flex: 1;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  line-height: 1.4;
}

/* 教学资源：锤镰 */
.sz-res-icon-hammer .sz-hammer {
  font-size: 40px;
  line-height: 1;
}

/* 方针政策横幅：图片放在本站 /static/Upload（与页面同域同协议，HTTPS 站点上也是 HTTPS，不依赖外域是否开 SSL） */
.sz-policy-banner.sz-policy-banner-gj {
  height: 128px !important;
  background: url("/static/Upload/back7_icon.jpg") center / cover no-repeat #8a0a0c;
}
.sz-policy-banner.sz-policy-banner-bw {
  height: 128px !important;
  background: url("/static/Upload/back8_icon.jpg") center / cover no-repeat #6b5420;
}

/* 首页页脚双栏 */
.home-sizheng .footer-sz .container.sz-footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  text-align: left;
}
.sz-footer-left {
  flex: 1 1 280px;
  color: #ccc;
  line-height: 1.8;
  font-size: 13px;
}
.sz-footer-brand {
  font-size: 16px;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 8px;
}
.sz-footer-links-mini a {
  color: #aaa !important;
}
.sz-footer-right {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
}
.sz-footer-qr {
  text-align: center;
  font-size: 11px;
  color: #999;
}
.sz-footer-qr img {
  display: block;
  width: 88px;
  height: 88px;
  padding: 4px;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 4px;
}
.sz-footer-logo-red img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(196, 18, 31, 0.5));
}
@media (max-width: 767px) {
  .sz-ai-float {
    display: none;
  }
}
