:root {
  --font24: 24px;
  --font16: 16px;
}

.hertre {
  width: 100%;
  z-index: 999;
  height: 70px;
  position: fixed;
  top: 0;
}

.fixed {
  background: rgb(0, 0, 0, 0.7);
}

.hertre_cen {
  width: var(--max);
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.logo {
  width: 180px;
  overflow: hidden;

}

.logo img {
  width: 100%;
  height: auto;
}

.nav {
  width: 100%;
  height: 100%;
}

.nav ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.nav ul li {
  font-size: var(--font16);
  color: #ffffff;
  line-height: 70px;
  text-align: center;
  margin: 0 30px;
  position: relative;
}


.nav ul li::after {
  content: "";
  width: 0%;
  height: 4px;
  background: #009656;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}

.nav ul li.nav_cen::after {
  width: 150%;
}

.nav ul li:hover::after {
  width: 150%;
}


.nav_ul {
  width: calc(100% - 15vw);
  overflow: hidden;
  background: rgba(0, 150, 86, 0.7);
  position: fixed;
  top: 70px;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding-right: 19.5vw;
  transform: scale(0);
  transform-origin: top center;
}

.nav_ul a {
  display: block;
  line-height: 54px;
  margin-left: 2.5vw;
}

.nav ul li:hover .nav_ul {
  transform: scale(1)
}


.an {
  width: 60px;
  height: 60px;
  display: none;
  position: absolute;
  right: 0%;
  top: 0;
  transition: all 0.5s;
  z-index: 999;
}

.container {
  cursor: pointer;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.5s;
}

.container svg {
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.active svg {
  transform: rotate(90deg);
}

path {
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

path:nth-child(1) {
  transform-origin: 36% 40%;
}

path:nth-child(2) {
  stroke-dasharray: 29 299;
}

path:nth-child(3) {
  transform-origin: 35% 63%;
}

path:nth-child(4) {
  stroke-dasharray: 29 299;
}

path:nth-child(5) {
  transform-origin: 61% 52%;
}

path:nth-child(6) {
  transform-origin: 62% 52%;
}

.active path:nth-child(1) {
  transform: translateX(9px) translateY(1px) rotate(45deg);
}

.active path:nth-child(2) {
  stroke-dasharray: 225 299;
  stroke-dashoffset: -72px;
}

.active path:nth-child(3) {
  transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.active path:nth-child(4) {
  stroke-dasharray: 225 299;
  stroke-dashoffset: -72px;
}

.active path:nth-child(5) {
  transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.active path:nth-child(6) {
  transform: translateX(9px) translateY(1px) rotate(45deg);
}

.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.mySwiper .swiper-pagination {
  bottom: 10px !important;
}


.banner .swiper-pagination {
  bottom: 30px !important;
}

.mySwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  border-radius: 116.29px;
  background: rgba(255, 255, 255, 0.5);
}

.mySwiper .swiper-pagination-bullet-active {
  width: 18px;
  height: 8px;
  opacity: 1;
  border-radius: 116.29px;
  background: white;
}

.banner_text {
  width: var(--max);
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hidden {
  display: none;
}

.xinwen {
  width: calc(100% - 180px);
  overflow: hidden;
  margin: auto;
}

.xinwen ul.list {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.xinwen ul.list li {
  width: calc(33.33% - 20px);
  overflow: hidden;
  margin-left: 30px;
  margin-top: 4vw;
}

.xinwen ul.list li:nth-child(3n+1) {
  margin-left: 0px;
}

.xinwen ul.list li img {
  width: 100%;
  height: auto;
}

.xinwen ul.list li h1 {
  font-size: var(--font24);
  color: #009656;
  margin-top: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.xinwen ul.list li p {
  font-size: var(--font16);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;

  color: rgb(0, 0, 0, 0.4);
  line-height: 1.5;
  margin-top: 40px;
}

.xinwen ul.list li span {
  font-size: var(--font16);
  color: #009656;
  display: block;
  margin-top: 20px;
}

.more {
  overflow: hidden;
  width: max-content;
  margin: 4vw auto;
}

.more>svg {
  margin: auto;
  display: block;
}

.more_svg {
  width: max-content;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.more a {
  color:
    font-size: 20px;

}

.box2 {
  width: 30px;
  height: 20px;
  display: none;
}

.box2 svg {
  width: 100%;
  height: 100%;
  animation: rota2 1s steps(12, end) infinite;
}

@-webkit-keyframes rota2 {
  0% {
    transform: rotate3d(0, 0, 1, 0deg);
  }

  100% {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.show {
  width: 1300px;
  max-width: 96%;
  overflow: hidden;
  margin: 50px auto;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 0 100px;
}

.show h1 {
  font-size: 30px;
  color: #3D3D3D;
  margin-top: 40px;
}

.ly {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  font-size: 14px;
  color: rgb(0, 0, 0, 0.4);
  font-weight: bold;
  border-bottom: 1px solid rgb(0, 0, 0, 0.4);
  padding-bottom: 15px;
}

.ly p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.ly p img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.show_text {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgb(0, 0, 0, 0.4);
  margin-top: 40px;
  padding-bottom: 40px;
  font-size: 14px;
  color: rgb(0, 0, 0, 0.4);
  line-height: 24px;
}

.show_text img {
  max-width: 100%;
  height: auto;
}

.prev {
  width: 100%;
  overflow: hidden;
  margin: 20px auto;
  font-size: 14px;
  color: rgb(0, 0, 0, 0.4);
  line-height: 30px;
}

.prev a {
  display: block;
}

.zaisheng {
  width: 100%;
  overflow: hidden;
  margin-top: 4vw;
}

.zaisheng ul {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.zaisheng li {
  width: 33.33%;
  overflow: hidden;
}

.zaisheng li a {
  display: flex;
  flex-wrap: wrap;
}

.zaisheng ul li img {
  width: 100%;
  aspect-ratio: 4 / 2;
  object-fit: cover;
}

.zaisheng ul li h1 {
  width: 100%;
  aspect-ratio: 4 / 2;
  background: #009656;
  color: #fff;
  font-size: var(--font24);
  display: flex;
  justify-content: center;
  align-items: center;
}

.zaisheng ul li:nth-child(6n+2) a,
.zaisheng ul li:nth-child(6n+5) a {
  flex-direction: column-reverse;
}

.zaisheng ul li:nth-child(6n+2) h1,
.zaisheng ul li:nth-child(6n+5) h1 {
  background: #2D2D2D;
}

.anli {
  width: 100%;
  overflow: hidden;
  margin: 5vw auto;
}

.anli>h1 {
  text-align: center;
  font-size: var(--font24);

  color: #3D3D3D;
  font-weight: bold;
}

.anli ul {
  width: 1440px;
  max-width: 100%;
  margin-top: 20px;
}

.anli ul li {
  width: 100%;
  overflow: hidden;
  margin-top: 3vw;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 30vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.anli ul li a {
  display: block;
  width: 100%;
  overflow: hidden;
}

.anli_text {
  width: 100%;
  overflow: hidden;
  padding: 30px 13vw;
}

.anli_text h1 {
  font-size: var(--font24);

  color: #FFFFFF;
}

.anli_text p {
  font-size: var(--font16);
  color: #fff;
  margin-top: 5vw;
  line-height: 2.5;
}

.huanbao {
  width: 100%;
  overflow: hidden;
  margin-top: 4vw;
}

.huanbao ul {
  width: 100%;
  overflow: hidden;
}

.huanbao ul li,
.huanbao ul li a {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-betweenl
}

.huanbao ul li:nth-child(2n) a {
  flex-direction: row-reverse;
}

.huanbao ul li img {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.huanbao_text {
  width: 50%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  padding: 40px;
  padding-right: 13vw;
}

.huanbao ul li:nth-child(2n) .huanbao_text {
  padding-left: 13vw;
  padding-right: 40px;
}

.huanbao_text h1 {
  width: 100%;
  font-size: var(--font24);
  color: #3D3D3D;
}

.huanbao_text p {
  width: 100%;
  font-size: var(--font16);
  color: #3D3D3D;
  line-height: 1.5;
  margin-top: 20px;
}

.shiyuan {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 5vw;
}

.shiyuan::after {
  content: "";
  width: 100%;
  height: 348px;
  background: #299E6A;
  position: absolute;
  top: 0;
  left: 0;
}

.shiyuan>h1 {
  font-size: var(--font24);
  color: #fff;
  padding-left: 13vw;
  margin-top: 3vw;
  position: relative;
  z-index: 1;
}

.shiyuan ul {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 15vw;
  position: relative;
  z-index: 1;
}

.shiyuan ul li {
  width: calc(50% - 15px);
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

.shiyuan ul li img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.shiyuan ul li h1 {
  font-size: 30px;
  color: #FFFFFF;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px 20px;
  text-align: center;
}

.xunhuan {
  width: 100%;
  overflow: hidden;
  margin: 4vw auto;
}

.xunhuan ul {
  width: 100%;
  overflow: hidden;
}

.xunhuan ul li,
.xunhuan ul li a {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-betweenl
}

.xunhuan ul li:nth-child(2n) a {
  flex-direction: row-reverse;
}

.xunhuan ul li img {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.xunhuan_text {
  width: 50%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  padding: 40px 12vw 40px 6vw;
}

.xunhuan ul li:nth-child(2n) .xunhuan_text {
  padding: 40px 6vw 40px 12vw;
}

.xunhuan_text h1 {
  width: 100%;
  font-size: var(--font24);
  color: #3D3D3D;
}

.xunhuan_text p {
  width: 100%;
  font-size: var(--font16);
  color: #3D3D3D;
  line-height: 1.5;
  margin-top: 10px;
}

.guanyu {
  width: 1400px;
  max-width: 96%;
  overflow: hidden;
  margin: auto;
  margin-top: 5vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.guanyu img {
  width: 420px;
  height: auto;
}

.guanyu_l {
  width: 640px;
  overflow: hidden;
}

.guanyu_l h1 {
  font-size: 34px;
  color: rgba(0, 150, 86, 1);
}

.guanyu_l p {
  font-size: var(--font16);
  color: rgba(61, 61, 61, 0.4);
  line-height: 1.7;
  margin-top: 4vw;
}

.guanyu_l ul {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4vw;
}

.guanyu_l ul li {
  font-size: 18px;
  color: rgba(0, 150, 86, 1);
  margin-right: 4vw;
  font-weight: bold;
}

.numCount {
  width: 1400px;
  max-width: 96%;
  overflow: hidden;
  margin: auto;
  margin-top: 5vw;
}

.numCount ul {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.numCount ul li {
  width: max-content;
  overflow: hidden;
}

.numCc {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.numCc h1 {
  font-size: 50px;
  color: rgba(0, 150, 86, 1);
  font-weight: bold;
  line-height: 1;
}

.numCc span {
  font-size: 16px;
  color: rgba(0, 150, 86, 1);

  font-weight: bold;
}

.numCount ul li p {
  font-size: 16px;
  color: rgba(61, 61, 61, 0.4);
  font-weight: bold;
  margin-top: 15px;
}

.xhzs {
  width: 100%;
  overflow: hidden;
  background-image: url(../images/geijing.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3vw;
  padding-bottom: 8vw;
  margin-top: 5vw;
}

.xhzs>h1 {
  text-align: center;
  font-size: 36px;
  color: rgba(255, 255, 255, 1);
  font-weight: bold;
}

.xhzs ul {
  width: 1400px;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3vw;
}

.xhzs ul li {
  width: 25%;
  height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
}

.xhzs ul li::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0, 0.2);
}

.xhzs_max {
  width: 100%;
  overflow: hidden;
  padding: 40px;
  padding-bottom: 0px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  ;
}

.xhzs_max h1 {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  transition: all 0.5s;
}

.xhzs_max p {
  font-size: 16px;
  color: #fff;
  margin-top: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;

}

.xhzs_max a {
  width: 180px;
  max-width: 100%;
  height: 50px;
  border-radius: 5px;
  background: #fff;
  display: block;
  margin-top: 3vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(41, 158, 106, 1);
  padding: 0 20px;
}

.yc {
  width: 100%;
  overflow: hidden;
  margin-bottom: -130px;
}

.zaishngpin {
  width: 1400px;
  max-width: 96%;
  overflow: hidden;
  margin: auto;
  margin-top: 5vw;
}

.zaishngpin>h1 {
  text-align: center;
  font-size: 36px;
  color: #000;
  font-weight: bold;
}

.zaishngpin ul {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.zaishngpin ul li {
  width: calc(33.33% - 15px);
  overflow: hidden;
  margin-top: 4vw;
  position: relative;
}

.zaishngpin ul li img {
  width: 100%;
  height: auto;
}

.zaishngpin ul li h1 {
  font-size: var(--font24);
  color: #FFFFFF;
  padding: 30px;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.zaishngpin ul li::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0, 0.2);
}

.in_xinwen {
  width: 100%;
  overflow: hidden;
  background-image: linear-gradient(#FCFFF3, #FFFFFF);
  margin-top: 5vw;
}

.in_xinwen_max {
  width: 1400px;
  max-width: 96%;
  overflow: hidden;
  margin: 5vw auto;
}

.in_xinwen>h1 {
  width: 100%;
  margin: auto;
  font-size: 36px;
  color: #000;
  font-weight: bold;
}

.in_xinwen ul {
  width: 100%;
  margin: auto;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.in_xinwen ul li {
  width: calc(33.33% - 20px);
  overflow: hidden;
  margin-left: 30px;
  margin-top: 4vw;
}

.in_xinwen ul li:nth-child(3n+1) {
  margin-left: 0px;
}

.in_xinwen ul li img {
  width: 100%;
  height: auto;
}

.in_xinwen ul li h1 {
  font-size: var(--font24);
  color: #009656;
  margin-top: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.in_xinwen ul li p {
  font-size: var(--font16);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;

  color: rgb(0, 0, 0, 0.4);
  line-height: 1.5;
  margin-top: 40px;
}

.in_xinwen ul li span {
  font-size: var(--font16);
  color: #009656;
  display: block;
  margin-top: 20px;
}

.in_xinwen_max>a {
  display: block;
  width: 200px;
  line-height: 48px;
  background: #299E6A;
  border-radius: 5px;
  display: block;
  margin-top: 40px;
  font-size: var(--font16);
  color: #fff;
  text-align: center;
}

.xiangmu {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 5vw;
  display: none;
}

.xiangmu_max {
  width: 1400px;
  max-width: 96%;
  margin: auto;
  position: relative;
}

.xiangmu_max>h1 {
  font-size: 36px;
  color: #000;
  font-weight: bold;
}

.mySwiper2 {
  width: 100%;
  overflow: hidden;
  margin-top: 5vw;
}

.mySwiper2 .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.mySwiper2 .swiper-slide h1 {
  width: max-content;
  overflow: hidden;
  font-size: 50px;
  color: rgba(61, 61, 61, 1);
  font-weight: bold;
}

.mySwiper2 .swiper-slide img {
  width: 370px;
  height: auto;
}

.mySwiper2 .swiper-slide P {
  width: calc(100% - 650px);
  font-size: 14px;
  color: rgba(61, 61, 61, 0.5);
  line-height: 1.5;
}

.mySwiper {
  width: 100%;
  overflow: hidden;
  margin-top: 5vw;
}

.mySwiper .swiper-slide {
  font-size: 14px;
  color: rgba(61, 61, 61, 0.4);
  text-align: center;
  padding-bottom: 20px;
  cursor: pointer;
}

.mySwiper .swiper-slide::after {
  content: "";
  width: 2px;
  height: 10px;
  background: rgba(61, 61, 61, 0.4);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.xiangmu i {
  width: 100%;
  height: 2px;
  display: block;
  background: rgba(61, 61, 61, 0.4);
}

.xiangmu_max .swiper-button-next,
.xiangmu_max .swiper-button-prev {
  width: 42px;
  height: 42px;
  margin-top: 0px;
}

.xiangmu_max .swiper-button-next:after,
.xiangmu_max .swiper-button-prev:after {
  display: none;
}

.xiangmu_max .swiper-button-next img,
.xiangmu_max .swiper-button-prev img {
  width: 100%;
  height: 100%;
}

.xiangmu_max .swiper-button-next {
  position: absolute;
  top: 0;
  right: 0px;
}

.xiangmu_max .swiper-button-prev {
  position: absolute;
  top: 0;
  left: auto;
  right: 60px;
}

.xiangmu_max .swiper-slide-thumb-active {
  color: #009656;
  font-weight: bold;
}

.xiangmu_max .mySwiper .swiper-slide::after {
  background: #009656;
}
.footer{
  width: 100%;
  overflow: hidden;
  background: rgba(61, 61, 61, 1);
}
.footer_max{
  width: 1400px;
  max-width: 96%;
  overflow: hidden;
  margin: 3vw auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer_r{
  width: 54%;
  overflow: hidden;
}
.footer_r h1{
  font-size: 20px;
  color: rgba(255, 255, 255, 1);
}
.footer_r form{
  width: 100%;
  overflow: hidden;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_r form input{
  width: calc(50% - 10px);
  margin-top: 20px;
  height: 56px;
  background: #fff;
  border: none;
  font-size: var(--font16);
  color: rgba(61, 61, 61, 0.4);
  padding: 0 20px;
  font-family: "微软雅黑";
}
.footer_r form textarea{
  width: 100%;
  margin-top: 20px;
  height: 135px;
  background: #fff;
  border: none;
  font-size: var(--font16);
  color: rgba(61, 61, 61, 0.4);
  padding: 20px;
  font-family: "微软雅黑";
}
.footer_r form input.submit{
  width: 180px;
  height: 50px;
  font-size: var(--font16);
  color: rgba(41, 158, 106, 1);
  margin-top: 30px;
  border-radius: 5px;
  cursor: pointer;
}
.layui-layer{
  transition: auto;
}
.footer_l{
  width: 30%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_l ul{
  width: 100px;
		text-align: center;
  overflow: hidden;
  margin-top: 10px;
}
.footer_l h1{
  font-size: 20px;
  color: rgba(255, 255, 255, 1);
}
.footer_l ul li{
  width: 100%;
  overflow: hidden;
  font-size: var(--font16);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
}
.erweima{
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.erweima img{
  width: 100px;
  height: auto;
}

.beian{
  width: 1400px;
  max-width: 96%;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: var(--font16);
  color: rgba(255, 255, 255, 0.5);
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  margin: auto;
}


