body {
  font-family: Microsoft YaHei;
  width: auto;
  height: auto;
  font-size: 18px;
  margin: 0;
  padding: 0;
}
a {
  cursor: pointer;
}
a:hover {
  color: var(--primary-color);
}
button {
  outline: none;
  border: none;
  background: none;
}
input {
  outline: none;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
/* 清除浮动 */
.cf:after {
  display: block;
  content: "";
  height: 0;
  visibility: hidden;
  clear: both;
}

/* 内容部分 */
body .container {
  height: auto;
  width: 100%;
  background: #f5fbff url(bg.png) repeat-y center -25px;
  background-size: cover;
  padding-bottom: 30px;
  padding-top: 8px;
}
.zck-logo img {
  display: block;
  width: 336px;
  height: 159px;
  margin: 0 auto;
}
.zck-search-box {
  width: 920px;
  height: 80px;
  margin: -10px auto 0;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  position: relative;
  margin-bottom: 30px;
}
.zck-search-box input {
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 0 60px 0 20px;
  color: #999999;
  border: none;
}
.zck-search-btn {
  position: absolute;
  right: 30px;
  width: 26px;
  height: 26px;
  top: 50%;
  transform: translateY(-50%);
  background: url(search.png) no-repeat center;
  background-size: cover;
  cursor: pointer;
}
.zck-type {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 920px;
  margin: 0 auto 100px;
}
.zck-type-item {
  line-height: 34px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 0 12px;
  color: #ffffff;
  cursor: pointer;
}
.zck-type-item.active,
.zck-type-item:hover {
  color: var(--primary-color);
  font-weight: 700;
  background: #ffffff;
}
.zck-link {
  display: flex;
  justify-content: space-between;
  width: 920px;
  margin: 0 auto;
  /* grid-template-columns: repeat(5, 1fr); */
}
.zck-link-item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.zck-link-item > a img {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
}
.zck-link-item > a span {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}
.zck-link-item > a:hover span {
  color: var(--primary-color);
}