@charset "UTF-8";
@import url(../icon/iconfont.css);
@import url(../icon/bootstrap-icon/bootstrap-icons.css);
*,
*::before,
*::after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

html {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, Arial, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  background-color: #FFFFFF;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

input,
textarea {
  outline-style: none;
}

::-moz-selection {
  color: #ebf8f1;
  background: #FF9100;
}

::selection {
  color: #ebf8f1;
  background: #FF9100;
}

.container {
  width: 100%;
  max-width: 1396px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

table {
  background: #fff;
  line-height: 1.5;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table td,
table th {
  border: 1px solid #eee;
  line-height: 30px;
  text-align: left;
  text-indent: 10px;
  font-size: 18px !important;
}

/* header */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000000;
  padding: 0 97px 0 65px;
  border-bottom: 1px solid #000000;
  height: 40px;
}

.header-top .left span {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  line-height: 18px;
}

.header-top .left span a {
  color: #EC9118;
}

.header-top .left span:first-child {
  margin-right: 76px;
}

.header-top .right {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.header-top .right .language-switcher {
  position: relative;
  margin-right: 43px;
}

.header-top .right .language-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  line-height: 39px;
  padding: 0 7px;
}

.header-top .right .language-toggle i {
  padding-left: 10px;
}

.header-top .right .language-menu {
  position: absolute;
  left: 0;
  top: 39px;
  display: none;
  width: 100%;
  background-color: #f0f0f0;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: -1;
}

.header-top .right .language-menu li {
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
}

.header-top .right .language-menu li a {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

.header-top .right .language-menu li a:hover {
  color: #ED9521;
}

.header-top .right .language-toggle:hover + .language-menu,
.header-top .right .language-menu:hover {
  display: block;
  opacity: 1;
  transform: translateY(0);
  background-color: #f0f0f0;
  z-index: 999;
}

.header-top .right .search-box {
  border: 1px solid #000000;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  background: #FFFFFF;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header-top .right .search-box i {
  padding: 0 8px;
}

.header-top .right .search-box .search {
  border: none;
  height: 21px;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 6px;
}

/* nav */
nav {
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.1);
}

nav .container {
  height: 80px;
}

nav .container .logo img {
  width: 166px;
  height: 55px;
}

nav .container .nav {
  display: flex;
  justify-content: space-between;
  width: 70%;
}

nav .container .nav li {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  line-height: 80px;
}

nav .container .nav li a {
  display: block;
  align-items: center;
  color: black;
  text-decoration: none;
  position: relative;
}

nav .container .nav li a.active, nav .container .nav li a:hover {
  color: #EC9118;
}

nav .container .nav li ul {
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.1);
  min-width: 274px;
  top: 100%;
  display: none;
  border-top: 4px solid #EC9118;
  border-radius: 0 0 5px 5px;
}

nav .container .nav li ul li {
  line-height: 1.2;
  position: relative;
}

nav .container .nav li ul li a {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-transform: capitalize;
  position: relative;
  padding: 15px 14px;
  transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  -ms-transition: 0.2s all ease;
}

nav .container .nav li ul li a.active, nav .container .nav li ul li a:hover {
  color: #EC9118;
}

nav .container .nav li ul li a.active::after, nav .container .nav li ul li a:hover::after {
  content: none;
}

nav .container .nav li ul li ul {
  top: 10px;
  left: 100%;
  display: none;
}

nav .container .translate {
  position: relative;
}

nav .container .translate:hover .language {
  display: block;
}

nav .container .translate .translate-box {
  line-height: 80px;
  width: 120px;
  text-align: center;
  color: #333;
}

nav .container .translate .translate-box span {
  padding: 5px;
  border: 1px solid #999;
  border-radius: 5px;
  font-size: 18px;
}

nav .container .translate .translate-box span .caret-up-fill {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.4px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #333333;
}

nav .container .translate .language {
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  width: -webkit-fill-available;
  border-top: 4px solid #EC9118;
  padding: 10px 4px;
  z-index: 9999999;
  display: none;
}

nav .container .translate .language li a {
  font-size: 18px;
  color: #333;
  display: block;
  padding: 15px 14px;
}

nav .container .translate .language li a:hover {
  color: #FFB243;
}

/*main*/
/*banner*/
.banner {
  background-size: cover;
  background-position: center;
  width: 100%;
}

.banner img {
  width: 100%;
}

/* breadcrumb */
.breadcrumb {
  padding: 20px 0;
  background: #FFFFFF;
  box-shadow: 0px 7px 14px 0px rgba(0, 0, 0, 0.43);
  margin-bottom: 37px;
}

.breadcrumb .container {
  justify-content: flex-start;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb ul li a {
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
}

.breadcrumb ul li a:hover {
  text-decoration: underline;
}

.breadcrumb ul li:last-child a {
  color: #E88813;
}

.breadcrumb ul li span {
  margin: 0 10px;
}

/*pagination*/
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.pagination .previous,
.pagination .next {
  background: #999999;
  border-radius: 10px;
  width: 349px;
  padding: 12.83px 28px;
  overflow: hidden;
  color: #FFFFFF;
  margin-top: 38px;
  margin-bottom: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.125rem;
}

.pagination .previous a,
.pagination .next a {
  color: #FFFFFF;
}

.pagination .previous:hover,
.pagination .next:hover {
  background: #E98915;
}

.module-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-transform: uppercase;
  width: 100%;
  -webkit-user-select: none;
  user-select: none;
}

.module-title .title {
  color: #E98915;
  font-size: 70px;
  z-index: 2;
  padding: 40px 93px;
}

.module-title .background-title {
  position: absolute;
  top: 10px;
  color: #D9D9D9;
  font-size: 98px;
  z-index: 1;
}

.module-content {
  display: flex;
  justify-content: space-between;
}

/* contact */
.contact {
  background-color: #F4F4F4;
  padding: 60px 0;
  /* 设置表单的样式，包括标题和字段 */
}

.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 29px 30px 26px;
  background-color: #FFFFFF;
  width: 100%;
  position: relative;
  /* 样式发送按钮 */
}

.contact form .contact-text {
  color: #E98915;
  font-size: 70px;
  z-index: 2;
}

.contact form .background-text {
  position: absolute;
  top: 10px;
  color: #D9D9D9;
  font-size: 98px;
  z-index: 1;
}

.contact form .rendered-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.contact form .form-row {
  margin-bottom: 20px;
  width: 49.37%;
}

.contact form .form-row .error-text {
  display: block;
  padding: 5px 0 0 10px;
  font-size: 12px;
  margin-top: 3px;
  line-height: 1;
  color: red;
}

.contact form .form-row input {
  height: 50px;
}

.contact form .form-row input,
.contact form .form-row textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #8D8D8D;
  border-radius: 10px;
  background-color: #FFFFFF;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.contact form .form-row input:focus,
.contact form .form-row textarea:focus {
  border-color: #FF9100;
  outline: none;
}

.contact form .textarea {
  width: 100%;
}

.contact form .textarea textarea {
  height: 192px;
}

.contact form #submit {
  background-color: #FF9100;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 20px;
  align-self: flex-start;
  border: 1px solid #FF9100;
}

.contact form #submit:hover {
  background-color: #FFFFFF;
  color: #666666;
  border: 1px solid #FF9100;
}

/* slogin */
.slogin {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 420px;
  background-color: #f5f5f5;
}

.slogin .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/slogan-background.webp) no-repeat;
  background-size: cover;
}

.slogin .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
}

.slogin .content p {
  margin: 34px auto 0;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}

.slogin img {
  max-width: 100%;
  height: 226px;
}

/* back to top*/
.back-to-top {
  position: fixed;
  bottom: 110px;
  right: 100px;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top i {
  font-size: 50px;
  color: #E98C16;
}

.back-to-top.show {
  opacity: 0.8;
  visibility: visible;
}

/*pagination*/
.pager {
  width: 100%;
  margin-top: 20px;
}

.pager .pagination {
  display: flex;
  justify-content: center;
}

.pager .pagination li {
  flex-basis: unset !important;
  border-radius: 30px;
  margin-right: 30px !important;
}

.pager .pagination li span,
.pager .pagination li a {
  padding: 15px 20px;
  display: block;
  border-radius: 30px;
  color: #666666;
  transition: all .5s;
}

.pager .pagination li.active, .pager .pagination li:hover {
  background: #ea901e !important;
  color: #FFFFFF;
}

.pager .pagination li.active span,
.pager .pagination li.active a, .pager .pagination li:hover span,
.pager .pagination li:hover a {
  background: #ea901e;
  color: #FFFFFF;
}

.splide__pagination li button {
  transform: scale(1.4) !important;
}

.customer-pagination {
  background-color: #FFFFFF !important;
  border: 1px solid #ff9100 !important;
}

/* footer */
footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

footer .top {
  width: 100%;
  padding: 18px 0;
}

footer .top .container {
  align-items: flex-start;
}

footer .top .container .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 23.35%;
}

footer .top .container .logo img {
  max-width: 326px;
}

footer .top .container .logo .address .company-text {
  padding: 24px 0;
}

footer .top .container .logo .address .company-text span,
footer .top .container .logo .address .company-text p {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  line-height: 20px;
}

footer .top .container .logo .address .company-text p {
  font-size: 14px;
  font-weight: 100;
}

footer .top .container .logo .address p {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  line-height: 20px;
  margin-bottom: 22px;
}

footer .top .container .navigation dt,
footer .top .container .products dt {
  padding-top: 34px;
  padding-bottom: 26px;
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  line-height: 41px;
  text-transform: lowercase;
}

footer .top .container .navigation dt::first-letter,
footer .top .container .products dt::first-letter {
  text-transform: capitalize;
}

footer .top .container .navigation dl,
footer .top .container .products dl {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .top .container .navigation dl dd,
footer .top .container .products dl dd {
  padding-bottom: 18px;
  flex: 1;
}

footer .top .container .navigation dl dd a,
footer .top .container .products dl dd a {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  line-height: 18px;
  text-transform: uppercase;
  display: block;
}

footer .top .container .navigation dl dd a:hover,
footer .top .container .products dl dd a:hover {
  color: #FF9027;
}

footer .top .container .navigation {
  box-shadow: none;
}

footer .top .container .products {
  background-color: unset;
}

footer .top .container .products .share {
  display: flex;
  justify-content: flex-start;
  margin-top: 40px;
}

footer .top .container .products .share li {
  padding-right: 12px;
}

footer .top .container .products .share li:last-child {
  padding: 0;
}

footer .top .container .products .share li a span {
  font-size: 30px;
  color: white;
  background: #505050;
  padding: 9px;
  transition: all .5s ease;
  position: relative;
}

footer .top .container .products .share li a span img {
  display: none;
  width: 200px;
  height: 200px;
}

footer .top .container .products .share li a span:hover {
  background: #ea8e16;
}

footer .top .container .products .share li a span:hover img {
  position: absolute;
  display: inline-block;
  top: -200px;
  left: 0;
  z-index: 1000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

footer .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 63px;
  border-top: 4px solid #DFDFDF;
  color: #000000;
  font-size: 14px;
  text-align: center;
}

footer .bottom a {
  color: #333;
  text-decoration: none;
}

.cc--light-funky {
  color-scheme: light;

  --cc-bg: #f9faff;
  --cc-primary-color: #112954;
  --cc-secondary-color: #112954;

  --cc-btn-primary-bg: #FF9100;
  --cc-btn-primary-color: var(--cc-bg);
  --cc-btn-primary-hover-bg: #213657;
  --cc-btn-primary-hover-color: #fff;

  --cc-btn-secondary-bg: #dfe7f9;
  --cc-btn-secondary-color: var(--cc-secondary-color);
  --cc-btn-secondary-hover-bg: #c6d1ea;
  --cc-btn-secondary-hover-color: #000;

  --cc-cookie-category-block-bg: #ebeff9;
  --cc-cookie-category-block-border: #ebeff9;
  --cc-cookie-category-block-hover-bg: #dbe5f9;
  --cc-cookie-category-block-hover-border: #dbe5f9;
  --cc-cookie-category-expanded-block-hover-bg: #ebeff9;
  --cc-cookie-category-expanded-block-bg: #ebeff9;

  --cc-overlay-bg: rgba(219, 232, 255, 0.85)!important;

  --cc-toggle-readonly-bg: #cbd8f1;
  --cc-toggle-on-knob-bg: var(--cc-bg);
  --cc-toggle-off-bg: #8fa8d6;
  --cc-toggle-readonly-knob-bg: var(--cc-bg);

  --cc-separator-border-color: #f1f3f5;

  --cc-footer-border-color: #f1f3f5;
  --cc-footer-bg: var(--cc-bg);

  --cc-modal-border-radius: var(--cc-btn-border-radius);
  --cc-pm-toggle-border-radius: var(--cc-btn-border-radius);
}

.cc--light-funky #cc-main .toggle__icon:after {
  border-radius: var(--cc-btn-border-radius);
}

.cc--light-funky #cc-main .cm__btn--close {
  border-radius: var(--cc-btn-border-radius);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}