.index-top-sec {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: black;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 40%;
}
.index-top-sec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.index-top-sec .container {
  position: relative;
  width: 100%;
  max-width: 1640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index-top-sec .container > img {
  width: 320px;
  max-width: 100%;
  margin-bottom: 70px;
}
.index-top-sec .container .wave-tech-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 10px;
  margin-bottom: 70px;
}
.index-top-sec .container .wave-tech-text > span {
  font-size: 48px;
  font-weight: 500;
  color: white;
  text-align: center;
  opacity: 0.5;
}
.index-top-sec .container .wave-tech-text > small {
  font-size: 20px;
  font-weight: 500;
  color: white;
  text-align: center;
  opacity: 0.5;
}
.index-top-sec .container > p {
  margin-bottom: 100px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  color: white;
  text-align: center;
}
.index-top-sec .container .scroll-down {
  position: relative;
  width: 100px;
  height: 100px;
}
.index-top-sec .container .scroll-down > img {
  width: 100%;
  height: 100%;
}
.index-top-sec .container .scroll-down > img.rotate {
  animation-name: infinite-rotation;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}
.index-top-sec .container .scroll-down > img:last-of-type {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}

@keyframes infinite-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1640px) {
  .index-top-sec .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .index-top-sec {
    background-size: 70%;
    background-position: center;
  }
}
@media (max-width: 1024px) {
  .index-top-sec .container > img {
    width: 100%;
    max-width: 480px;
    margin-bottom: 50px;
  }
  .index-top-sec .container .wave-tech-text {
    margin-bottom: 50px;
  }
  .index-top-sec .container .wave-tech-text > span {
    font-size: 32px;
  }
  .index-top-sec .container .wave-tech-text > small {
    font-size: 16px;
  }
  .index-top-sec .container > p {
    margin-bottom: 70px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .index-top-sec {
    background-size: 90%;
  }
}
.index-solution-sec {
  width: 100%;
  padding: 50px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: black;
}
@keyframes cell-anim {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
.index-solution-sec .container {
  width: 100%;
  max-width: 1640px;
  display: flex;
  flex-direction: row;
  grid-gap: 50px;
}
.index-solution-sec .container .left {
  flex: 1 1 40%;
}
.index-solution-sec .container .left .left-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-gap: 70px 40px;
}
.index-solution-sec .container .left .left-grid .left-cell {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.index-solution-sec .container .left .left-grid .left-cell:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 1/3;
}
.index-solution-sec .container .left .left-grid .left-cell:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 2/4;
}
.index-solution-sec .container .left .left-grid .left-cell:nth-of-type(3) {
  grid-column: 1/2;
  grid-row: 3/5;
}
.index-solution-sec .container .left .left-grid .left-cell:hover .tit-wrap > img {
  animation-name: cell-anim;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}
.index-solution-sec .container .left .left-grid .left-cell .thumb-area {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  margin-bottom: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.index-solution-sec .container .left .left-grid .left-cell .tit-wrap {
  width: 100%;
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.index-solution-sec .container .left .left-grid .left-cell .tit-wrap > strong {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: white;
}
.index-solution-sec .container .left .left-grid .left-cell .tit-wrap > img {
  width: auto;
  height: 20px;
}
.index-solution-sec .container .left .left-grid .left-cell > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: white;
}
.index-solution-sec .container .right {
  position: relative;
  padding: 20px;
  flex: 1 1 40%;
}
.index-solution-sec .container .right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.index-solution-sec .container .right .right-inner {
  position: sticky;
  top: 150px;
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 40px;
}
.index-solution-sec .container .right .right-inner > img {
  width: 100%;
  height: auto;
}
.index-solution-sec .container .right .right-inner > p {
  font-size: 30px;
  font-weight: 300;
  color: white;
  line-height: 1.2;
}
.index-solution-sec .container .right .right-inner > p > em {
  font-weight: 700;
}

@media (max-width: 1640px) {
  .index-solution-sec .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .index-solution-sec .container .left .left-grid {
    grid-gap: 50px 20px;
  }
  .index-solution-sec .container .right .right-inner {
    grid-gap: 30px;
  }
  .index-solution-sec .container .right .right-inner > p {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .index-solution-sec .container {
    grid-gap: 30px;
  }
  .index-solution-sec .container .left .left-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 30px;
  }
  .index-solution-sec .container .left .left-grid .left-cell:nth-of-type(1), .index-solution-sec .container .left .left-grid .left-cell:nth-of-type(2), .index-solution-sec .container .left .left-grid .left-cell:nth-of-type(3) {
    grid-column: 1/2;
    grid-row: unset;
  }
}
@media (max-width: 768px) {
  .index-solution-sec .container {
    flex-direction: column-reverse;
  }
  .index-solution-sec .container .left .left-grid .left-cell .thumb-area {
    padding-bottom: 67%;
  }
  .index-solution-sec .container .right {
    background-size: cover;
    background-position: 0 10%;
  }
  .index-solution-sec .container .right .right-inner > p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .index-solution-sec .container .left .left-grid .left-cell .thumb-area {
    margin-bottom: 16px;
  }
  .index-solution-sec .container .left .left-grid .left-cell .tit-wrap {
    margin-bottom: 12px;
  }
  .index-solution-sec .container .left .left-grid .left-cell .tit-wrap > strong {
    font-size: 16px;
  }
  .index-solution-sec .container .left .left-grid .left-cell .tit-wrap > img {
    height: 16px;
  }
  .index-solution-sec .container .left .left-grid .left-cell > p {
    font-size: 12px;
  }
  .index-solution-sec .container .right .right-inner {
    grid-gap: 20px;
  }
  .index-solution-sec .container .right .right-inner > p {
    font-size: 16px;
    line-height: 1.4;
  }
}
.index-spec-sec {
  width: 100%;
  padding: 100px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.index-spec-sec .container {
  width: 100%;
  max-width: 1640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 70px;
}
.index-spec-sec .container > img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.index-spec-sec .container .spec-grid {
  width: 100%;
  display: flex;
  flex-direction: row;
  grid-gap: 30px;
}
.index-spec-sec .container .spec-grid .cell {
  flex: 1 1 22%;
  min-height: 430px;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  background: rgba(180, 180, 180, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.index-spec-sec .container .spec-grid .cell .top {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
.index-spec-sec .container .spec-grid .cell .top > img {
  width: auto;
  height: 50px;
}
.index-spec-sec .container .spec-grid .cell .top > em {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.index-spec-sec .container .spec-grid .cell > p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: white;
}
.index-spec-sec .container .spec-grid .cell > strong {
  margin-top: auto;
  align-self: flex-end;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: white;
}

@media (max-width: 1640px) {
  .index-spec-sec {
    padding: 70px 0;
  }
  .index-spec-sec .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .index-spec-sec .container {
    grid-gap: 50px;
  }
  .index-spec-sec .container .spec-grid {
    grid-gap: 20px;
  }
  .index-spec-sec .container .spec-grid .cell {
    min-height: 360px;
    padding: 30px 20px;
  }
  .index-spec-sec .container .spec-grid .cell .top {
    margin-bottom: 30px;
  }
  .index-spec-sec .container .spec-grid .cell .top > img {
    height: 30px;
  }
  .index-spec-sec .container .spec-grid .cell .top > em {
    font-size: 24px;
  }
  .index-spec-sec .container .spec-grid .cell > p {
    font-size: 16px;
  }
  .index-spec-sec .container .spec-grid .cell > strong {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .index-spec-sec .container {
    grid-gap: 30px;
  }
  .index-spec-sec .container .spec-grid {
    flex-wrap: wrap;
  }
  .index-spec-sec .container .spec-grid .cell {
    flex: 1 1 40%;
  }
}
@media (max-width: 480px) {
  .index-spec-sec .container .spec-grid .cell {
    min-height: 280px;
    padding: 20px;
    flex: 1 1 100%;
  }
  .index-spec-sec .container .spec-grid .cell .top {
    margin-bottom: 20px;
  }
  .index-spec-sec .container .spec-grid .cell > p {
    font-size: 14px;
  }
  .index-spec-sec .container .spec-grid .cell > strong {
    font-size: 32px;
  }
}
.index-notice-sec {
  width: 100%;
  padding: 100px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: black;
  overflow: hidden;
}
.index-notice-sec .container {
  width: 100%;
  max-width: 1640px;
  display: flex;
  flex-direction: column;
}
.index-notice-sec .container .sec-tit-wrap {
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
}
.index-notice-sec .container .sec-tit-wrap > h1 {
  position: relative;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.index-notice-sec .container .sec-tit-wrap > h1::after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0;
  width: 10px;
  height: 10px;
  background-color: #C306C9;
  border-radius: 500px;
  transform: translate(10px, -50%);
}
.index-notice-sec .container .notice-inner {
  width: 100%;
}
.index-notice-sec .container .notice-inner .no-content {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 50px;
  border: 1px solid white;
}
.index-notice-sec .container .notice-inner .no-content > svg {
  width: 80px;
  height: auto;
}
.index-notice-sec .container .notice-inner .no-content > strong {
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  color: white;
  text-align: center;
}
.index-notice-sec .container .notice-inner .index-notice-swiper {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
  overflow: visible;
}
.index-notice-sec .container .notice-inner .index-notice-swiper .swiper-control-pannel {
  align-self: flex-end;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 30px;
}
.index-notice-sec .container .notice-inner .index-notice-swiper .swiper-control-pannel .swiper-custom-prev > img {
  transform: rotate(180deg);
}
.index-notice-sec .container .notice-inner .index-notice-swiper .swiper-wrapper {
  width: 100%;
  overflow: visible;
}
.index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner {
  padding: 30px;
  border: 1px solid #2D2D2D;
  display: flex;
  flex-direction: column;
}
.index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner .top {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: row;
  grid-gap: 20px;
  border-bottom: 1px solid white;
}
.index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner .top .notice-thumb {
  position: relative;
  flex: 1 1 40%;
  height: 0;
  padding-bottom: 27%;
}
.index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner .top .notice-thumb > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner .top .notice-tit-wrap {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
}
.index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner .top .notice-tit-wrap .cate {
  padding: 8px 14px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: white;
  border: 1px solid white;
  border-radius: 500px;
}
.index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner .top .notice-tit-wrap .tit {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner .summary {
  min-height: 8em;
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 14px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: white;
}
.index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner > a > svg {
  width: auto;
  height: 16px;
}

@media (max-width: 1640px) {
  .index-notice-sec {
    padding: 70px 0;
  }
  .index-notice-sec .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .index-notice-sec .container .sec-tit-wrap {
    margin-bottom: 40px;
  }
  .index-notice-sec .container .sec-tit-wrap > h1 {
    font-size: 36px;
  }
  .index-notice-sec .container .notice-inner .no-content {
    height: 320px;
    grid-gap: 30px;
  }
  .index-notice-sec .container .notice-inner .no-content > svg {
    width: 50px;
  }
  .index-notice-sec .container .notice-inner .no-content > strong {
    font-size: 24px;
  }
  .index-notice-sec .container .notice-inner .index-notice-swiper .swiper-control-pannel {
    grid-gap: 16px;
  }
  .index-notice-sec .container .notice-inner .index-notice-swiper .swiper-control-pannel .swiper-custom-prev > img, .index-notice-sec .container .notice-inner .index-notice-swiper .swiper-control-pannel .swiper-custom-next > img {
    width: 40px;
  }
}
@media (max-width: 480px) {
  .index-notice-sec .container .sec-tit-wrap {
    margin-bottom: 30px;
  }
  .index-notice-sec .container .sec-tit-wrap > h1 {
    font-size: 28px;
  }
  .index-notice-sec .container .notice-inner .no-content {
    height: 250px;
  }
  .index-notice-sec .container .notice-inner .no-content > svg {
    width: 42px;
  }
  .index-notice-sec .container .notice-inner .no-content > strong {
    font-size: 18px;
  }
  .index-notice-sec .container .notice-inner .index-notice-swiper .swiper-control-pannel .swiper-custom-prev > img, .index-notice-sec .container .notice-inner .index-notice-swiper .swiper-control-pannel .swiper-custom-next > img {
    width: 30px;
  }
  .index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner {
    padding: 16px;
  }
  .index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner .top {
    margin-bottom: 14px;
    padding-bottom: 14px;
    flex-direction: column;
    grid-gap: 16px;
  }
  .index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner .top .notice-thumb {
    padding-bottom: 57%;
  }
  .index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner .top .notice-tit-wrap .cate {
    padding: 4px 10px;
    font-size: 12px;
  }
  .index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner .top .notice-tit-wrap .tit {
    font-size: 16px;
  }
  .index-notice-sec .container .notice-inner .index-notice-swiper .swiper-slide .slide-inner .summary {
    margin-bottom: 20px;
    font-size: 12px;
  }
}
.index-video-sec {
  width: 100%;
  padding: 100px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
.index-video-sec .container {
  width: 100%;
  max-width: 1640px;
  display: flex;
  flex-direction: column;
}
.index-video-sec .container .sec-tit-wrap {
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  align-self: center;
}
.index-video-sec .container .sec-tit-wrap > h1 {
  position: relative;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.index-video-sec .container .sec-tit-wrap > h1::after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0;
  width: 10px;
  height: 10px;
  background-color: #C306C9;
  border-radius: 500px;
  transform: translate(10px, -50%);
}
.index-video-sec .container .video-inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.index-video-sec .container .video-inner > img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.index-video-sec .container .video-inner > video {
  width: auto;
  height: auto;
  max-width: 100%;
}

@media (max-width: 1640px) {
  .index-video-sec {
    padding: 70px 0;
  }
  .index-video-sec .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .index-video-sec .container .sec-tit-wrap {
    margin-bottom: 40px;
  }
  .index-video-sec .container .sec-tit-wrap > h1 {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .index-video-sec .container .sec-tit-wrap {
    margin-bottom: 30px;
  }
  .index-video-sec .container .sec-tit-wrap > h1 {
    font-size: 28px;
  }
}
@keyframes rollingLeft1 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  50.01% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rollingLeft2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
.index-partnership-sec {
  width: 100%;
  padding: 100px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: black;
}
.index-partnership-sec .container {
  width: 100%;
  max-width: 1640px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.index-partnership-sec .container .sec-tit-wrap {
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  align-self: center;
}
.index-partnership-sec .container .sec-tit-wrap > h1 {
  position: relative;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.index-partnership-sec .container .sec-tit-wrap > h1::after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0;
  width: 10px;
  height: 10px;
  background-color: #C306C9;
  border-radius: 500px;
  transform: translate(10px, -50%);
}
.index-partnership-sec .container .partnership-rolling-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.index-partnership-sec .container .partnership-rolling-wrap .rolling-tab {
  flex: 0 0 auto;
  padding-right: 16px;
}
.index-partnership-sec .container .partnership-rolling-wrap .rolling-tab.original {
  animation: rollingLeft1 100s linear infinite;
}
.index-partnership-sec .container .partnership-rolling-wrap .rolling-tab.clone {
  animation: rollingLeft2 100s linear infinite;
}
.index-partnership-sec .container .partnership-rolling-wrap .rolling-tab .partner-grid {
  display: flex;
  flex-direction: row;
  grid-gap: 16px;
}
.index-partnership-sec .container .partnership-rolling-wrap .rolling-tab .partner-grid .cell {
  width: 315px;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: white;
}
.index-partnership-sec .container .partnership-rolling-wrap .rolling-tab .partner-grid .cell > img {
  width: 100%;
}

@media (max-width: 1640px) {
  .index-partnership-sec {
    padding: 70px 0;
  }
  .index-partnership-sec .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .index-partnership-sec .container .partnership-rolling-wrap .rolling-tab.original {
    animation: rollingLeft1 120s linear infinite;
  }
  .index-partnership-sec .container .partnership-rolling-wrap .rolling-tab.clone {
    animation: rollingLeft2 120s linear infinite;
  }
  .index-partnership-sec .container .partnership-rolling-wrap .rolling-tab .partner-grid .cell {
    width: 200px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .index-partnership-sec .container .sec-tit-wrap {
    margin-bottom: 40px;
  }
  .index-partnership-sec .container .sec-tit-wrap > h1 {
    font-size: 36px;
  }
  .index-partnership-sec .container .partnership-rolling-wrap .rolling-tab {
    padding-right: 12px;
  }
  .index-partnership-sec .container .partnership-rolling-wrap .rolling-tab .partner-grid {
    grid-gap: 12px;
  }
  .index-partnership-sec .container .partnership-rolling-wrap .rolling-tab .partner-grid .cell {
    width: 180px;
    height: auto;
  }
}
@media (max-width: 480px) {
  .index-partnership-sec .container .sec-tit-wrap {
    margin-bottom: 30px;
  }
  .index-partnership-sec .container .sec-tit-wrap > h1 {
    font-size: 28px;
  }
}/*# sourceMappingURL=main.css.map */