/*常规体*/
@font-face {
  font-family: "Roboto";
  src: url("/assets/font/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/*粗体*/
@font-face {
  font-family: "Roboto";
  src: url("/assets/font/Roboto-Blod.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

:root {
  --header-height: 83px;
  --footer-height: 200px;
  --primary-color: #dd133d;
  --layout: 1300px;
  --layout-padding: clamp(30px, 15vw, 300px);
  --header-default-bg: url(/assets/img/header-bg.png);
}

*,
::after,
::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto";
  font-weight: 400;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  cursor: pointer;
}

img,
video {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

::placeholder {
  color: #999;
}

.icon-search {
  width: 14px;
  aspect-ratio: 14px;
}

.icon-user {
  width: 12px;
  height: 12px;
}

.header {
  height: var(--header-height);
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.header:has(~ .drawer-search.active) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header .left,
.header .right {
  flex: 1;
}

.header .navbar {
  display: flex;
  align-items: center;
  column-gap: clamp(30px, 12.6667vw, 95px);
}

.header .navbar .nav {
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: relative;
  font-size: 17px;
  color: #3e3a39;
}

.header .navbar .nav:hover,
.header .navbar .nav.active {
  color: var(--primary-color);
}

.header .navbar .nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 1px;
  background: linear-gradient(to right,
      var(--primary-color),
      var(--primary-color)) no-repeat right bottom;
  background-size: 0 1px;
  transition: background-size 0.6s;
}

.header .navbar .nav:hover::after,
.header .navbar .nav.active::after {
  background-position: left bottom;
  background-size: 100% 1px;
}

.header .navbar .nav .dropdown {
  position: absolute;
  top: var(--header-height);
  left: 50%;
  width: 245px;
  transform: translateX(-50%);
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s;
}

.header .navbar .nav:hover .dropdown {
  grid-template-rows: 1fr;
}

.header .navbar .nav .dropdown .content {
  min-height: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.header .navbar .nav .dropdown ul {
  width: fit-content;
  padding: 30px;
  display: inline-flex;
  flex-direction: column;
}

.header .navbar .nav:hover .dropdown ul {
  padding: 30px;
}

.header .navbar .nav .dropdown ul li {
  white-space: nowrap;
}

.header .navbar .nav .dropdown ul li:nth-child(n + 2) {
  margin-top: 30px;
}

.header .navbar .nav .dropdown ul li a {
  font-size: 16px;
  color: #3e3a39;
}

.header .navbar .nav .dropdown ul li a:hover {
  color: var(--primary-color);
}

.header .navbar .nav .nav-dropdown {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  height: 0;
  transition: all 0.6s;
  z-index: 999;
}

.header .navbar .nav:hover .nav-dropdown {
  height: 430px;
}

.header .navbar .nav .nav-dropdown .flex-category {
  height: 430px;
  display: flex;
}

.header .navbar .nav .nav-dropdown .flex-category .category {
  width: 20vw;
  height: 100%;
  padding: 35px 0;
  display: flex;
  justify-content: center;
  background-color: #f1f1f1;
  overflow-y: auto;
}

.header .navbar .nav .nav-dropdown .flex-category .category ul li {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  color: #3e3a39;
  cursor: pointer;
}

.header .navbar .nav .nav-dropdown .flex-category .category ul li.active,
.header .navbar .nav .nav-dropdown .flex-category .category ul li:hover {
  color: #dd133d;
}

.header .navbar .nav .nav-dropdown .flex-category .items {
  flex: 1 0 30vw;
  min-width: 30vw;
}

.header .navbar .nav .nav-dropdown .flex-category .items ul {
  height: 100%;
  padding: 35px 3vw;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 20px 3vw;
}

.header .navbar .nav .nav-dropdown .flex-category .items ul.active {
  display: flex;
}

.header .navbar .nav .nav-dropdown .flex-category .items ul li {
  width: 16vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header .navbar .nav .nav-dropdown .flex-category .items ul li a {
  font-weight: 400;
  font-size: 16px;
  color: #3e3a39;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.header .navbar .nav .nav-dropdown .flex-category .items ul li a:hover {
  color: #dd133d;
}

.header .navbar .nav .nav-dropdown .flex-category .item-childs {
  flex: 1 1 47vw;
  padding: 35px 0;
}

.header .navbar .nav .nav-dropdown .flex-category .item-childs ul {
  height: 100%;
  padding-left: 3vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 20px;
  border-left: 1px solid #9b9999;
}

.header .navbar .nav .nav-dropdown .flex-category .item-childs ul li {
  width: fit-content;
}

.header .navbar .nav .nav-dropdown .flex-category .item-childs ul li a {
  font-weight: 400;
  font-size: 15px;
  color: #3e3a39;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.header .navbar .nav .nav-dropdown .flex-category .item-childs ul li a:hover {
  color: #dd133d;
}

.header .logo img {
  width: 150px;
  aspect-ratio: 150 / 42;
}

.header .toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header .toolbar .quick-search {
  margin: 0 10px;
  width: 172px;
  height: 23px;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid #c9c9c9;
  border-radius: 15px;
  overflow: hidden;
}

.header .toolbar .quick-search input {
  width: 100%;
  padding: 0 0.5em;
  height: 21px;
  border: none;
  outline: none;
  font-weight: 400;
  font-size: 17px;
  text-align: right;
}

.header .toolbar .quick-search .btn-search {
  width: 14px;
  height: 14px;
  margin-right: 10px;
  cursor: pointer;
}

.header .toolbar .icon-search {
  width: 17px;
  height: 17px;
  margin-right: 10px;
  cursor: pointer;
}

.header .toolbar .line {
  width: 1px;
  height: 20px;
  background-color: #c9c9c9;
}

.header .toolbar .language {
  height: var(--header-height);
  margin: 0 10px;
  display: flex;
  align-items: center;
  position: relative;
}

.header .toolbar .language .name {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 17px;
  color: #3e3a39;
  cursor: pointer;
  position: relative;
}

.header .toolbar .language .name::before {
  content: "";
  margin-right: 10px;
  width: 17px;
  height: 17px;
  background-image: url(/assets/img/icon-language.png);
  background-size: 17px 17px;
}

@keyframes FadeInUp {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.header .toolbar .dropdown {
  position: absolute;
  top: var(--header-height);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 15px 0;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

.header .toolbar .language:hover .dropdown {
  animation: FadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.header .toolbar .dropdown li {
  display: flex;
  justify-content: center;
  font-size: 17px;
  color: #3e3a39;
  cursor: pointer;
}

.header .toolbar .dropdown li:nth-child(n + 2) {
  margin-top: 25px;
}

.header .toolbar .dropdown li.active {
  color: var(--primary-color);
}

.header .toolbar .dropdown li:hover {
  text-decoration: underline;
}

.layout {
  margin: 0 auto;
  width: var(--layout);
}

.footer {
  background-color: #f9f9f9;
}

.footer .logo-box {
  padding: 90px 0 65px;
}

.footer .logo-box .logo {
  display: block;
  width: fit-content;
}

.footer .logo-box .logo img {
  width: 150px;
  aspect-ratio: 150 / 42;
}

.footer .nav .list {
  display: flex;
  justify-content: space-between;
}

.footer .nav .list .item .item-title {
  padding-bottom: 35px;
  font-weight: 400;
  font-size: 19px;
  color: #3e3a39;
}

.footer .nav .list .item ul li {
  margin-bottom: 20px;
}

.footer .nav .list .item ul li a {
  font-weight: 400;
  font-size: 15px;
  color: #727171;
}

.footer .nav .list .item .contact-info {
  font-weight: 400;
  font-size: 15px;
  color: #727171;
}

.footer .nav .list .item .contact-info p {
  margin: 0 0 10px;
}

.footer .apps {
  margin-top: 60px;
  padding-bottom: 40px;
}

.footer .apps .icon-app {
  width: 36px;
  height: 36px;
}

.footer .copyright {
  background-color: #f1f1f1;
}

.footer .copyright .layout {
  width: fit-content;
  height: 92px;
  display: flex;
  align-items: center;
  background-color: #f1f1f1;
  font-size: 19px;
  color: #727171;
}

.footer .copyright .layout .sperater{
  padding: 0 10px;
}

.footer .copyright .layout a {
  width: fit-content;
  height: 92px;
  display: flex;
  align-items: center;
  background-color: #f1f1f1;
  font-size: 19px;
  color: #727171;
}

.ivu-input {
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  border-radius: 0;
  background: #ffffff;
  outline: none;
  font-size: 14px;
}

.ivu-select-single .ivu-select-selection {
  height: 40px;
  border-radius: 0;
}

.ivu-select-single .ivu-select-selection .ivu-select-placeholder,
.ivu-select-single .ivu-select-selection .ivu-select-selected-value {
  height: 40px;
  line-height: 40px;
}

.ivu-input:hover,
.ivu-input:focus,
.ivu-select-selection-focused,
.ivu-select-selection:hover,
.ivu-select-visible .ivu-select-selection {
  border-color: #000;
}

.ivu-input:focus,
.ivu-select-selection-focused,
.ivu-select-visible .ivu-select-selection {
  box-shadow: none;
}

.contact {
  padding: 180px 0 140px;
  background-image: url(/assets/img/bg3.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.contact .layout {
  display: flex;
}

.contact .info {
  width: 460px;
}

.contact .info .title {
  font-size: 53px;
  color: #3e3a39;
  line-height: 64px;
}

.contact .info .desc {
  margin-top: 30px;
  font-weight: 400;
  font-size: 20px;
  color: #3e3a39;
  line-height: 28px;
}

.contact .form-contact {
  margin-left: auto;
}

.contact .form-contact .form-items {
  width: 665px;
  display: flex;
  flex-wrap: wrap;
}

.contact .form-contact .form-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact .form-contact .form-items .form-item {
  margin-bottom: 30px;
}

.contact .form-contact .form-items .form-item[data-prop="company_name"] {
  width: 390px;
}

.contact .form-contact .form-items .form-item[data-prop="real_name"] {
  width: 265px;
}

.contact .form-contact .form-items .form-item[data-prop="email"],
.contact .form-contact .form-items .form-item[data-prop="phone_number"],
.contact .form-contact .form-items .form-item[data-prop="solutions"] {
  width: 215px;
}

.contact .form-contact .form-items .form-item[data-prop="message"] {
  width: 665px;
}

.contact .form-contact .form-items .form-item .form-item-label {
  font-weight: 400;
  font-size: 19px;
  color: #3e3a39;
}

.contact .form-contact .form-items .form-item:has(input[required]) .form-item-label::after,
.contact .form-contact .form-items .form-item:has(select[required]) .form-item-label::after,
.contact .form-contact .form-items .form-item:has(textarea[required]) .form-item-label::after {
  content: "*";
  color: #dd133d;
}

.contact .form-contact .form-items .form-item .form-item-control {
  flex: 1;
  display: flex;
}

.contact .form-contact .form-items .form-item .form-item-control input,
.contact .form-contact .form-items .form-item .form-item-control select {
  width: 100%;
  height: 38px;
  border: 1px solid rgba(35, 24, 21, 0.7);
  outline: none;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.7);
}

.contact .form-contact .form-items .form-item .form-item-control select {
  color: rgba(0, 0, 0, 0.7);
}

.contact .form-contact .form-items .form-item .form-item-control input:focus,
.contact .form-contact .form-items .form-item .form-item-control select:focus {
  background-color: rgba(255, 255, 255, 1);
  border-color: rgba(35, 24, 21, 1);
}

.contact .form-contact .form-items .form-item .form-item-control input {
  padding: 0 1em;
}

.contact .form-contact .form-items .form-item .form-item-control textarea {
  width: 100%;
  height: 114px;
  padding: 0.5em 1em;
  border: 1px solid rgba(35, 24, 21, 0.7);
  border-radius: 10px;
  resize: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.7);
}

.contact .form-contact .form-items .form-item .form-item-control textarea:focus {
  background-color: rgba(255, 255, 255, 1);
  border-color: rgba(35, 24, 21, 1);
}

.contact .form-contact .form-action {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.contact .form-contact .form-action .btn-submit {
  width: 140px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 18px;
  color: #fff;
  font-size: 19px;
  color: #ffffff;
  background-color: var(--primary-color);
}

.container {
  position: relative;
}

.breadcrumb {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 0 30px;
  background-color: rgba(255, 255, 255, 0.75);
}

.breadcrumb>ul {
  height: 42px;
  display: flex;
  align-items: center;
}

.breadcrumb>ul>li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #727171;
}

.breadcrumb>ul>li+li::before {
  content: "/";
  padding: 0 10px;
  color: #727171;
}

.breadcrumb>ul>li.active,
.breadcrumb>ul>li:hover {
  color: var(--primary-color);
}

.breadcrumb>ul>li>a {
  color: inherit;
}

.btn-contact-us {
  width: 142px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #3e3a39;
  background-color: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 30px;
}

.btn-contact-us:hover {
  color: #fff;
  background-color: var(--primary-color);
}

.calc-width {
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-wrap: wrap balance;
}

.drawer-search {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  z-index: 888;
  overflow: auto;
  padding: calc(var(--header-height) + 95px) 0 95px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

.drawer-search.active {
  opacity: 1;
  visibility: visible;
}

.drawer-container {
  margin: 0 auto;
  width: 1220px;
}

.drawer-container .drawer-close {
  width: fit-content;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 19px;
  color: #3e3a39;
  cursor: pointer;
}

.drawer-container .drawer-close .icon-close {
  margin-right: 10px;
  width: 22px;
  height: 22px;
}

.drawer-container .filter-search {
  margin-top: 80px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #727171;
}

.drawer-container .filter-search .inp-search {
  flex: 1;
  font-weight: 400;
  font-size: 32px;
  border: none;
  outline: none;
  color: #000;
}

.drawer-container .filter-search .inp-search::placeholder {
  color: #3e3a39;
}

.drawer-container .filter-search .div-search {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #dd133d;
  border-radius: 50%;
}

.drawer-container .filter-search .div-clear {
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.drawer-container .filter-search .div-clear div {
  width: 45px;
  height: 45px;
  border: 1px solid #dd133d;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #dd133d;
}

.drawer-container .filter-search .div-clear label {
  padding-left: 10px;
  font-weight: bold;
  cursor: pointer;
}

.drawer-container .filter-search .icon-search {
  width: 17px;
  height: 17px;
}

.filter-result .list {
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 35px 2%;
}

.filter-result .list .item {
  padding: 30px 0 0;
  flex: 0 1 32%;
  aspect-ratio: 287 / 285;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
}

.filter-result .list .item.hide {
  display: none;
}

.filter-result .list .item>a {
  display: block;
  height: 100%;
  position: relative;
}

.filter-result .list .item .img-box {
  overflow: hidden;
}

.filter-result .list .item .img {
  margin: 0 auto;
  width: 182px;
  aspect-ratio: 182 / 153;
  transition: all 0.3s;
}

.filter-result .list .item:hover .img {
  transform: scale(1.2);
}

.filter-result .list .item .name {
  padding: 20px 15px;
  font-weight: bold;
  font-size: 23px;
  color: #3e3a39;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-result .list .item .name:hover {
  color: var(--primary-color);
}

.filter-result .list .item .desc {
  padding: 20px 30px 0;
  font-size: 19px;
  color: #727171;
  line-height: 27px;
}

.filter-result .list .item .icon-next {
  position: absolute;
  width: 38px;
  height: 38px;
  right: 25px;
  bottom: 17px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #000;
}

.filter-result .list .item .icon-next::after {
  content: "next";
  font-family: swiper-icons;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.filter-result .list .item:hover .icon-next {
  animation: fadeIn 0.6s;
  animation-fill-mode: forwards;
}

.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: 400;
  font-size: 24px;
  color: #3e3a39;
}

.pagination ul li.hide {
  display: none;
}

.pagination ul li .prev {
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 12px solid #3e3a39;
}

.pagination ul li .prev:hover {
  border-right-color: var(--primary-color);
}

.pagination ul li .next {
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #3e3a39;
}

.pagination ul li .next:hover {
  border-left-color: var(--primary-color);
}

.pagination ul li:hover a,
.pagination ul li.active a {
  color: var(--primary-color);
}

@keyframes fadeIn {
  0% {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    border-color: #000;
  }

  50% {
    font-weight: bold;
    color: #000;
    border-color: #000;
  }

  100% {
    font-weight: bold;
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
}