.yichen_banner {
  position: relative;
  font-family: var(--font-family);
}

.yichen_banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 3.5;
  object-fit: cover;
}
.yichen_banner_logo_wrapper{
  width: 100%;
  text-align: center;
}

.yichen_banner .yichen_banner_logo {
  width: 11%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin:0 auto 24px;
}
.yichen_banner_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}


.yichen_banner_title {
  font-size: var(--title-size-h1);
  color: #FFF;
  text-align: center;
  font-weight: 700;
}

.yichen_banner_links {
  display: flex;
  padding: 23px 88px;
  gap: 50px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.88);
  width: fit-content;
  margin: 27px auto;
}

.yichen_banner_links a {
  color: var(--color-primary);
  font-size: var(--title-size-h2);
  font-weight: 500;
  line-height: normal;
}

.yichen_banner_desc {
  color: #fff;
  font-weight: 500;
  font-size: var(--text-flag-size);
  line-height: normal;
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
  padding: 0 100px;
  word-break: break-all;
}

@media screen and (max-width: 1280px) {
  .yichen_banner_desc {
    padding: 0 80px;
  }

  .yichen_banner_links {
    padding: 20px 44px;
    gap: 25px;
  }
}

@media screen and (max-width: 992px) {
  .yichen_banner_links {
    padding: 10px 25px;
    gap: 15px;
  }

  .yichen_banner_desc {
    padding: 0
  }

  .yichen_banner_logo {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 576px) {
  .yichen_banner_title {
    font-size: 15px;
  }

  .yichen_banner_links {
    padding: 6px 25px;
    gap: 14px;
  }

  .yichen_banner_links {
    margin: 14px auto;
  }

  .yichen_banner_links a {
    font-size: 12px;
  }

  .yichen_banner_desc {
    font-size: 12px;
    line-height: 1.2;
  }
}