.gardensun-video-section {
  position: relative;
  width: 100%;
  aspect-ratio:16/9;
  overflow: hidden;
}

html, body {
  overflow-x: hidden;        /* 彻底禁用滚动（横向+纵向） */
  width: 100%;             /* 限定宽度为视口100% */
  
  margin: 0;               /* 清除默认边距（避免溢出） */
  padding: 0;              /* 清除默认内边距 */
  box-sizing: border-box;  /* 避免内边距/边框撑大宽度 */
}
.glite-header-nav > ul > li:hover > a,
.glite-header-nav > ul > li.active > a {
  color: var(--color-primary)!important;
}
.gardensun-video-section video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.gardensun-video-description {
  width:80%;
  }
.gardensun-video-section .gardensun-video-mask {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}
.gardensun-video-section .gardensun-video-content {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 16px;
}
.gardensun-video-section .gardensun-video-btn {
  margin-top: 24px;
  padding: 10px 32px;
  background: #fff;
  color: #222;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background 0.2s, color 0.2s;
}
.gardensun-video-section .gardensun-video-btn:hover {
  background: #222;
  color: #fff;
}

/* æŒ‰é’®åŒºåŸŸ */
.gardensun-video-section .gardensun_banner_actions {
  text-align: center;   
}

/* ä¸»è¦æŒ‰é’® */
.gardensun-video-section .gardensun_banner_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0.5px solid var(--color-primary);
  /* background-color: var(--color-primary, #E60012); */
  color: #F6F5F1;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  padding: 8px 20px;
  border-radius: var(--button-radius, 6px);
  text-decoration: none;
  transition: all 0.3s ease;
  height: 42px;
  min-width: 160px;
  justify-content: center;
  white-space: nowrap;
  margin-top: 40px;
}

.gardensun-video-section .gardensun_banner_btn:hover {
  background-color: var(--btn-hover, #CC0010);

  text-decoration: none;
  /* border: 1px solid #E60012; */
}

/* æŒ‰é’®å›¾æ ‡ */
.gardensun-video-section .gardensun_btn_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.gardensun-video-section .gardensun_banner_btn:hover svg path {
  /* fill: #E60012; */
}

.gardensun-video-title {
  color: #F6F5F1;
  text-align: center;
  font-family: var(--font-family);
  font-size: 46px;
  font-style: normal;
  font-weight: 500;
  line-height: 70px;
}

.glite-header-nav > ul > li:hover > a,
.glite-header-nav > ul > li.active > a {
  color: var(--color-primary)!important;
   

}
.gardensun-video-description {
  color: #F6F5F1;
  text-align: center;
  font-family: var(--font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
    padding: 20px 0;
}

@media (max-width: 968px) {


  .gardensun-video-content p {
    display: none;

  }

  }

@media (max-width: 768px) {
  .gardensun-video-section {
    height: 260px;
  }
  .gardensun-video-content h2 {
    font-size: 26px;
    line-height: normal;
  }
  .gardensun-video-content p {
    display: none;
    font-size: 14px;
    line-height: normal;
  }
  .gardensun-video-btn {
    font-size: 15px;
    padding: 8px 20px;
  }

  .gardensun-video-section .gardensun_banner_btn {
    margin-top: 13px;
  }
} 