/* idx-banner */
.idx-banner {
  position: relative;
}

.idx-banner .swiper-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 560;
}

.idx-banner .prev-btn, .idx-banner .next-btn {
  width: 40px;
  height: 40px;
  display: block;
}

.idx-banner .prev-btn {
  left: 3.5vw;
}

.idx-banner .next-btn {
  right: 3.5vw;
}

.idx-banner .prev-btn img, .idx-banner .next-btn img {
  width: 100%;
  height: 100%;
}

.idx-banner .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 11;
  margin-top: 0;
  display: flex;
  gap: 2px;
}

.idx-banner .swiper-pagination-bullet {
  width: 15px;
  height: 4px;
  opacity: 1;
  margin: 0;
  border-radius: 0;
  background: #fff;
}

.idx-banner .swiper-pagination-bullet-active {
  width: 30px;
  background: #242424;
}

@media (min-width: 1200px) {
  .idx-banner .prev-btn, .idx-banner .next-btn {
    width: 68px;
    height: 68px;
    opacity: 0;
  }

  .idx-banner:hover .prev-btn, .idx-banner:hover .next-btn {
    opacity: 1;
  }

  .idx-banner .prev-btn {
    left: 4.177vw;
  }

  .idx-banner .next-btn {
    right: 4.177vw;
  }

  .idx-banner .swiper-pagination {
    bottom: 22px;
  }

  .idx-banner .swiper-pagination-bullet {
    width: 30px;
    height: 8px;
  }

  .idx-banner .swiper-pagination-bullet-active {
    width: 60px;
  }
}

.line-title {
  position: relative;
}

.line-title span {
  display: inline-block;
  padding: 5px 15px;
  line-height: calc(45 / 34);
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  .line-title {
    font-size: 34px;
  }

  .line-title span {
    padding: 10px 20px;
  }
}


/* idx-about */
.idx-about {
  padding: 30px 0;
  color: #fff;
  background: var(--style-color);
}

.idx-about .title span {
  background: var(--style-color);
}

.idx-about .sub-title {
  text-align: center;
  margin-bottom: 15px;
  line-height: calc(35 / 26);
}

.idx-about .tit {
  text-align: center;
  margin-bottom: 20px;
  line-height: calc(24 / 18);
}

.idx-about .info>p:first-child {
  text-align: center;
}

.idx-about .info p {
  line-height: 2;
}

.idx-about .btn {
  width: 115px;
  margin-top: 15px;
  padding: 9px 15px;
  border-radius: 0;
  border-color: #fff;
  display: block;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .idx-about {
    padding: 60px 0;
  }

  .idx-about .sub-title {
    margin-bottom: 20px;
  }

  .idx-about .tit {
    margin-bottom: 40px;
  }

  .idx-about .info>p:first-child {
    float: left;
    margin-right: 30px;
  }

  .idx-about .btn {
    transition: all .3s;
  }

  .idx-about .btn:hover {
    color: var(--style-color);
    background: #fff;
  }
}

@media (min-width: 1440px) {
  .idx-about {
    padding: 70px 0 89px;
  }
}


/* idx-products */
.idx-products {
  padding: 30px 0;
  background: #F5F8FD;
}

.idx-products .title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #DDD;
}

.idx-products .title span {
  color: var(--style-color);
  background: #F5F8FD;
}

.idx-products .sub-title {
  color: #666;
  text-align: center;
  margin-bottom: 15px;
  line-height: calc(35 / 26);
}

.idx-products .tit {
  text-align: center;
  margin-bottom: 20px;
  line-height: calc(24 / 18);
}

.idx-products .row {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -20px;
}

.idx-products .row>div {
  padding: 0 10px;
  margin-bottom: 20px;
}

.idx-products .block {
  padding: 9px;
  background: #FFF;
  border: 1px solid #EEE;
  display: block;
}

.idx-products .block img {
  width: 100%;
  aspect-ratio: 265 / 265;
}

.idx-products .sub-tit {
  line-height: 40px;
  text-align: center;
}

.idx-products .rt {
  border: 1px solid var(--style-color);
}

.idx-products .rt-title {
  color: #fff;
  padding: 10px 15px;
  text-align: center;
  background: var(--style-color);
}

.idx-products .item-list {
  padding: 19px;
  display: grid;
  gap: 4px;
}

.idx-products .item-list a {
  font-size: 16px;
  text-align: center;
  line-height: 40px;
  display: block;
  background: #EDEDED;
}

@media (min-width: 992px) {
  .idx-products .item-wrap {
    display: flex;
  }

  .idx-products .lt {
    flex: 1;
    padding-right: 20px;
  }

  .idx-products .rt {
    width: 285px;
  }
}

@media (min-width: 1200px) {
  .idx-products {
    padding: 60px 0;
  }

  .idx-products .sub-title {
    margin-bottom: 20px;
  }

  .idx-products .tit {
    margin-bottom: 40px;
  }

  .idx-products .block:hover {
    border-color: #242424;
  }

  .idx-products .block:hover .sub-tit {
    color: var(--style-color);
  }

  .idx-products .rt-title {
    padding-top: 16px;
    padding-bottom: 17px;
  }

  .idx-products .item-list a:hover {
    color: #fff;
    background: var(--style-color);
  }
}

@media (min-width: 1440px) {
  .idx-products {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}


/* equipment-question */
.equipment-question {
  padding-top: 20px;
}

.equipment-question .title-wrap {
  padding: 0 14px;
  line-height: 40px;
  background: #EEE;
  margin-bottom: 10px;
  border-left: 10px solid var(--style-color);
  display: flex;
  justify-content: space-between;
}

.equipment-question .btn {
  color: #fff;
  font-size: 12px;
  line-height: 40px;
  padding: 0 10px;
  border-radius: 0;
  background: var(--style-color);
}

.equipment-question .row {
  margin-left: -10px;
  margin-right: -10px;
}

.equipment-question .row>div {
  padding: 0 10px;
}

.equipment-question .img {
  display: block;
  padding: 5px;
  border: 1px solid #EEE;
}

.equipment-question .img img {
  width: 100%;
  aspect-ratio: 146 / 146;
}

.equipment-question .row-tit {
  line-height: 36px;
  text-align: center;
}

@media (min-width: 1200px) {
  .equipment-question .lt {
    margin-bottom: 0;
  }

  .equipment-question .btn {
    transition: all .3s;
  }

  .equipment-question .btn:hover {
    background: #242424;
  }

  .equipment-question .row>div {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .equipment-question .row-tit a:hover {
    color: var(--style-color);
  }
}


/* blog-contact */
.blog-contact {
  padding: 30px 0;
}

.blog-contact .row {
  margin-left: -10px;
  margin-right: -10px;
}

.blog-contact .row>div {
  padding: 0 10px;
}

.blog-contact .lt {
  margin-bottom: 20px;
}

.blog-contact .title-wrap {
  padding: 0 14px;
  line-height: 40px;
  background: #EEE;
  margin-bottom: 10px;
  border-left: 10px solid var(--style-color);
  display: flex;
  justify-content: space-between;
}

.blog-contact .btn {
  color: #fff;
  font-size: 12px;
  line-height: 40px;
  padding: 0 10px;
  border-radius: 0;
  background: var(--style-color);
}

.blog-contact .btn-wrap {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  justify-content: flex-end;
}

.blog-contact .prev-btn, .blog-contact .next-btn {
  position: static;
  transform: translate(0);
  width: 41px;
  height: 28px;
  font-size: 8px;
  color: #fff;
  background: #242424;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-contact .prev-btn i, .blog-contact .next-btn i {
  transform: rotate(90deg);
}

.blog-contact .swiper-container {
  height: 320px;
}

.blog-contact .block {
  display: flex;
}

.blog-contact .date-wrap {
  width: 100px;
  line-height: 19px;
  color: #686868;
  background: #EEEEEE;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-contact .date {
  font-size: 50px;
  line-height: 66px;
}

.blog-contact .info-group {
  flex: 1;
  padding: 10px 10px 4px;
  border: 1px solid #EEEEEE;
}

.blog-contact .sub-tit {
  font-size: 16px;
  line-height: 30px;
}

.blog-contact .info {
  height: 54px;
  color: #BBB;
  font-size: 12px;
  line-height: 18px;
}

.blog-contact .cont-list li {
  font-size: 16px;
  line-height: 40px;
}

@media (min-width: 1200px) {
  .blog-contact {
    padding: 60px 0;
  }

  .blog-contact .btn {
    transition: all .3s;
  }

  .blog-contact .btn:hover {
    background: #242424;
  }

  .blog-contact .prev-btn:hover, .blog-contact .next-btn:hover {
    background: #666666;
  }

  .blog-contact .block:hover .date-wrap {
    color: #fff;
    background: #242424;
  }

  .blog-contact .block:hover .sub-tit, .blog-contact .cont-list li a:hover {
    color: var(--style-color);
  }
}

@media (min-width: 1440px) {
  .blog-contact {
    padding-top: 70px;
  }
}