@font-face {
  font-family: 'SemiBold';
  src: url('../../font/Poppins-SemiBold.otf');
}

@font-face {
  font-family: 'Roboto';
  src: url('../../font/Roboto-Medium.ttf');
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-weight: normal;
  line-height: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-style: normal;
}

p {
  line-height: 1.5;
}

*[o-fb] {
  cursor: pointer;
  transition: all ease 0.25s;
}

*[o-fb]:not(.active):hover {
  opacity: 0.7;
}

.box {
  width: 1580px;
  margin: 0 auto;
}

img {
  object-fit: cover;
}

strong {
  display: block;
}

.y-center {
  display: flex;
  align-items: center;
}

.x-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.xy-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.m-title {
  font-weight: 600;
  font-size: 64px;
  text-align: center;
  display: block;
  color: #1d1d25;
  font-family: 'SemiBold';
}

.m-title span {
  color: #F96017;
}

button,
.btn {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border: 0;
  border-radius: 10rpx;
  font-size: 30rpx;
  color: #ffffff;
  outline: 0;
  padding: 0;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

button::after,
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 6px;
  transition: all ease 0.25s;
}

button:hover::after,
.btn:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

button:active::after,
.btn:active::after {
  background: rgba(0, 0, 0, 0.2);
}

button[disabled],
.btn[disabled],
button.disabled,
.btn.disabled {
  opacity: 0.6;
  color: #fff;
}

button[disabled],
.btn[disabled],
button[loading],
.btn[loading],
button.disabled,
.btn.disabled {
  pointer-events: none;
}

button[disabled]:active:after,
.btn[disabled]:active:after,
button.disabled:active:after,
.btn.disabled:active:after {
  display: none;
}

button.link,
.btn.link {
  width: fit-content;
  height: fit-content;
  background: transparent;
}

button.link:active:after,
.btn.link:active:after {
  display: none;
}

button.link:not([disabled]):active,
.btn.link:not([disabled]):active,
button.link:not(.disabled):active,
.btn.link:not(.disabled):active {
  opacity: 0.7;
}

body {
  max-width: 2560px;
  margin: 0 auto !important;
  padding-top: 120px;
}

body header {
  transition: all ease 0.25s;
}

body header .top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
}

body header .top .box {
  display: flex;
  align-items: center;
  height: 120px;
}

body header .top .box .logo {
  width: 185px;
  height: 64px;
}

body header .top .box .search {
  margin-left: 60px;
  flex: 1;
  height: 56px;
  background: #f3f3f3;
  border-radius: 100px;
  border: 1px solid #cccccc;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

body header .top .box .search .searchIcon {
  width: 32px;
  height: 32px;
}

body header .top .box .search input {
  background: transparent;
  border: 0;
  margin-left: 20px;
  height: 56px;
  flex: 1;
  font-size: 20px;
  color: #2E3192;
  outline: none;
}

body header .top .box .icons {
  display: flex;
  align-items: center;
  margin-left: 28px;
}

body header .top .box .icons a>img {
  width: 44px;
  height: 44px;
  margin-left: 32px;
}

body header .top .box .icons .cart {
  position: relative;
}

body header .top .box .icons .cart .badge {
  right: 0;
  top: 0;
  position: absolute;
  background-image: url('../../images/header/badge.png');
  width: 32px;
  height: 32px;
  transform: translate(50%, -50%);
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}

body header .top .box .icons .cart .badge:empty {
  display: none;
}

body header .top .box .icons .cart .cartPopup {
  z-index: 10;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(calc(100% + 10px));
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.25s;
}

body header .top .box .icons .cart .cartPopup ul {
  max-height: 60vh;
  overflow: auto;
  padding: 0 20px;
  width: 500px;
}

body header .top .box .icons .cart .cartPopup ul li {
  padding: 20px 0;
  display: flex;
  align-items: center;
}

body header .top .box .icons .cart .cartPopup ul li+li {
  border-top: 1px solid #eee;
}

body header .top .box .icons .cart .cartPopup ul li img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}

body header .top .box .icons .cart .cartPopup ul li .right {
  margin-left: 20px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body header .top .box .icons .cart .cartPopup ul li .right span {
  font-size: 16px;
  color: #333;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

body header .top .box .icons .cart .cartPopup ul li .right .set {
  display: flex;
  align-items: center;
}

body header .top .box .icons .cart .cartPopup ul li .right .set .stepper {
  margin-top: auto;
  zoom: 0.9;
  display: flex;
  align-items: center;
}

body header .top .box .icons .cart .cartPopup ul li .right .set .stepper .icon-reduce {
  width: 40px;
  height: 40px;
  background: #BEBEC3;
  border-radius: 6px;
  border: 1px solid #CCCCCC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

body header .top .box .icons .cart .cartPopup ul li .right .set .stepper input {
  width: 100px;
  margin: 0 20px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 6px;
  border: 1px solid #CCCCCC;
  font-size: 18px;
  color: #1D1D25;
  text-align: center;
  outline: 0;
}

body header .top .box .icons .cart .cartPopup ul li .right .set .stepper .icon-add {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 6px;
  border: 1px solid #CCCCCC;
  font-size: 20px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

body header .top .box .icons .cart .cartPopup ul li .right .set .icon-delete {
  margin-left: auto;
  font-size: 26px;
  color: orange;
}

body header .top .box .icons .cart:hover .cartPopup {
  opacity: 1;
  visibility: visible;
}

body header .bottom {
  background: #2E3192;
  position: relative;
}

body header .bottom .box {
  display: flex;
  align-items: center;
  height: 80px;
  position: relative;
}

body header .bottom .box .moreMenus {
  width: 40px;
  height: 40px;
}

body header .bottom .box .menus {
  transition: all ease 0.25s;
  display: flex;
  align-items: center;
  height: 100%;
}

body header .bottom .box .menus .item {
  position: relative;
  padding: 0 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #f3f3f3;
  transition: all ease 0.25s;
  width: fit-content;
}

body header .bottom .box .menus .item span {
  padding: 0 32px;
  margin: 0 -32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body header .bottom .box .menus .item:hover,
body header .bottom .box .menus .item.active {
  color: #F96017;
}

body header .bottom .box .menus .item .floatMenus {
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.25s;
  bottom: 0;
  left: 32px;
  position: absolute;
  z-index: 9999;
  transform: translateY(calc(100% + 4px));
  display: flex;
}

body header .bottom .box .menus .item .floatMenus ul {
  background: #F8F8F8;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  width: 464px;
}

body header .bottom .box .menus .item .floatMenus ul li {
  padding: 0 40px;
  cursor: pointer;
  position: relative;
}

body header .bottom .box .menus .item .floatMenus ul li+li .content {
  border-top: 1px solid #fff;
}

body header .bottom .box .menus .item .floatMenus ul li .content {
  height: 68px;
  display: flex;
  align-items: center;
}

body header .bottom .box .menus .item .floatMenus ul li .content img {
  width: 35px;
  margin-right: 15px;
}

body header .bottom .box .menus .item .floatMenus ul li .content label {
  cursor: pointer;
  font-weight: 500;
  font-size: 20px;
  color: #67677B;
  transform: all ease 0.25s;
  flex: 1;
}

body header .bottom .box .menus .item .floatMenus ul li .content .iconfont {
  font-size: 22px;
  color: #67677B;
  transform: all ease 0.25s;
  margin-right: -4px;
  font-weight: bold;
}

body header .bottom .box .menus .item .floatMenus ul li:hover>.content label,
body header .bottom .box .menus .item .floatMenus ul li:hover>.content .iconfont {
  color: #F96017;
}

body header .bottom .box .menus .item .floatMenus ul li:hover>ul {
  opacity: 1;
  visibility: visible;
}

body header .bottom .box .menus .item .floatMenus ul ul {
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.25s;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(calc(100% + 10px));
}

body header .bottom .box .menus .item .floatMenus ul ul:hover {
  opacity: 1;
  visibility: visible;
}

body header .bottom .box .menus .item .floatMenus:hover {
  opacity: 1;
  visibility: visible;
}

body header .bottom .box .menus .item:first-child:hover .floatMenus {
  opacity: 1;
  visibility: visible;
}

body header .bottom .box .menus .item.active span {
  color: #F96017;
}

body .headBanner {
  width: 100%;
  height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

body .headBanner::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  content: '';
}

body .headBanner label {
  position: relative;
  z-index: 1;
  height: 144px;
  font-weight: 600;
  font-size: 120px;
  color: #FFFFFF;
  line-height: 144px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  text-transform: uppercase;
}

body .headBanner p {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  width: 700px;
  text-align: center;
  font-size: 36px;
  color: #FFFFFF;
}

body .headBanner p span {
  color: #F96017;
}

body .breadCrumbs {
  height: 60px;
  background: #1C1977;
}

body .breadCrumbs:has(.tab) {
  height: 114px;
}

body .breadCrumbs .box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body .breadCrumbs .box .tab {
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: -36px;
}

body .breadCrumbs .box .tab li {
  font-weight: 600;
  padding: 0 36px;
  line-height: 1;
  position: relative;
  cursor: pointer;
  font-size: 28px;
  color: #FFFFFF;
}

body .breadCrumbs .box .tab li+li {
  border-left: 1px solid #fff;
}

body .breadCrumbs .box .tab li a {
  font-size: inherit;
  color: inherit;
}

body .breadCrumbs .box .tab li::after {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  width: 50%;
  bottom: -15px;
  height: 2px;
  background: #fff;
  content: '';
  transition: all ease 0.25s;
  opacity: 0;
}

body .breadCrumbs .box .tab li:hover::after,
body .breadCrumbs .box .tab li.active::after {
  opacity: 1;
}

body .breadCrumbs .box .bread {
  display: flex;
  align-items: center;
}

body .breadCrumbs .box .bread .item {
  width: fit-content !important;
}

body .breadCrumbs .box .bread .item .icon-home {
  font-size: 20px;
  color: #fff;
}

body .breadCrumbs .box .bread .item span {
  font-size: 20px;
  color: #FFFFFF;
  padding: 0 8px;
}

body .breadCrumbs .box .bread .icon-you {
  color: #fff;
  font-size: 14px;
}

body footer {
  background: #eeeeee;
  position: relative;
  display: flex;
  flex-direction: column;
}

body footer .content {
  width: 1580px;
  padding: 100px 0;
  margin: 0 auto;
  display: flex;
  flex: 1;
}

body footer .content a:hover {
  opacity: 0.7;
}

body footer .content .left {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}

body footer .content .left .logo {
  width: 185px;
  margin-bottom: auto;
}

body footer .content .left h2 {
  margin-top: 40px;
  font-weight: 600;
  font-size: 28px;
  color: #1d1d25;
  font-family: 'SemiBold';
}

body footer .content .left p {
  display: flex;
  margin-top: 22px;
  width: 400px;
}

body footer .content .left p img {
  width: 28px;
  height: 28px;
}

body footer .content .left p a,
body footer .content .left p span {
  position: relative;
  top: 5px;
  margin-left: 14px;
  font-size: 16px;
  color: #67677b;
  line-height: 1.2;
}

body footer .content .left p a:hover {
  color: #67677b;
  text-decoration: underline;
}

body footer .content .right {
  margin-left: auto;
  display: flex;
}

body footer .content .right .linkList {
  display: flex;
}

body footer .content .right .linkList>li+li {
  margin-left: 88px;
}

body footer .content .right .linkList>li label {
  font-weight: 600;
  font-size: 28px;
  color: #1d1d25;
  font-family: 'SemiBold';
}

body footer .content .right .linkList>li ul {
  margin-top: 12px;
}

body footer .content .right .linkList>li ul a {
  display: block;
  margin-top: 36px;
  font-size: 16px;
  color: #67677b;
}

body footer .content .right .linkList>li ul a:hover {
  text-decoration: underline;
}

body footer .footerBottom {
  background: #2E3192;
  height: 144px;
  display: flex;
  align-items: center;
}

body footer .footerBottom .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body footer .footerBottom .box p {
  font-size: 16px;
  color: #ffffff;
}

body footer .footerBottom .box .icons {
  display: flex;
  align-items: center;
}

body footer .footerBottom .box .icons img {
  width: 64px;
  height: 64px;
  margin-left: 68px;
}

body .page {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

body .page li {
  margin: 0 10px;
  width: fit-content;
}

body .page li a {
  width: 68px;
  height: 68px;
  background: #F3F3F3;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #67677B;
}

body .page li:hover a,
body .page li.active a {
  background: #2E3192;
  color: #fff;
}

@media only screen and (max-width: 980px) and (orientation: portrait) {
  body .box {
    width: 100%;
    max-width: 100%;
  }

  body header .top.top .box {
    padding: 0 30px;
  }

  body header .top.top .box .logo {
    width: 140px;
    object-fit: contain;
  }

  body header .top.top .box .search {
    margin-left: 20px;
  }

  body header .top.top .box .icons>img {
    width: 36px;
    height: 36px;
    margin-left: 16px;
  }

  body header .bottom {
    background: #2E3192;
    width: 100vw;
  }

  body header .bottom .box {
    padding-left: 30px;
  }

  body header .bottom .box .menus {
    margin-left: 20px;
  }

  body header .bottom .box .menus .item {
    padding: 0 26px !important;
  }

  body header .bottom .box .menus .item span {
    padding: 0 26px !important;
  }

  body header .bottom .box .menus .item .floatMenus.floatMenus {
    left: 6px;
  }

  body header .bottom .box .menus .item .floatMenus.floatMenus ul {
    width: 200px;
  }

  body header .bottom .box .menus .item .floatMenus.floatMenus ul li {
    padding: 0 20px;
  }

  body header .bottom .box .menus .item .floatMenus.floatMenus ul li .content {
    height: 40px;
  }

  body header .bottom .box .menus .item .floatMenus.floatMenus ul li .content label {
    font-size: 16px;
  }

  body header .bottom .box .menus .item .floatMenus.floatMenus ul li .content .iconfont {
    font-size: 16px;
  }

  body footer .content.content {
    width: 100vw;
    padding: 60px;
    flex-direction: column;
  }

  body footer .content.content a:hover {
    opacity: 0.7;
  }

  body footer .content.content .left p {
    width: 100%;
  }

  body footer .content.content .right {
    margin: 60px 0 0;
  }

  body footer .footerBottom.footerBottom {
    padding: 0 60px;
    height: 144px;
    display: flex;
    align-items: center;
  }

  body footer .footerBottom.footerBottom .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  body footer .footerBottom.footerBottom .box p {
    font-size: 24px;
  }

  body footer .footerBottom.footerBottom .box .icons {
    display: flex;
    align-items: center;
  }

  body footer .footerBottom.footerBottom .box .icons img {
    width: 54px;
    height: 54px;
    margin-left: 34px;
  }
}

.company {
  background: #F3F3F3;
}

.company .box {
  padding: 80px 0;
  display: flex;
}

.company .box .left {
  flex: 1;
}

.company .box .left label {
  font-size: 36px;
  color: #1D1D25;
  font-weight: bold;
}

.company .box .left label span {
  color: #F96017;
  font-weight: bold;
}

.company .box .left p {
  margin-top: 22px;
  font-size: 16px;
  color: #67677B;
}

.company .box video,
.company .box img {
  margin-left: 80px;
  margin-top: 60px;
  width: 793px;
  height: 447px;
  border-radius: 12px;
  background: #000;
}

h3 {
  font-weight: 600;
  font-size: 64px;
  color: #fff;
  height: 400px;
  background: #2E3192;
  padding-top: 80px;
  text-align: center;
  font-family: 'SemiBold';
}

h3 span {
  color: #F96017;
}

article {
  background: #F3F3F3;
  padding-bottom: 80px;
}

article .box {
  width: 1600px;
}

article .box img {
  width: 100%;
  height: 760px;
  box-shadow: 0px 19px 46px 0px rgba(119, 115, 170, 0.1);
  border-radius: 12px;
  margin-top: 80px;
}

article .box img:first-of-type {
  margin-top: -180px;
}

article .box h4 {
  font-weight: 600;
  font-size: 56px;
  color: #1D1D25;
  margin-top: 46px;
  font-family: 'SemiBold';
  display: flex;
  align-items: center;
}

article .box h4::before,
article .box h4::after {
  content: '';
  width: 32px;
  height: 32px;
  border-radius: 0px 0px 0px 0px;
  border: 10px solid #1D1D25;
  margin-right: 20px;
  border-radius: 50%;
  display: none;
}

/* article .box h4::before {
  display: block;
} */

article .box h4.right {
  text-align: right;
  justify-content: flex-end;
}

article .box h4.right::before {
  display: none;
}

/* article .box h4.right::after {
  display: block;
  margin-left: 20px;
} */

article .box h4 span {
  color: #F96017;
  margin-left: 20px;
}

article .box p {
  font-size: 20px;
  color: #67677B;
  margin-top: 46px;
}

.certificates {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.certificates .our {
  font-weight: 600;
  font-size: 40px;
  color: #2E3192;
}

.certificates h2 {
  font-weight: 600;
  font-size: 68px;
  color: #1D1D25;
  margin-top: 14px;
  font-family: 'SemiBold';
}

.certificates .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -80px;
}

.certificates .list a {
  width: 480px;
  height: 466px;
  background: #F3F3F3;
  border-radius: 12px;
  margin: 80px 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.certificates .list a img {
  width: 231px;
  height: 331px;
  border-radius: 6px;
}

.certificates .list a .title {
  font-weight: 500;
  font-size: 20px;
  color: #1D1D25;
  display: block;
  margin-top: 30px;
}

@media only screen and (max-width: 980px) and (orientation: portrait) {
  .company .box {
    padding: 40px;
    display: flex;
    flex-direction: column;
  }

  .company .box video {
    margin: 60px 0 0;
    width: 100%;
  }

  article .box {
    width: 90%;
  }

  article .box img {
    width: 100%;
  }

  .certificates {
    padding: 60px;
  }

  .certificates .list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
  }

  .certificates .list a {
    width: calc(50% - 20px);
    height: fit-content;
    padding: 40px 0;
    margin: 40px 0 0;
  }

  .certificates .list a:nth-child(2n) {
    margin-left: 40px;
  }
}