@charset "UTF-8";

:root {
  --brand-color-white: #ffffff;
  --brand-color-black: #000000;
  --brand-color-muted: #aaaaaa;
  --brand-color-red: #83180f;
  --brand-color-red-bg: #83060D;
  --brand-color-red-dark: #75151B;
  --brand-font-desc: "HarmonyOS_Sans_Light";
  --brand-font-cn: "HarmonyOS Sans", "Microsoft YaHei", "PingFang SC", sans-serif;
  --brand-font-en: "Playfair Display", "Times New Roman", serif;
}

.rs-brand-page {
  background: var(--brand-color-white);
}

.rs-brand-main {
  display: flex;
  flex-direction: column;
  padding-top: var(--rs-header-height);
  color: var(--brand-color-black);
  font-family: var(--brand-font-cn);
  font-weight: 300;
}

.rs-brand-banner {
  width: 100%;
  height: 25.425rem;
  display: flex;
  overflow: hidden;
  flex: 0 0 auto;
}

.rs-brand-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rs-brand-red-section {
  width: 100%;

  background: var(--brand-color-red-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  padding-bottom: 4rem;
}

.rs-brand-red-section__logo {
  width: 11.032rem;
  height: 11.032rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background-color: #83060D;
  display: flex;
  align-items: center;
  justify-content: center;

}

.rs-brand-red-section__img {
  width: 11.032rem;
  height: 11.032rem;
}


.rs-brand-red-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  margin-top: 3.75rem;
}

.rs-brand-red-section__title-en {
  font-family: var(--brand-font-en);
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0.1em;
  color: var(--brand-color-white);

}

.rs-brand-red-section__title-cn {
  margin: 0.075rem 0 0;
  font-family: var(--brand-font-desc);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 0.1em;
  color: var(--brand-color-white);
}

.rs-brand-red-section__intro {
  font-family: var(--brand-font-desc);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.1em;
  color: var(--brand-color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.rs-brand-red-section__badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.rs-brand-concept {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5.5rem 0;
  background: var(--brand-color-white);
  padding-right: 2.5rem;
}

.rs-brand-concept__text {
  width: 49.9%;
  text-align: center;


}

.rs-brand-concept__title {
  font-family: var(--brand-font-cn);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.1em;
  color: var(--brand-color-black);
  margin-bottom: 1rem;
}

.rs-brand-concept__desc {


  font-family: var(--brand-font-cn);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--brand-color-black);
}

.rs-brand-concept__desc p {
  margin: 0 0 0.8rem;

}

.rs-brand-concept__desc p:last-child {
  margin-bottom: 0;
}

.rs-brand-concept__image {
  width: 50.1%;
  height: 28.2535rem;
  display: flex;
  overflow: hidden;
}

.rs-brand-concept__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rs-brand-products {
  display: flex;
  align-items: flex-start;
  padding-top: 0;
  background: var(--brand-color-white);
}

.rs-brand-products__item {
  width: calc((100% - 1rem) / 3);
  display: flex;
  margin-right: 0.5rem;
  overflow: hidden;
}

.rs-brand-products__item:nth-child(3n) {
  margin-right: 0;
}



.rs-brand-products__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rs-brand-footer-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.2835rem 0 0;
  background: var(--brand-color-white);
  font-family: var(--brand-font-desc);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.1em;
  color: var(--brand-color-black);
  text-align: center;
}

.rs-brand-footer-intro p {
  margin: 0 0 0.76rem;

}

.rs-brand-footer-intro p:last-child {
  margin-bottom: 0;
}

.rs-brand-banner img,
.rs-brand-concept__image img,
.rs-brand-products__item img {
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.rs-brand-banner:hover img,
.rs-brand-concept__image:hover img,
.rs-brand-products__item:hover img {
  transform: scale(1.025);
  filter: brightness(1.035);
}

@media (hover: none) {

  .rs-brand-banner:hover img,
  .rs-brand-concept__image:hover img,
  .rs-brand-products__item:hover img {
    transform: none;
  }
}

@media (max-width: 996px) {
  .rs-brand-main {
    padding-top: var(--rs-header-height);
  }

  .rs-brand-banner {
    height: 127vw;
  }

  .rs-brand-red-section {
    height: auto;
    padding: 2rem 4% 10rem;
    padding: 1.75rem 4% 2rem;
  }

  .rs-brand-red-section__logo {
    position: static;
    transform: none;
    margin-bottom: 1.75rem;
    width: auto;
    height: auto;
  }

  .rs-brand-red-section__logo img {
    /* width: 55vw; */
    /* height: 55vw; */
    width: 92%;
    margin: 0 auto;
  }
  .rs-brand-red-section__img{
    width: 100%;
    height: auto;
  }
  .rs-brand-red-section__title{
    margin-top: 1.75rem;
  }

  .rs-brand-red-section__title-en,
  .rs-brand-red-section__title-cn {
    font-size: 0.6rem;
  }

  .rs-brand-red-section__intro {
    width: 100%;
    font-size: 0.4rem;

  }

  .rs-brand-red-section__intro  {
    /* margin-bottom: 0.5rem; */
  }

  .rs-brand-concept {
    flex-direction: column;
    padding: 1.5rem 4%;
  }

  .rs-brand-concept__text {
    width: 100%;
    padding: 0;
    margin-bottom: 1.5rem;
  }

  .rs-brand-concept__title {
    /* font-size: 0.45rem; */
  }

  .rs-brand-concept__desc p {
    font-size: 0.325rem;
    margin-bottom: 0.5rem;
  }

  .rs-brand-concept__image {
    width: 100%;
    height: 65vw;
  }

  .rs-brand-products {
    flex-direction: column;
  }

  .rs-brand-products__item {
    width: 100%;
    height: 65vw;
  }

  .rs-brand-footer-intro {
    padding: 1.5rem 4%;
  }

  .rs-brand-footer-intro p {
    font-size: 0.325rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}