@font-face {
  font-family: 'Poppins';
  src: url(../fonts/Poppins-Regular.ttf);
}
* {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  outline: none;
  font-family: "Poppins", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", "PingFang SC", "Microsoft YaHei", sans-serif;
}

*, *::after, *::before {
  box-sizing: border-box;
}

:root {
  --color: #FDD000;
}

img {
  object-fit: cover;
  vertical-align: middle;
}

img:not(.none) {
  max-width: 100%;
  max-height: 100%;
}

textarea {
  resize: none;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
}

.bezier .swiper-wrapper, .div_bezier {
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1) !important;
}

table {
  border-collapse: collapse;
}

::-webkit-scrollbar {
  display: none;
  width: 0;
}

[data-lenis-prevent] {
  padding: 0 20px 0 0;
}

[data-lenis-prevent]::-webkit-scrollbar {
  width: 4px;
  display: block;
}

[data-lenis-prevent]::-webkit-scrollbar-thumb {
  background: #666;
}

[data-lenis-prevent]::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

._scroll_y {
  position: fixed;
  top: 0;
  right: 3px;
  width: 6px;
  height: 100vh;
  z-index: 9999;
  border-radius: 10px;
}

._scroll_y div {
  width: 100%;
  height: 0;
  border-radius: 10px;
  background: black;
  opacity: 0;
  position: relative;
  transition: opacity 0.3s ease;
  cursor: grab;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0.4rem;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

[data-wheel]::-webkit-scrollbar {
  width: 7px;
}

[data-wheel]::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.4rem;
}

[data-wheel]::-webkit-scrollbar-track {
  background-color: transparent;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

section {
  overflow: hidden;
}

section.unset {
  overflow: unset;
}

.lenis_scroll {
  height: 250px;
  overflow: hidden;
  overflow-y: auto;
}

.lenis_scroll::-webkit-scrollbar-thumb {
  background: var(--color);
}

.lenis_scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.lenis_scroll::-webkit-scrollbar {
  width: 2px !important;
  display: block;
}

.common_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.parallax {
  width: 100%;
  height: 100%;
}

@keyframes lineHover {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  50.001% {
    transform-origin: left center;
  }
  50.002% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 0 60px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .6s ease;
}
.header.on {
  background: #fff;
}
.header.on .nav .item > a {
  color: #1A1A1A;
}
.header.on .logo img:first-child {
  opacity: 0;
}
.header.on .logo img:nth-child(2) {
  opacity: 1;
}
.header.on .r .search {
  border-color: #D8D8D8;
}
.header.on .r .search .iconfont {
  color: #57585A;
}
.header.on .r .mode {
  background: #F8F8F8;
}
.header .l {
  width: 475px;
  height: 100%;
}
.header .nav {
  display: flex;
  height: 100%;
  gap: 80px;
}
.header .nav .item {
  height: 100%;
}
.header .nav .item:hover > a, .header .nav .item.on > a {
  color: var(--color) !important;
}
.header .nav .item > a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  transition: .6s ease;
}
.header .logo {
  width: 205px;
  height: 32px;
  position: relative;
  display: block;
}
.header .logo img {
  object-fit: contain;
  width: 100%;
  transition: .6s ease;
}
.header .logo img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.header .r {
  width: 475px;
  justify-content: flex-end;
  height: 100%;
  display: flex;
  align-items: center;
}
.header .r .search {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px 0 49px;
  transition: .6s ease;
  cursor: pointer;
}
.header .r .search:hover {
  background: var(--color) !important;
  border-color: var(--color) !important;
}
.header .r .search:hover .iconfont {
  color: #fff;
}
.header .r .search .iconfont {
  font-size: 19px;
  color: #fff;
  transition: .6s ease;
}
.header .r .mode {
  width: fit-content;
  height: 38px;
  border-radius: 38px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 6px 0 13px;
  cursor: pointer;
  transition: .6s ease;
}
.header .r .mode p {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  transition: .6s ease;
  position: relative;
}
.header .r .mode p span:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .6s ease;
}
.header .r .mode .circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color);
  transition: .6s ease;
  position: relative;
}
.header .r .mode .circle .iconfont {
  font-size: 20px;
  color: #3E3A39;
  transition: .6s ease;
}
.header .r .mode .circle .iconfont:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

header.active .header .nav .item > a {
  color: #1A1A1A;
}
header.active .header .logo img:first-child {
  opacity: 0;
}
header.active .header .logo img:nth-child(2) {
  opacity: 1;
}
header.active .header .r .search {
  border-color: #D8D8D8;
}
header.active .header .r .search .iconfont {
  color: #57585A;
}
header.active .header .r .mode {
  background: #F8F8F8;
}

.footer {
  border-radius: 20px 20px 0 0;
  background: #333;
  padding: 70px 0 0;
}
.footer .wrap {
  width: 1800px;
  margin: auto;
}
.footer .wrap .up {
  display: flex;
  justify-content: space-between;
  background: #333;
  position: relative;
  z-index: 5;
  padding: 0 0 25px;
}
.footer .wrap .up .foo_nav a {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  display: block;
  transition: .6s ease;
  position: relative;
  z-index: 1;
  width: fit-content;
}
.footer .wrap .up .foo_nav a:hover {
  color: var(--color);
}
.footer .wrap .up .foo_nav a:hover:after {
  transform: scaleX(1);
}
.footer .wrap .up .foo_nav a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  background: #FDD000;
  left: 0;
  transform: scaleX(0);
  transition: .4s ease;
  transform-origin: left;
}
.footer .wrap .up .foo_nav a:hover {
  color: #FDD000;
}
.footer .wrap .up .foo_nav a:not(:last-child) {
  margin: 0 0 15px;
}
.footer .wrap .up .r {
  display: flex;
  align-items: start;
  gap: 280px;
}
.footer .wrap .up .r .message {
  width: 397px;
}
.footer .wrap .up .r .message .list:not(:last-child) {
  margin: 0 0 28px;
}
.footer .wrap .up .r .message .list p {
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer .wrap .up .r .message .list .a1 {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 144.444%;
  /* 144.444% */
  margin: 7px 0 0 0;
  transition: .6s ease;
}
.footer .wrap .up .r .message .list .a1:hover {
  color: var(--color);
}
.footer .wrap .up .r .media {
  display: flex;
  gap: 5px;
}
.footer .wrap .up .r .media .list {
  width: 41px;
  height: 41px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s ease;
  cursor: pointer;
}
.footer .wrap .up .r .media .list:hover {
  background: var(--color);
}
.footer .wrap .up .r .media .list svg {
  width: 20px;
}
.footer .wrap .bottom {
  position: sticky;
  bottom: 0;
  padding-bottom: 30px;
  margin: 100px 0 0 0;
}
.footer .wrap .bottom .foo_logo {
  width: 100%;
}
.footer .wrap .bottom .foo_logo img {
  width: 100%;
}
.footer .wrap .bottom .links {
  margin: 25px 0 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .wrap .bottom .links p, .footer .wrap .bottom .links a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer .wrap .bottom .links a {
  transition: .6s ease;
}
.footer .wrap .bottom .links a:hover {
  color: var(--color);
}

.parallaxImg {
  overflow: hidden;
}

.parallaxImg img {
  max-height: unset;
}

.common_paging {
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.common_paging a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #F8F9FA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  transition: .6s ease;
}
.common_paging a.next, .common_paging a.prev {
  width: fit-content;
  padding: 0 24px;
}
.common_paging a.on, .common_paging a:hover {
  background: var(--color);
  color: #fff;
}
.common_paging a.point {
  background: transparent;
  color: #000;
}

[animatetext] {
  opacity: 0;
}
[animatetext].show {
  opacity: 1;
}

.text-split div {
  display: inline-block;
  opacity: .2;
}

.common_banner {
  width: 100%;
  height: 44.2708333333vw;
  position: relative;
  z-index: 1;
}
.common_banner .parallax {
  display: flex;
  align-items: center;
  justify-content: center;
}
.common_banner .parallax .text {
  color: #FFF;
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: 120%;
}

.common_custom {
  padding: 100px 0;
}
.common_custom .wrap {
  width: 1800px;
  border-radius: 30px;
  background: #F8F8F8;
  padding: 50px 38px 62px 97px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.common_custom .wrap .l {
  width: 677px;
  margin: 80px 0 0 0;
}
.common_custom .wrap .l .title {
  color: #1A1A1A;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 116.667%;
}
.common_custom .wrap .l .line {
  width: 52px;
  height: 4px;
  background: #FDD000;
  margin: 45px 0 24px;
}
.common_custom .wrap .l .text {
  color: #888;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  /* 200% */
}
.common_custom .wrap .l .flex {
  margin: 105px 0 0 0;
}
.common_custom .wrap .l .flex .list {
  display: flex;
  align-items: center;
  gap: 19px;
}
.common_custom .wrap .l .flex .list:not(:last-child) {
  margin: 0 0 20px;
}
.common_custom .wrap .l .flex .list .color {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #FDD000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common_custom .wrap .l .flex .list .color img {
  object-fit: contain;
  width: 23px;
}
.common_custom .wrap .l .flex .list p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
.common_custom .wrap .r {
  width: 840px;
  border-radius: 28px;
  background: #FFF;
  padding: 83px 51px 98px 51px;
}
.common_custom .wrap .r .headline .p1 {
  color: #1A1A1A;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  margin: 0 0 10px;
}
.common_custom .wrap .r .headline .p2 {
  color: #BABABA;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.common_custom .wrap .r .form {
  margin: 40px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px 0;
}
.common_custom .wrap .r .form .list {
  width: 352px;
}
.common_custom .wrap .r .form .list.all {
  width: 100%;
}
.common_custom .wrap .r .form .list .txt {
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin: 0 0 10px;
}
.common_custom .wrap .r .form .list .txt span {
  color: #E20000;
}
.common_custom .wrap .r .form .list input, .common_custom .wrap .r .form .list textarea {
  width: 100%;
  height: 66px;
  border-radius: 5px;
  border: 1px solid #EBEBEB;
  background: #FFF;
  padding: 0 20px;
  font-size: 16px;
  transition: .3s ease;
}
.common_custom .wrap .r .form .list input:focus, .common_custom .wrap .r .form .list textarea:focus {
  border-color: var(--color);
}
.common_custom .wrap .r .form .list textarea {
  height: 162px;
  padding: 20px;
}
.common_custom .wrap .r .form .send {
  border-radius: 10px;
  background: #FDD000;
  height: 42px;
  width: fit-content;
  padding: 0 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.common_more {
  display: flex;
  gap: 5px;
}
.common_more.center {
  justify-content: center;
}
.common_more:hover .jt {
  background: var(--color);
}
.common_more .read {
  width: fit-content;
  height: 42px;
  border-radius: 10px;
  background: #FDD000;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common_more .read p {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.common_more .jt {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .6s ease;
}
.common_more .jt img {
  width: 19px;
}

.fixed_search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 998;
  pointer-events: none;
}
.fixed_search.on {
  pointer-events: auto;
}
.fixed_search.on .black {
  opacity: 1;
}
.fixed_search.on .content {
  clip-path: inset(0 0 0 0);
}
.fixed_search.on .content .wrap .close {
  opacity: 1;
  transition-delay: .8s;
}
.fixed_search.on .content .wrap .enter_term, .fixed_search.on .content .wrap .headline, .fixed_search.on .content .wrap .grid {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .8s;
}
.fixed_search.on .content .wrap .headline {
  transition-delay: .9s;
}
.fixed_search.on .content .wrap .grid {
  transition-delay: 1s;
}
.fixed_search .content {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 2;
  padding: 180px 0 70px;
  transition: cubic-bezier(0.77, 0, 0.175, 1) 1s;
  clip-path: inset(0 0 100%);
  margin: 0;
}
.fixed_search .content .wrap {
  width: 800px;
  margin: auto;
  position: relative;
}
.fixed_search .content .wrap .close {
  position: absolute;
  right: -226px;
  top: -8px;
  z-index: 1;
  width: 13px;
  height: 13px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s ,transform .6s .3s;
}
.fixed_search .content .wrap .close:hover svg {
  transform: rotate(90deg);
}
.fixed_search .content .wrap .close svg {
  width: 100%;
  height: 100%;
  transition: .6s ease;
}
.fixed_search .content .wrap .enter_term {
  position: relative;
  width: 100%;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .3s ,transform .6s .3s;
}
.fixed_search .content .wrap .enter_term .iconfont {
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 22px;
  color: #1a1a1a;
  cursor: pointer;
  background: transparent;
}
.fixed_search .content .wrap .enter_term input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #333;
  padding: 0 48px 14px 48px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.fixed_search .content .wrap .enter_term input::placeholder {
  color: #CDCDCD;
}
.fixed_search .content .wrap .headline {
  color: #1A1A1A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 36px 0 42px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .3s ,transform .6s .3s;
}
.fixed_search .content .wrap .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px 54px;
  margin: 40px 0 0 0;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .3s ,transform .6s .3s;
}
.fixed_search .content .wrap .grid .item:hover .img img {
  transform: scale(1.05);
}
.fixed_search .content .wrap .grid .item:hover .text {
  color: var(--color);
}
.fixed_search .content .wrap .grid .item .img {
  width: 100%;
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixed_search .content .wrap .grid .item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: .6s ease;
}
.fixed_search .content .wrap .grid .item .text {
  text-align: center;
  margin: 34px 0 0 0;
  color: #CECECE;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  transition: .6s ease;
}
.fixed_search .black {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: .6s ease;
}

.fixed_search {
  display: none;
}

.fixed_search .content .wrap .grid {
  height: 50vh;
  overflow: hidden;
  overflow-y: scroll;
}

body.dark {
  background: #000;
}
body.dark .header .r .mode {
  background: #333;
}
body.dark .header .r .mode p {
  color: #fff;
  transform: translateX(30px);
}
body.dark .header .r .mode p span:first-child {
  opacity: 0;
}
body.dark .header .r .mode p span:nth-child(2) {
  opacity: 1;
}
body.dark .header .r .mode .iconfont:first-child {
  opacity: 0;
}
body.dark .header .r .mode .iconfont:nth-child(2) {
  opacity: 1;
}
body.dark .header.on {
  background: #000;
}
body.dark header.active .header {
  background: #000;
}
body.dark .header:after {
  background: rgba(255, 255, 255, 0.2);
}
body.dark header.active .header .nav .item > a {
  color: #fff;
}
body.dark header.active .header .r .search .iconfont {
  color: #fff;
}
body.dark header.active .header .logo img:nth-child(1) {
  opacity: 1;
}
body.dark header.active .header .logo img:nth-child(2) {
  opacity: 0;
}
body.dark header.active .header .r .search:hover {
  border-color: var(--color);
}
body.dark .header.on .nav .item > a {
  color: #fff;
}
body.dark .header.on .logo img:nth-child(2) {
  opacity: 0;
}
body.dark .header.on .logo img:nth-child(1) {
  opacity: 1;
}
body.dark .header.on .r .search .iconfont {
  color: #fff;
}
body.dark .header .r .mode .circle {
  transform: translateX(-48px);
}
body.dark .index1 {
  background: #000;
}
body.dark .index1 .wrap .message .text .p1 {
  color: #fff;
}
body.dark .index1 .wrap .content .item {
  background: #161616;
}
body.dark .index1 .wrap .content .item .text span {
  color: #fff;
}
body.dark .index1 .wrap .content .item .text p {
  color: #fff;
}
body.dark .index2 {
  background: #000;
}
body.dark .index2 .wrap .title,
body.dark .track8 .wrap .title {
  color: #fff;
}
body.dark .index2 .wrap .content .item,
body.dark .track8 .wrap .content .item {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
body.dark .index4 .wrap .content .item:first-child:before {
  background: rgba(255, 255, 255, 0.2);
}
body.dark .index4 .wrap .content .item:after {
  background: rgba(255, 255, 255, 0.2);
}
body.dark .index2 .wrap .content .item .l .p1,
body.dark .index2 .wrap .content .item .l .p2,
body.dark .track8 .wrap .content .item .l .p1,
body.dark .track8 .wrap .content .item .l .p2,
body.dark .track8 .wrap .content .item .l .p2 b,
body.dark .index4 .wrap .title,
body.dark .index4 .wrap .up .item .text .p2,
body.dark .index4 .wrap .content .item .l .p1,
body.dark .index4 .wrap .content .item .l .time,
body.dark .about1 .wrap .up .l .p1,
body.dark .about1 .wrap .content .item .text span,
body.dark .about1 .wrap .content .item .text p,
body.dark .about2 .wrap .content .item .text,
body.dark .about3 .wrap .title,
body.dark .about3 .wrap .content .awardsSwiper .swiper-slide .grid .list .pick,
body.dark .about4 .wrap .title,
body.dark .about4 .wrap .content .l .yearSwiper .swiper-slide .list,
body.dark .about4 .wrap .content .center .text .text_list .p1,
body.dark .about6 .wrap .r .item.on .show p,
body.dark .common_paging a,
body.dark .proInfo1 .wrap .right .title .p1,
body.dark .proInfo1 .wrap .right .title .p2,
body.dark .proInfo1 .wrap .right .table table tr td,
body.dark .proInfo2 .wrap .table table tr td,
body.dark .brand .wrap a,
body.dark .brand .wrap span,
body.dark .customization1 .wrap .content .item .name,
body.dark .common_custom .wrap .l .title,
body.dark .common_custom .wrap .l .flex .list p,
body.dark .common_custom .wrap .r .headline .p1,
body.dark .common_custom .wrap .r .form .list .txt,
body.dark .customizationInfo1 .wrap .title,
body.dark .customizationInfo1 .wrap .up .item p,
body.dark .customizationInfo1 .wrap .content .r .headline,
body.dark .service1 .wrap .l .title .p1,
body.dark .service1 .wrap .l .message .tel p,
body.dark .service1 .wrap .l .message .a1,
body.dark .service2 .wrap .l .frequently .text,
body.dark .service2 .wrap .r .item .q p,
body.dark .news2 .wrap .content .item .r .center .p1,
body.dark .news2 .wrap .content .item .r .center .time p,
body.dark .newsInfo1 .wrap .title .p1,
body.dark .newsInfo1 .wrap .title .time p,
body.dark .newsInfo1 .wrap .content p,
body.dark .contact2 .wrap .up .item .text .a2,
body.dark .contact2 .wrap .up .item .text .a1,
body.dark .contact2 .wrap .content .l .headline,
body.dark .contact2 .wrap .content .form .list .pick,
body.dark .smart_lighting2 .wrap .up .p1,
body.dark .smart_lighting2 .wrap .up .p2,
body.dark .smart_lighting2 .wrap .content .l .energy .p1,
body.dark .smart_lighting2 .wrap .content .l .high .text,
body.dark .smart_lighting2 .wrap .content .r .display .item2 .dis .p1,
body.dark .smart_lighting2 .wrap .content .r .display .item2 .pick,
body.dark .smart_lighting2 .wrap .content .r .big .p1,
body.dark .smart_lighting3 .wrap .title,
body.dark .smart_lighting4 .wrap .p1,
body.dark .smart_lighting4 .wrap .p2,
body.dark .smart_lighting8 .wrap .l .title,
body.dark .smart_lighting9 .wrap .content .item .title,
body.dark .smart_lighting9 .wrap .content .item .jump .text,
body.dark .smart_lighting10 .wrap .title,
body.dark .smart_lighting10 .wrap .content .HardwareSwiper .swiper-slide .item .text .p1,
body.dark .smart_lighting10 .wrap .content2 .admin .text .p1,
body.dark .smart_lighting10 .wrap .content3 .matter .message .p1,
body.dark .smart_lighting10 .wrap .content3 .matter .message .flex .list p,
body.dark .smart_lighting10 .wrap .content3 .matter .message .other p,
body.dark .integration2 .wrap .title,
body.dark .integration3 .wrap .l .top .item .text,
body.dark .integration3 .wrap .l .top .item .other span,
body.dark .integration3 .wrap .l .top .item .other .pick,
body.dark .integration3 .wrap .l .big .joke .p2,
body.dark .integration3 .wrap .r .p1,
body.dark .integration4 .wrap .content .fiveSwiper .swiper-slide .item .dis .p1,
body.dark .integration5 .wrap .title,
body.dark .integration5 .wrap .content .position .point .hide p,
body.dark .integration6 .wrap .title,
body.dark .integration6 .wrap .content .item .img .power p,
body.dark .integration6 .wrap .content .item .text .p1,
body.dark .integration6 .wrap .content .item .text .p2,
body.dark .integration7 .fix .wrap .title .p1,
body.dark .integration7 .fix .wrap .title .p2,
body.dark .integration7 .fix .wrap .position .item .text,
body.dark .integration8 .fix .content .matter .joke .r .p1,
body.dark .about1 .wrap .up .l .p2
{
  color: #fff;
}
body.dark .about2 .wrap .content,
body.dark .common_paging a,
body.dark .proInfo1 .wrap .right .table table tr td,
body.dark .proInfo2 .wrap .up .item .color,
body.dark .customization1 .wrap .content .item,
body.dark .common_custom .wrap .r,
body.dark .customizationInfo1 .wrap .up .item,
body.dark .customizationInfo1 .wrap .content,
body.dark .service1 .wrap,
body.dark .contact2 .wrap .up .item,
body.dark .smart_lighting2 .wrap .content .l .energy,
body.dark .smart_lighting2 .wrap .content .l .high,
body.dark .smart_lighting2 .wrap .content .r .display .item2,
body.dark .smart_lighting2 .wrap .content .r .big,
body.dark .smart_lighting4,
body.dark .smart_lighting10 .wrap .content .HardwareSwiper .swiper-slide .item,
body.dark .smart_lighting10 .wrap .content2 .admin,
body.dark .integration3 .wrap .l .top .item,
body.dark .integration3 .wrap .l .big,
body.dark .integration3 .wrap .r,
body.dark .integration4 .wrap .content .fiveSwiper .swiper-slide .item,
body.dark .integration6 .wrap .content .item .img .power,
body.dark .integration7 .fix .wrap .position .item,
body.dark .integration8 .fix .content .matter {
  background: #161616;
}
body.dark .integration8 .fix .content .matter .joke .img img {
  mix-blend-mode: unset;
}
body.dark .integration7 {
  background: #000;
}
body.dark .integration3 .wrap .r .quan {
  opacity: 0.5;
}
body.dark .integration4 .wrap .swiper-scrollbar .swiper-scrollbar-drag,
body.dark .integration4 .wrap .swiper-scrollbar {
  box-shadow: unset;
}
body.dark .integration4 {
  background: linear-gradient(180deg, #FDD000 0%, #000 100%);
}
body.dark .news2 .wrap .content .item .r .text,
body.dark .integration8 .fix .content .matter .joke .r .p2 {
  color: rgba(255, 255, 255, 0.5);
}
body.dark .news2 .wrap .content .item .r .center .more img {
  filter: invert(1);
}
body.dark .customizationInfo1 .wrap .content .big,
body.dark .customizationInfo1 .wrap .content .r,
body.dark .contact2 .wrap .up .item .icon {
  background: #333;
}
body.dark .contact2 .wrap .content .form .list input, body.dark .contact2 .wrap .content .form .list textarea {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1C1C1C;
  color: #fff;
}
body.dark .contact2 .wrap .content .form .list input:focus, body.dark .contact2 .wrap .content .form .list textarea:focus {
  border-color: var(--color);
}
body.dark .smart_lighting9 .wrap .content .item .jump {
  background: #3d3d3d;
}
body.dark .news2 .wrap .content .item {
  border-color: rgba(255, 255, 255, 0.2);
}
body.dark .customizationInfo1 .wrap .content .r .scroll .jump .list {
  background: #333;
}
body.dark .news2 .wrap .cut .list {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
body.dark .news2 .wrap .cut .list.on {
  color: #000;
}
body.dark .service2 .line {
  background: rgba(255, 255, 255, 0.2);
}
body.dark .proInfo2,
body.dark .service1,
body.dark .smart_lighting9 {
  background: #000;
}
body.dark .customizationInfo1 .wrap .up .item .icon {
  filter: invert(1);
}
body.dark .customizationInfo1 .wrap .up .item.on .icon {
  filter: invert(1);
}
body.dark .customizationInfo1 .wrap .content .r .scroll .jump .list {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
body.dark .customizationInfo1 .wrap .content .r .scroll .jump .list.on {
  border-color: var(--color);
}
body.dark .common_custom .wrap .r .form .list input, body.dark .common_custom .wrap .r .form .list textarea {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1C1C1C;
  color: #fff;
}
body.dark .common_custom .wrap .r .form .list input:focus, body.dark .common_custom .wrap .r .form .list textarea:focus {
  border-color: var(--color);
}
body.dark .customizationInfo1 .wrap .up .item.on {
  background: var(--color);
}
body.dark .common_custom .wrap {
  background: #1c1c1c;
}
body.dark .brand .wrap a:hover {
  color: var(--color);
}
body.dark .proInfo2 .wrap .up .item .color .img1 img {
  filter: invert(1);
}
body.dark .proInfo2 .wrap .table table tr td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
body.dark .proInfo2 .wrap .table table tr:hover {
  background: #373737;
}
body.dark .proInfo2 .wrap .table table tr:first-child td {
  color: #333;
}
body.dark .proInfo1 .wrap .right .table table tr td:first-child {
  background: var(--color);
  color: #333;
}
body.dark .about4 .wrap .content .l .yearSwiper .swiper-slide.swiper-slide-active .list {
  color: var(--color);
}
body.dark .banner .swiper .swiper-slide .common_bg {
  filter: brightness(0.5);
}
body.dark .about1 .wrap .content .item {
  background: #161616;
}
body.dark .about1 .wrap .up .message::-webkit-scrollbar-thumb {
  background: #666;
}
body.dark .about2 {
  background: linear-gradient(180deg, #FDD000 0%, #000 100%);
}
body.dark .about4 .wrap .content {
  background: #161616;
}
body.dark .about4 .wrap .content .l .line {
  background: linear-gradient(180deg, #161616 0%, #FDD000 53.37%, #161616 100%);
}
body.dark .common_paging a.on, body.dark .common_paging a:hover {
  background: var(--color);
  color: #fff;
}
body.dark .common_paging a.point {
  background: transparent;
  color: #fff;
}
body.dark .index1 .wrap .title {
  color: #fff;
}
body.dark .track2 .wrap .title,
body.dark .track7 .wrap .side .headline {
  color: #fff;
}
body.dark .track5,
body.dark .track7,
body.dark .track7 .wrap .side .flex .list {
  background: #000;
}
body.dark .track7 .wrap .side .flex .list {
  border-color: rgba(255, 255, 255, 0.2);
}
body.dark .track5 .fix .wrap .title,
body.dark .track5 .fix .position_content .item .pick,
body.dark .track7 .wrap .r .matter .grid .item .up .text .p1 {
  color: #fff;
}
body.dark .track5 .fix .position_content .item,
body.dark .track6 .wrap .content .multSwiper .swiper-slide .item,
body.dark .track7 .wrap .side,
body.dark .track7 .wrap .r .matter .grid .item {
  background: #161616;
}
body.dark .track7 .wrap .side .flex .list .pick {
  color: rgba(255, 255, 255, 0.5);
}
body.dark .track7 .wrap .side .flex .list img {
  filter: brightness(0) invert(1);
}
body.dark .track7 .wrap .side .flex .list.on {
  background: var(--color);
}
body.dark .track7 .wrap .side .flex .list.on .pick {
  color: #1A1A1A;
}
body.dark .track7 .wrap .r .matter .grid .item .img img {
  filter: invert(1);
}
body.dark .track7 .wrap .r .matter .grid .item .up .text .p2 {
  color: rgba(255, 255, 255, 0.5);
}

body.dark .search1 .enter_term input{
  background: transparent;
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
body.dark .search1 .enter_term .iconfont{
  color: #fff;
}

body.dark .proInfo2 .wrap .up .item .color .text p{
  color: #fff;
}

body.dark .proInfo2 .wrap .up .item .color .text p:after{
  background: #fff;
}

body.dark .smart_lighting9 .wrap .content .item .jump .icon img{
  filter: brightness(0) invert(1);
}
body.dark .integration2 .wrap .content .icon svg path{
  fill: #fff;
}
body.dark .integration3 .wrap .l .big .joke .p3{
  color: rgba(255, 255, 255, 0.5);
}

body.dark .track2 .bg_move .textImg{
  filter: brightness(0) invert(1);
}

body.dark .track2 .wrap .sj_img.white{
  display: none!important;
}


@media screen and (max-width: 1919px) {
  [data-lenis-prevent]{
    padding: 0px 1.0416666667vw 0px 0px;
  }
  [data-lenis-prevent]::-webkit-scrollbar{
    width: 0.2083333333vw;
  }
  ._scroll_y{
    right: 0.15625vw;
    width: 0.3125vw;
    border-radius: 0.5208333333vw;
  }
  ._scroll_y div{
    border-radius: 0.5208333333vw;
  }
  [data-wheel]::-webkit-scrollbar{
    width: 0.3645833333vw;
  }
  .lenis_scroll{
    height: 13.0208333333vw;
  }
  .lenis_scroll::-webkit-scrollbar{
    width: 0.1041666667vw !important;
  }
  .header{
    height: 3.6458333333vw;
    padding: 0px 3.125vw;
  }
  .header .l{
    width: 24.7395833333vw;
  }
  .header .nav{
    gap: 4.1666666667vw;
  }
  .header .nav .item > a{
    font-size: 0.9375vw;
  }
  .header .logo{
    width: 10.6770833333vw;
    height: 1.6666666667vw;
  }
  .header .r{
    width: 24.7395833333vw;
  }
  .header .r .search{
    width: 1.9791666667vw;
    height: 1.9791666667vw;
    margin: 0px 0.4166666667vw 0px 2.5520833333vw;
  }
  .header .r .search .iconfont{
    font-size: 0.9895833333vw;
  }
  .header .r .mode{
    height: 1.9791666667vw;
    border-radius: 1.9791666667vw;
    gap: 0.2604166667vw;
    padding: 0px 0.3125vw 0px 0.6770833333vw;
  }
  .header .r .mode p{
    font-size: 0.8333333333vw;
  }
  .header .r .mode .circle{
    width: 1.5625vw;
    height: 1.5625vw;
  }
  .header .r .mode .circle .iconfont{
    font-size: 1.0416666667vw;
  }
  .footer{
    border-radius: 1.0416666667vw 1.0416666667vw 0px 0px;
    padding: 3.6458333333vw 0px 0px;
  }
  .footer .wrap{
    width: 93.75vw;
  }
  .footer .wrap .up{
    padding: 0px 0px 1.3020833333vw;
  }
  .footer .wrap .up .foo_nav a{
    font-size: 1.6666666667vw;
  }
  .footer .wrap .up .foo_nav a:not(:last-child){
    margin: 0px 0px 0.78125vw;
  }
  .footer .wrap .up .r{
    gap: 14.5833333333vw;
  }
  .footer .wrap .up .r .message{
    width: 20.6770833333vw;
  }
  .footer .wrap .up .r .message .list:not(:last-child){
    margin: 0px 0px 1.4583333333vw;
  }
  .footer .wrap .up .r .message .list p{
    font-size: 0.625vw;
  }
  .footer .wrap .up .r .message .list .a1{
    font-size: 0.9375vw;
    margin: 0.3645833333vw 0px 0px;
  }
  .footer .wrap .up .r .media{
    gap: 0.2604166667vw;
  }
  .footer .wrap .up .r .media .list{
    width: 2.1354166667vw;
    height: 2.1354166667vw;
    border-radius: 0.3645833333vw;
  }
  .footer .wrap .up .r .media .list svg{
    width: 1.0416666667vw;
  }
  .footer .wrap .bottom{
    padding-bottom: 1.5625vw;
    margin: 5.2083333333vw 0px 0px;
  }
  .footer .wrap .bottom .links{
    margin: 1.3020833333vw 0px 0px;
    gap: 0.5208333333vw;
  }
  .footer .wrap .bottom .links p, .footer .wrap .bottom .links a{
    font-size: 0.8333333333vw;
  }
  .common_paging{
    gap: 0.4166666667vw;
  }
  .common_paging a{
    width: 2.1875vw;
    height: 2.1875vw;
    border-radius: 0.5208333333vw;
    font-size: 0.7291666667vw;
  }
  .common_paging a.next, .common_paging a.prev{
    padding: 0px 1.25vw;
  }
  .common_banner .parallax .text{
    font-size: 2.8125vw;
  }
  .common_custom{
    padding: 5.2083333333vw 0px;
  }
  .common_custom .wrap{
    width: 93.75vw;
    border-radius: 1.5625vw;
    padding: 2.6041666667vw 1.9791666667vw 3.2291666667vw 5.0520833333vw;
  }
  .common_custom .wrap .l{
    width: 35.2604166667vw;
    margin: 4.1666666667vw 0px 0px;
  }
  .common_custom .wrap .l .title{
    font-size: 2.5vw;
  }
  .common_custom .wrap .l .line{
    width: 2.7083333333vw;
    height: 0.2083333333vw;
    margin: 2.34375vw 0px 1.25vw;
  }
  .common_custom .wrap .l .text{
    font-size: 0.9375vw;
  }
  .common_custom .wrap .l .flex{
    margin: 5.46875vw 0px 0px;
  }
  .common_custom .wrap .l .flex .list{
    gap: 0.9895833333vw;
  }
  .common_custom .wrap .l .flex .list:not(:last-child){
    margin: 0px 0px 1.0416666667vw;
  }
  .common_custom .wrap .l .flex .list .color{
    width: 2.1875vw;
    height: 2.1875vw;
    border-radius: 0.5208333333vw;
  }
  .common_custom .wrap .l .flex .list .color img{
    width: 1.1979166667vw;
  }
  .common_custom .wrap .l .flex .list p{
    font-size: 0.9375vw;
  }
  .common_custom .wrap .r{
    width: 43.75vw;
    border-radius: 1.4583333333vw;
    padding: 4.3229166667vw 2.65625vw 5.1041666667vw;
  }
  .common_custom .wrap .r .headline .p1{
    font-size: 1.6666666667vw;
    margin: 0px 0px 0.5208333333vw;
  }
  .common_custom .wrap .r .headline .p2{
    font-size: 0.8333333333vw;
  }
  .common_custom .wrap .r .form{
    margin: 2.0833333333vw 0px 0px;
    gap: 0.78125vw 0px;
  }
  .common_custom .wrap .r .form .list{
    width: 18.3333333333vw;
  }
  .common_custom .wrap .r .form .list .txt{
    font-size: 0.8333333333vw;
    margin: 0px 0px 0.5208333333vw;
  }
  .common_custom .wrap .r .form .list input, .common_custom .wrap .r .form .list textarea{
    height: 3.4375vw;
    border-radius: 0.2604166667vw;
    padding: 0px 1.0416666667vw;
    font-size: 0.8333333333vw;
  }
  .common_custom .wrap .r .form .list textarea{
    height: 8.4375vw;
    padding: 1.0416666667vw;
  }
  .common_custom .wrap .r .form .send{
    border-radius: 0.5208333333vw;
    height: 2.1875vw;
    padding: 0px 1.6145833333vw;
    font-size: 0.7291666667vw;
  }
  .common_more{
    gap: 0.2604166667vw;
  }
  .common_more .read{
    height: 2.1875vw;
    border-radius: 0.5208333333vw;
    padding: 0px 0.78125vw;
  }
  .common_more .read p{
    font-size: 0.7291666667vw;
  }
  .common_more .jt{
    width: 2.1875vw;
    height: 2.1875vw;
    border-radius: 0.5208333333vw;
  }
  .common_more .jt img{
    width: 0.9895833333vw;
  }
  .fixed_search .content{
    padding: 9.375vw 0px 3.6458333333vw;
  }
  .fixed_search .content .wrap{
    width: 41.6666666667vw;
  }
  .fixed_search .content .wrap .close{
    right: -11.7708333333vw;
    top: -0.4166666667vw;
    width: 0.6770833333vw;
    height: 0.6770833333vw;
  }
  .fixed_search .content .wrap .enter_term{
    transform: translateY(1.0416666667vw);
  }
  .fixed_search .content .wrap .enter_term .iconfont{
    top: 0.1041666667vw;
    font-size: 1.1458333333vw;
  }
  .fixed_search .content .wrap .enter_term input{
    padding: 0px 2.5vw 0.7291666667vw;
    font-size: 0.8333333333vw;
  }
  .fixed_search .content .wrap .headline{
    font-size: 0.8333333333vw;
    margin: 1.875vw 0px 2.1875vw;
    transform: translateY(1.0416666667vw);
  }
  .fixed_search .content .wrap .grid{
    gap: 1.3020833333vw 2.8125vw;
    margin: 2.0833333333vw 0px 0px;
    transform: translateY(1.0416666667vw);
  }
  .fixed_search .content .wrap .grid .item .img{
    height: 8.59375vw;
  }
  .fixed_search .content .wrap .grid .item .text{
    margin: 1.7708333333vw 0px 0px;
    font-size: 0.7291666667vw;
  }
  body.dark .header .r .mode p{
    transform: translateX(1.5625vw);
  }
  body.dark .header .r .mode .circle{
    transform: translateX(-2.5vw);
  }
}
@media screen and (max-width: 1024px) {
  .header{
    display: none;
  }

  .header_mobile{
    display: block!important;
    overflow: hidden;
  }
  .header_mobile .top{
    position: fixed;
    width: 100%;
    height: 60px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10);
    background: #fff;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
  }
  .header_mobile .top .logo{
    width: 110px;
    height: 40px;
    display: block;
    position: relative;
  }
  .header_mobile .top .r{
    display: flex;
    align-items: center;
  }
  .header_mobile .top .logo img{
    height: 100%;
    object-fit: contain;
  }
  .header_mobile .top .logo img:first-child{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .header_mobile .top .r .menu{
    margin: 0 0 0 25px;
    cursor: pointer;
    position: relative;
  }
  .header_mobile .top .r .sj_search{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px 0 49px;
    transition: .6s ease;
    cursor: pointer;
  }
  .header_mobile .top .r .sj_mode{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color);
    transition: .6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 0 0 5px;
  }
  .header_mobile .top .r .sj_mode .iconfont{
    font-size: 15px;
    color: #111;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .header_mobile .top .r .sj_mode .iconfont:nth-child(2) {
    opacity: 0;
  }
  .header_mobile .top .r .sj_mode.on .iconfont:nth-child(1){
    opacity: 0;
  }
  .header_mobile .top .r .sj_mode.on .iconfont:nth-child(2){
    opacity: 1;
  }
  .header_mobile .top .r .sj_search .iconfont{
    font-size: 15px;
    color: #111;
    transition: .6s ease;
  }
  .header_mobile .top .r .menu .show{
    width: 25px;
    height: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header_mobile .top .r .menu .show span{
    width: 100%;
    height: 1px;
    background: #000;
    transition: .3s ease;
    transform-origin: left;
  }
  .header_mobile .top .r .menu .show span:first-child{
    transition-delay: .6s;
  }
  .header_mobile .top .r .menu .show span:nth-child(2){
    transition-delay: .5s;
  }
  .header_mobile .top .r .menu .show span:nth-child(3){
    transition-delay: .4s;
  }
  .header_mobile .top .r .menu .hide{
    position: absolute;
    width: 27px;
    height: 27px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
  }
  .header_mobile .top .r .menu .hide:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #000;
    transform: scaleX(0);
    transition: .3s ease;
    transform-origin: left;
  }
  .header_mobile .top .r .menu .hide:before{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #000;
    transform: scaleY(0);
    transition: .3s ease;
    transform-origin: top;
  }
  .header_mobile .top .r .menu.on .show span{
    transform: scaleX(0);
  }
  .header_mobile .top .r .menu.on .show span:nth-child(1) {
    transition-delay: 0s;
  }
  .header_mobile .top .r .menu.on .show span:nth-child(2) {
    transition-delay: .1s;
  }
  .header_mobile .top .r .menu.on .show span:nth-child(3) {
    transition-delay: .2s;
  }
  .header_mobile .top .r .menu.on .hide:after{
    transform: scaleX(1);
    transition-delay: .4s;
  }
  .header_mobile .top .r .menu.on .hide:before{
    transform: scaleY(1);
    transition-delay: .3s;
  }
  .header_mobile .bottom{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 98;
    clip-path: inset(0 0 100%);
    transition: .6s ease;
  }
  .header_mobile .bottom .joke > ul >li{
    transform: translateY(10px);
    opacity: 0;
    transition: opacity .3s,transform .6s .3s;
  }
  .header_mobile.on .bottom{
    clip-path: inset(0 0 0 0);
  }
  .header_mobile.on .bottom .joke>ul>li{
    opacity: 1;
    transform: translateY(0);
  }
  .header_mobile .bottom .joke{
    padding: 80px 5% 30px 5%;
    height: calc(100vh - 47px);
    overflow: hidden;
    overflow-y: scroll;
  }
  .header_mobile .bottom .joke ul{
    margin: 0 0 20px;
    position: relative;
  }
  .header_mobile .bottom .joke ul ul{
    display: none;
  }
  .header_mobile .bottom .joke > ul > li{
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .header_mobile .bottom .joke ul li .show{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header_mobile .bottom .joke > ul > li > .show{
    height: 60px;
  }
  .header_mobile .bottom .joke ul li .show > a{
    font-size: 14px;
    color: rgba(0,0,0,.6) !important;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    line-height: 35px;
    transition: .6s ease;
  }
  .header_mobile .bottom .joke > ul > li > .show > a{
    color: #000;
    font-size: 16px;
  }
  .header_mobile.black .bottom .joke > ul > li > .show > a{
    color: #fff!important;
  }
  .header_mobile .bottom .joke ul li .show .click{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
  }
  .header_mobile .bottom .joke ul li .show.on > a{
    color: var(--color) !important;
  }
  .header_mobile .bottom .joke ul li .show.on .click img{
    transform: rotate(180deg);
  }
  .header_mobile .bottom .joke ul li .show .click img{
    width: 12px;
    height: 12px;
    transition: .3s ease;
  }
  .header_mobile.black .top .logo img:first-child{
    opacity: 1;
  }
  .header_mobile.black .top .logo img:nth-child(2){
    opacity: 0;
  }
  .header_mobile.black .top{
    background: #000;
    box-shadow: unset;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  .header_mobile.black .top .r .menu .show span,.header_mobile.black .top .r .menu .hide:after,.header_mobile.black .top .r .menu .hide:before{
    background: #fff;
  }
  .header_mobile.black .bottom{
    background: #000;
  }
  .header_mobile.black .bottom .joke > ul > li{
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header_mobile.black .bottom .joke ul li .show .click img{
    filter: brightness(0) invert(1);
  }

  /*body.dark .header_mobile .top{*/
  /*  background: #000;*/
  /*}*/
  body.dark .header_mobile .top .r .sj_search{
    border: 1px solid rgba(255, 255, 255, .4);
  }

  body.dark .header_mobile .top .r .sj_search .iconfont{
    color: #fff;
  }

  /**/
  .footer{
    border-radius: 16px 16px 0 0;
    padding: 40px 0 0;
  }
  .footer .wrap{
    width: 90%;
  }
  .footer .wrap .up{
    flex-direction: column;
    gap: 30px;
    padding: 0 0 16px;
  }
  .footer .wrap .up .foo_nav a{
    font-size: 24px;
  }
  .footer .wrap .up .foo_nav a:not(:last-child){
    margin: 0 0 10px;
  }
  .footer .wrap .up .r{
    gap: 40px;
    flex-wrap: wrap;
  }
  .footer .wrap .up .r .message{
    width: 100%;
  }
  .footer .wrap .up .r .message .list:not(:last-child){
    margin: 0 0 16px;
  }
  .footer .wrap .up .r .message .list p{
    font-size: 13px;
  }
  .footer .wrap .up .r .message .list .a1{
    font-size: 14px;
    margin: 4px 0 0 0;
  }
  .footer .wrap .up .r .media .list{
    width: 36px;
    height: 36px;
    border-radius: 6px;
  }
  .footer .wrap .up .r .media .list svg{
    width: 18px;
  }
  .footer .wrap .bottom{
    position: relative;
    padding-bottom: 20px;
    margin: 40px 0 0 0;
  }
  .footer .wrap .bottom .links{
    margin: 30px 0 0 0;
    flex-wrap: wrap;
    gap: 0;
    flex-direction: column;
    align-items: unset;
  }
  .footer .wrap .bottom .links p,
  .footer .wrap .bottom .links a{
    font-size: 13px;
  }

  .fixed_backTop{
    display: none!important;
  }

  .parallax{
    transform: none!important;
  }

  .common_more{
    gap: 6px;
  }
  .common_more .read{
    width: fit-content;
    height: 36px;
    border-radius: 6px;
    padding: 0 20px;
  }
  .common_more .read p{
    font-size: 13px;
  }
  .common_more .jt{
    width: 36px;
    height: 36px;
    border-radius: 6px;
  }
  .common_more .jt img{
    width: 18px;
  }

  .common_banner{
    margin: 60px 0 0 0;
    height: 50vh;
  }
  .common_banner .parallax .text{
    font-size: 24px;
  }

  .common_paging{
    gap: 6px;
    flex-wrap: wrap;
  }
  .common_paging a{
    width: 35px;
    height: 35px;
    border-radius: 6px;
    font-size: 12px;
  }
  .common_paging a.next, .common_paging a.prev{
    padding: 0 15px;
  }
  [animatetext],
  [animatetext2] {
    opacity: 1!important;
  }

  /* ===== common_custom ===== */
  .common_custom{
    background: #F8F8F8;
    margin: 30px 0 0 0;
  }
  .common_custom{
    padding: 20px 0;
  }
  .common_custom .wrap{
    width: 90%;
    margin: auto;
    border-radius: 15px;
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }
  .common_custom .wrap .l{
    width: 100%;
    margin: 0;
  }
  .common_custom .wrap .l .title{
    font-size: 24px;
  }
  .common_custom .wrap .l .line{
    width: 40px;
    margin: 20px 0 16px;
  }
  .common_custom .wrap .l .text{
    font-size: 13px;
  }
  .common_custom .wrap .l .flex{
    margin: 30px 0 0 0;
  }
  .common_custom .wrap .l .flex .list{
    gap: 12px;
  }
  .common_custom .wrap .l .flex .list:not(:last-child){
    margin: 0 0 14px;
  }
  .common_custom .wrap .l .flex .list .color{
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
  .common_custom .wrap .l .flex .list .color img{
    width: 14px;
  }
  .common_custom .wrap .l .flex .list p{
    font-size: 14px;
  }
  .common_custom .wrap .r{
    width: 100%;
    border-radius: 10px;
    padding: 30px 14px;
  }
  .common_custom .wrap .r .headline .p1{
    font-size: 20px;
    margin: 0 0 6px;
  }
  .common_custom .wrap .r .headline .p2{
    font-size: 13px;
  }
  .common_custom .wrap .r .form{
    margin: 24px 0 0 0;
    gap: 14px;
  }
  .common_custom .wrap .r .form .list{
    width: 100%;
  }
  .common_custom .wrap .r .form .list .txt{
    font-size: 13px;
    margin: 0 0 6px;
  }
  .common_custom .wrap .r .form .list input,
  .common_custom .wrap .r .form .list textarea{
    height: 44px;
    border-radius: 5px;
    padding: 0 14px;
    font-size: 13px;
  }
  .common_custom .wrap .r .form .list textarea{
    height: 120px;
    padding: 14px;
  }
  .common_custom .wrap .r .form .send{
    border-radius: 8px;
    height: 40px;
    padding: 0 24px;
    font-size: 13px;
  }
  body.dark .track2 .wrap .sj_img.black{
    display: block!important;
  }
}




