@charset "UTF-8";
/* 防灭火宣传 - 视频区域样式 */

/* 视频区域容器 */
.slfmg-video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 6rem;
}

/* 视频外层卡片包裹 */
.slfmg-video-wrapper {
  position: relative;
  width: 80%;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 89, 146, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

/* 视频元素 */
.slfmg-video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  background: #e8edf2;
}

/* 遮罩层（点击播放时隐藏） */
.slfmg-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 2;
}

.slfmg-video-overlay:hover {
  background: rgba(0, 0, 0, 0.15);
}

.slfmg-video-overlay.hidden {
  display: none;
}

/* 播放按钮圆圈 */
.slfmg-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.slfmg-video-overlay:hover .slfmg-play-btn {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

/* 播放三角图标 */
.slfmg-play-icon {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent rgb(15, 89, 146);
  margin-left: 5px;
}

/* =============================================
   防火动态 - 左图右列表
   ============================================= */

/* 外层容器：左图右列表两列布局 */
.fhdt-news-panel {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-bottom: 6rem;
  background: #ffffff;
  border-radius: 4px;
  overflow: visible;
  box-shadow: 0 2px 16px rgba(15, 89, 146, 0.07), 0 1px 4px rgba(0,0,0,0.03);
  position: relative;
}

/* 左侧封面图 */
.fhdt-cover {
  flex: 0 0 40%;
  margin-top: -1.8rem;
  margin-bottom: -1.8rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  z-index: 1;
}

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

/* 右侧列表外层（包含列表+分页） */
.fhdt-list-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* 右侧列表 */
.fhdt-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 2rem 0.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}

/* 单条列表项：日期在上，标题在下 */
.fhdt-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(15, 89, 146, 0.08);
  position: relative;
  transition: background 0.2s ease;
}

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

/* 激活（第一条）：无蓝色背景，标题+箭头横排 */
.fhdt-item--active {
  background: none;
}

/* 日期文字 */
.fhdt-date {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.2rem;
  color: rgba(102, 102, 102, 0.8);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* 标题行：标题+箭头横排 */
.fhdt-title-row {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0;
}

/* 标题链接 */
.fhdt-title {
  flex: 1;
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
  line-height: 1.6;
}

.fhdt-title:hover,
.fhdt-item--active .fhdt-title {
  color: rgb(15, 89, 146);
}

/* 右箭头（仅激活条显示），加右边距 */
.fhdt-arrow {
  flex: 0 0 auto;
  font-size: 1.8rem;
  color: rgb(41, 101, 211);
  line-height: 1;
  margin-right: 1rem;
}

/* =============================================
   森防工作基本情况 - 四卡片
   ============================================= */

/* 四卡片等宽布局 */
.sfgk-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-bottom: 3rem;
}

/* 单卡片 */
.sfgk-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 16px rgba(15, 89, 146, 0.07), 0 1px 4px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sfgk-card:hover {
  box-shadow: 0 8px 32px rgba(15, 89, 146, 0.14), 0 2px 8px rgba(0,0,0,0.05);
  transform: translateY(-4px);
}

/* 图标容器：圆角方形 + 青色描边 */
.sfgk-icon-wrap {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  border: 2px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(41, 101, 211, 1), rgba(15, 223, 172, 1)) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  flex-shrink: 0;
}

.sfgk-icon-wrap svg,
.sfgk-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 标题胶囊 */
.sfgk-label {
  display: inline-block;
  padding: 0.3rem 1.2rem;
  background: linear-gradient(to right, rgba(18, 206, 177, 0.12), rgba(41, 101, 211, 0.12));
  border-radius: 100px;
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(15, 89, 146);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* 正文描述 */
.sfgk-desc {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.3rem;
  font-weight: 350;
  line-height: 2rem;
  color: #555555;
  text-align: justify;
  margin: 0;
  max-height: 12rem;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sfgk-desc::-webkit-scrollbar {
  display: none;
}

/* 数字高亮 */
.sfgk-desc em {
  font-style: normal;
  font-weight: 700;
  color: rgb(15, 89, 146);
}

/* 视频说明文字 */
.slfmg-video-caption {
  font-family: "Source Han Sans CN", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: 0.05rem;
  color: rgb(102, 102, 102);
  text-align: center;
  font-style: italic;
  margin: 0;
}
