#body {
  background-color: #ffffff;
}
.section-title {
  font-size: 2.125rem;
  font-weight: bold;
  position: relative;
  color: #333333;
}
.section-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.625rem;
  width: 3.75rem;
  height: 0.3125rem;
  background-color: #333333;
}
.section-title.line-left::after {
  left: 0;
  right: auto;
}
.banner {
  width: 100%;
  height: 37.5rem;
  position: relative;
}
main {
  overflow: hidden;
}
.profile-section {
  padding: 3rem 0;
  background: #fff;
}
.profile-section .logo {
  width: 23.625rem;
}
.profile-section .profile-container {
  display: flex;
  align-items: flex-start;
  gap: 4.5rem;
  margin-top: 6rem;
}
.profile-section .media {
  width: 44.5rem;
}
.profile-section .video-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.6%;
  background-color: #000000;
}
.profile-section .video-wrap .video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.profile-section .video-wrap .video-thumb {
  position: absolute;
  inset: 0;
}
.profile-section .video-wrap .video-thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.profile-section .video-wrap .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  border: 0;
}
.profile-section .video-wrap .play-btn::before {
  content: '';
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 0.875rem solid transparent;
  border-bottom: 0.875rem solid transparent;
  border-left: 1.25rem solid #fff;
}
.profile-section .video-wrap .play-btn:hover {
  background: rgba(255, 82, 0, 0.8);
}
.profile-section .video-desc {
  display: flex;
  justify-content: center;
  background: #FF5200;
  color: #fff;
  font-size: 1.25rem;
  gap: 6.25rem;
  padding: 0.75rem 0;
}
.profile-section .content {
  flex: 1;
}
.profile-section .content h2 {
  font-size: 1.625rem;
  color: #333333;
}
.profile-section .intro-text {
  margin-top: 1.75rem;
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #333;
  text-align: justify;
}
.profile-section .intro-text p {
  margin-top: 1rem;
}
.profile-section .stats {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.profile-section .stats .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.profile-section .stats .num {
  font-size: 4.125rem;
  font-weight: 700;
  color: #FF5200;
  line-height: 1;
}
.profile-section .stats .more {
  position: relative;
}
.profile-section .stats .more::after {
  content: '+';
  display: block;
  position: absolute;
  top: 0.5rem;
  right: -1.75rem;
  font-size: 2.375rem;
}
.profile-section .label {
  margin-top: 1rem;
  font-size: 1.625rem;
  color: #333;
}
.profile-section .divider {
  width: 2px;
  height: 6rem;
  background: #FF5200;
  margin: 0 2rem;
}
.product-section {
  position: relative;
  padding: 3rem 0;
}
.product-section ul {
  display: flex;
  flex-direction: column;
  border: 1px solid #adadad;
}
.product-section li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 7rem;
}
.product-section li:nth-child(n+2) {
  border-top: 1px solid #adadad;
}
.product-section li:nth-child(1) .right {
  width: 33.25rem;
}
.product-section li:nth-child(2) {
  flex-direction: row-reverse;
}
.product-section li:nth-child(2) .right {
  width: 29rem;
}
.product-section li:nth-child(3) .right {
  width: 29rem;
}
.product-section li:nth-child(4) {
  flex-direction: row-reverse;
}
.product-section li:nth-child(4) .right {
  width: 29rem;
}
.product-section .left {
  width: 27rem;
}
.product-section .left h2 {
  color: #FF5200;
  font-size: 2.25rem;
  line-height: 3rem;
}
.product-section .left h3 {
  margin-top: 0.5rem;
  color: #888888;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 400;
}
.product-section .left .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 4rem;
}
.product-section .left .tags .tag {
  padding: 0.25rem 1.25rem;
  border: 1px solid #FFBD9E;
  border-radius: 3rem;
  font-size: 1.125rem;
  color: #FF702E;
  line-height: 1.625rem;
  cursor: default;
  transition: all 0.3s ease;
}
.product-section .left .tags .tag:hover {
  background-color: #FF5200;
  color: #ffffff;
  border-color: #FF5200;
}
.product-section .left .more {
  margin-top: 4rem;
  width: 8.5rem;
  height: 3rem;
  background-color: #FF5200;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  color: #ffffff;
}
.product-section .left .more .icon-arrow {
  width: 0.875rem;
  transform: rotate(180deg) rotateX(180deg);
  filter: brightness(0) invert(1);
}
.product-section .right .img {
  width: 100%;
}
.product-section .bg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-45%, -50%);
  width: 144rem;
}
.honor-section {
  position: relative;
  padding: 3rem 0 6rem;
}
.honor-section .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54.5rem;
}
.honor-section h2 {
  font-size: 2rem;
  color: #333333;
}
.honor-section .desc {
  margin: 3.5rem auto 0;
  width: 64rem;
  color: #000000;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: justify;
}
.honor-section .tags-wrap {
  margin-top: 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
.honor-section .tags-wrap .tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
.honor-section .tags-wrap .tags .tag {
  padding: 1.25rem 3rem;
  border-radius: 3rem;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: bold;
  cursor: default;
  transition: all 0.3s ease;
  background-color: #FF5200;
}
.partner-section {
  padding: 3rem 0 5rem;
}
.partner-section h2 {
  font-size: 2rem;
  color: #333333;
}
.partner-section .partner-img {
  margin: 5rem auto 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
  .banner {
    height: 20rem;
  }
  .profile-section {
    padding: 7rem 0 2rem;
    position: relative;
  }
  .profile-section .logo {
    width: 18.5rem;
  }
  .profile-section .section-title {
    position: absolute;
    top: -6rem;
    right: 0.5rem;
  }
  .profile-section .profile-container {
    margin-top: 2rem;
    flex-direction: column;
    gap: 2rem;
  }
  .profile-section .media {
    width: 100%;
  }
  .profile-section .stats {
    justify-content: space-between;
  }
  .profile-section .stats .item {
    width: 11rem;
  }
  .profile-section .stats .divider {
    margin: 0 1rem;
  }
  .profile-section .stats .num {
    font-size: 2.75rem;
  }
  .profile-section .video-desc {
    gap: 2.25rem;
    font-size: 1rem;
  }
  .product-section ul {
    gap: 2rem;
  }
  .product-section li {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .product-section li:nth-child(1) .right {
    width: 100%;
  }
  .product-section li:nth-child(2) {
    flex-direction: column;
  }
  .product-section li:nth-child(2) .right {
    width: 100%;
  }
  .product-section li:nth-child(3) .right {
    width: 100%;
  }
  .product-section li:nth-child(4) {
    flex-direction: column;
  }
  .product-section li:nth-child(4) .right {
    width: 100%;
  }
  .product-section .left {
    width: 100%;
  }
  .product-section .left .tags {
    margin-top: 1rem;
  }
  .product-section .left .more {
    margin-top: 2rem;
  }
  .honor-section .bg {
    width: 100%;
  }
  .honor-section .bg img {
    display: block;
    width: 100%;
    height: auto;
  }
  .honor-section h2 {
    font-size: 1.75rem;
  }
  .honor-section .desc {
    margin: 2rem auto 0;
    width: 100%;
  }
  .honor-section .tags-wrap {
    margin-top: 1rem;
  }
  .honor-section .tags-wrap .tags {
    gap: 1rem;
  }
  .partner-section h2 {
    font-size: 1.75rem;
  }
  .partner-section .partner-img {
    margin: 2rem auto 0;
  }
}
@media screen and (max-width: 768px) {
  .honor-section .honor-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .honor-section .honor-title .section-title {
    margin-top: 0.5rem;
    align-self: flex-end;
    font-size: 1.25rem;
  }
}
