@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;
  }
}
nav {
  display: flex;
  align-items: center;
  padding-top: 80px;
  width: 1580px;
  margin: 0 auto;
}
nav img {
  width: 24px;
  height: 24px;
}
nav span {
  margin-left: 12px;
  font-weight: 500;
  font-size: 20px;
  color: #F96017;
}
article {
  padding-bottom: 60px;
}
article h4 {
  margin-top: 30px;
  font-weight: 600;
  font-size: 32px;
  color: #1D1D25;
  line-height: 1.2;
  font-family: 'SemiBold';
}
article .info {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
article .info .icon-time {
  font-size: 22px;
  color: #666;
}
article .info .date {
  font-size: 20px;
  color: #67677B;
  margin-left: 10px;
}
article .info .icons {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
article .info .icons img {
  width: 32px;
  height: 32px;
  margin-left: 20px;
}
article .pic {
  width: 100%;
  border-radius: 12px;
  margin-top: 40px;
}
article p {
  margin-top: 40px;
  font-size: 16px;
  color: #67677B;
}
.news {
  background: #fff;
}
.news .box {
  margin: 0 auto;
  padding: 80px 0 0;
}
.news .box h3 {
  font-family: 'SemiBold';
  font-weight: 600;
  font-size: 56px;
  color: #1D1D25;
  margin-top: -20px;
  display: flex;
  align-items: center;
}
.news .box h3::after {
  content: '';
  flex: 1;
  height: 1px;
  margin-left: 40px;
  background: #1D1D25;
  display: block;
}
.news .box ul {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.news .box a {
  font-size: 0;
  overflow: hidden;
  transition: all ease 0.25s;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: calc(50% - 75px);
  margin-top: 40px;
}
.news .box a:nth-child(2n) {
  margin-left: 150px;
}
.news .box a .pic {
  max-width: 292px;
  max-height: 210px;
  border-radius: 12px;
}
.news .box a .content {
  margin-left: 20px;
  height: 210px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.news .box a .content span {
  font-size: 14px;
  color: #67677b;
}
.news .box a .content label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #1d1d25;
}
.news .box a .content p {
  font-size: 14px;
  color: #67677b;
  margin-top: 10px;
}
.news .box a .content .more {
  margin-top: auto;
  margin-left: auto;
  font-size: 18px;
  color: #67677B;
  background: #fff;
  width: 182px;
}
.news .box a .content .more::after {
  display: none;
}
.news .box a .content .more img {
  padding: 6px;
  width: 36px;
  height: 36px;
  margin-left: 14px;
  border-radius: 8px 8px 8px 8px;
  border: 2px solid #67677B;
  box-sizing: content-box;
}
.page.page {
  padding: 20px 0 60px;
  justify-content: flex-end;
}
@media only screen and (max-width: 980px) and (orientation: portrait) {
  .breadCrumbs {
    padding-left: 30px;
  }
  .breadCrumbs .bread {
    display: none!important;
  }
  nav {
    width: 100%;
    padding: 30px 30px 0;
  }
  article {
    padding: 0 30px 60px;
  }
  .news .box {
    padding: 30px;
  }
  .news .box ul {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .news .box a {
    width: 100%;
    margin: 40px 0 0!important;
  }
  .news .box a .pic {
    width: calc(600px * 0.6);
    height: calc(430px * 0.6);
  }
  .news .box a .content {
    margin-left: 20px;
    height: calc(430px * 0.6);
  }
  .news .box a .content span {
    font-size: 20px;
  }
  .news .box a .content label {
    margin-top: 20px;
    font-size: 28px;
  }
  .news .box a .content p {
    font-size: 20px;
    color: #67677B;
  }
  .page.page {
    padding: 20px 30px 60px;
  }
}
