.swiper-container {
  width: 100%;  
  height: 550px; 
}
.swiper-slide {
  background-color: #fafafa;
  overflow: hidden;
        /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-position: center;
      background-size: cover;
}

/* category */
  .category {
    padding-top: 60px;
    padding-bottom: 90px;
    text-align: center;
  }
  .category .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .category .row .col{
    padding: 20px 0 40px;
    background-color: #f2f3ed;
  }
  .category >.row > .icon{
    text-align: center;
  }
  .category img {
    max-width: 80%;
    max-height: 80%;
    margin: 0 auto;
  }
  .category .title {
    display: block;
    padding-top: 15px;
    font-family: "Arial", "Tohama", "Helvetica";
    font-size: 14px;
    font-weight: 200;
  }
  .category .more {
    display: block;
    width: 120px;
    height: 30px;
    margin: 0 auto;
    border: 1px solid #000;
    line-height: 25px;
    font-size: 12px;
    text-align: center;
  }
  .category .more a{
    display: block;
    color: #000;
  }
  .category .more:hover{
    background-color: #000;
    color: #fff;
    cursor: pointer;
  }
  .category .more:hover a{
    color: #fff;
  }
@media (max-width: 575.8px) {
  .category .row .col{
    padding: 10px 0;
    background-color: #f2f3ed;
  }
  .category .description {
    display: none;
  }
  .category .more {
    display: none;
  }
}
@media (min-width: 576px) {

}
@media (min-width: 768px) {
  .category .row{
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .category img {
    max-width: 60%;
    max-height: 60%;
  }
  .category .description {
    display: block;
    padding: 20px 10px 40px;
    font-size: 13px;
    color: #4c4c51;
  }
}
/* factory */
  .factory {
    height: 985px;
    text-align: center;
    background-image: url("/files/web/banner_02.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .factory .title {
    display: block;
    padding-top: 60px;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
  }
  .factory .description {
    max-width: 1000px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin: 0 auto;
    padding: 45px 0 90px;

  }
  .factory .button {
    display: block;
    width: 200px;
    height: 55px;
    margin: 0 auto;
    border: solid 1px #fff;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 48px;
  }
  .factory .button:hover {
    background-color: #000;
    border: 1px solid #000;
  }
  .factory .button a {
    display: block;
    color: #fff;
  }

/* Support */
  .support {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    background-color: #f2f3ed;
  }
  .support .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  .support .title {
    display: block;
    font-weight: 500;
    color: #2e2e33;
  }
  .support .detail {
    padding: 0 5px;
    font-weight: 300;
    color: rgb(76, 76, 81);
  }

@media (max-width: 575.98px) {
  .support .row {
    -moz-gap: 4vw; /* Firefox */
    -webkit-gap: 4vw; /* Safari 和 Chrome */
    gap: 4vw;
  }
  .support .title {
    padding-top: 20px;
    font-size: 14px;
  }
  .support .detail {
    padding-top: 15px;
    font-size: 13px;
  }
  .support .icon {
    width: 7vw;
    height: 7vw;
  }
}

@media (min-width: 576px) {
  .support .row {
    grid-template-columns: repeat(4, 1fr);
    -moz-row-gap:4vw; /* Firefox */
    -webkit-row-gap:4vw; /* Safari 和 Chrome */
    row-gap:4vw;
  }
  .support .col{
    text-align: center;
  }
  .support .icon {
    width: 4vw;
    height: 4vw;
    margin: 0 auto;
  }
  .support .title {
    padding-top: 2vw;
    font-size: calc(14px + 4 * ( (100vw - 576px) / 624 ));
  }
  .support .detail {
    padding-top: calc(4vw / 3);
    font-size: calc(13px + 2 * ( (100vw - 576px) / 624 ));
  }
}
@media (min-width: 1200px) {
  .support .row {
    -moz-row-gap:45px; /* Firefox */
    -webkit-row-gap:45px; /* Safari 和 Chrome */
    row-gap:45px;
  }
  .support .icon {
    width: 45px;
    height: 45px;
  }
  .support .title {
    padding-top: 25px;
    font-size: 16px;
  }
  .support .detail {
    padding-top: 15px;
    font-size: 14px;
  }

}

/* scrollnews */
  .scrollnews {
    text-align: center;
    height: 45px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
  }
  .scrollnews .scroll {
    line-height: 45px;
  }
  .scrollnews .list li a{
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
  }


/* culture */
  .culture {
    padding: 60px 0;
    text-align: center;
  }
  .culture h3 {
    padding: 20px 0 20px 10px;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    background-color: #f2f3ed;
  }

@media (min-width: 576px) {
  .culture .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
/* application */
  .application {
    padding-top: 48px;
    padding-bottom: 48px;
    text-align: center;
  }
  .application .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    text-align: left;
  }
  .application .title {
    display: block;
    padding: 20px 0 20px 10px;
    font-size: 14px;
    font-weight: 400;
    background-color: #f2f3ed;
  }

@media (max-width: 575.98px) {
  .application .row {
    grid-template-columns: repeat(2, 1fr);
  }
}
