/* ==========================================
   1. 基础样式（必须放在最顶部，作为默认兜底）
   ========================================== */
:root {
  --bobo-sidebanner-title-size: 36px;
}

.bobo-sidebanner {
  height: 280px;
  background-size: cover;
  background-repeat: no-repeat;
}

.bobo-sidebanner .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bobo-sidebanner .container h1,
.bobo-sidebanner .container h2 {
  font-size: var(--bobo-sidebanner-title-size);
}

.bobo-sidebanner .container .left {
  width: 100%;
  text-align: left;
}

.bobo-sidebanner .container path p {
  color: var(--text-color);
}


/* ==========================================
   2. 响应式媒体查询（必须严格放在下方，从大到小排列）
   ========================================== */
@media screen and (max-width: 1500px) {
  :root { --bobo-sidebanner-title-size: 32px; }
}

@media screen and (max-width: 1280px) {
  :root { --bobo-sidebanner-title-size: 28px; }
}

@media screen and (max-width: 1200px) {
  :root { --bobo-sidebanner-title-size: 26px; }
}

/* 注意：此处 992px 设为 32px 是你原代码的逻辑（比1200px大），如果是写错的可以顺手改小 */
@media screen and (max-width: 992px) {
  :root { --bobo-sidebanner-title-size: 32px; } 
}

@media screen and (max-width: 768px) {
  :root { --bobo-sidebanner-title-size: 28px; }
  .bobo-sidebanner {
    height: auto;
    padding: 30px 0;
  }
}

@media screen and (max-width: 576px) {
  :root { --bobo-sidebanner-title-size: 24px; }
}