.search-page {
  width: 100%;
  height: 100vh;
  color: var(--efefef);
}
/* .search-page .design-bg {
  background-color: var(--dark);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
} */

.search-page .search-btn {
  color: var(--light);
  background: var(--dark);
  border: var(--light) 1px solid;
}

.search-page .search-icon {
  border: var(--light) 1px solid;
  background: var(--light);
}
.search-page .search-icon:hover {
  color: var(--dark);
}
.search-page .hamburger--emphatic {
  border-right: var(--light) 1px solid;
  color: var(--light);
  background: var(--dark);
  border: var(--light) 1px solid;
}

.search-page .hamburger--emphatic:hover {
  color: var(--dark);
  background: var(--light);
}
.search-landing {
  bottom: 0;
  left: 0;
  min-height: calc(100vh - 2.2222222222rem);
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  align-items: center;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  padding-top: calc(50vh - 6rem);
  transition: padding-top 0.35s;
}

.search-container {
  position: relative;
  width: 1440px;
  height: 296px;
  z-index: 500;
}
.search-container form {
  display: flex;
  justify-content: flex-start;
  position: relative;
  width: 100%;
}
.search-input {
  border-bottom: 1px solid var(--text-color);
  opacity: 1;
  transform: translateY(0);
  appearance: none;
  background-color: transparent;
  border: 1px solid var(--light);
  color: var(--light);
  font-size: 16px;
  padding: 0.5555555556rem;
  width: 100%;
}

.search-input:focus-visible {
  border: 1px solid var(--light);
}

.search-msg {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
}

.msg-heading {
  opacity: 1;
  transform: translateY(0);
  font-family: "AllianceNo2-Regular", system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.65rem;
  font-feature-settings: "zero";
  font-variant-numeric: slashed-zero;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-transform: uppercase;
  color: #a7a6a6;
  transition-delay: 0.1s;
}
.search-recommendations {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.intro-transition {
  opacity: 1;
  transform: translateY(0);
  transition-duration: 0.4s;
  transition-property: transform, opacity;
}
.intro-transition a {
  color: var(--light);
  font-size: 18px;
  -webkit-text-decoration-skip: ink;
  text-decoration: underline;
  transition: color 0.25s ease-in-out;
}

.newsroom-head {
  padding-top: 120px;
}

.nh_list {
  width: 420px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nh_item {
  overflow: hidden;
  height: 36px;
  line-height: 36px;
  cursor: pointer;
  color: #767676;
  position: relative;
  -moz-user-select: none; /* 火狐 */
  -webkit-user-select: none; /* 谷歌 */
  -ms-user-select: none; /* IE */
  user-select: none;
}

.nh_item:hover {
  color: #000;
}

.showLine {
  position: absolute;
  top: 0px;
  display: block;
  width: 30px;
  height: 36px;
  overflow: hidden;
}

.showLine::before {
  content: "";
  width: 30px;
  height: 0.5px;
  position: absolute;
  top: 0px;
  left: 0;
  background: #000;
  transition: transform 0.25s ease-in-out;
  transform: translateX(100%);
}

.nh_item:hover .showLine::before {
  background: transparent;
  transform: translateX(0);
  transition-duration: 0;
}

.showLine::after {
  content: "";
  width: 30px;
  height: 0.5px;
  position: absolute;
  top: 0px;
  background: #000;
  transition: transform 0.25s ease-in-out;
  transform: translateX(-100%);
  transition-duration: 0s;
}

.nh_item:hover .showLine::after {
  transform: translateX(0);
  transition-duration: 0.25s;
}

.clickItem {
  font-weight: bold;
  color: #000;
  border-bottom: 1px solid #767676;
}

.rh-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rh-head h1 {
  margin-top: -20px;
  font-size: 100px;
  font-weight: 100;
}

.rh-head div {
  width: 480px;
  font-size: 32px;
}

.nlWarp {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #000;
  padding-top: 20px;
  flex-wrap: wrap;
}

.nlBox {
  width: 48%;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.nlImg {
  width: 100%;
  height: 400px;
}

.nlImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nlTitle {
  font-size: 2rem;
  margin: 35px 0;
  height: 5rem;
}

.nlMore {
  height: 40px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  cursor: pointer;
  transition: all 0.4s;
  text-decoration: none;
}

.nlMore:hover {
  border-bottom: 1px solid #00000000;
}
.nlMore:hover .text {
  color: #767676;
}

.nlMore .arrow {
  margin-right: 10px;
}

.nlMore .text {
  color: #000;
  font-size: 18px;
  transition: all 0.4s;
  text-decoration: none;
}

.nlMore:hover {
  color: rgba(30, 33, 36, 0.53);
}

.showWord span {
  color: transparent;
  background-image: linear-gradient(to right, #000000, #000000, #000000);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-size: 100% 100%;
  animation: bg 1.2s linear;
  position: relative;
}

@keyframes bg {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}

.showWord2 {
  position: relative;
  opacity: 0;
  animation: sw 2s;
  animation-fill-mode: forwards;
  top: 18px;
}

@keyframes sw {
  50% {
    opacity: 0;
    top: 18px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
