header {
  width: 100vw;
  position: sticky;
  z-index: 98;
  top: 0;
  left: 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  header {
    display: none;
  }
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 80px;
  max-width: 1400px;
  background-color: #fff;
  margin: 0 auto;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid #e5e5e5;
  box-sizing: content-box;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  header .wrapper {
    justify-content: center;
  }
}
header .wrapper .logo-sec {
  /* margin-left: 12px; */
  font-weight: 500;
  letter-spacing: 0;
}
header .wrapper .logo-sec .logo {
  width: 160px;
  margin: 0 auto;
}
header .wrapper .logo-sec .phone {
  position: relative;
  left: 0;
  top: 6px;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  display: flex;
  align-items: center;
  height: 21px;
  line-height: 14px;
}
header .wrapper .logo-sec .phone .phoneicon {
  width: 14px;
  height: 14px;
  fill: #ee2d2d;
  margin-right: 4px;
}
header .wrapper .m-nav {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  width: 40%;
  bottom: 0;
  left: 0;
  height: 66px;
  height: calc(60px + constant(safe-area-inset-bottom));
  height: calc(60px + env(safe-area-inset-bottom));
  z-index: 20;
}
@media screen and (max-width: 768px) {
  header .wrapper .m-nav {
    align-items: flex-start;
    position: fixed;
    width: 100%;
    padding-top: 6px;
  }
}
header .wrapper .m-nav .base {
  position: relative;
  height: 100%;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  header .wrapper .m-nav .base {
    font-size: 12px;
    margin-top: 4px;
  }
}
@media screen and (min-width: 768px) {
  header .wrapper .m-nav .base:hover {
    font-weight: 500;
  }
}
header .wrapper .m-nav .base .baseicon {
  width: 22px;
  height: 22px;
  margin: 0 auto;
  fill: #000000;
  display: none;
}
@media screen and (max-width: 768px) {
  header .wrapper .m-nav .base .baseicon {
    display: block;
  }
}
header .wrapper .m-nav .contect {
  position: relative;
  width: 40%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  height: 48px;
  border-radius: 99px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.75, -1.62, 0.47, 2.27);
}
@media screen and (max-width: 768px) {
  header .wrapper .m-nav .contect {
    width: 60%;
    animation: bigger 5s cubic-bezier(0.75, -1.62, 0.47, 2.27) infinite;
  }
  @keyframes bigger {
    0%,
    100% {
      transform: scale(1);
    }
    70% {
      transform: scale(1);
    }
    75% {
      transform: scale(1.05);
    }
    90% {
      transform: scale(1.05);
    }
    95% {
      transform: scale(1);
    }
  }
}
@media screen and (min-width: 768px) {
  header .wrapper .m-nav .contect:hover {
    height: 48px;
    transform: scale(1.1);
  }
}
header .wrapper .m-nav .contect:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-75deg, #000000, #979797, #000000);
  animation: shinning 5s linear infinite;
  z-index: 0;
}
@keyframes shinning {
  0% {
    transform: translateX(-100%);
  }
  75% {
    transform: translateX(-100%);
  }
  90% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
header .wrapper .m-nav .contect .text {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #ffcb00;
  z-index: 1;
}
header .wrapper .m-nav .contect .text .lineicon {
  width: 28px;
  height: 28px;
  fill: #ffcb00;
  margin-right: 8px;
}
.container .main {
  width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .container .main {
    width: 100%;
    overflow: unset;
  }
}
.container .news-main {
  width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  color: #333;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .container .news-main {
    width: 100%;
    padding: 0;
  }
}
.container .news-main .news-box {
  display: flex;
  justify-content: space-around;
  gap: 6%;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box {
    flex-direction: column;
  }
}
.container .news-main .news-box .left {
  width: 100%;
}
.container .news-main .news-box .left .news-cover .back {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 14px;
}
@media screen and (min-width: 768px) {
  .container .news-main .news-box .left .news-cover .back {
    display: none;
  }
}
.container .news-main .news-box .left .news-cover .back .backicon {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
}
.container .news-main .news-box .left .news-cover h1 {
  font-size: 48px;
  margin: 60px 30px;
  color: #000;
  /* background-image: -webkit-linear-gradient(45deg, #1dffef, #c075ff);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        -webkit-background-size: 100%;
                        display: inline-block; */
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .news-cover h1 {
    font-size: 32px;
    margin: 5% 20px;
  }
}
.container .news-main .news-box .left .news-cover .labelbox {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
  margin-bottom: 60px;
  font-size: 14px;
  color: #999;
  font-weight: 700;
  font-style: italic;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .news-cover .labelbox {
    margin-bottom: 30px;
  }
}
.container .news-main .news-box .left .news-cover .labelbox .time {
  margin: 0 30px;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .news-cover .labelbox .time {
    margin: 0 20px;
  }
}
.container .news-main .news-box .left .news-cover .labelbox .editor {
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .news-cover .labelbox .editor {
    margin-right: 20px;
  }
}
.container .news-main .news-box .left .news-cover .labelbox .views {
  display: flex;
  align-items: center;
  margin: 0 30px;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .news-cover .labelbox .views {
    margin: 0 20px;
  }
}
.container .news-main .news-box .left .news-cover .labelbox .views svg {
  width: 14px;
  height: 14px;
}
.container .news-main .news-box .left .news-cover .labelbox .views svg path {
  fill: #999;
}
.container .news-main .news-box .left .news-cover .labelbox .views .num {
  margin-left: 6px;
}
.container .news-main .news-box .left .news-cover .img-wrap {
  position: relative;
}
.container .news-main .news-box .left .news-cover .img-wrap .contact-wrap {
  position: absolute;
  bottom: 8px;
  left: 15px;
}
@media screen and (max-width: 768px) {
  .container .news-main .news-box .left .news-cover .img-wrap .contact-wrap {
    left: 10px;
    bottom: 6px;
  }
}
.container .news-main .news-box .left .news-cover .img-wrap .contact-wrap .qrcode-box {
  width: 130px;
  height: 130px;
  padding: 4px;
  border-radius: 6px;
  background-color: #fff;
}
.container .news-main .news-box .left .news-cover .img-wrap .contact-wrap .qrcode-box img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .container .news-main .news-box .left .news-cover .img-wrap .contact-wrap .qrcode-box {
    width: 60px;
    height: 60px;
    padding: 2px;
    border-radius: 4px;
  }
}
.container .news-main .news-box .left .news-cover .img-wrap .contact-wrap .line {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  font-style: italic;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
@media screen and (max-width: 768px) {
  .container .news-main .news-box .left .news-cover .img-wrap .contact-wrap .line {
    font-size: 18px;
  }
}
.container .news-main .news-box .left .tocnav {
  border: 1px solid #ccc;
  border-radius: 20px;
  width: fit-content;
  padding: 20px 40px;
  margin: 60px;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .tocnav {
    margin: 20px;
  }
}
.container .news-main .news-box .left .tocnav .tocnavtitle {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .tocnav .tocnavtitle {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.container .news-main .news-box .left .tocnav .tocify .tocify-header > li {
  margin-bottom: 6px;
}
.container .news-main .news-box .left .tocnav .tocify .tocify-header > li a {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  /* background-image: -webkit-linear-gradient(45deg, #ff9797, #9d76ff);
                                -webkit-background-clip: text;
                                -webkit-text-fill-color: transparent;
                                -webkit-background-size: 100%;
                                display: inline-block; */
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .tocnav .tocify .tocify-header > li a {
    font-size: 16px;
  }
}
.container .news-main .news-box .left .tocnav .tocify .tocify-subheader > li {
  margin: 0 0 8px 16px;
}
.container .news-main .news-box .left .tocnav .tocify .tocify-subheader > li a {
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
}
.container .news-main .news-box .left .content h2 {
  font-size: 28px;
  color: #000;
  /* background-image: -webkit-linear-gradient(45deg,  #ff9797,#9d76ff);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        -webkit-background-size: 100%;
                        display: inline-block; */
  margin: 60px 30px 30px;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .content h2 {
    margin: 40px 20px 20px;
  }
}
.container .news-main .news-box .left .content h3,
.container .news-main .news-box .left .content h4,
.container .news-main .news-box .left .content h5 {
  margin: 60px 30px 30px;
  border-left: 6px solid #000000;
  padding-left: 10px;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .content h3,
  .container .news-main .news-box .left .content h4,
  .container .news-main .news-box .left .content h5 {
    margin: 40px 20px 20px;
  }
}
.container .news-main .news-box .left .content article {
  font-size: 17px;
  letter-spacing: 0.6px;
  line-height: 1.8;
}
.container .news-main .news-box .left .content article img {
  width: 100%;
}
.container .news-main .news-box .left .content article p {
  margin: 2% 30px;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .content article p {
    margin: 20px;
  }
}
.container .news-main .news-box .left .content article .line-image-box {
  position: relative;
}
.container .news-main .news-box .left .content article .line-image-box .line_qrcode {
  position: absolute;
  width: 140px;
  bottom: 10px;
  right: 10px;
  border-radius: 10px;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .container .news-main .news-box .left .content article .line-image-box .line_qrcode {
    width: 60px;
    right: 4px;
    bottom: 4px;
    border-radius: 4px;
  }
}
.container .news-main .news-box .left .content article .line-image-box .line_id {
  position: absolute;
  color: #fff;
  bottom: 56px;
  right: 140px;
  font-size: 50px;
  font-weight: 900;
  font-style: italic;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .container .news-main .news-box .left .content article .line-image-box .line_id {
    font-size: 20px;
    bottom: 13px;
    right: 56px;
  }
}
.container .news-main .news-box .left .content table {
  width: auto !important;
  margin: 0 30px;
  border: 1px solid #4d4d4d;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .content table {
    margin: 0 20px;
  }
}
.container .news-main .news-box .left .content table tbody tr th {
  text-align: center !important;
  padding: 20px;
}
.container .news-main .news-box .left .content table tbody tr td {
  text-align: center !important;
  padding: 20px;
  border-top: 1px solid #4d4d4d;
}
.container .news-main .news-box .left .content .btnbox-article {
  display: none;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .content .btnbox-article {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 3% auto 0;
  }
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .content .btnbox-article .button {
    width: calc(50% - 5px);
    height: 54px;
  }
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .content .btnbox-article .button .text i {
    margin-right: 4px;
  }
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .left .content .btnbox-article .button .text .btn-num {
    font-size: 14px;
  }
}
.container .news-main .news-box .left .content .position {
  opacity: 0;
}
.container .news-main .news-box .right-sticky {
  position: relative;
}
.container .news-main .news-box .right-sticky .right {
  width: 240px;
  position: sticky;
  top: 100px;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .right-sticky .right {
    width: auto;
    margin: 0 20px;
  }
}
.container .news-main .news-box .right-sticky .right .hot-box h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 50px 0 16px 8px;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .right-sticky .right .hot-box h3 {
    margin: 60px 0 20px;
  }
}
.container .news-main .news-box .right-sticky .right .hot-box .list .hot-news {
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.container .news-main .news-box .right-sticky .right .hot-box .list .hot-news img {
  width: 100%;
}
.container .news-main .news-box .right-sticky .right .hot-box .list .hot-news .img-wrap {
  position: relative;
}
.container .news-main .news-box .right-sticky .right .hot-box .list .hot-news .img-wrap .contact-wrap {
  position: absolute;
  bottom: 2px;
  left: 2px;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .right-sticky .right .hot-box .list .hot-news .img-wrap .contact-wrap {
    bottom: 20px;
    left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .container .news-main .news-box .right-sticky .right .hot-box .list .hot-news .img-wrap .contact-wrap {
    bottom: 4px;
    left: 6px;
  }
}
.container .news-main .news-box .right-sticky .right .hot-box .list .hot-news .img-wrap .contact-wrap .qrcode-box {
  width: 40px;
}
.container .news-main .news-box .right-sticky .right .hot-box .list .hot-news .img-wrap .contact-wrap .qrcode-box img {
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .right-sticky .right .hot-box .list .hot-news .img-wrap .contact-wrap .qrcode-box {
    width: 110px;
  }
}
@media screen and (max-width: 768px) {
  .container .news-main .news-box .right-sticky .right .hot-box .list .hot-news .img-wrap .contact-wrap .qrcode-box {
    width: 60px;
  }
  .container .news-main .news-box .right-sticky .right .hot-box .list .hot-news .img-wrap .contact-wrap .qrcode-box img {
    border-radius: 6px;
  }
}
.container .news-main .news-box .right-sticky .right .hot-box .list .hot-news .img-wrap .contact-wrap .line {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
@media screen and (max-width: 1024px) {
  .container .news-main .news-box .right-sticky .right .hot-box .list .hot-news .img-wrap .contact-wrap .line {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .container .news-main .news-box .right-sticky .right .hot-box .list .hot-news .img-wrap .contact-wrap .line {
    font-size: 16px;
  }
}
.container .news-main .news-box .right-sticky .right .hot-box .list .hot-news .hot-news-title {
  font-size: 15px;
  color: #333;
  font-weight: 700;
  padding: 12px;
}
.container .news-main .news-box .right-sticky .right .btnbox {
  position: sticky;
  display: flex;
  flex-direction: column;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .container .news-main .news-box .right-sticky .right .btnbox {
    display: none;
    z-index: 20;
    justify-content: space-evenly;
  }
}
.container .news-main .news-box .right-sticky .right .btnbox .button {
  width: 240px;
  margin-top: 40px;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .container .news-main .news-box .right-sticky .right .btnbox .button {
    width: calc(50% - 10px);
    max-width: 400px;
    padding: 10px 0px;
    height: 60px;
  }
}
.container .news-main .news-box .right-sticky .right .btnbox .button .text {
  margin-right: 0;
}
.container .news-main .news-box .right-sticky .right .btnbox .button .text i {
  font-size: 36px;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .container .news-main .news-box .right-sticky .right .btnbox .button .text i {
    font-size: 32px;
    margin-right: 6px;
  }
}
.container .news-main .news-box .right-sticky .right .btnbox .button .text p .btn-text {
  font-size: 20px;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .container .news-main .news-box .right-sticky .right .btnbox .button .text p .btn-text {
    font-size: 16px;
  }
}
.container .news-main .news-box .right-sticky .right .btnbox .button .text p .btn-num {
  font-size: 20px;
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .container .news-main .news-box .right-sticky .right .btnbox .button .text p .btn-num {
    font-size: 16px;
    font-weight: 700;
  }
}
.case-main .case {
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .case-main .case {
    flex-direction: column;
  }
}
.case-main .case .so {
  flex-grow: 1;
}
.case-main .case .empty {
  text-align: center;
  color: #999;
}
.case-main .case .present {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .case-main .case .present {
    flex-direction: column;
    padding: 8%;
  }
}
.case-main .case .present .title {
  text-align: center;
  font-size: 36px;
}
@media (max-width: 1024px) {
  .case-main .case .present .title {
    font-size: 22px;
  }
}
.case-main .case .present .news {
  overflow: hidden;
  width: 33.333333%;
}
.case-main .case .present .news:hover .sim {
  transform: translateY(-20px);
}
.case-main .case .present .news:hover .sim .img-wrap img {
  transform: scale(1.1);
}
.case-main .case .present .news:hover .sim .info-wrap::after {
  top: 5%;
}
@media (max-width: 1024px) {
  .case-main .case .present .news {
    width: 100%;
  }
}
.case-main .case .present .news .sim {
  margin: 30px 15px;
  transition: all 0.3s 0.1s ease-in-out;
}
.case-main .case .present .news .sim .img-wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 30px 30px 0 0;
}
.case-main .case .present .news .sim .img-wrap img {
  width: 100%;
  transition: all 0.3s 0.25s ease-in-out;
}
.case-main .case .present .news .sim .info-wrap {
  position: relative;
  background-color: #FFF;
  padding: 30px;
  border-radius: 0 0 30px 30px;
}
.case-main .case .present .news .sim .info-wrap::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  transform: scale(0.8);
  -webkit-filter: blur(20px);
  background-color: #000;
  border-radius: 0 0 30px 30px;
  transition: all 0.3s 0.1s ease-in-out;
}
.case-main .case .present .news .sim .info-wrap .sub-title {
  text-align: center;
}
.case-main .case .present .news .sim .info-wrap .news-title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
}
.case-main .case .present .news .sim .info-wrap .resolution .describe {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  margin-bottom: 20px;
  height: 63px;
}
.case-main .case .present .news .sim .info-wrap .resolution .views {
  display: flex;
  align-items: center;
}
.case-main .case .present .news .sim .info-wrap .resolution .views svg {
  width: 14px;
  height: 14px;
}
.case-main .case .present .news .sim .info-wrap .resolution .views svg path {
  fill: #999;
}
.case-main .case .present .news .sim .info-wrap .resolution .views .num {
  font-size: 12px;
  color: #999;
  font-weight: 500;
  margin-left: 4px;
  font-style: italic;
}
.case-main .case .present .contact {
  text-align: center;
  margin-top: 120px;
  margin-bottom: 64px;
}
.case-main .case .present .contact .tip {
  margin-bottom: 12px;
}
.case-main .case .present .contact .btn {
  width: 200px;
  height: 48px;
  background: #ffd103;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  margin: 0 auto;
}
.m-nav {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  width: 40%;
  bottom: 0;
  left: 0;
  height: 66px;
  height: calc(60px + constant(safe-area-inset-bottom));
  height: calc(60px + env(safe-area-inset-bottom));
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .m-nav {
    align-items: flex-start;
    position: fixed;
    width: 100%;
    padding-top: 6px;
  }
}
@media screen and (min-width: 768px) {
  .m-nav {
    display: none;
  }
}
.m-nav .base {
  position: relative;
  height: 100%;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .m-nav .base {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .m-nav .base:hover {
    font-weight: 500;
  }
}
.m-nav .base .baseicon {
  width: 22px;
  height: 22px;
  margin: 0 auto;
  fill: #000000;
  display: none;
}
@media screen and (max-width: 768px) {
  .m-nav .base .baseicon {
    display: block;
  }
}
.m-nav .contect {
  position: relative;
  width: 40%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  height: 48px;
  border-radius: 99px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.75, -1.62, 0.47, 2.27);
}
@media screen and (max-width: 768px) {
  .m-nav .contect {
    width: 60%;
    animation: bigger 5s cubic-bezier(0.75, -1.62, 0.47, 2.27) infinite;
  }
  @keyframes bigger {
    0%,
    100% {
      transform: scale(1);
    }
    70% {
      transform: scale(1);
    }
    75% {
      transform: scale(1.05);
    }
    90% {
      transform: scale(1.05);
    }
    95% {
      transform: scale(1);
    }
  }
}
@media screen and (min-width: 768px) {
  .m-nav .contect:hover {
    height: 48px;
    transform: scale(1.1);
  }
}
.m-nav .contect:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-75deg, #000000, #979797, #000000);
  animation: shinning 5s linear infinite;
  z-index: 0;
}
@keyframes shinning {
  0% {
    transform: translateX(-100%);
  }
  75% {
    transform: translateX(-100%);
  }
  90% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.m-nav .contect .text {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #ffcb00;
  z-index: 1;
}
.m-nav .contect .text .lineicon {
  width: 28px;
  height: 28px;
  fill: #ffcb00;
  margin-right: 8px;
}
