/* ============================================================
   关于我们
   ============================================================ */


/* #region Our Story */
.story {
  display: flex;
  margin-left: 75px;
  margin-right: 75px;
  height: 300px;
}

.story-title {
  font-size: 100px;
  font-weight: bold;
  color: #eb6100;
  flex: 4;
}

@media (min-width: 1200px) {
  .story-title {
    font-size: 55px;
  }
}

@media (min-width: 1440px) {
  .story-title {
    font-size: 75px;
  }
}

@media (min-width: 1920px) {
  .story-title {
    font-size: 100px;
  }
}

.story-right {
  flex: 6;
}

.story-right-title {
  font-size: 42px;
  font-weight: bold;
  color: #eb6100;
}

.story-right-sub-title {
  font-size: 30px;
  color: #642f2d;
  line-height: 1.25;
}

.brand {
  background-image: url("../images/about-us/brand-bg.png");
  background-attachment: scroll;
  background-position: center top;
  background-repeat: no-repeat;
  height: 850px;
  width: 100%;
  box-sizing: border-box;
}

.brand-title {
  padding-top: 35px;
  padding-right: 150px;
  margin-right: 150px;
  width: 100%;
  text-align: right;
  color: #fff;
  font-size: 93px;
  font-weight: bold;
}

.brand-sub-title {
  padding-right: 150px;
  margin-top: 25px;
  margin-right: 150px;
  width: 100%;
  text-align: right;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 45px;
}

.brand-desc {
  position: relative;
  margin-left: 175px;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}

.brand-desc::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: -20px;
  top: 8px;
}

.brand-content {
  display: flex;
  margin-top: 45px;
  margin-left: 150px;
  margin-right: 150px;
  justify-content: space-between;
}

.brand-tag {
  width: 375px;
  background-color: #fff;
  /* border-radius: 45px; */
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #eb6100;
  padding: 15px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.brand-tag:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.brand-tag-desc {
  /* margin-left: 35px; */
  margin-top: 25px;
  color: #fdcdb1;
  font-size: 20px;
  text-align: left;
}

.ygf-journey {
  background-image: url("../images/about-us/ygf-journey-bg.png");
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  width: 100%;
  aspect-ratio: 2000 / 1213;
  box-sizing: border-box;
  position: relative;
}

.ygf-journey .ygf-journey-year-container {
  width: 100%;
  position: absolute;
  bottom: 75px;
  display: flex;
  justify-content: space-evenly;
}

.ygf-journey-year-container .year-content {
  width: 270px;
  color: #ffede7;
  font-size: 16px;
}

.ygf-journey-title {
  margin-left: 135px;
  margin-top: 135px;
  font-size: 93px;
  font-weight: bold;
  color: #eb6100;
}

.ygf-journey-sub-title {
  margin-left: 135px;
  margin-top: 25px;
  font-size: 15px;
  /* font-weight: bold; */
  color: #696969;
}

.flavor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 50px;
}

.flavor-title {
  margin-top: 105px;
  font-size: 93px;
  font-weight: bold;
  color: #eb6100;
}

.flavor-sub-title {
  margin-top: 20px;
  font-size: 50px;
  font-weight: bold;
  color: #71180b;
}

.flavor-content {
  margin-top: 105px;
  font-size: 50px;
  font-weight: bold;
  color: #eb6100;
}

.flavor-broth {
  aspect-ratio: 9/16;

  box-sizing: border-box;
  border-radius: 20px;
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  position: relative;
  overflow: hidden;

  /* height: 900px; */
}

.flavor-broth::before,
.flavor-farm::before,
.flavor-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-attachment: scroll;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}

.flavor-broth:hover::before,
.flavor-farm:hover::before,
.flavor-modern:hover::before {
  transform: scale(1.2);
}

.flavor-broth::before {
  background-image: url("../images/about-us/flavor-01.png");
}

.flavor-farm::before {
  background-image: url("../images/about-us/flavor-02.png");
}

.flavor-modern::before {
  background-image: url("../images/about-us/flavor-03.png");
}

.flavor-broth-desc {
  font-size: 26px;
  color: #eb6100;
  margin-top: 45px;
  text-align: center;
}

.flavor-broth-title {
  font-size: 50px;
  color: #eb6100;
  font-weight: bold;
  margin-bottom: 75px;
  text-align: center;
}

.flavor-farm {
  box-sizing: border-box;
  border-radius: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.flavor-farm-desc {
  font-size: 26px;
  color: #fff;
  margin-top: 45px;
  text-align: center;
}

.flavor-farm-title {
  font-size: 50px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 75px;
  text-align: center;
}

.flavor-modern {
  flex: 1;
  box-sizing: border-box;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* border-radius: 20px; */
}

.flavor-modern-desc {
  font-size: 26px;
  color: #71180b;
  margin-top: 45px;
  text-align: center;
}

.flavor-modern-title {
  font-size: 50px;
  color: #71180b;
  font-weight: bold;
  margin-bottom: 75px;
  text-align: center;
}

.overseas {
  margin-top: 100px;
  background-image: url("../images/about-us/overseas-bg.png");
  background-attachment: scroll;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  height: 1000px;
  box-sizing: border-box;
  padding: 0 100px;
}

.overseas-title {
  font-size: 129px;
  font-weight: bold;
  color: #eb6100;
  margin-left: 65px;
  margin-top: -60px;
  width: 100px;
  line-height: 0.9;
}

@media (min-width: 1200px) {
  .overseas-title {
    font-size: 80px;
  }
}

/* 1920px 超大屏样式（≥1440px 即可） */
@media (min-width: 1440px) {
  .overseas-title {
    font-size: 100px;
  }
}

/* 1920px 超大屏样式（≥1440px 即可） */
@media (min-width: 1920px) {
  .overseas-title {
    font-size: 129px;
  }
}

.overseas-global {
  font-size: 75px;
  font-weight: bold;
  color: #eb6100;
  margin-left: 65px;
  /* margin-top: -60px; */
}

.overseas-global-desc {
  font-size: 50px;
  color: #eb6100;
  margin-left: 65px;
  margin-top: 15px;
  margin-bottom: 25px;
}

.overseas-num {
  font-size: 160px;
  font-weight: bold;
  color: #eb6100;
  margin-right: 65px;
  min-width: 3em;
}

.overseas-num-desc {
  font-size: 27px;
  color: #eb6100;
  margin-right: 65px;

  /* margin-top: 15px; */
  margin-bottom: 25px;
}

.our-story {
  margin-top: 650px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 40%,
      rgba(255, 255, 255, 1) 100%);
  height: 900px;

  display: flex;

  color: black;
  justify-content: space-between;
  gap: 100px;
}

.our-story-title {
  color: #eb6100;
}