/* #region products_list (parts/products-list.php) */
.products_list {
  position: relative;
  z-index: 2;
  padding: 16.17rem 0px 13.3rem;
  border-radius: 3.03rem;
  background: url(../img/products-list-bg.webp) no-repeat center / 100% 100%;
}
.products_list .tcon .tag + h2 {
  margin-top: 2.18rem;
}
.products_list .product_cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: 5.4rem 6.04rem;
  margin-top: 6.05rem;
}
.products_list .product_card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.6rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  border: 1px solid #e4e8ee;
  background-color: #fff;
}
.products_list .product_card:hover {
  border-color: var(--primary);
  box-shadow: 0px 0px 0px 1px var(--primary), 0px 1.8rem 4rem rgba(15, 26, 18, 0.08);
}
.products_list .product_card .img {
  position: relative;
  display: block;
  height: 34.16rem;
  margin: -1px -1px 0px;
  border-radius: 1.6rem;
  background-color: #04102f;
}
.products_list .product_card .img > img {
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.products_list .product_card:hover .img > img {
  transform: scale(1.05);
}
.products_list .product_card .icon {
  position: absolute;
  left: 1.97rem;
  bottom: 2.11rem;
  z-index: 2;
  display: block;
  width: 7.8rem;
  height: 7.8rem;
  overflow: hidden;
  border-radius: 1.6rem;
  background-image: linear-gradient(222deg, #fa9b1f 3%, #fbb358 13%, #fcc47d 22%, #fdd09a 30%, #ffe1c0 55%, #d4d9d6 76%, #a8d2ee 100%);
  box-shadow: inset -0.2rem 0.2rem 0.6rem rgba(255, 255, 255, 0.5);
  transition: transform 0.4s;
}
.products_list .product_card:hover .icon {
  transform: translateY(-0.6rem);
}
.products_list .product_card .icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.products_list .product_card .info {
  flex: 1 1 auto;
  padding: 3.71rem 4.35rem 4.53rem;
}
.products_list .product_card h3 {
  color: var(--dark);
  font-weight: 450;
  font-size: 2.8rem;
  line-height: 3.7rem;
}
.products_list .product_card h3 a {
  transition: color 0.3s;
}
.products_list .product_card h3 a:hover {
  color: var(--primary);
}
.products_list .product_card .desc {
  display: -webkit-box;
  overflow: hidden;
  max-width: 68.25rem;
  min-height: 5.2rem;
  margin-top: 1.71rem;
  color: var(--text);
  font-weight: 380;
  font-size: 1.6rem;
  line-height: 2.6rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.products_list .product_card .rows {
  margin-top: 1.25rem;
}
.products_list .product_card .rows li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 4.87rem;
  border-top: 1px dashed #e4e8ee;
}
.products_list .product_card .rows span {
  flex-shrink: 0;
  color: var(--text);
  font-weight: 380;
  font-size: 1.6rem;
}
.products_list .product_card .rows strong {
  color: var(--dark);
  font-weight: 520;
  font-size: 1.6rem;
  text-align: right;
}
.products_list .product_card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.88rem;
  margin-top: 2.83rem;
}
.products_list .product_card .tags span {
  display: block;
  padding: 0px 1.33rem;
  border-radius: 10rem;
  color: var(--primary);
  font-weight: 520;
  font-size: 1.4rem;
  line-height: 3.53rem;
  white-space: nowrap;
  background-color: #fff5eb;
}
.products_list .product_card .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.43rem;
}
.products_list .product_card .foot p {
  color: var(--text);
  font-weight: 380;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
.products_list .product_card .more {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.77rem;
  color: var(--title);
  font-weight: 450;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.products_list .product_card .more::after {
  content: '';
  flex-shrink: 0;
  width: 3.34rem;
  height: 3.34rem;
  border-radius: 50%;
  transform: rotate(-45deg);
  transition: transform 0.3s, background-color 0.3s;
  background: var(--dark) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none' stroke='%23fff' stroke-width='1.5'%3E%3Cpath d='M0 5h11M6.8.9 10.9 5 6.8 9.1'/%3E%3C/svg%3E") no-repeat center / 1.08rem auto;
}
.products_list .product_card:hover .more::after {
  transform: rotate(0deg);
  background-color: var(--primary);
}
.products_list .product_card .more:hover::after {
  transform: translateX(0.4rem);
}
/* #endregion */

@media screen and (max-width: 1024px) {
  .products_list .product_card .info {
    padding: 3rem 3rem 3.6rem;
  }
  .products_list .product_card .foot {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .products_list {
    padding: 60px 0px;
    border-radius: 16px;
    background-size: cover;
  }
  .products_list .tcon .tag + h2 {
    margin-top: 14px;
  }
  .products_list .product_cards {
    grid-template-columns: minmax(0px, 1fr);
    gap: 16px;
    margin-top: 30px;
  }
  .products_list .product_card,
  .products_list .product_card .img {
    border-radius: 14px;
  }
  .products_list .product_card .img {
    height: auto;
    aspect-ratio: 793 / 341;
  }
  .products_list .product_card .icon {
    left: 12px;
    bottom: 12px;
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }
  .products_list .product_card .info {
    padding: 20px 18px 22px;
  }
  .products_list .product_card h3 {
    font-size: 20px;
    line-height: 1.4;
  }
  .products_list .product_card .desc {
    min-height: 0px;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.7;
    -webkit-line-clamp: 3;
  }
  .products_list .product_card .rows {
    margin-top: 10px;
  }
  .products_list .product_card .rows li {
    gap: 12px;
    height: auto;
    min-height: 40px;
    padding: 8px 0px;
  }
  .products_list .product_card .rows span,
  .products_list .product_card .rows strong {
    font-size: 13px;
  }
  .products_list .product_card .tags {
    gap: 6px;
    margin-top: 14px;
  }
  .products_list .product_card .tags span {
    padding: 0px 10px;
    font-size: 12px;
    line-height: 28px;
  }
  .products_list .product_card .foot {
    gap: 10px;
    margin-top: 16px;
  }
  .products_list .product_card .foot p {
    font-size: 12px;
    line-height: 1.5;
  }
  .products_list .product_card .more {
    gap: 10px;
    font-size: 13px;
  }
  .products_list .product_card .more::after {
    width: 28px;
    height: 28px;
    background-size: 10px auto;
  }
}

.products_banner {
  height: 68.08rem;
  overflow: hidden;
  isolation: isolate;
  background-color: #041030;
}
.products_banner.img_bg > img {
  transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.products_banner:hover > img {
  transform: scale(1.02);
}
.products_banner .content {
  height: 100%;
  padding-top: 15.71rem;
}
.products_banner .tcon h1 {
  color: #fff;
  font-weight: 520;
  font-size: 6.4rem;
  line-height: 8rem;
}
.products_banner .tcon p {
  margin-top: 2.18rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 305;
  font-size: 2.2rem;
  line-height: 3.5rem;
}
.products_banner .btns {
  display: flex;
  gap: 1.96rem;
  margin-top: 3.8rem;
}
.products_banner .btn {
  min-width: 16.39rem;
  padding: 0px 3.1rem;
}

@media screen and (max-width: 1024px) {
  .products_banner.img_bg > img {
    object-position: 60% center;
  }
}

@media screen and (max-width: 768px) {
  .products_banner {
    height: 420px;
  }
  .products_banner.img_bg > img {
    object-position: 68% center;
  }
  .products_banner::before {
    content: '';
    position: absolute;
    inset: 0px;
    z-index: -1;
    background-image: linear-gradient(90deg, rgba(4, 16, 48, 0.85) 0%, rgba(4, 16, 48, 0.4) 100%);
  }
  .products_banner .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0px;
  }
  .products_banner .tcon h1 {
    font-size: 28px;
    line-height: 1.35;
  }
  .products_banner .tcon h1 br,
  .products_banner .tcon p br {
    display: none;
  }
  .products_banner .tcon p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
  }
  .products_banner .btns {
    margin-top: 24px;
  }
  .products_banner .btn {
    min-width: 0px;
    padding: 0px 24px;
  }
}

.products_featured {
  position: relative;
  z-index: 3;
  padding: 16.03rem 0px 0px;
}
.products_featured .tcon .tag + h2 {
  margin-top: 2.17rem;
}
.products_featured .featured_box {
  position: relative;
  display: flex;
  height: 63.9rem;
  margin-top: 6.35rem;
  border-radius: 2rem;
  background-color: #f7a53d;
}
.products_featured .info {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 82.4rem;
  padding: 8.4rem 0px 0px 6.5rem;
  color: #fff;
}
.products_featured .info > .bg {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem 0px 0px 2rem;
}
.products_featured .info .tcon h3 {
  font-weight: 450;
  font-size: 4.6rem;
  line-height: 6rem;
}
.products_featured .info .tcon p {
  margin-top: 1.7rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 330;
}
.products_featured .line_tabs {
  display: flex;
  gap: 1.64rem;
  width: 62.84rem;
  margin-top: 4.8rem;
}
.products_featured .line_tabs li {
  width: 30.6rem;
  height: 12.69rem;
  padding: 2.18rem 2.1rem 0px;
  border-radius: 1.4rem;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background-color: rgba(255, 255, 255, 0.16);
}
.products_featured .line_tabs li:not(.active):hover {
  transform: translateY(-0.4rem);
  background-color: rgba(255, 255, 255, 0.28);
}
.products_featured .line_tabs li.active {
  border-color: #fff;
  background-color: #fff;
}
.products_featured .line_tabs h4 {
  color: #fff;
  font-weight: 520;
  font-size: 2.4rem;
  line-height: 3.2rem;
  transition: color 0.3s;
}
.products_featured .line_tabs p {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 450;
  font-size: 1.45rem;
  line-height: 2.28rem;
  transition: color 0.3s;
}
.products_featured .line_tabs li.active h4 {
  color: var(--title);
}
.products_featured .line_tabs li.active p {
  color: var(--text);
}
.products_featured .line_panels {
  display: grid;
  width: 62.84rem;
  margin-top: 2.4rem;
}
.products_featured .panel {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s;
}
.products_featured .panel.active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: none;
}
.products_featured .rows > li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 3.8rem;
  padding-right: 4rem;
}
.products_featured .rows > li > strong {
  flex-shrink: 0;
  width: 8.74rem;
  font-weight: 450;
  font-size: 1.7rem;
}
.products_featured .rows > li > span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 380;
  font-size: 1.6rem;
}
.products_featured .tip_icon {
  position: absolute;
  right: 0px;
  top: 50%;
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
  margin-top: -1.2rem;
  cursor: help;
}
.products_featured .tip_icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.39);
  background: url("../img/icon-tip-w.svg") no-repeat center / 35% rgba(255, 255, 255, 0.18);
  cursor: pointer;
}
.products_featured .tip_icon .tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 1.6rem);
  z-index: 5;
  width: max-content;
  max-width: 46.2rem;
  padding: 3.27rem 3.4rem 3.6rem;
  border-radius: 1.74rem;
  color: var(--text);
  font-weight: 330;
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-family: 'MiSans', sans-serif;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
  transform: translate(-50%, 1rem);
  border: 2px solid var(--primary);
  background-color: #fff;
  box-shadow: 0px 1.4rem 3rem rgba(240, 131, 0, 0.15);
}
.products_featured .tip_icon .tip::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 3.1rem;
  height: 1.4rem;
  transform: translateX(-50%);
  background: url("../img/tip-bot.svg") no-repeat center top / contain;
}
.products_featured .tip_icon .tip b,
.products_featured .tip_icon .tip strong {
  color: var(--title);
  font-weight: 380;
}
.products_featured .tip_icon:hover .tip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0px);
  pointer-events: auto;
}
.products_featured .more {
  display: inline-flex;
  align-items: center;
  gap: 1.26rem;
  margin-top: 4.8rem;
  color: #fff;
  font-weight: 450;
  font-size: 1.8rem;
  line-height: 2.4rem;
  letter-spacing: 0.06em;
}
.products_featured .more::after {
  content: '';
  width: 1.51rem;
  height: 1.16rem;
  transition: transform 0.3s;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 13' fill='none' stroke='%23000' stroke-width='1.85'%3E%3Cpath d='M0 6.5h15M9.2.7 15 6.5l-5.8 5.8'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 13' fill='none' stroke='%23000' stroke-width='1.85'%3E%3Cpath d='M0 6.5h15M9.2.7 15 6.5l-5.8 5.8'/%3E%3C/svg%3E") no-repeat center / contain;
}
.products_featured .more:hover::after {
  transform: translateX(0.6rem);
}
.products_featured .featured_box > .img {
  flex: 1 1 0px;
  min-width: 0px;
  border-radius: 2rem;
}
.products_featured .featured_box > .img img {
  transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.products_featured .featured_box:hover > .img img {
  transform: scale(1.04);
}

@media screen and (min-width: 769px) and (max-width: 1220px) {
  .products_featured .info {
    width: 58%;
    padding-right: 3rem;
    padding-left: 4rem;
  }
  .products_featured .line_tabs,
  .products_featured .line_panels {
    width: 100%;
  }
  .products_featured .line_tabs li {
    flex: 1 1 0px;
    width: auto;
  }
}

@media screen and (max-width: 1024px) {
  .products_featured .featured_box {
    height: auto;
    min-height: 63.9rem;
  }
  .products_featured .info {
    padding-bottom: 6rem;
  }
  .products_featured .info .tcon p br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .products_featured {
    padding-top: 60px;
  }
  .products_featured .tcon .tag + h2 {
    margin-top: 14px;
  }
  .products_featured .featured_box {
    flex-direction: column;
    min-height: 0px;
    margin-top: 30px;
    border-radius: 16px;
  }
  .products_featured .info {
    width: 100%;
    padding: 30px 20px;
  }
  .products_featured .info > .bg {
    border-radius: 16px 16px 0px 0px;
  }
  .products_featured .info .tcon h3 {
    font-size: 26px;
    line-height: 1.3;
  }
  .products_featured .info .tcon p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.7;
  }
  .products_featured .line_tabs {
    gap: 10px;
    width: 100%;
    margin-top: 22px;
  }
  .products_featured .line_tabs li {
    flex: 1 1 0px;
    width: auto;
    height: auto;
    padding: 12px 12px 14px;
    border-radius: 10px;
  }
  .products_featured .line_tabs h4 {
    font-size: 17px;
    line-height: 1.4;
  }
  .products_featured .line_tabs p {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.6;
  }
  .products_featured .line_panels {
    width: 100%;
    margin-top: 16px;
  }
  .products_featured .rows > li {
    align-items: flex-start;
    min-height: 0px;
    padding: 6px 30px 6px 0px;
  }
  .products_featured .rows > li > strong {
    width: 64px;
    font-size: 13px;
    line-height: 20px;
  }
  .products_featured .rows > li > span {
    font-size: 13px;
    line-height: 20px;
  }
  .products_featured .tip_icon i {
    width: 18px;
    height: 18px;
  }
  .products_featured .tip_icon .tip {
    left: auto;
    right: -10px;
    max-width: 280px;
    padding: 14px 16px;
    font-size: 12px;
    line-height: 1.8;
    border-radius: 10px;
    transform: translate(0px, 10px);
  }
  .products_featured .tip_icon:hover .tip {
    transform: translate(0px, 0px);
  }
  .products_featured .tip_icon .tip::after {
    left: auto;
    right: 5px;
    width: 15px;
    height: 7px;
  }
  .products_featured .more {
    gap: 10px;
    margin-top: 20px;
    font-size: 15px;
  }
  .products_featured .more::after {
    width: 14px;
    height: 11px;
  }
  .products_featured .featured_box > .img {
    flex: none;
    height: 220px;
    border-radius: 0px 0px 16px 16px;
  }
}

.products_platform {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  padding: 16rem 0px 15.68rem;
}
.products_platform > .bg {
  position: absolute;
  left: 0px;
  top: -6.45rem;
  z-index: -1;
  display: block;
  width: 100%;
  height: 107.14rem;
  opacity: 0.68;
  pointer-events: none;
  transform: scaleX(1.135);
}
.products_platform .head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
}
.products_platform .tcon .tag + h2 {
  margin-top: 2.17rem;
}
.products_platform .head .btn_line {
  min-width: 19.99rem;
  margin-bottom: 0.55rem;
}
.products_platform .platform_list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0px, 1fr));
  gap: 2.28rem;
  margin-top: 6.35rem;
}
.products_platform .platform_list li {
  border-radius: 1.6rem;
  transition: transform 0.4s, border-color 0.3s, box-shadow 0.3s;
  border: 1px solid #e8e8e8;
  background-color: #fff;
}
.products_platform .platform_list li:hover {
  transform: translateY(-0.6rem);
  border-color: var(--primary);
  box-shadow: 0px 1.6rem 3.6rem rgba(240, 131, 0, 0.12);
}
.products_platform .platform_list a {
  display: block;
  height: 23rem;
  padding-top: 3.27rem;
  text-align: center;
}
.products_platform .logo {
  width: 21rem;
  max-width: 100%;
  height: 6rem;
  margin: 0px auto;
}
.products_platform .logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.products_platform .platform_list li:hover .logo img {
  transform: scale(1.05);
}
.products_platform .platform_list h3 {
  margin-top: 4.86rem;
  color: var(--title);
  font-weight: 630;
  font-size: 2rem;
  line-height: 2.7rem;
  transition: color 0.3s;
}
.products_platform .platform_list li:hover h3 {
  color: var(--primary);
}
.products_platform .platform_list p {
  margin-top: 1.03rem;
  color: var(--label);
  font-weight: 330;
  font-size: 1.66rem;
  line-height: 2.2rem;
}
.products_platform .note {
  margin-top: 3.14rem;
}
.products_platform .note p {
  color: var(--text);
  font-weight: 330;
  font-size: 1.5rem;
  line-height: 2rem;
}

@media screen and (max-width: 1024px) {
  .products_platform .platform_list {
    grid-template-columns: repeat(3, minmax(0px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .products_platform {
    padding: 60px 0px;
  }
  .products_platform > .bg {
    top: 0px;
    height: 100%;
    object-fit: cover;
    transform: none;
  }
  .products_platform .head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .products_platform .tcon .tag + h2 {
    margin-top: 14px;
  }
  .products_platform .head .btn_line {
    min-width: 0px;
    margin-bottom: 0px;
  }
  .products_platform .platform_list {
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 10px;
    margin-top: 24px;
  }
  .products_platform .platform_list li {
    border-radius: 12px;
  }
  .products_platform .platform_list li:last-child:nth-child(odd) {
    grid-column: span 2;
  }
  .products_platform .platform_list a {
    height: auto;
    padding: 18px 10px 16px;
  }
  .products_platform .logo {
    width: 120px;
    height: 34px;
  }
  .products_platform .platform_list h3 {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.4;
  }
  .products_platform .platform_list p {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.5;
  }
  .products_platform .note {
    margin-top: 16px;
  }
  .products_platform .note p {
    font-size: 12px;
    line-height: 1.6;
  }
}

.products_timeline {
  position: relative;
  z-index: 1;
  padding: 15.94rem 0px 15rem;
}
.products_timeline .intro {
  display: flex;
  align-items: center;
}
.products_timeline .intro .img {
  flex-shrink: 0;
  width: 77rem;
  height: 53.4rem;
  border-radius: 1.6rem;
}
.products_timeline .intro .img img {
  transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.products_timeline .intro .img:hover img {
  transform: scale(1.04);
}
.products_timeline .text {
  flex: 1 1 auto;
  min-width: 0px;
  padding-left: 8.33rem;
}
.products_timeline .tcon .tag + h2 {
  margin-top: 2.17rem;
}
.products_timeline .tcon h2 + p {
  margin-top: 2.39rem;
  font-weight: 330;
}
.products_timeline .btns {
  display: flex;
  margin-top: 3.78rem;
}
.products_timeline .btn {
  min-width: 17.09rem;
}
.products_timeline .table_box {
  overflow: hidden;
  margin-top: 7.48rem;
  border-radius: 1.6rem;
  border: 1px solid #e4e8ee;
  background-color: #fff;
}
.products_timeline table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.products_timeline th,
.products_timeline td {
  padding: 0px 2.1rem;
  text-align: left;
  font-size: 1.7rem;
}
.products_timeline th {
  height: 6.03rem;
  color: #fff;
  font-weight: 520;
  background-color: #161616;
}
.products_timeline th + th {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.products_timeline td {
  height: 6.13rem;
  color: var(--title);
  font-weight: 380;
  transition: background-color 0.3s;
  border-top: 1px solid #e4e8ee;
}
.products_timeline td + td {
  border-left: 1px solid #e4e8ee;
}
.products_timeline tbody tr:nth-child(even) td {
  background-color: #fcfdfe;
}
.products_timeline tbody tr:hover td {
  background-color: #fff7ee;
}
.products_timeline .note {
  margin-top: 3.22rem;
}
.products_timeline .note p {
  color: var(--text);
  font-weight: 330;
  font-size: 1.5rem;
  line-height: 2rem;
}

@media screen and (min-width: 769px) and (max-width: 1220px) {
  .products_timeline .intro .img {
    width: 50%;
    height: auto;
    aspect-ratio: 770 / 534;
  }
  .products_timeline .text {
    padding-left: 5rem;
  }
}

@media screen and (max-width: 1024px) {
  .products_timeline .tcon p br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .products_timeline {
    padding: 60px 0px;
  }
  .products_timeline .intro {
    flex-direction: column;
    align-items: stretch;
  }
  .products_timeline .intro .img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    aspect-ratio: 770 / 534;
  }
  .products_timeline .text {
    padding: 26px 0px 0px;
  }
  .products_timeline .tcon .tag + h2 {
    margin-top: 14px;
  }
  .products_timeline .tcon h2 + p {
    margin-top: 10px;
  }
  .products_timeline .btns {
    margin-top: 20px;
  }
  .products_timeline .btn {
    min-width: 0px;
  }
  .products_timeline .table_box {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .products_timeline table {
    min-width: 640px;
  }
  .products_timeline th,
  .products_timeline td {
    padding: 0px 12px;
    font-size: 13px;
  }
  .products_timeline th {
    height: 44px;
  }
  .products_timeline td {
    height: 46px;
  }
  .products_timeline th:nth-child(2),
  .products_timeline td:nth-child(2) {
    width: 190px;
  }
  .products_timeline .note {
    margin-top: 14px;
  }
  .products_timeline .note p {
    font-size: 12px;
    line-height: 1.6;
  }
}
