@font-face {
  font-family: 'DIN-Medium';
  src: url('../fonts/DIN-Medium.otf');
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('../fonts/Montserrat-SemiBold.otf');
}
:root {
  --Noto-Sans-SC: 'Noto Sans SC', sans-serif;
  --Noto-Serif-SC: 'Noto Serif SC', sans-serif;
  --Song-Myung: 'Song Myung', sans-serif;
  --Roboto: 'Roboto', sans-serif;
  --Abel: 'Abel', sans-serif;
  --Barlow-Condensed: 'Barlow Condensed', sans-serif;
  --Din: 'DIN-Medium', sans-serif;
  --Montserrat-SemiBold: 'Montserrat-SemiBold', 'sans-serif';
  --Montserrat: 'Montserrat', 'sans-serif';
  --Poppins: 'Poppins', 'sans-serif';
  --Lato: 'Lato', 'sans-serif';
}
h1,
h2,
h3,
h4,
h5,
p {
  transition: all 0.5s;
}
html,
body {
  scroll-behavior: smooth;
  font-family: var(--Noto-Sans-SC);
}
body {
  overflow: visible;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: #666;
}
body:hover::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
.out-header {
  height: 100px;
  width: 100%;
}
.container {
  max-width: 1600px;
  width: 85%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: 0 !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  z-index: 99;
  transition: all 0.5s;
  background-color: #fff;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
header .logo {
  width: 16.25%;
  text-align: center;
}
header .logo img {
  transition: all 0.5s;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  font-size: clamp(16px, 1.1vw, 18px);
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 2.2778em;
}
header .lv1 > li:first-child {
  margin-left: 0;
}
header .lv1 > li a {
  color: #666;
  padding: 0 1.5em;
  line-height: 40px;
  text-align: center;
  transition: all 0.5s;
  text-transform: uppercase;
}
header .lv1 > li:hover > a {
  color: #FABE00;
  font-weight: 700;
}
header .lv1 > li:hover::after {
  width: 100%;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
header .lv1 > .active > a {
  color: #FABE00 !important;
  font-weight: 700;
}
header .lv1 .search-lang .search-icon {
  cursor: pointer;
  color: #999;
  transition: all 0.5s;
  margin-right: 1.6667em;
}
header .lv1 .search-lang .search-icon:hover {
  color: #333;
}
header .lv1 .search-lang .search {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100vw;
  background-color: #fff;
  border-top: 1px solid #eee;
  padding: 1.5% 3%;
  display: none;
}
header .lv1 .search-lang .search form {
  max-width: 100%;
  width: 650px;
  display: flex;
  margin: 0 auto;
}
header .lv1 .search-lang .search form input {
  flex: 1;
  font-size: clamp(16px, 1.1vw, 18px);
  color: #333;
  height: 2.5em;
  border: 1px solid #ddd;
  border-radius: 1.25em 0 0 1.25em;
  outline: none;
  padding: 0 1em;
  transition: all 0.5s;
}
header .lv1 .search-lang .search form input:focus {
  border-color: #999;
}
header .lv1 .search-lang .search form button {
  font-size: clamp(16px, 1.1vw, 18px);
  width: 3.5em;
  background-color: #ddd;
  color: #333;
  cursor: pointer;
  border-radius: 0 1.25em 1.25em 0;
  transition: all 0.5s;
}
header .lv1 .search-lang .search form button:hover {
  background-color: #999;
}
header .lv1 .search-lang .search .close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-100%, 100%);
  color: #333;
  cursor: pointer;
  transition: all 0.5s;
}
header .lv1 .search-lang .search .close:hover {
  transform: translate(-100%, 100%) rotate(360deg);
}
header .lv1 .search-lang .lang {
  position: relative;
  line-height: 2.1111111;
  border: 1px solid #999;
  color: #999;
  border-radius: 1em;
  padding: 0 1em;
  cursor: default;
  transition: all 0.5s;
}
header .lv1 .search-lang .lang:hover {
  color: #333;
}
header .lv1 .search-lang .lang i {
  margin-left: 1em;
}
header .lv1 .search-lang .lang:hover ul {
  transform: translate(-50%, 1%);
  opacity: 1;
  visibility: visible;
}
header .lv1 .search-lang .lang ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10%);
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  min-width: 100%;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
header .lv1 .search-lang .lang ul li {
  text-align: center;
  white-space: nowrap;
  padding: 0 1em;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}
header .lv1 .search-lang .lang ul li a {
  color: #999;
  font-weight: 400;
  transition: all 0.5s;
}
header .lv1 .search-lang .lang ul li a:hover {
  color: #FABE00;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 10%);
  transition: all 0.5s;
  background-color: #fff;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
  visibility: hidden;
  opacity: 0;
}
header .lv2 > li {
  position: relative;
  white-space: nowrap;
  text-align: center;
  padding: 2px 15px;
  min-width: 130px;
}
header .lv2 > li a {
  font-size: 16px;
  color: #666;
	display: block;
}
header .lv2 > li:hover .lv3 {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
header .lv2 > li > a:hover {
	color: #fff;
	background-color: #FABE00;
}
header .lv3 {
  position: absolute;
  top: 0%;
  left: 100%;
  transform: translate(50%, 0);
  transition: all 0.5s;
  background-color: #fff;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  padding: 0 0 10px;
  visibility: hidden;
  opacity: 0;
}
header .lv3 > li a {
	display: block;
	font-size: 14px;
	color: #999;
	line-height: 2.5;
}
header .lv3 > li > a:hover {
	color: #fff;
	background-color: #FABE00;
}
header nav {
  flex: 1;
	height: 100%;
  margin-left: 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .prod-lv2 {
	position: fixed;
	width: 100vw;
	max-height: 78vh;
	background-color: #fff;
	left: 0;
	top: 100px;
	padding: 2% 10%;
	display: flex;
	flex-wrap: wrap;
	overflow: auto;
	justify-content: center;
	transition: all .5s;
	opacity: 0;
	visibility: hidden;
}
header .prod-lv2 > li {
	width: 23%;
	font-size: 17px;
	text-align: center;
	border-right: 1px solid #ddd;
	padding: 0 20px;
}
header .prod-lv2 > li:nth-child(3) {
	padding: 0 10px;
}
header .prod-lv2 > li:nth-child(3) .prod-lv3 > li {
	width: 32%;
}
header .prod-lv2 > li:last-child {
	border-right: 0;
}
header .prod-lv2 > li a {
	color: #333;
	padding: 0 2em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	transition: all .5s;
	border-bottom: 1px solid #ddd;
}
header .prod-lv2 > li > a {
	margin-bottom: 0.5em;
	font-weight: 700;
}
header .prod-lv2 > li a:hover {
	background-color: #FABE00;
	color: #fff;
	border-color: transparent;
}
header .prod-lv3 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
header .prod-lv3 > li {
	font-size: 14px;
	width: 48%;
}
header .prod-lv3 > li a {
	line-height: 2.5;
	padding: 0 1em;
}
header .lv1 > li:hover .prod-lv2 {
	opacity: 1;
	visibility: visible;
}
.pagination {
  margin-top: 2%;
  display: flex !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination a {
  display: block;
  font-size: 14px;
  padding: 0 13px;
  line-height: 32px;
  /* background-color: #fff; */
  margin: 5px;
  color: #000;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination span {
  display: block;
  font-size: 14px;
  padding: 0 13px;
  line-height: 32px;
  background-color: #FABE00;
  margin: 5px;
  color: #fff;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination a:hover {
  color: #fff;
  background-color: #FABE00;
  border-color: transparent;
}
.index-banner {
  position: relative;
}
.index-banner .swiper .swiper-slide {
  position: relative;
}
.index-banner .swiper .swiper-slide > img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.index-banner .swiper .swiper-slide-active h2 {
  animation: fadeInDown 2s;
}
.index-banner .swiper .swiper-slide-active h5 {
  animation: fadeInDown 2.5s;
}
.index-banner .swiper .swiper-slide-active a {
  animation: fadeInUp 2s;
}
.index-banner .swiper .swiper-slide-active > img {
  animation: clipCircle 3s;
}
@keyframes clipCircle {
  0% {
    clip-path: inset(0% 0% 0% 100%);
    scale: 1.2;
  }
  100% {
    clip-path: inset(0% 0% 0% 0%);
    scale: 1;
  }
}
.index-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-banner .banner-text {
  text-align: center;
}
.index-banner .banner-text h2 {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}
.index-banner .banner-text h5 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}
.index-banner .banner-text a {
  display: inline-block;
  width: 150px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
  margin-top: 6.13497%;
  transition: all 0.5s;
}
.index-banner .banner-text a img {
  margin-right: 13px;
  transition: all 0.5s;
}
.index-banner .banner-text a:hover {
  box-shadow: inset -5px 5px 15px rgba(255, 255, 255, 0.3);
}
.index-banner .banner-text a:hover img {
  margin-right: 7px;
}
.index-banner .swiper-pagination {
  bottom: 5%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  font-size: clamp(12px, 1.25vw, 24px);
  width: 0.5em;
  height: 0.5em;
  opacity: 1;
  background-color: transparent;
  background-color: #fff;
  transition: all 0.5s;
  margin: 0 0.25em;
	border-radius: .5em;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #EAA218;
	width: 1.5em;
}
.index-banner .swiper-btn {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 10px;
	right: 5%;
	bottom: 5%;
}
.index-banner .swiper-button-prev, .index-banner .swiper-button-next {
	font-size: clamp(16px, 1.5625vw, 30px);
	width: 2em;
	height: 2em;
	border: 2px solid #fff;
	color: #fff;
	position: relative;
	margin: 0;
	top: auto;
	left: auto;
	right: auto;
}
.index-banner .swiper-button-prev::after, .index-banner .swiper-button-next::after {
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
}
.index-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(153, 153, 153, 0.5);
  padding-bottom: 10px;
  margin-bottom: 2.5%;
}
.index-title h3 {
  font-size: clamp(20px, 2.0833333vw, 40px);
  color: #333;
  font-weight: 700;
  position: relative;
  line-height: 1.25;
  border-left: 4px solid #FABE00;
  padding-left: 0.5em;
}
.index-title h3 span {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #666;
  font-weight: 400;
  margin-left: 1em;
  text-transform: uppercase;
}
.index-title a {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #999;
  margin-right: 1.5em;
  transition: all 0.5s;
  font-weight: 500;
}
.index-title a:hover {
  color: #FABE00;
}
.back-top {
  position: fixed;
  right: 1%;
  bottom: 5%;
  background-color: #FABE00;
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  font-size: clamp(12px, 1.2vw, 20px);
  border-radius: 4px;
  transition: all 0.5s;
  animation: fadeOutRight 0.5s;
  visibility: hidden;
}
.back-top:hover {
  filter: sepia(1);
}
.back-top-show {
  animation: fadeInLeft 0.5s;
  visibility: visible;
}
.index-nav-banner {
  background-color: #FAFAFA;
  padding: 1.0416667% 0;
}
.index-nav-banner .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.index-nav-banner .container ul {
  display: flex;
  flex-wrap: wrap;
}
.index-nav-banner .container ul li {
  margin-right: 10px;
}
.index-nav-banner .container ul li a {
  display: block;
  text-align: center;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #666;
  padding: 0 ;
  line-height: 2;
  padding: 0.66667em 1em;
  border-bottom: 0.2222222em solid transparent;
  transition: all 0.5s;
}
.index-nav-banner .container ul li:last-child {
  margin-right: 0;
}
.index-nav-banner .container ul .active a {
  color: #FABE00;
  border-bottom-color: #FABE00;
  font-weight: 700;
}
.index-about {
  padding-top: 2.6041667%;
  background-color: #ECECEC;
}
.index-about .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.index-about .wrapper .lt {
  width: 50%;
}
.index-about .wrapper .lt .pic {
  position: relative;
  overflow: hidden;
}
.index-about .wrapper .lt .pic img {
  display: block;
  width: 100%;
  transition: all 0.5s;
}
.index-about .wrapper .lt .pic:hover img {
  scale: 1.05;
}
.index-about .wrapper .rt {
  width: 50%;
  padding: 1.5625% 0 1.0416667%;
}
.index-about .wrapper .rt .title {
  font-size: clamp(20px, 2.0833333vw, 40px);
  font-weight: 700;
  color: #333;
  line-height: 1.25;
  margin-bottom: 0.66675em;
}
.index-about .wrapper .rt .brief {
  font-size: clamp(14px, 1.2vw, 22px);
  color: #666;
  line-height: 1.818182;
  padding: 0 6.25%;
}
.index-about .wrapper .rt .brief p {
  position: relative;
  margin-bottom: 1.212273em;
}
.index-about .wrapper .rt .data {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 2.83333%;
  margin-top: 5.208333%;
}
.index-about .wrapper .rt .data .block {
  text-align: center;
}
.index-about .wrapper .rt .data .block h3 {
  font-size: clamp(20px, 2.083333vw, 40px);
  color: #FABE00;
  font-weight: 700;
  line-height: 1.6667;
}
.index-about .wrapper .rt .data .block h5 {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #333;
}
.index-app {
  margin: 3.125% 0 2.60416667%;
}
.index-app .intro {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #333;
  line-height: 2.08333;
  max-width: 1225px;
  margin-bottom: 2.5%;
}
.index-app .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2.625%;
}
.index-app .wrapper .block {
  flex: 1;
  height: clamp(250px, 28.6458333vw, 550px);
  transition: all 1s;
}
.index-app .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.index-app .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.index-app .wrapper .block .pic .title {
  position: absolute;
  width: 100%;
  left: 0;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #fff;
  line-height: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.5em 0.5em;
  bottom: 0;
  text-align: center;
  transition: all 0.5s;
}
.index-app .wrapper .block .pic .mask {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  font-size: clamp(12px, 1vw, 16px);
  color: #fff;
  line-height: 1.875;
  padding: 5px 1.25em 0.9375em;
  background-color: #FABE00;
  transition: all 0.5s;
  transform: translate(0, 100%);
  visibility: hidden;
  opacity: 0;
}
.index-app .wrapper .block .pic .mask h4 {
  font-size: 1.125em;
  line-height: 1.6667;
	font-weight: 700;
}
.index-app .wrapper .block .pic .mask p {
  position: relative;
  padding-left: 1.375em;
}
.index-app .wrapper .block .pic .mask p::before {
  display: inline-block;
  position: absolute;
  left: 0;
  content: "·";
}
.index-app .wrapper .active {
  flex: 2.722222;
}
.index-app .wrapper .active .pic .title {
  transform: scale(5);
  opacity: 0;
  visibility: hidden;
}
.index-app .wrapper .active .pic .mask {
  transform: translate(0, 0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0.5s;
}
.index-dev {
  background-color: #ECECEC;
  padding: 3.125% 0 4.16666667%;
}
.index-dev .intro {
  text-align: center;
  margin: 0 auto 2.5%;
  font-size: clamp(14px, 1.25vw, 24px);
  color: #333;
  line-height: 2.0833;
}
.index-dev .devThumb {
  position: relative;
  font-size: clamp(18px, 1.5625vw, 30px);
  margin: 0 auto 2.0625%;
  max-width: 1280px;
}
.index-dev .devThumb .swiper-slide {
  text-align: center;
  cursor: pointer;
}
.index-dev .devThumb .swiper-slide h4 {
  display: inline-block;
  color: #333;
  line-height: 1.6667;
  padding: 0 0.35em;
  border-radius: 4px;
}
.index-dev .devThumb .swiper-slide em {
  display: block;
  width: 0.666667em;
  height: 0.666667em;
  background-color: rgba(153, 153, 153, 0.5);
  border-radius: 50%;
  border: 0.13333em solid transparent;
  margin: 1.43333em auto 0;
  transition: all 0.5s;
}
.index-dev .devThumb .swiper-slide:hover h4 {
  background-color: #FABE00;
  color: #fff;
  font-weight: 700;
}
.index-dev .devThumb .swiper-slide-thumb-active h4 {
  background-color: #FABE00;
  color: #fff;
  font-weight: 700;
}
.index-dev .devThumb .swiper-slide-thumb-active em {
  background-color: #fff;
  border: 0.13333em solid #FABE00;
}
.index-dev .devThumb::after {
  position: absolute;
  display: block;
  bottom: 0.23333em;
  left: 0;
  content: "";
  width: 100%;
  height: 0.2em;
  background-color: rgba(153, 153, 153, 0.2);
}
.index-dev .devSwiper {
  margin: 0 auto;
  max-width: 1280px;
}
.index-dev .devSwiper .swiper-slide {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.index-dev .devSwiper .swiper-slide .lt {
  width: 46.09375%;
}
.index-dev .devSwiper .swiper-slide .lt .title {
  font-size: clamp(16px, 1.5625vw, 30px);
  line-height: 1.6667;
  color: #333;
  font-weight: 700;
  margin-bottom: 1em;
}
.index-dev .devSwiper .swiper-slide .lt .brief {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #333;
  line-height: 2.0833;
}
.index-dev .devSwiper .swiper-slide .lt .brief p {
  position: relative;
  padding-left: 1.416667em;
}
.index-dev .devSwiper .swiper-slide .lt .brief p::before {
  display: inline-block;
  position: absolute;
  content: "·";
  left: 0;
}
.index-dev .devSwiper .swiper-slide .rt {
  width: 46.09375%;
}
.index-dev .devSwiper .swiper-slide .rt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 66.779661%;
  border-radius: 10px;
}
.index-dev .devSwiper .swiper-slide .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-culture {
  background-color: #FABE00;
  padding: 3.125% 0 7.2916667%;
}
.index-culture .index-title {
  border-bottom-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 5.625%;
}
.index-culture .index-title h3 {
  color: #fff;
}
.index-culture .index-title h3 span {
  color: #fff;
}
.index-culture .index-title a {
  color: #fff;
}
.index-culture .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-culture .wrapper .block {
  width: 23.75%;
  font-size: clamp(12px, 1.25vw, 24px);
  background-color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 1.25em;
  transition: all 0.5s;
  z-index: 1;
}
.index-culture .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  border-radius: 1.25em;
  transition: all 0.5s;
  width: 100%;
  height: 11.4583333em;
  z-index: 1;
}
.index-culture .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-culture .wrapper .block .text {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  border-radius: 1.25em;
  transition: all 0.5s;
  padding: 2.604167em 0.83333em 0.9375em;
  width: 100%;
  height: 11.4583333em;
}
.index-culture .wrapper .block .text .title {
  display: inline-block;
  font-size: 1.25em;
  min-width: 7.3em;
  color: #fff;
  background-color: #FABE00;
  line-height: 1.6667;
  text-align: center;
  padding: 0 0.5em;
  border-radius: 0.83335em;
  margin-bottom: 0.6667em;
  transition: all 0.5s;
}
.index-culture .wrapper .block .text .brief {
  line-height: 1.6667;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 5.0001em;
  overflow: hidden;
}
.index-culture .wrapper .block:nth-child(even) .pic {
  transform: translateY(100%);
}
.index-culture .wrapper .block:nth-child(even) .text {
  transform: translateY(-100%);
}
.index-culture .wrapper .block:nth-child(even):hover .pic {
  transform: translateY(0);
}
.index-culture .wrapper .block:nth-child(even):hover .text {
  transform: translateY(0);
}
.index-culture .wrapper .block:hover {
  background-color: #FABE00;
  box-shadow: 0 0 0 0.2em #fff;
}
.index-culture .wrapper .block:hover .pic {
  transform: translateY(100%);
  transition: all 0.85s;
}
.index-culture .wrapper .block:hover .text {
  background-color: #FABE00;
  transform: translateY(-100%);
  transition: all 0.85s;
}
.index-culture .wrapper .block:hover .text .title {
  background-color: #fff;
  color: #FABE00;
}
.index-culture .wrapper .block:hover .text .brief {
  color: #fff;
}
.index-honor {
  background-color: #ECECEC;
  padding: 2.6041667% 0 3.125%;
}
.index-honor .swiper {
  margin: 0 10px;
}
.index-honor .swiper .swiper-slide {
  padding: 10px;
  border: 1px solid rgba(102, 102, 102, 0.2);
  transition: all 0.5s;
}
.index-honor .swiper .swiper-slide .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
}
.index-honor .swiper .swiper-slide .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-honor .swiper .swiper-slide .title {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #666;
  padding: 0 0.5em;
  line-height: 2.2222;
  text-align: center;
  transition: all 0.5s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-honor .swiper .swiper-slide:hover {
  border-color: #FABE00;
}
.index-honor .swiper .swiper-slide:hover .title {
  background-color: #FABE00;
  color: #fff;
}
.index-honor .honorSwiper1 {
  margin-bottom: 1.875%;
}
.index-honor .honorSwiper1 .swiper-slide .pic {
  padding-bottom: 68.421053%;
}
.index-honor .honorSwiper2 .swiper-slide .pic {
  padding-bottom: 143.39623%;
}
.index-partner {
  margin: 3.125% 0 4.6875%;
}
.index-partner .index-title {
  margin-bottom: 1.5%;
}
.index-partner .intro {
  font-size: clamp(14px, 1.5625vw, 30px);
  color: #333;
  margin-bottom: 3.75%;
}
.index-partner .swiper {
  margin: 0 4.6875%;
}
.index-partner .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  background-color: #F2F3F4;
}
.index-partner .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
}
.index-partner .swiper .pic:hover img {
  scale: 0.95;
}
footer {
  background-color: #FABE00;
  padding: 2.083333% 0 2.60416667%;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
footer .container h3 {
  font-size: clamp(16px, 1.7708333vw, 34px);
  color: #333;
  font-weight: 700;
  line-height: 1.470588;
}
footer .container h4 {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #333;
  line-height: 2.083333;
}
footer .container h5 {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #333;
  line-height: 1.6667;
}
footer .container .ewm {
  margin: 20px 0 10px;
  display: flex;
  font-size: clamp(12px, 1.2vw, 20px);
  gap: 1.5em;
}
footer .container .ewm img {
  width: 100px;
}
footer .container .ewm h5 {
  margin-top: 0.5em;
}
footer .container .copyright {
  color: #333;
  font-size: clamp(12px, 1.1vw, 18px);
  line-height: 1.6667;
}
footer .container a {
  color: inherit;
}
footer .container a:hover {
  text-decoration: underline !important;
}
.anchor-fixed {
  position: relative;
  top: -100px;
}
.inner-banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inner-banner img {
  display: block;
  width: 100%;
}
.inner-banner .banner-text {
  position: absolute;
  width: 100%;
}
.inner-banner .banner-text h3 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, 2.6041667vw, 50px);
  text-align: left;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 1);
}
.prod-tab ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25%;
  font-size: clamp(14px, 1.2vw, 22px);
}
.prod-tab ul li {
  width: 19%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #333;
  transition: all 0.5s;
  padding: 0.25em 0.5em;
  min-height: 3.636364em;
  line-height: 1.6667;
	font-weight: 700;
}
.prod-tab ul li a {
  color: inherit;
}
.prod-tab ul li:hover {
  color: #FABE00;
}
.prod-tab ul .active {
  color: #fff !important;
  background-color: #FABE00;
}
.prod-tab-active {
  border-top: 1px solid #EFEFEF;
}
.prod-tab-active ul {
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.96153846%;
}
.prod-tab-active ul li {
  position: relative;
  font-size: clamp(12px, 1vw, 16px);
  margin-bottom: 0.45454545em;
  color: #EAA218;
  transition: all 0.5s;
  /* padding-left: 1.45454545em; */
  width: 13.461538%;
  display: flex;
  align-items: center;
	text-align: center;
	justify-content: center;
  line-height: 1.6667;
  min-height: 3.1818182em;
	background-color: rgba(250, 190, 0, .1);
}
.prod-tab-active ul li:hover {
  color: #fff;
	background-color: #fac000;
}
/* .prod-tab-active ul li::before {
  content: "·";
  position: absolute;
  left: 0;
} */
.prod-tab-active ul li a {
  color: inherit;
}
.prod-tab-active ul .active {
  color: #FABE00;
}
.product-list {
  padding: 20px 0;
  background-color: #EFEFEF;
}
.product-list .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 10px;
}
.product-list .block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px;
  width: 49.36708861%;
  background-color: #fff;
  margin-bottom: 1.25%;
}
.product-list .block .lt {
  width: 44.7368421%;
}
.product-list .block .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.product-list .block .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.product-list .block .rt {
  width: 55.2631579%;
  padding: 10px;
}
.product-list .block .rt .title {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #333;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  margin-bottom: 0.875em;
}
.product-list .block .rt .feature {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(10px, 1vw, 16px);
  margin-bottom: 1.5625em;
}
.product-list .block .rt .feature span {
  display: inline-block;
	margin-bottom: 3px;
  color: #fff;
  background-color: #999;
  min-width: 5em;
  padding: 0 0.5em;
  text-align: center;
}
.product-list .block .rt .brief {
  font-size: clamp(12px, 1.1vw, 16px);
  color: #666;
  line-height: 2.22222;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 1.3888889em;
}
.product-list .block .rt .btn {
  display: flex;
  font-size: clamp(12px, 1.1vw, 14px);
  gap: 1.5em;
	flex-wrap: wrap;
}
.product-list .block .rt .btn a {
  color: #fff;
  transition: all 0.5s;
  text-align: center;
  line-height: 3;
  min-width: 10em;
}
.product-list .block .rt .btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
.product-list .block .rt .btn .more {
  background-color: #FABE00;
}
.product-list .block .rt .btn .contact {
  background-color: #333;
}
.product-list .block:hover .lt .pic img {
  scale: 1.05;
}
.product-detail .prod-display {
  padding: 3.125% 0 2.60416667%;
	background-color: #EFEFEF;
}
.product-detail .prod-display .container {
	padding: 2%;
	background-color: #fff;
}
.product-detail .prod-display .wrapper {
  display: flex;
  justify-content: space-between;
  /* align-items: flex-start; */
  flex-wrap: wrap;
}
.product-detail .prod-display .wrapper .lt {
  width: 46.25%;
  /* padding: 10px;
  background-color: #EFEFEF; */
}
.product-detail .prod-display .wrapper .lt .picSwiper {
  border: 1px solid #ddd;
	margin-bottom: 10px;
}
.product-detail .prod-display .wrapper .lt .picSwiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  background-color: #fff;
}
.product-detail .prod-display .wrapper .lt .picSwiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail .prod-display .wrapper .lt .thumbSwiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-color: #fff;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all 0.5s;
}
.product-detail .prod-display .wrapper .lt .thumbSwiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail .prod-display .wrapper .lt .thumbSwiper .swiper-slide-thumb-active .pic {
  border-color: #FABE00;
}
.product-detail .prod-display .wrapper .rt {
  width: 52.5%;
  /* padding: 10px;
  background-color: #EFEFEF; */
	/* border: 10px solid #EFEFEF; */
	display: flex;
	flex-direction: column;
}
.product-detail .prod-display .wrapper .rt p {
	position: relative;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #666;
  line-height: 1.6667;
  padding-left: 1.55556em;
}
.product-detail .prod-display .wrapper .rt p::before {
  position: absolute;
  content: "·";
  left: 0;
}
.product-detail .prod-display .wrapper .rt p span {
  color: #333;
  margin-left: 1.11111em;
}
.product-detail .prod-display .wrapper .rt .intro {
  background-color: #fff;
  /* margin-bottom: 10px; */
  padding: 3% 2%;
	margin-bottom: 20px;
	background-color: rgba(231,236,240,0.85);
}
.product-detail .prod-display .wrapper .rt .intro .title {
  padding: 10px 10px 1em;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 700;
  color: #333;
  line-height: 1.25;
  margin-bottom: 2.5%;
	border-bottom: 1px solid #ddd;
}
.product-detail .prod-display .wrapper .rt .intro .keywords {
  line-height: 1.875;
  font-size: clamp(12px, 1vw, 14px);
  margin-bottom: 2.5%;
  display: flex;
}
.product-detail .prod-display .wrapper .rt .intro .keywords div {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 1.25em;
  margin-left: 1.25em;
  flex: 1;
}
.product-detail .prod-display .wrapper .rt .intro .keywords span {
  display: inline-block;
  color: #6c757d;
  background-color: #fff;
	border: 1px solid #dee2e6;
  min-width: 5em;
  padding: 0 0.5em;
  text-align: center;
}
.product-detail .prod-display .wrapper .rt .intro .hotline {
  margin-bottom: 2.5%;
}
.product-detail .prod-display .wrapper .rt .intro .hotline a {
	display: inline-block;
	color: #6c757d;
  background-color: #fff;
	border: 1px solid #dee2e6;
	font-size: clamp(14px, 1.2vw, 20px);
	font-weight: 700;
	transition: all .5s;
	padding: 0 0.85em;
}
.product-detail .prod-display .wrapper .rt .intro .hotline a:hover {
	color: #FABE00;
}
.product-detail .prod-display .wrapper .rt .intro .btn a {
  display: inline-block;
  /* font-size: clamp(14px, 1.1vw, 14px); */
	font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 0 0.909091em;
  line-height: 3.28;
  transition: all 0.5s;
	width: 14.286em;
}
.product-detail .prod-display .wrapper .rt .intro .btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
.product-detail .prod-display .wrapper .rt .intro .btn .contact {
  background-color: #FABE00;
}
.product-detail .prod-display .wrapper .rt .intro .btn .related {
  background-color: #333;
  margin-left: 0.727273em;
}
.product-detail .prod-display .wrapper .rt .info-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
	/* flex: 1; */
	background-color: rgba(231,236,240,0.85);
	width: 100%;
}
.product-detail .prod-display .wrapper .rt .info-wrapper h3 {
  font-size: clamp(16px, 1.1vw, 18px);
  /* line-height: 1.5625; */
  font-weight: 700;
  color: #333;
  margin-bottom: 0.3125em;
  padding: 10px 20px;
	border-bottom: 3px solid #fff;
	width: 100%;
}
.product-detail .prod-display .wrapper .rt .info-wrapper .brief {
  padding-left: 20px;
}
.product-detail .prod-display .wrapper .rt .info-wrapper .info {
  /* width: 45.73171%; */
	width: 100%;
  /* background-color: #fff; */
  padding: 10px 10px 20px;
	/* border-right: 10px solid #EFEFEF; */
}
.product-detail .prod-display .wrapper .rt .info-wrapper .feature {
  width: 53.0487805%;
  /* background-color: #fff; */
  padding: 10px 10px 20px;
}
.product-detail .prod-consult-msg {
  background: #EFEFEF;
  padding: 2.60416667% 0;
}
.product-detail .prod-consult-msg .container {
	background-color: #fff;
	padding: 2%;
}
.product-detail .prod-consult-msg .title {
  font-size: clamp(20px, 1.66667vw, 32px);
  color: #FABE00;
  font-weight: 500;
  padding: 0 10px;
}
.product-detail .prod-consult-msg .brief {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
  padding: 0 1.1111em;
  line-height: 1.6667;
  margin-bottom: 1.25%;
}
.product-detail .prod-consult-msg .brief p {
  position: relative;
  padding-left: 1.4444em;
}
.product-detail .prod-consult-msg .brief p::before {
  position: absolute;
  content: "·";
  left: 0;
}
.product-detail .prod-consult-msg form .form-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1.25%;
}
.product-detail .prod-consult-msg form .form-row .form-col {
  width: 49.35897436%;
}
.product-detail .prod-consult-msg form input,
.product-detail .prod-consult-msg form textarea {
  width: 100%;
  background-color: transparent;
  outline: none;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
  border: 1px solid #999;
}
.product-detail .prod-consult-msg form input::placeholder,
.product-detail .prod-consult-msg form textarea::placeholder {
  color: #666;
}
.product-detail .prod-consult-msg form input {
  padding: 0 1.1111em;
  height: 2.7777778em;
}
.product-detail .prod-consult-msg form textarea {
  padding: 0.77778em 1.1111em;
  height: 11.1111em;
}
.product-detail .prod-consult-msg form button {
  cursor: pointer;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 500;
  color: #fff;
  width: 100%;
  height: 2.22222em;
  background-color: #FABE00;
}
.product-detail .related-prod {
  padding: 3.125% 0 2.60416667%;
	background-color: #EFEFEF;
}
.product-detail .related-prod .container {
	padding: 2%;
	background-color: #fff;
}
.product-detail .related-prod .swiper .swiper-slide {
  padding: 10px;
}
.product-detail .related-prod .swiper .swiper-slide:hover .pic {
  border-color: #FABE00;
}
.product-detail .related-prod .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.product-detail .related-prod .swiper .swiper-slide:hover .title {
  color: #fff;
  background-color: #FABE00;
}
.product-detail .related-prod .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border: 1px solid transparent;
  transition: all 0.5s;
}
.product-detail .related-prod .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.product-detail .related-prod .swiper .title {
  margin-top: 10px;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
  text-align: center;
  padding: 0 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s;
}
.product-detail .related-prod .swiper .title a {
  color: inherit;
}
.inner-nav-banner {
  background-color: #fff;
}
.news-list {
  background: #EFEFEF;
  padding: 10px 0 2.60416667%;
}
.news-list .index-title {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 20px 0;
}
.news-list .list .block {
  background-color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  transition: all 0.5s;
}
.news-list .list .block .lt {
  width: 25%;
}
.news-list .list .block .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
}
.news-list .list .block .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.news-list .list .block .rt {
  width: 75%;
  padding: 1% 3.125%;
}
.news-list .list .block .rt h4 {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #333;
  font-weight: 700;
  line-height: 2.0833333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list .list .block .rt h4 a {
  color: inherit;
}
.news-list .list .block .rt h5 {
  font-size: clamp(12px, 1.2vw, 20px);
  color: #333;
  line-height: 2.5;
  margin: 0.5em 0;
}
.news-list .list .block .rt .more {
  display: inline-block;
  font-size: clamp(12px, 1vw, 16px);
  color: #fff;
  text-align: center;
  padding: 0 1em;
  min-width: 8.75em;
  line-height: 2.5;
  background-color: #FABE00;
  border: 1px solid transparent;
  transition: all 0.5s;
}
.news-list .list .block .rt .more:hover {
  border-color: #FABE00;
  color: #FABE00;
  background-color: #fff;
}
.news-list .list .block:hover {
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}
.news-list .list .block:hover .lt .pic img {
  scale: 1.05;
}
.news-detail {
  background: #EFEFEF;
  padding: 10px 0 2.60416667%;
}
.news-detail .container {
  max-width: 1200px;
}
.news-detail .news-title {
  text-align: center;
  margin-bottom: 2%;
  line-height: 2;
}
.news-detail .news-title h3 {
  font-size: clamp(18px, 1.3541667vw, 26px);
  color: #000;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.news-detail .news-title h5 {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #999;
  font-weight: 300;
}
.news-detail article {
  background-color: #fff;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
  border-radius: 1em;
  line-height: 2.8333;
  padding: 2% 3%;
  max-width: 1080px;
  margin: 0 auto;
}
.news-detail article img {
  margin: 1em 0;
}
.news-detail .article-tab {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
  margin-top: 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news-detail .article-tab .lt {
  width: 50%;
}
.news-detail .article-tab .lt p {
  margin-bottom: 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-detail .article-tab .lt a {
  color: inherit;
  transition: all 0.5s;
}
.news-detail .article-tab .lt a:hover {
  color: #FABE00;
}
.news-detail .article-tab .rt a {
  display: inline-block;
  width: 8.1111em;
  line-height: 2.5;
  border-radius: 1.25em;
  color: #fff;
  background-color: #FABE00;
  transition: all 0.5s;
  text-align: center;
  padding-left: 0.25em;
}
.news-detail .article-tab .rt a:hover {
  filter: hue-rotate(-30deg);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  padding-left: 0;
}
.dealer-join {
  margin: 3.125% 0 2.60416667%;
}
.dealer-join .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dealer-join .wrapper p {
  position: relative;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
  line-height: 1.6667;
  padding-left: 1.45833em;
  margin-bottom: .5em;
}
.dealer-join .wrapper p:last-of-type {
  margin-bottom: 0;
}
.dealer-join .wrapper p::before {
  content: "·";
  position: absolute;
  left: 0;
}
.dealer-join .wrapper .btn {
  font-size: clamp(12px, 1vw, 14px);
  margin-top: 2em;
}
.dealer-join .wrapper .btn a {
  display: inline-block;
  color: #FABE00;
  background-color: #fff;
  padding: 0 2.5em;
  border-radius: 4px;
  line-height: 3;
  border: 1px solid #FABE00;
  transition: all 0.5s;
}
.dealer-join .wrapper .btn a:last-child {
	color: #fff;
  background-color: #FABE00;
}
.dealer-join .wrapper .btn a:hover {
  color: #fff;
  font-weight: 700;
  background-color: #FABE00;
}
.dealer-join .wrapper .btn .online {
  margin-right: 0.727273em;
}
.dealer-join .wrapper .title h3 {
  display: inline-block;
  font-size: clamp(16px, 1.5625vw, 30px);
  color: #333;
  font-weight: 700;
  line-height: 1.6667;
  padding: 0.3333em 0;
  border-bottom: 2px solid #FABE00;
  margin-bottom: 0.6667em;
}
.dealer-join .wrapper .block {
  width: 48.75%;
  background-color: #F6F8FB;
  padding: 1.875%;
}
.franchise-process {
  margin-bottom: 1.041667%;
}
.franchise-process .title {
  font-size: clamp(20px, 1.5625vw, 30px);
  color: #333;
  font-weight: 700;
  text-align: center;
  line-height: 1.6667;
  margin-bottom: 3.125%;
}
.franchise-process .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.franchise-process .wrapper .block {
  width: 31.875%;
  background-color: #F6F8FB;
  margin-bottom: 1.875%;
  padding: 1.875%;
  font-size: clamp(12px, 1.25vw, 24px);
}
.franchise-process .wrapper .block .num {
  margin: 0.4em auto 0.8em;
  font-size: 2.08333em;
  color: #fff;
  font-weight: 700;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  line-height: 1;
  border-radius: 50%;
  background-color: #FABE00;
}
.franchise-process .wrapper .block .brief {
  color: #333;
  line-height: 2.08333;
  text-align: center;
  padding: 0 1.6667em;
  margin-bottom: 0.83333em;
}
.franchise-process .wrapper .block:hover .num {
  animation: swing 1s;
}
.video-list {
  background-color: #ECECEC;
  padding: 3.125% 0;
}
.video-list .index-title {
  margin-bottom: 20px;
}
.video-list .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 2.5%;
}
.video-list .wrapper .block {
  width: 48.68421%;
  padding: 10px;
  border: 1px solid #999;
  transition: all 0.5s;
  margin-bottom: 1.875%;
}
.video-list .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 43.75%;
}
.video-list .wrapper .block .pic video {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-list .wrapper .block .title {
  padding: 0 10px;
  margin: 10px 0;
  text-align: center;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 2;
  transition: all 0.5s;
}
.video-list .wrapper .block:hover {
  border-color: #FABE00;
}
.video-list .wrapper .block:hover .title {
  background-color: #FABE00;
  color: #fff;
}
.download-list {
  background-color: #ECECEC;
  padding: 3.125% 0;
}
.download-list .index-title {
  margin-bottom: 20px;
}
.download-list .intro {
  text-align: center;
  margin-bottom: 20px;
}
.download-list .intro h3 {
  font-size: clamp(18px, 1.5625vw, 30px);
  color: #333;
  font-weight: 700;
  line-height: 1.6667;
}
.download-list .intro h5 {
  font-size: clamp(12px, 1.25vw, 24px);
  color: #333;
  line-height: 2.083333;
}
.download-list .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 1.25%;
}
.download-list .wrapper .block {
  width: 32.051282%;
  border: 1px solid rgba(102, 102, 102, 0.2);
  transition: all 0.5s;
  margin-bottom: 1.2820513%;
  padding: 10px;
}
.download-list .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 41.666667%;
}
.download-list .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.download-list .wrapper .block .title {
  padding: 10px;
}
.download-list .wrapper .block .title h4 {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #666;
  line-height: 1.6667;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.download-list .wrapper .block .title h4 a {
  color: inherit;
}
.download-list .wrapper .block .title .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(12px, 1vw, 16px);
  color: #666;
  padding: 0 0.4375em 0 0.625em;
}
.download-list .wrapper .block .title .more a {
  color: inherit;
  transition: all 0.5s;
}
.download-list .wrapper .block .title .more a:hover {
  color: #FABE00 !important;
}
.download-list .wrapper .block .title .more a:last-of-type {
  color: #999;
}
.download-list .wrapper .block:hover {
  border-color: #FABE00;
}
.download-list .wrapper .block:hover .pic img {
  scale: 1.05;
}
.download-list .wrapper .block:hover .title h4 {
  color: #FABE00;
}
.about-us {
  margin: 1.5625% 0 2.60416667%;
}
.about-us .wrapper {
  padding: 1.875%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-us .wrapper .lt {
  width: 48.7012987%;
  padding: 0 2.66667%;
}
.about-us .wrapper .lt .title {
  font-size: clamp(18px, 1.5625vw, 30px);
  color: #333;
  font-weight: 700;
  text-align: center;
  line-height: 1.6667;
  margin-bottom: 0.6667em;
}
.about-us .wrapper .lt .brief {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #666;
  line-height: clamp(2em, 2.60416667vw, 2.777778em);
  text-indent: 2em;
}
.about-us .wrapper .lt .brief p {
  margin-bottom: 0.5556em;
}
.about-us .wrapper .rt {
  width: 50%;
  padding: 1.2987% 0;
  min-height: 250px;
}
.about-us .wrapper .rt iframe {
  width: 100%;
  height: 100%;
}
.contact-us {
  background-color: #ECECEC;
  padding: 2.6041667% 0 3.90625%;
}
.contact-us .index-title {
  margin-bottom: 5.9375%;
}
.contact-us .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-us .info h3 {
  font-size: clamp(18px, 1.77083333vw, 34px);
  color: #333;
  line-height: 1.470588;
  font-weight: 700;
  margin-bottom: 1.25%;
}
.contact-us .info h4 {
  font-size: clamp(18px, 1.77083333vw, 34px);
  color: #333;
  line-height: 1.470588;
}
.contact-us .info h5 {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #333;
  line-height: 2.08333;
  margin-bottom: 1.25%;
}
.contact-us .info h5 span {
  font-weight: 700;
  font-size: clamp(18px, 1.77083333vw, 34px);
  line-height: 1.470588;
}
.contact-us .info .ewm {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: clamp(18px, 1.77083333vw, 34px);
  gap: 0.882353em;
  margin-top: 1.25%;
}
.contact-us .info .ewm .block {
  width: 5.882353em;
}
.contact-us .info .ewm h4 {
  margin-top: 0.29411765em;
  font-size: clamp(14px, 1.77083333vw, 34px);
}
.online-msg {
  margin: 2.6041667% 0 3.90625%;
}
.online-msg .brief {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #333;
  margin-bottom: 2%;
}
.online-msg form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.online-msg form input,
.online-msg form textarea {
  outline: none;
  border: 1px solid #ddd;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
  margin-bottom: 1em;
}
.online-msg form input {
  width: 32%;
  padding: 0 1em;
  height: 2.5em;
}
.online-msg form textarea {
  width: 100%;
  padding: 0.6667em 1em;
  height: 10em;
}
.online-msg form button {
  display: block;
  margin: 0 auto;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  background-color: #FABE00;
  line-height: 2.5;
  padding: 0 2em;
  border-radius: 4px;
  transition: all 0.5s;
  cursor: pointer;
}
.online-msg form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  filter: hue-rotate(-30deg);
}
.talent-center {
  margin: 1.5625% 0 2.6041667%;
}
.talent-recruitment .wrapper .block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #EFEFEF;
  margin-bottom: 1.25%;
}
.talent-recruitment .wrapper .block .lt {
  width: 50%;
}
.talent-recruitment .wrapper .block .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
}
.talent-recruitment .wrapper .block .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.talent-recruitment .wrapper .block .rt {
  width: 50%;
  padding: 1.25% 3.125%;
}
.talent-recruitment .wrapper .block .rt .title {
  font-size: clamp(18px, 1.25vw, 24px);
  margin-bottom: 0.833333em;
}
.talent-recruitment .wrapper .block .rt .title h3 {
  display: inline-block;
  color: #333;
  font-weight: 700;
  line-height: 1.916667;
  border-bottom: 0.166667em solid #FABE00;
}
.talent-recruitment .wrapper .block .rt .brief {
  counter-reset: item-counter;
}
.talent-recruitment .wrapper .block .rt .brief p {
  counter-increment: item-counter;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #333;
  line-height: 2;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5em;
}
.talent-recruitment .wrapper .block .rt .brief p::before {
  content: counter(item-counter, decimal-leading-zero);
  display: block;
  font-size: inherit;
  color: #fff;
  font-weight: 700;
  min-width: 2.5em;
  line-height: 2.5;
  background-color: #FABE00;
  text-align: center;
  margin-right: 1em;
}
.talent-recruitment .wrapper .block .rt .btn {
  font-size: clamp(14px, 1.1vw, 18px);
  margin-top: 1.11111em;
}
.talent-recruitment .wrapper .block .rt .btn a {
  display: inline-block;
  color: #FABE00;
  line-height: 2.111111;
  padding: 0 1.2777778em;
  border: 1px solid #FABE00;
  transition: all 0.5s;
  background-color: #fff;
  margin-right: 0.8889em;
}
.talent-recruitment .wrapper .block .rt .btn a:last-child {
	color: #fff;
  background-color: #FABE00;
}
.talent-recruitment .wrapper .block .rt .btn a:hover {
  color: #fff;
  background-color: #FABE00;
	font-weight: 700;
}
.talent-recruitment .wrapper .block:nth-child(even) {
  flex-direction: row-reverse;
}
.interview-process {
  background-color: #ECECEC;
  padding: 3.125% 0 1.041667%;
}
.interview-process .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.interview-process .wrapper .block {
  width: 23.125%;
  padding: 10px;
  margin-bottom: 1.25%;
  text-align: center;
}
.interview-process .wrapper .block .num {
  font-size: clamp(20px, 2.6041667vw, 50px);
  font-weight: 700;
  color: #fff;
  width: 2em;
  line-height: 2;
  border-radius: 50%;
  background-color: #aaa;
  margin: 0 auto 0.8em;
}
.interview-process .wrapper .block h4 {
  color: #333;
  font-size: clamp(14px, 1.7708333vw, 34px);
  line-height: 1.470588;
}
.interview-process .wrapper .block h5 {
  font-size: clamp(12px, 1.25vw, 24px);
  color: #999;
  line-height: 1.6667;
  padding: 0.2083165em 0;
}
.interview-process .wrapper .block:hover .num {
  animation: rubberBand 1s;
}
.company-style {
  margin: 2.6041667% 0 20px;
}
.company-style .swiper .swiper-slide {
  padding: 10px;
  transition: all 0.5s;
  border: 1px solid transparent;
}
.company-style .swiper .swiper-slide:hover {
  border-color: #FABE00;
}
.company-style .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.company-style .swiper .swiper-slide:hover .title {
  background-color: #FABE00;
  color: #fff;
}
.company-style .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56%;
}
.company-style .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.company-style .swiper .title {
  color: #333;
  font-size: clamp(14px, 1.25vw, 24px);
  text-align: center;
  line-height: 2.083333;
  padding: 0 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s;
  margin-top: 10px;
}
.recruitment {
  margin: 1.5625% 0 2.60416667%;
}
.recruitment .title {
  text-align: center;
}
.recruitment .title h3 {
  display: inline-block;
  font-size: clamp(18px, 1.5625vw, 30px);
  color: #FABE00;
  font-weight: 700;
  line-height: 2.866667;
  border-bottom: 0.133333em solid #FABE00;
  margin-bottom: 20px;
}
.recruitment .title form {
  display: flex;
  justify-content: center;
}
.recruitment .title form input {
  outline: none;
  border: 1px solid #999;
  border-right: 0;
  font-size: clamp(14px, 1.2vw, 20px);
  height: 3em;
  padding: 0 1em;
}
.recruitment .title form button {
  font-size: clamp(14px, 1.3541667vw, 26px);
  width: 5.3846154em;
  color: #fff;
  background-color: #FABE00;
  cursor: pointer;
}
.recruitment .recruit-list ul {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(153, 153, 153, 0.5);
  transition: all 0.5s;
}
.recruitment .recruit-list ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(10px, 1.25vw, 24px);
  color: #000;
  line-height: 1.6667;
  min-height: 3.75em;
  padding: 5px;
}
.recruitment .recruit-list ul li span {
  display: inline-block;
  color: #666;
  line-height: 1.916667em;
  border-bottom: 0.1666667em solid transparent;
  transition: all 0.5s;
}
.recruitment .recruit-list ul li:nth-child(1) {
  width: 19.5%;
}
.recruitment .recruit-list ul li:nth-child(2) {
  width: 19.5%;
}
.recruitment .recruit-list ul li:nth-child(3) {
  width: 19.5%;
}
.recruitment .recruit-list ul li:nth-child(4) {
  width: 19.5%;
}
.recruitment .recruit-list ul li:nth-child(5) {
  width: 19.5%;
}
.recruitment .recruit-list .wrapper .block ul {
  cursor: pointer;
}
.recruitment .recruit-list .wrapper .block ul li {
  font-size: clamp(10px, 1.25vw, 24px);
	color: #666;
}
.recruitment .recruit-list .wrapper .block ul:hover li span {
  color: #FABE00;
}
.recruitment .recruit-list .content {
  display: none;
  padding: 1.25% 3.125%;
  background-color: #EFEFEF;
}
.recruitment .recruit-list .content article {
  line-height: 2;
  counter-reset: item-counter;
  font-size: clamp(10px, 1.2vw, 20px);
}
.recruitment .recruit-list .content article h3 {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #333;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.recruitment .recruit-list .content article p {
  counter-increment: item-counter;
  color: #333;
  line-height: 2;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5em;
}
.recruitment .recruit-list .content article p::before {
  content: counter(item-counter, decimal-leading-zero);
  display: block;
  font-size: inherit;
  color: #fff;
  font-weight: 700;
  min-width: 2.5em;
  line-height: 2.5;
  background-color: #FABE00;
  text-align: center;
  margin-right: 1em;
}
.recruitment .recruit-list .content .btn {
  font-size: clamp(14px, 1.1vw, 18px);
  margin-top: 1.11111em;
}
.recruitment .recruit-list .content .btn a {
  display: inline-block;
  color: #FABE00;
  line-height: 2.111111;
  padding: 0 1.2777778em;
  border: 1px solid #FABE00;
  transition: all 0.5s;
  background-color: #fff;
  margin-right: 0.8889em;
}
.recruitment .recruit-list .content .btn a:hover {
  color: #fff;
  background-color: #FABE00;
}
.recruitment .recruit-list .active ul {
  background-color: #EFEFEF;
  border-bottom-color: transparent;
}
.recruitment .recruit-list .active ul li span {
  font-weight: 700;
  border-bottom-color: #FABE00;
}
/* 新增功能 */
.filter-tab {
	background-color: #EFEFEF;
	padding: 2% 0;
}
.filter-tab .container {
	padding: 1.5%;
	background-color: #fff;
}
.filter-tab .row {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2px;
}
.filter-tab .row .name {
	display: inline-block;
	font-size: clamp(14px, 1.1vw, 18px);
	color: #FABE00;
	background-color: rgba(250, 190, 0, .05);
	font-weight: 700;
	text-align: center;
	width: 9.44444em;
	line-height: 2.2222;
	margin-right: 1em;
}
.filter-tab .row ul {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: .75em;
	font-size: clamp(12px, 1vw, 14px);
	margin-top: 0.2em;
}
.filter-tab .row ul li {
	display: inline-block;
	padding: 0 1em;
	line-height: 2.2222;
	border: 1px solid #dee2e6;
	color: #333;
}
.filter-tab .row ul li a {
	color: inherit;
	transition: all .5s;
}
.filter-tab .row ul li a:hover {
	color: #FABE00;
}
.filter-tab .row ul .active {
	border-color: #FABE00;
	color: #FABE00;
	font-weight: 700;
}
.filter-tab .checked .name {
	background-color: #FABE00;
	color: #fff;
	line-height: 2.7778;
}
.filter-tab .checked ul li a {
	margin-left: 0.5em;
}
.filter-tab .checked > a {
	margin-left: 0.75em;
	color: #333;
	transition: all .5s;
}
.filter-tab .checked > a:hover {
	color: #FABE00;
}
.wow {
	visibility: hidden;
}



