video {
  width: 100vw;
  height: auto;
  z-index: -1;
  position: absolute;
}
.header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--height);
  min-width: 1350px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}

.header-reduce {
  height: calc(var(--height) * 0.6);
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--height));
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: -1;
}

.head-nav {
  width: 95%;
  height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.head-nav-L {
  display: flex;
  align-items: center;
}

.head-nav-L .logo {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  outline: none;
}

.head-nav-L .logo h1 {
  font-size: 0;
}

.head-nav-L .logo a,
.head-nav-L .logo a img {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.head-nav-L .nav-list {
  height: 60px;
  display: flex;
  align-items: center;
  padding-top: 5px;
}

.nav-list li {
  position: relative;
  margin-right: 30px;
}

.nav-list li:hover::after {
  width: 100%;
  background-color: var(--theme-col);
}

.nav-list li a {
  font-size: var(--text);
  color: var(--tex-col1);
  transition: all 0.3s ease;
}

.nav-list li a:hover {
  color: var(--theme-col);
}

.head-nav-R {
  display: flex;
  align-items: center;
}

.search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
  border: 2px solid #bfbfbf;
  border-radius: 20px;
  padding: 0 5px;
  transition: all 0.3s ease;
}

.search-input {
  width: 130px;
  padding-left: 5px;
}

.search-input input {
  width: 100%;
  height: 26px;
  background-color: transparent;
  border: none;
}
.search-input input:focus {
  border: none;
  outline: none;
}
.search:has(input:focus) {
  border: 2px solid var(--theme-col);
}

.search-icon {
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
}

.search-icon i {
  font-size: calc(var(--text) * 1.3);
  color: var(--tex-col2);
}

.head-nav-R .login a {
  display: inline-block;
  width: 80px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin-left: 20px;
  border: 1px solid var(--theme-col);
  background-color: transparent;
  border-radius: 5px;
  font-size: var(--text2);
  color: var(--theme-col);
}

.head-nav-R .login a:hover {
  background-color: var(--theme-col);
  color: var(--theme-col4);
  transition: all 0.3s ease;
}
.hr {
  width: 100vw;
  height: 50px;
  background-color: var(--theme-col2);
  position: fixed;
  z-index: 9999;
  text-align: center;
  line-height: 50px;
  color: var(--theme-col4);
  font-size: var(--text);
}
.content {
  width: 70vw;
  height: 70vh;
  box-sizing: border-box;
  border: 2px solid var(--theme-col);
  margin: 100px auto;
  margin-bottom: 50px;
  background-color: var(--theme-col5);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}
.content-top {
  width: 100%;
  height: 30%;
  background-color: var(--theme-col);
  display: flex;
  flex-direction: column; /* 子元素垂直排列（h1 在上，p 在下） */
  justify-content: center; /* 垂直居中（主轴对齐） */
  align-items: center; /* 水平居中（交叉轴对齐） */
  color: var(--theme-col4);
}
.content-bottom {
  width: 100%;
  height: 70%;
}
.content-bottom > div {
  width: 19%;
  height: 70%;
  background-color: var(--theme-col);
  float: left;
  margin: 5% 2.9%;
  border: 1px solid var(--theme-col);
  border-radius: 15px 15px 15px 15px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.cont1-top {
  width: 100%;
  height: 30%;
  background-color: #a1a1a1;
  display: flex;
  flex-direction: column; /* 子元素垂直排列（h1 在上，p 在下） */
  justify-content: center; /* 垂直居中（主轴对齐） */
  align-items: center; /* 水平居中（交叉轴对齐） */
  color: var(--theme-col4);
}
.cont1-bottom {
  width: 100%;
  height: 70%;
  background-color: var(--theme-col4);
}
.cont1-text {
  width: 1;
  height: 60%;
  padding-top: 10%;
  padding-left: 5%;
}
.cont1-text span {
  color: red;
  font-size: 200%;
}
.cont1-bottom a {
  text-decoration: none;
}
.cont1-bottom a:visited {
  color: var(--theme-col);
}
.cont1-play {
  width: 70%;
  height: 20%;
  background-color: var(--theme-col4);
  box-sizing: border-box;
  border: 1px solid var(--theme-col);
  color: var(--theme-col);
  margin: 0 auto;
  text-align: center;
  line-height: 250%;
  border-radius: 5px 5px 5px 5px;
}
.cont1-play:hover {
  background-color: var(--theme-col2);
  color: var(--theme-col4);
}
.cont2-top {
  width: 100%;
  height: 30%;
  background-color: #87cefa;
  display: flex;
  flex-direction: column; /* 子元素垂直排列（h1 在上，p 在下） */
  justify-content: center; /* 垂直居中（主轴对齐） */
  align-items: center; /* 水平居中（交叉轴对齐） */
  color: var(--theme-col4);
}
.cont2-bottom {
  width: 100%;
  height: 70%;
  background-color: var(--theme-col4);
}
.cont2-text {
  width: 1;
  height: 60%;
  padding-top: 10%;
  padding-left: 5%;
}
.cont2-text span {
  color: red;
  font-size: 200%;
}
.cont2-bottom a {
  text-decoration: none;
}
.cont2-bottom a:visited {
  color: var(--theme-col);
}
.cont2-play {
  width: 70%;
  height: 20%;
  background-color: var(--theme-col4);
  box-sizing: border-box;
  border: 1px solid var(--theme-col);
  color: var(--theme-col);
  margin: 0 auto;
  text-align: center;
  line-height: 250%;
  border-radius: 5px 5px 5px 5px;
}
.cont2-play:hover {
  background-color: var(--theme-col2);
  color: var(--theme-col4);
}
.cont3-top {
  width: 100%;
  height: 30%;
  background-color: #da70d6;
  display: flex;
  flex-direction: column; /* 子元素垂直排列（h1 在上，p 在下） */
  justify-content: center; /* 垂直居中（主轴对齐） */
  align-items: center; /* 水平居中（交叉轴对齐） */
  color: var(--theme-col4);
}
.cont3-bottom {
  width: 100%;
  height: 70%;
  background-color: var(--theme-col4);
}
.cont3-text {
  width: 1;
  height: 60%;
  padding-top: 10%;
  padding-left: 5%;
}
.cont3-text span {
  color: red;
  font-size: 200%;
}
.cont3-bottom a {
  text-decoration: none;
}
.cont3-bottom a:visited {
  color: var(--theme-col);
}
.cont3-play {
  width: 70%;
  height: 20%;
  background-color: var(--theme-col4);
  box-sizing: border-box;
  border: 1px solid var(--theme-col);
  color: var(--theme-col);
  margin: 0 auto;
  text-align: center;
  line-height: 250%;
  border-radius: 5px 5px 5px 5px;
}
.cont3-play:hover {
  background-color: var(--theme-col2);
  color: var(--theme-col4);
}
.cont4-top {
  width: 100%;
  height: 30%;
  background-color: #ffd700;
  display: flex;
  flex-direction: column; /* 子元素垂直排列（h1 在上，p 在下） */
  justify-content: center; /* 垂直居中（主轴对齐） */
  align-items: center; /* 水平居中（交叉轴对齐） */
  color: var(--theme-col4);
}
.cont4-bottom {
  width: 100%;
  height: 70%;
  background-color: var(--theme-col4);
}
.cont4-text {
  width: 1;
  height: 60%;
  padding-top: 10%;
  padding-left: 5%;
}
.cont4-text span {
  color: red;
  font-size: 200%;
}
.cont4-bottom a {
  text-decoration: none;
}
.cont4-bottom a:visited {
  color: var(--theme-col);
}
.cont4-play {
  width: 70%;
  height: 20%;
  background-color: var(--theme-col4);
  box-sizing: border-box;
  border: 1px solid var(--theme-col);
  color: var(--theme-col);
  margin: 0 auto;
  text-align: center;
  line-height: 250%;
  border-radius: 5px 5px 5px 5px;
}
.cont4-play:hover {
  background-color: var(--theme-col2);
  color: var(--theme-col4);
}
