/* common */

@font-face {
  font-family: Source Han Sans CN m;
  src: url("../fonts/SourceHanSansCN-Medium.otf");
}

@font-face {
  font-family: Open Sans b;
  src: url("../fonts/OpenSans-Bold.ttf");
}

@font-face {
  font-family: Akrobat b;
  src: url("../fonts/Akrobat-Bold.otf");
}

* {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  outline: none;
}

body .page .wrap .content {
  text-align: left!important;
}
body {
  width: 100%;
  overflow-x: hidden;
  background: #fff;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0;
}

#my-scrollbar {
  height: 100vh;
}

.scroll-content {
  overflow: hidden;
}

#Horizontal {
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
}

.scrollX {
  width: fit-content;
  height: 100vh;
  display: flex;
}

.scrollbar-thumb {
  width: 5px !important;
}

@media screen and (max-width: 1023px) {
  .scrollbar-thumb {
    width: 0 !important;
  }
}

.scrollbar-track-y {
  z-index: 9999 !important;
}

.scrollbar-track {
  background-color: transparent !important;
  right: 0 !important;
}

.scrollbar-track:hover {
  cursor: grab;
}

.scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5) !important;
}

img {
  object-fit: cover;
  vertical-align: bottom;
  max-width: 100%;
}

textarea {
  resize: none;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
}

.bezier .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

#my-scrollbar .scroll-content section {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

@keyframes line {
  0% {
    transform: rotate(-125deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* common */
.header {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 0 256px 0 261px;
  transition: 0.6s;
  border-bottom: 1px solid transparent;
}

.header .head_joke {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header .keep_left {
  display: flex;
  align-items: center;
  transition: 1s;
}

.header .keep_left .logo {
  width: 142px;
  height: 32px;
  margin: 0 54px 0 0;
  position: relative;
}

.header .keep_left .logo img {
  position: absolute;
  width: 100%;
  transition: 0.7s;
  object-fit: contain;
}

.header .keep_left .logo img:nth-child(2) {
  opacity: 0;
}

.header .keep_left .nav {
  display: flex;
}

.header .keep_left .nav a {
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  padding: 15px 0;
  transition: 0.7s;
}

.header .keep_left .nav a:hover {
  color: #EC6816 !important;
}

.header .keep_left .nav a:not(:last-child) {
  margin: 0 50px 0 0;
}

.header .flex_r {
  display: flex;
  align-items: center;
}

.header .flex_r .click {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 0 0 0 90px;
}

.header .flex_r .click .sq {
  width: 22px;
  height: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 12px;
}

.header .flex_r .click .sq span {
  transition: 0.6s;
  display: block;
  width: 4px;
  height: 4px;
  background: #FFFFFF;
  margin-right: 5px;
}

.header .flex_r .click .sq span:nth-child(3n) {
  margin-right: 0;
}

.header .flex_r .click p {
  font-size: 16px;
  font-family: "PingFang SC r", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  transition: 0.7s;
}

.header .flex_r .click_menu {
  display: flex;
  align-items: center;
  margin: 0 0 0 90px;
  cursor: pointer;
  transition: 1s;
  display: none;
}

.header .flex_r .click_menu p {
  font-size: 15px;
  color: #fff;
  margin: 0 15px 0 0;
  position: relative;
  top: -1px;
}

.header .flex_r .click_menu .line {
  width: 22px;
}

.header .flex_r .click_menu .line div {
  width: 100%;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}

.header .flex_r .click_menu .line div:not(:last-child) {
  margin: 0 0 6px 0;
}

.header .flex_r .click_menu:hover .line {
  animation: 0.5s line cubic-bezier(0.09, 0.63, 0.78, 1.07) forwards;
}

.header .flex_r .click_menu.on .line div:nth-child(1) {
  transform: translateY(7px);
}

.header .flex_r .click_menu.on .line div:nth-child(2) {
  opacity: 0;
}

.header .flex_r .click_menu.on .line div:nth-child(3) {
  transform: translateY(-7px);
}

.header .flex_r .click_menu.on_ .line div:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header .flex_r .click_menu.on_ .line div:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header .keep_right {
  display: flex;
  align-items: center;
  transition: 1s;
}

.header .keep_right .img {
  display: flex;
  align-items: center;
  margin: 0 28px 0 0;
  transition: 1s;
}

.header .keep_right .img img {
  transition: 0.6s;
}

.header .keep_right .img .next {
  cursor: pointer;
}

.header .keep_right .img .head_swiper {
  width: 100px;
  height: 80px;
  position: relative;
  margin: 0 18px 0 0;
}

.header .keep_right .img .head_swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .keep_right .img .head_swiper .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.header .keep_right .img .head_swiper .swiper-slide a.much img {
  position: absolute;
  transition: 1s;
}

.header .keep_right .img .head_swiper .swiper-slide a.much img:nth-child(2) {
  opacity: 0;
}

.header .keep_right .img .head_swiper .swiper-slide a.much.active img {
  transform: scale(0.8);
}

.header .keep_right .img .head_swiper .swiper-slide img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.header .keep_right .search {
  cursor: pointer;
  margin: 0 18px 0 0;
  transition: 1s;
  position: relative;
}

.header .keep_right .search img {
  transition: 0.6s;
  transition-delay: 0.4s;
  width: 22px;
  height: 22px;
}

.header .keep_right .search svg {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #fff;
  opacity: 0;
  transition: 0.6s;
}

.header .keep_right .search svg path {
  fill: #fff;
}

.header .keep_right .language {
  display: flex;
  align-items: center;
  transition: 1s;
}

.header .keep_right .language img {
  margin: 0 10px 0 0;
  transition: 0.6s;
}

.header .keep_right .language p {
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  transition: 0.6s;
}

.header .side {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 340px;
  background: #fff;
  clip-path: inset(0% 0% 0% 100%);
  transition: cubic-bezier(0.77, 0, 0.175, 1) 1s;
  box-shadow: 0 8px 13px 0 rgba(0, 0, 0, .07);
}

.header .side .none {
  display: block !important;
}

.header .side .close {
  cursor: pointer;
  transition: 0.6s;
  height: 28px;
  position: relative;
  top: 3px;
}

.header .side .close span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  position: relative;
  top: 13px;
}

.header .side .close span:nth-child(1) {
  transform: rotate(45deg);
}

.header .side .close span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -1px);
}

.header .side.active {
  clip-path: inset(0% 0% 0% 0%);
}

.header .side .side_h {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #EC6917;
  padding: 0 45px 0 40px;
}

.header .side .side_h p {
  font-size: 26px;

  font-family: Microsoft YaHei;
  font-weight: 500;
  color: #FFFFFF;
}

.header .side .item .block {
  display: flex;
  align-items: center;
  height: 80px;
  justify-content: space-between;
  padding: 0 52px 0 40px;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  transition: 0.6s;
}

.header .side .item .block:hover,
.header .side .item.on .block {
  border-bottom: 1px solid transparent;
  background: #E6E6E6;
}

.header .side .item .block p {
  font-size: 16px;
  font-family: "PingFang SC r", sans-serif;
  font-weight: 400;
  color: #333333;
}

.header .side .item .block .iconfont {
  color: #666;
  transition: 0.6s;
}

.header .side .item.on .block .iconfont {
  transform: rotate(90deg);
}

.header .side .item .none a {
  display: block;
  width: 100%;
  height: 65px;
  border-bottom: 1px solid #E6E6E6;
  line-height: 65px;
  font-size: 14px;
  font-family: "PingFang SC r", sans-serif;
  font-weight: 400;
  color: #333333;
  padding: 0 0 0 40px;
  transition: 0.6s;
}

.header .side .item .none a:hover {
  color: #EC6917;
}

.header.on {
  /*background: rgba(255,255,255,.9);*/
  /*backdrop-filter: blur(4px);*/
  /*background: transparent;*/
  background: #fff;
}

.header.on .flex_r .click .sq span {
  background: #000;
}

.header.on .flex_r .click p {
  color: #000;
}

.header.on .keep_left .logo img:nth-child(1) {
  opacity: 0;
}

.header.on .keep_left .logo img:nth-child(2) {
  opacity: 1;
}

.header.on .keep_left .nav a {
  color: #000;
}

.header.on .click_menu {
  filter: invert();
}

.header.on .keep_right .img .head_swiper .swiper-slide .much img:nth-child(1) {
  opacity: 0;
}

.header.on .keep_right .img .head_swiper .swiper-slide .much img:nth-child(2) {
  opacity: 1;
}

.header.on .keep_right .img>.next {
  filter: invert();
}

.header.on .keep_right .search {
  filter: invert();
}

.header.on .keep_right .language img {
  filter: invert();
}

.header.on .keep_right .language p {
  color: #000;
}

.header.pull {
  border-bottom: 1px solid rgba(189, 189, 189, 0.15);
  background: #fff;
}

.header.pull .flex_r .click .sq span {
  background: #000;
}

.header.pull .flex_r .click p {
  color: #000;
}

.header.pull .keep_left .logo img:nth-child(1) {
  opacity: 0;
}

.header.pull .keep_left .logo img:nth-child(2) {
  opacity: 1;
}

.header.pull .keep_left .nav a {
  color: #000;
}

.header.pull .click_menu {
  filter: invert();
}

.header.pull .keep_right .img .head_swiper .swiper-slide .much img:nth-child(1) {
  opacity: 0;
}

.header.pull .keep_right .img .head_swiper .swiper-slide .much img:nth-child(2) {
  opacity: 1;
}

.header.pull .keep_right .img>.next {
  filter: invert();
}

.header.pull .keep_right .search {
  filter: invert();
}

.header.pull .keep_right .language img {
  filter: invert();
}

.header.pull .keep_right .language p {
  color: #000;
}

.header.on_on .keep_left .logo img:nth-child(1) {
  opacity: 0;
}

.header.on_on .keep_left .logo img:nth-child(2) {
  opacity: 1;
}

.header.on_on .keep_left .nav a {
  color: #000;
}

.header.on_on .keep_right .img .head_swiper .swiper-slide .much img:nth-child(1) {
  opacity: 0;
}

.header.on_on .keep_right .img .head_swiper .swiper-slide .much img:nth-child(2) {
  opacity: 1;
}

.header.on_on .keep_right .img>.next {
  filter: invert();
}

.header.on_on .keep_right .search {
  filter: invert();
}

.header.on_on .keep_right .language img {
  filter: invert();
}

.header.on_on .keep_right .language p {
  color: #000;
}

.header.show {
  background: transparent !important;
}

.header.show .keep_left {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.header.show .click_menu {
  filter: unset !important;
}

.header.show .keep_right .img,
.header.show .keep_right .search,
.header.show .keep_right .language {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.header.search_on {
  background: #f7f7f7 !important;
}

.header.search_on .keep_left .nav {
  display: none;
}

.header.search_on .keep_right .img,
.header.search_on .keep_right .language,
.header.search_on .flex_r .click .sq span,
.header.search_on .flex_r .click p {
  opacity: 0;
  pointer-events: none;
}

.header.search_on .keep_right .search img {
  opacity: 0;
  transition-delay: unset;
}

.header.search_on .keep_right .search svg {
  opacity: 1;
  transition-delay: 0.4s;
}

.header.search_on .keep_left .logo img:nth-child(1) {
  opacity: 0;
}

.header.search_on .keep_left .logo img:nth-child(2) {
  opacity: 1;
}

.header.search_on .keep_right .search {
  filter: invert();
}

body#block .click_menu {
  filter: invert();
}

body#block .header {
  /*background: rgba(255, 255, 255, .9);*/
  /*backdrop-filter: blur(4px);*/
  /*background: transparent;*/
  background: #fff;
}

body#block .header .keep_left .logo img:nth-child(1) {
  opacity: 0;
}

body#block .header .keep_left .logo img:nth-child(2) {
  opacity: 1;
}

body#block .header .keep_left .nav a {
  color: #000;
}

body#block .header .keep_right .img .much img:nth-child(1) {
  opacity: 0;
}

body#block .header .keep_right .img .much img:nth-child(2) {
  opacity: 1;
}

body#block .header .keep_right .img>img {
  filter: invert();
}

body#block .header .keep_right .search {
  filter: invert();
}

body#block .header .keep_right .language img {
  filter: invert();
}

body#block .header .keep_right .language p {
  color: #000;
}

body#block .header .flex_r .click .sq span {
  background: #000;
}

body#block .header .flex_r .click p {
  color: #000;
}

footer {
  position: relative;
  z-index: 5;
  background: #fff;
  overflow: hidden;
}

footer .top {
  overflow: hidden;
  position: relative;
}

footer .top:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #F2F4F3;
  top: 140px;
  left: 0;
  position: absolute;
}

footer .top .wrap {
  width: 1010px;
  margin: 75px auto 200px;
}

footer .top .wrap .foo_logo {
  width: 135px;
  margin: 0 auto 100px;
  display: block;
}

footer .top .wrap .content {
  display: flex;
  justify-content: space-between;
}

footer .top .wrap .content .foo_nav {
  display: flex;
}

footer .top .wrap .content .foo_nav .item:not(:last-child) {
  margin: 0 215px 0 0;
}

footer .top .wrap .content .foo_nav .item>a {
  font-size: 14px;
  font-family: Source Han Sans CN m;
  font-weight: 500;
  color: #3B3E40;
  display: block;
  margin: 0 0 30px 0;
}

footer .top .wrap .content .foo_nav .item .level a {
  font-size: 12px;
  font-weight: 200;
  color: #6C7073;
  line-height: 28px;
  display: block;
}

footer .top .wrap .content .foo_nav .item a {
  transition: 0.6s;
}

footer .top .wrap .content .foo_nav .item a:hover {
  color: #ec6816;
}

footer .top .wrap .content .foo_information .tel {
  font-size: 22px;
  font-family: Roboto;
  font-weight: bold;
  color: #313131;
  line-height: 17px;
  margin: 0 0 30px 0;
}

footer .top .wrap .content .foo_information .time {
  margin: 0 0 20px 0;
}

footer .top .wrap .content .foo_information .time p {
  font-size: 14px;
  font-weight: 200;
  color: #313131;
  line-height: 23px;
}

footer .top .wrap .content .foo_information .time p:first-child {
  font-size: 12px;
}

footer .top .wrap .content .foo_information .email {
  font-size: 12px;
  font-weight: 200;
  color: #313131;
}

footer .bottom {
  position: relative;
  /* overflow: hidden; */
}

footer .bottom:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #F2F4F3;
  top: 55px;
  left: 0;
  position: absolute;
}

footer .bottom .wrap {
  width: 1010px;
  margin: 0 auto 57px;
}

footer .bottom .wrap .other {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 60px 0;
}

footer .bottom .wrap .other .link {
  display: flex;
  align-items: center;
}

footer .bottom .wrap .other .link a {
  font-size: 14px;
  font-weight: 200;
  color: #4F4F4F;
  position: relative;
  transition: 0.6s;
}

footer .bottom .wrap .other .link a:hover {
  color: #ec6816;
}

footer .bottom .wrap .other .link a:not(:last-child):after {
  content: '';
  position: absolute;
  width: 1px;
  height: 12px;
  background: #B4B4B4;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
}

footer .bottom .wrap .other .link a:not(:last-child) {
  margin: 0 44px 0 0;
}

footer .bottom .wrap .other .icon {
  display: flex;
}

footer .bottom .wrap .other .icon .list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #E9E9E9;
  /* transition: 0.6s; */
  transition-duration: .6s, .6s;
  transition-property: border, background;
}

footer .bottom .wrap .other .icon .list img {
  width: 20px;
  opacity: 0.5;
  transition: all .6s;
}

footer .bottom .wrap .other .icon .er .mark .item {
  width: 120px;
  padding: 15px 10px;
}

footer .bottom .wrap .other .icon .list:hover img {
  opacity: 1;
  filter: brightness(0) invert(1)
}

/* footer .bottom .wrap .other .icon .list:not(:last-child) { */
footer .bottom .wrap .other .icon .er:not(:last-child) {
  margin: 0 11px 0 0;
}

footer .bottom .wrap .other .icon .er:hover .mark {
  opacity: 1;
}

footer .bottom .wrap .other .icon .list .iconfont {
  color: #BABABA;
  font-size: 20px;
  transition: 0.6s;
}

footer .bottom .wrap .other .icon .er {
  position: relative;
}

footer .bottom .wrap .other .icon .mark {
  height: 150px;
  position: absolute;
  display: flex;
  /* height: 150px; */
  height: auto;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.2);
  justify-content: space-around;
  opacity: 0;
  transition: 0.6s;
  pointer-events: none;
}

footer .bottom .wrap .other .icon .list:hover {
  border: 1px solid transparent;
  background: #ec6816;
}

footer .bottom .wrap .other .icon .list:hover .iconfont {
  color: #fff;
}

footer .bottom .wrap .down {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .bottom .wrap .down div {
  display: flex;
  align-items: center;
}

footer .bottom .wrap .down div a {
  margin: 0 0 0 5px;
}

footer .bottom .wrap .down p,
footer .bottom .wrap .down a {
  font-size: 14px;
  font-family: Roboto;
  font-weight: 300;
  color: #4F4F4F;
  transition: 0.6s;
}

footer .bottom .wrap .down a:hover {
  color: #ec6816;
}

.not_banner {
  min-height: 712px;
  position: relative;
}

.not_banner .wrap>img {
  width: 100%;
  /* min-height: 712px; */
}

.not_banner .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 5;
  text-align: center;
}

.not_banner .content span {
  font-size: 40px;
  font-family: ZauriSans;
  font-weight: normal;
  color: #FFFFFF;
  display: block;
  margin: 0 0 23px 0;
}

.not_banner .content p {
  font-size: 16px;
  font-family: X-ZhongHei;
  font-weight: normal;
  color: #FFFFFF;
}

.not_banner .content .banner_search {
  margin: 31px auto 0;
  width: 500px;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid #BFBFBF;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
}

.not_banner .content .banner_search input {
  width: inherit;
  height: 100%;
  border: 1px solid transparent;
  background: transparent;
  font-size: 14px;
  font-family: X-ZhongHei;
  font-weight: normal;
}

.not_banner .content .banner_search input::placeholder {
  color: rgba(32, 32, 32, 0.7);
}

.not_banner .content .banner_search .click {
  width: 20px;
  cursor: pointer;
}

.common_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.common_pagination a:first-child,
.common_pagination a:last-child {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #FFFFFF;
  transition: 0.7s;
  margin: 0 24px;
}

.common_pagination a:first-child:hover,
.common_pagination a:last-child:hover {
  background: #EC6716;
}

.common_pagination a:first-child {
  transform: rotate(-180deg);
}

.common_pagination a:not(:first-child, :last-child) {
  font-size: 16px;
  font-family: PingFang SC m;
  font-weight: 500;
  color: #aeadad;
  margin: 0 12px;
  transition: 0.6s;
}

.common_pagination a:not(:first-child, :last-child).on,
.common_pagination a:not(:first-child, :last-child):hover {
  color: #000;
}

.footer,
.footer .fp-tableCell {
  height: auto !important;
}

.fixed_pro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 99;
  padding: 0 256px 0 261px;
  overflow-y: scroll;
  clip-path: inset(0 0 100% 0);
  transition: 1s ease;
  pointer-events: none;
}

.fixed_pro.on {
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}

.fixed_pro .wrap {
  width: fit-content;
  margin: 150px 0 50px 0;
  display: flex;
  position: relative;
}

.fixed_pro .wrap .side {
  width: 255px;
  margin: 0 85px 0 0;
  height: fit-content;
  position: sticky;
  top: 150px;

}

.fixed_pro .wrap .side .item {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 25px;
  cursor: pointer;
  transition: 1s;
}

.fixed_pro .wrap .side .item:not(:last-child) {
  margin: 0 0 5px 0;
}

.fixed_pro .wrap .side .item .img {
  width: 43px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 27px 0 0;
}

.fixed_pro .wrap .side .item .img img {
  object-fit: contain;
  max-height: 100%;
}

.fixed_pro .wrap .side .item .text {
  font-size: 15px;
  font-weight: 400;
  color: #B0B0B0;
  transition: 1s;
}

.fixed_pro .wrap .side .item.on {
  background: rgba(245, 245, 245, 0.7);
}

.fixed_pro .wrap .side .item.on .text {
  color: #202020;
}

.fixed_pro .wrap .right {
  width: 45.36458333vw;
}

.fixed_pro .wrap .right .content {
  display: none;
}

.fixed_pro .wrap .right .content.on {
  display: block;
}

.fixed_pro .wrap .right .content .matter {
  padding: 0 0 55px 0;
  border-bottom: 1px solid #f0f0f0;
}

.fixed_pro .wrap .right .content .matter:not(:last-child) {
  margin: 0 0 51px 0;
}

.fixed_pro .wrap .right .content .matter .headline {
  display: flex;
  align-items: center;
  margin: 0 0 24px 0;
}

.fixed_pro .wrap .right .content .matter .headline span {
  font-size: 18px;
  font-weight: 500;
  color: #202020;
  font-family: PingFang SC b;
  margin: 0 21px 0 0;
}

.fixed_pro .wrap .right .content .matter .headline a {
  font-size: 12px;
  font-weight: 400;
  color: #202020;
  display: flex;
  align-items: center;
}

.fixed_pro .wrap .right .content .matter .headline a .iconfont {
  color: #9b9b9b;
  font-size: 12px;
  margin: 0 0 0 7px;
  font-weight: bold;
}

.fixed_pro .wrap .right .content .matter .flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px 13px;
}

.fixed_pro .wrap .right .content .matter .flex .item {
  width: 100%;
}

.fixed_pro .wrap .right .content .matter .flex .item .img {
  height: 232px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin: 0 0 18px 0;
}

.fixed_pro .wrap .right .content .matter .flex .item .img img {
  max-width: 100%;
  max-height: 100%;
  transition: 2.5s;
}

.fixed_pro .wrap .right .content .matter .flex .item .text {
  font-size: 12px;
  font-weight: 400;
  color: #797979;
  text-align: center;
  line-height: 18px;
}

.fixed_pro .wrap .right .content .matter .flex .item:hover .img img {
  transform: scale(1.1);
}

.fixed_pro .clone {
  position: fixed;
  left: calc(45.36458333vw + 642px);
  top: 143px;
  cursor: pointer;
  width: 19px;
}

.fixed_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.fixed_nav .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  transition: 1s;
}

.fixed_nav .wrap {
  position: relative;
  z-index: 999999;
  width: 1000px;
  opacity: 0;
  transition: 1s;
  transform: translateY(20px);
}

.fixed_nav .wrap .item {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  position: relative;
}

.fixed_nav .wrap .item:hover p {
  font-weight: bold;
  color: #fff;
}

.fixed_nav .wrap .item:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
  transition: 1s;
  transition-delay: 0.6s;
}

.fixed_nav .wrap .item p {
  font-size: 32px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.fixed_nav .wrap .item img {
  display: none;
}

.fixed_nav.on {
  pointer-events: auto;
}

.fixed_nav.on .bg {
  opacity: 1;
  transition-delay: 1s;
}

.fixed_nav.on .wrap {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.fixed_nav.on .wrap .item:after {
  width: 100%;
}

.cursor {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  transition: 0.15s;
  border-radius: 50%;
  pointer-events: none;
  backface-visibility: hidden;
}

.cursor .images {
  width: 360px;
  height: 203px;
  transform: scale(0);
  opacity: 0;
  transition: 0.3s;
}

.cursor .images img {
  width: 100%;
  height: 100%;
}

.cursor.on .images {
  transform: scale(1);
  opacity: 1;
}

/**/
.hamburger-wrapper {
  width: 50px;
  height: 50px;
  background: firebrick;
  position: fixed;
  top: 500px;
  z-index: 88899;
}

.navigation {
  z-index: 999;
  display: flex;
  position: fixed;
  overflow: hidden;
}

.navigation-menu {
  width: 100%;
  height: 100vh;
  transform-origin: 0%;
  background-color: #ec6716;
  flex: none;
  padding-left: 0;
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.menu-warpper {
  width: 100%;
  height: 100%;
  perspective-origin: 0%;
  transform-origin: 0%;
  flex: none;
  display: flex;
  transform: scale(1);
}

.navigation-dynamic-background {
  height: 100%;
  flex: none;
  margin-left: -4px;
  position: relative;
}

.lottie-navigation-in {
  width: 100%;
  height: 100%;
  padding-left: 0;
}

.lottie-navigation-in svg path {
  fill: #ec6716 !important;
}

/**/
/*# sourceMappingURL=style.css.map */
footer .bottom .wrap .other .icon .er .mark .item .text {
  color: #6C7073;
  text-align: center;
  font-size: 14px;
}

.fixed_pro .wrap .side .item .img {
  position: relative;
}

.fixed_pro .wrap .side .item .img img:last-child {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: all 1s;
}

.fixed_pro .wrap .side .item.on .img img:last-child {
  opacity: 1;
}

/**/
.head_search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #f7f7f7;
  z-index: 999;
  padding: 0 256px 80px 261px;
  overflow-y: scroll;
  transition: 1s ease;
  clip-path: inset(0 0 100% 0);
}

.head_search.on {
  clip-path: inset(0 0 0 0);
}

.head_search .wrap {
  width: 1398px;
  margin: 25vh auto 0;
  max-width: 90%;
}

.head_search .wrap .clone {
  font-size: 18px;
  font-family: PingFang SC r;
  font-weight: normal;
  color: #000000;
  margin: 0 0 22px 0;
  transition: 0.7s;
}

.head_search .wrap .label {
  display: flex;
  margin: 0 0 73px 0;
}

.head_search .wrap .label .list {
  width: 100px;
  height: 37px;
  border: 1px solid #DDDDDD;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #858585;
  transition: 0.6s;
  margin: 0 15px 0 0;
  cursor: pointer;
  font-family: PingFang SC r;
  transition: 0.6s;
}

.head_search .wrap .label .list:hover,
.head_search .wrap .label .list.on {
  background: #EC6816;
  color: #fff;
}

.head_search .wrap form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d6d6d6;
  margin: 0 0 73px 0;
}

.head_search .wrap form input {
  height: 70px;
  width: 90%;
  background: transparent;
  border: none;
  font-size: 18px;
}

.head_search .wrap form input::placeholder {
  color: #cdcdcd;
}

.head_search .wrap form button {
  width: fit-content;
  padding: 10px 20px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 40px;
  transition: 0.3s;
}

.head_search .wrap form button:hover {
  background: #ec6716;
}

.head_search .wrap .content .headline {
  font-size: 24px;
  font-weight: bold;
  color: #202020;
  margin: 0 0 24px 0;
}

.head_search .wrap .content .matter {
  display: flex;
  flex-wrap: wrap;
}

.head_search .wrap .content2 {
  margin: 60px 0 0 0;
}

.head_search .wrap .content2 .flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 64px 39px;
}

/**/
.head_search .wrap .content2 .item {
  width: 100%;
  display: block;
}

.head_search .wrap .content2 .item:nth-child(3n) {
  margin: 0 0 64px 0;
}

.head_search .wrap .content2 .item .img {
  width: 100%;
  /* height: 306px; */
  height: auto;
  margin: 0 0 32px 0;
  overflow: hidden;
  border-radius: 22px;
}

.head_search .wrap .content2 .item .img img {
  width: 100%;
  height: 100%;
  transition: 3s;
}

.head_search .wrap .content2 .item .text .time {
  font-size: 14px;
  font-family: Roboto;
  font-weight: 400;
  color: #575A5A;
  margin: 0 0 23px 0;
}

.head_search .wrap .content2 .item .text span {
  font-size: 19px;
  font-family: Source Han Sans CN m;
  color: #1E1E1E;
  display: block;
  margin: 0 0 28px 0;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.7s;
}

.head_search .wrap .content2 .item .text p {
  font-size: 14px;
  font-weight: 200;
  color: #1E1E1E;
  line-height: 26px;
  opacity: 0.8;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.head_search .wrap .content2 .item .text .more {
  width: 82px;
  height: 28px;
  border: 1px solid #DDDDDD;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #1E1E1E;
  transition: 0.6s;
}

.head_search .wrap .content2 .item:hover .text .more {
  background: #EC6816;
  color: #fff;
  border: 1px solid transparent;
}

.head_search .wrap .content2 .item:hover .img img {
  transform: scale(1.1);
}

.head_search .wrap .content2 .item:hover .text span {
  color: #EC6816;
}

.head_search .wrap .content3 {
  margin: 60px 0 0 0;
}

.head_search .wrap .content3 .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/**/
.head_search .wrap .content3 .flex a {
  width: 47%;
  height: 84px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: X-ZhongHei;
  font-weight: normal;
  color: rgba(32, 32, 32, 0.8);
  border-bottom: 1px solid rgba(191, 191, 191, 0.28);
  position: relative;
  overflow: hidden;
  transition: 0.6s;
}

.head_search .wrap .content3 .flex a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateX(-100%);
  height: 1px;
  background: #ec6716;
  transition: 1.3s;
}

.head_search .wrap .content3 .flex a:hover {
  color: #ec6716;
}

.head_search .wrap .content3 .flex a:hover:after {
  transform: translateX(0);
}

/**/

.head_search .wrap .content .matter .item {
  width: 23.5%;
  background: #FFFFFF;
  border-radius: 17px;
  overflow: hidden;
  padding: 70px 19px 32px 19px;
  position: relative;
  display: block;
  margin: 0 24px 24px 0;
}

.head_search .wrap .content .matter .item:nth-child(4n) {
  margin: 0 0 24px 0;
}

.head_search .wrap .content .matter .item .label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 23;
  width: 67px;
  height: 29px;
  background: #EC6816;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: ZauriSans;
  font-weight: normal;
  color: #FFFFFF;
}

.head_search .wrap .content .matter .item .img {
  width: 90%;
  height: 213px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  overflow: hidden;
}

.head_search .wrap .content .matter .item .img img {
  object-fit: contain;
  transition: 2s;
  max-height: 100%;
}

.head_search .wrap .content .matter .item .text .price {
  font-size: 16px;
  font-family: PingFang SC b;
  font-weight: 500;
  color: #EC6816;
  margin: 0 0 5px 0;
}

.head_search .wrap .content .matter .item .text .title {
  font-size: 18px;
  font-family: PingFang SC b;
  font-weight: normal;
  color: #000000;
  margin: 0 0 15px 0;
  transition: 0.7s;
}

.head_search .wrap .content .matter .item .text .text {
  font-size: 12px;
  font-family: PingFang SC m;
  font-weight: normal;
  color: #000000;
}

.head_search .wrap .content .matter .item .text .text p {
  position: relative;
}

.head_search .wrap .content .matter .item .text .text p:not(:last-child) {
  margin: 0 0 9px 0;
}



.head_search .wrap .content .matter .item:hover .img img {
  transform: scale(1.1);
}

.head_search .wrap .content .matter .item:hover .text .title {
  color: #EC6816;
}

@media screen and (max-width: 1850px) {

  .header,
  .fixed_pro {
    padding: 0 200px;
  }

  .fixed_pro .wrap .right {
    width: 53.364583vw;
  }

  .head_search {
    padding: 0;
  }

  footer .top .wrap,
  footer .bottom .wrap {
    max-width: 90%;
  }
}

@media screen and (max-width: 1728px) {

  .header,
  .fixed_pro {
    padding: 0 100px;
  }
}

@media screen and (max-width: 1510px) {

  .header,
  .fixed_pro {
    padding: 0 5%;
  }

  .header .keep_left .nav a {
    font-size: 13px;
  }

  .header .flex_r .click {
    margin: 0 0 0 70px;
  }

  .fixed_pro .wrap .right .content .matter .flex .item .img {
    height: 157px;
  }

  .fixed_pro .clone {
    left: calc(41.364583vw + 642px);
  }
}

@media screen and (max-width: 1380px) {
  .header .keep_left .logo {
    width: 120px;
    height: 27px;
  }

  .header .flex_r .click {
    margin: 0 0 0 48px;
  }

  .header .keep_right .img .head_swiper {
    width: 40px;
    height: 29px;
  }

  .header .keep_left .nav a:not(:last-child) {
    margin: 0 47px 0 0;
  }

  .head_search .wrap .content .matter .item {
    padding: 36px 19px 32px 19px;
  }

  .head_search .wrap .content .matter .item .img {
    height: 198px;
  }

  .head_search .wrap .content .matter .item {
    width: 23.3%;
  }

  footer .bottom .wrap .other .icon .er .mark .item {
    width: 90px;
  }

  .head_search .wrap .content .matter .item .text .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media screen and (max-width: 1306px) {
  .header .keep_left .nav a:not(:last-child) {
    margin: 0 35px 0 0;
  }

  .header .keep_left .logo {
    margin: 0 40px 0 0;
  }

  .header .keep_right .search {
    margin: 0 15px 0 0;
  }

  .header .flex_r .click {
    margin: 0 0 0 39px;
  }

  .fixed_pro .wrap .right {
    width: 58.364583vw;
  }

  .head_search .wrap .content .matter .item .text .text p {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .head_search .wrap .content2 .flex {
    grid-gap: 1px 29px;
  }
}

@media screen and (max-width: 1186px) {
  .header .keep_left .nav a:not(:last-child) {
    margin: 0 27px 0 0;
  }

  .header .keep_left .logo {
    margin: 0 28px 0 0;
  }

  .header .flex_r .click p {
    font-size: 14px;
  }

  .header .flex_r .click {
    margin: 0 0 0 31px;
  }

  .fixed_pro .clone {
    left: calc(31.364583vw + 642px);
  }

  .fixed_pro .wrap .side {
    width: 238px;
    margin: 0 41px 0 0;
  }

  .fixed_pro .wrap .side .item .text {
    font-size: 13px;
  }

  .head_search .wrap .content .matter .item {
    width: 23%;
  }
}

@media screen and (max-width: 1120px) {
  .header .keep_left .logo {
    width: 98px;
    height: 22px;
  }

  .header .keep_left .nav a {
    font-size: 12px;
  }

  .header .keep_right .img .head_swiper {
    width: 70px;
    height: 54px;
  }
}

@media screen and (max-width: 1023px) {
  .alert_video {
    display: none !important;
    opacity: 1 !important;
  }

  body .video_active {
    display: flex !important;
  }

  .header .keep_left .nav {
    display: none;
  }

  .header {
    height: auto !important;
    display: block;
    padding: 0;
    background: #fff;
  }

  .header .keep_left .logo {
    width: 90px;
    height: 20.28px;
  }

  .header .keep_right .img .head_swiper {
    width: 50px;
    height: 30px;
    margin: 0 13px 0 0;
  }

  .header .keep_right .language {
    display: none;
  }

  .header .keep_right .search svg {
    width: 22px;
    height: 32px;
  }

  .header .keep_right .search img {
    max-width: fit-content;
    width: 25px;
    position: relative;
    top: 0px;
    opacity: 0.5;
    object-fit: contain;
  }

  .header .keep_right .search {
    position: relative;
    left: 58px;
  }

  .header .side {
    width: 100%;
    z-index: 999999999999999;
  }

  .header .side .item .none a {
    padding: 0 0 0 5%;
  }

  .header .side .side_h {
    padding: 0 5%;
    height: 55px;
  }

  .header .side .side_h p {
    font-size: 22px;
  }

  .header .keep_right .img,
  .header .flex_r .click {
    display: none;
  }

  .header {
    background: #fff;
  }

  .header .side .close {
    top: -1px;
  }

  .header .keep_left .logo img:nth-child(1) {
    opacity: 0;
  }

  .header .keep_left .logo img:nth-child(2) {
    opacity: 1;
  }

  .header .keep_right .search {
    filter: invert();
  }

  .header .mobile_hide {
    display: flex !important;
    width: 100%;
    height: 44px;
    background: #f1f1f3;
    padding: 0 5%;
    align-items: center;
    justify-content: space-between;
    z-index: 9;
    position: relative;
  }

  .header .flex_r .click p {
    font-size: 12px;
  }

  .header .flex_r .click .sq {
    display: none;
  }

  .header .mobile_hide .keep_right .img>.next {
    filter: invert() !important;
    display: none;
  }

  .header .mobile_hide {
    height: 67px;
  }

  .header .head_joke {
    padding: 0 5%;
    background: #fff;
    height: 71px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

  }

  .header .flex_r .click .sq span {
    background: #000;
  }

  .header .flex_r .click p {
    color: #000;
  }

  .mobile_hide .flex_r .click {
    display: flex !important;
  }

  .mobile_hide .keep_right .img {
    display: flex !important;
  }

  .mobile_menu {
    display: block !important;
    transform: scale(0.35);
    transform-origin: right;
  }

  .mobile_menu .line {
    fill: none;
    stroke: rgba(0, 0, 0, 0.5);
    stroke-width: 4;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile_menu .line.line1 {
    stroke-dasharray: 60 207;
  }

  .mobile_menu .line.line2 {
    stroke-dasharray: 60 60;
  }

  .mobile_menu .line.line3 {
    stroke-dasharray: 60 207;
  }

  .mobile_menu.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }

  .mobile_menu.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
  }

  .mobile_menu.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }

  .header .keep_right .img .head_swiper .swiper-slide a.much img:nth-child(1) {
    opacity: 0 !important;
  }

  .header .keep_right .img .head_swiper .swiper-slide a.much img:nth-child(2) {
    opacity: 1 !important;
  }

  .head_search .wrap {
    margin: 17vh auto 0;
  }

  .head_search .wrap .clone {
    font-size: 16px;
  }

  .head_search .wrap .label .list {
    width: 22%;
    height: 32px;
    margin: 0 11px 0 0;
  }

  .head_search .wrap .label .list:last-child {
    margin: 0;
  }

  .head_search .wrap form input {
    width: 70%;
    height: 60px;
  }

  .head_search .wrap form button {
    padding: 10px 25px;
  }

  .head_search .wrap form input {
    font-size: 15px;
  }

  .head_search .wrap .label {
    margin: 0 0 47px 0;
  }

  .head_search .wrap form {
    margin: 0 0 47px 0;
  }

  .head_search .wrap .content .headline {
    font-size: 22px;
  }

  .head_search .wrap .content .matter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }

  .head_search .wrap .content .matter .item {
    width: 100%;
    margin: 0;
  }

  .head_search .wrap .content2 .item {
    margin: 0 !important;
  }

  .head_search .wrap .content .matter .item .img {
    height: auto;
  }

  .head_search .wrap .content .matter .item .img {
    width: 77%;
  }

  .head_search .wrap .content2 .flex {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 35px 15px;
  }

  .head_search .wrap .content2 {
    margin: 35px 0 50px 0;
  }

  .header.search_on .flex_r .click p,
  .header.search_on .keep_right .img {
    opacity: 1 !important;
  }

  .head_search .wrap .content2 .item .text .time {
    margin: 0 0 11px 0;
    font-size: 13px;
  }

  .head_search .wrap .content2 .item .img {
    margin: 0 0 19px 0;
  }

  .head_search .wrap .content2 .item .img {
    font-size: 14px;
  }

  .head_search .wrap .content2 .item .text span {
    margin: 0 0 16px 0;
  }

  .head_search .wrap .content2 .item .text span {
    font-size: 17px;
  }

  .head_search .wrap .content3 {
    margin: 27px 0 30px 0;
  }

  .head_search .wrap .content3 .flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  .head_search .wrap .content3 .flex a {
    width: 100%;
    height: 61px;
  }

  footer .top .wrap {
    margin: 38px auto 42px;
  }

  footer .top .wrap .foo_logo {
    margin: 0 auto 51px;
  }

  footer .top:after {
    top: 94px;
  }

  footer .top .wrap .content {
    flex-direction: column;
  }

  footer .top .wrap .content .foo_nav .item:not(:last-child) {
    margin: 0 47px 0 0;
  }

  footer .top .wrap .content .foo_nav {
    margin: 0 0 20px 0;
  }

  footer .top .wrap .content .foo_information .tel {
    font-size: 20px;
  }

  footer .top .wrap .content .foo_information .tel {
    margin: 0 0 20px 0;
  }

  footer .top .wrap .content .foo_information .time p {
    font-size: 13px;
  }

  footer .bottom .wrap .other {
    flex-direction: column;
  }

  footer .bottom .wrap .other .link a:not(:last-child) {
    margin: 0 37px 0 0;
  }

  footer .top .wrap .content .foo_information {
    text-align: center;
  }

  footer .top .wrap .content .foo_information .time {
    margin: 0 0 5px 0;
  }

  footer .bottom .wrap .other .link {
    margin: 0 0 16px 0;
  }

  footer .bottom:after {
    top: 90px;
  }

  footer .bottom .wrap .down {
    flex-direction: column;
    align-items: unset;
  }

  footer .bottom .wrap .down div {
    flex-wrap: wrap;
  }

  footer .bottom .wrap .down p,
  footer .bottom .wrap .down a {
    line-height: 25px;
    text-align: center;
    display: inline;
    font-size: 13px;
  }

  footer .bottom .wrap .down div {
    display: block;
    text-align: center;
  }

  footer .bottom .wrap .other .link a:not(:last-child):after {
    right: -20px;
  }

  footer .bottom .wrap {
    margin: 0 auto 30px;
  }

  footer .top .wrap .content .foo_nav {
    display: none;
  }

  footer .top .wrap .foo_logo {
    display: flex;
    justify-content: center;
  }

  .not_banner {
    margin: 137px 0 0 0;
  }

  .not_banner .parallax {
    transform: none !important;
  }

  #my-scrollbar {
    height: auto;
  }

  .head_search .wrap .content .matter .item:nth-child(4n) {
    margin: 0;
  }

}

@media screen and (max-width: 670px) {

  .head_search .wrap .content .matter,
  .head_search .wrap .content2 .flex {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media screen and (max-width: 500px) {
  .header .head_joke {
    height: 48px;
  }

  .header .mobile_hide {
    height: 44px;
  }

  .not_banner {
    margin: 93px 0 0 0;
  }
}

@media screen and (max-width: 450px) {

  .head_search .wrap .content .matter,
  .head_search .wrap .content2 .flex,
  .head_search .wrap .content3 .flex {
    grid-template-columns: repeat(1, 1fr);
  }
}