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

.idx-banner img {
  width: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.idx-banner .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .3;
}

.idx-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
}

.idx-banner .title {
  color: #fff;
  line-height: 1.2;
}

.idx-banner .info {
  display: none;
}

.idx-banner .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  margin-top: 0;
  display: block;
}

@media (min-width: 768px) {
  .idx-banner .container>* {
    max-width: 550px;
  }

  .idx-banner .title {
    text-align: left;
  }

  .idx-banner .info {
    color: #fff;
    margin-top: 10px;
    display: block;
  }

  .idx-banner .prev-btn, .idx-banner .next-btn {
    color: #fff;
    font-size: 30px;
  }

  .idx-banner .prev-btn {
    left: calc((100vw - 5px - 720px) / 2 - 25px);
  }

  .idx-banner .next-btn {
    right: calc((100vw - 5px - 720px) / 2 - 25px);
  }
}

@media (min-width: 992px) {
  .idx-banner .prev-btn {
    left: calc((100vw - 5px - 960px) / 2 - 25px);
  }

  .idx-banner .next-btn {
    right: calc((100vw - 5px - 960px) / 2 - 25px);
  }
}

@media (min-width: 1200px) {
  .idx-banner .prev-btn {
    left: calc((100vw - 5px - 1140px) / 2 - 25px);
  }

  .idx-banner .next-btn {
    right: calc((100vw - 5px - 1140px) / 2 - 25px);
  }
}

@media (min-width: 1440px) {
  .idx-banner .prev-btn {
    left: calc((100vw - 5px - 1400px) / 2 - 25px);
  }

  .idx-banner .next-btn {
    right: calc((100vw - 5px - 1400px) / 2 - 25px);
  }
}

@media (min-width: 1640px) {
  .idx-banner .prev-btn, .idx-banner .next-btn {
    font-size: 40px;
  }

  .idx-banner .prev-btn {
    left: calc((100vw - 5px - 1600px) / 2 - 25px);
  }

  .idx-banner .next-btn {
    right: calc((100vw - 5px - 1600px) / 2 - 25px);
  }
}

@media (min-width: 1840px) {
  .idx-banner .prev-btn {
    left: 60px;
  }

  .idx-banner .next-btn {
    right: 60px;
  }
}

@media (max-width: 600px) {
  .idx-banner .title {
    font-size: 20px;
  }
}

/* idx-products */
.idx-products {
  padding-top: 30px;
}

.idx-products .back {
  position: relative;
}

.idx-products .title {
  position: absolute;
  left: 0;
  bottom: 5%;
  width: 75%;
  color: #fff;
  padding: 5px 15px;
  background: var(--style-color);
}

.idx-products .swiper-slide-next .title {
  left: auto;
  right: 0;
}

.idx-products .swiper-scrollbar {
  display: none;
}

@media(min-width: 768px) {
  .idx-products .container {
    max-width: 100%;
  }

  .idx-products .swiper-slide-prev {
    -webkit-transform: perspective(1000px) rotateY(15deg) scale(0.9);
    transform: perspective(1000px) rotateY(15deg) scale(0.9);
    outline: 1px solid transparent;
  }

  .idx-products .swiper-slide-next {
    -webkit-transform: perspective(1000px) rotateY(-15deg) scale(0.9);
    transform: perspective(1000px) rotateY(-15deg) scale(0.9);
    outline: 1px solid transparent;
  }

  .idx-products .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.4;
  }

  .idx-products .swiper-slide.swiper-slide-active {
    transform: none;
  }
}

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

  .idx-products .swiper-container {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .idx-products .scale-img:hover {
    box-shadow: 5px 12px 40px 0px rgba(0, 0, 0, .4);
  }

  .idx-products .swiper-scrollbar {
    display: block;
  }

  .idx-products .swiper-scrollbar-drag {
    background: var(--style-color);
  }
}

@media(min-width: 1640px) {
  .idx-products {
    padding-top: 50px;
  }

  .idx-products .swiper-container {
    padding-top: 30px;
    padding-bottom: 80px;
  }

  .idx-products .title {
    bottom: 10%;
    font-size: 36px;
    padding-top: 12px;
    padding-bottom: 11px;
  }
}


/* idx-products-detail */
.idx-products-detail {
  padding-top: 30px;
  padding-bottom: 30px;
}

.idx-products-detail .lt {
  margin-bottom: 20px;
}

.idx-products-detail .tit {
  color: #000;
  font-weight: 900;
  margin-bottom: 20px;
}

@media(min-width: 992px) {
  .idx-products-detail .swiper-slide {
    display: flex;
    align-items: center;
  }

  .idx-products-detail .swiper-slide>* {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .idx-products-detail .lt {
    margin-bottom: 0;
    padding-right: 15px;
  }

  .idx-products-detail .rt {
    padding-left: 15px;
  }
}

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

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

  .idx-products-detail .info {
    font-size: 18px;
  }
}

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

  .idx-products-detail .swiper-slide {
    padding-bottom: 150px;
  }

  .idx-products-detail .info {
    padding-right: 150px;
  }

  .idx-products-detail .rt {
    position: relative;
  }

  .idx-products-detail .rt::after {
    content: '';
    position: absolute;
    left: 65px;
    bottom: -80px;
    width: 400px;
    height: 400px;
    background: var(--style-color);
  }


  .idx-products-detail .scale-img {
    width: 80%;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }
}


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

.idx-about .item-wrap {
  color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  min-height: 41.67vw;
  position: relative;
}

.idx-about .item-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
}

.idx-about .item-wrap>* {
  position: relative;
  z-index: 1;
}

.idx-about .title {
  width: calc(100% - 30px);
  margin: 0 auto 16px;
  font-weight: 900;
}

.idx-about .sub-info {
  width: calc(100% - 30px);
  margin: 0 auto 20px;
  text-align: center;
}

.idx-about .sub-info>*:not(:last-child) {
  margin-bottom: 10px;
}

.idx-about .item-list {
  width: calc(100% - 30px);
  margin: 0 auto -10px;
}

.idx-about .item-list li {
  padding: 0 15px;
  margin-bottom: 10px;
}

.idx-about .item-list p {
  font-family: Impact;
  position: relative;
}

.idx-about .item-list p::after {
  content: '';
  display: inline-block;
  height: 4px;
  width: 34px;
  background: var(--style-color);
  position: absolute;
  left: 0;
  bottom: 0;
}

.idx-about .item-list p>span {
  position: relative;
  margin-left: 20px;
}

.idx-about .item-list p>span::before {
  content: '+';
  position: absolute;
  left: -15px;
  top: -10px;
  line-height: 24px;
}

.idx-about .item-list li>span {
  margin-top: 10px;
}

.idx-about .container {
  margin-top: 20px;
}

.idx-about .swiper-slide {
  height: unset;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  color: #999;
  background: #fff;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, .69) inset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.idx-about .icon {
  height: 90px;
}

.idx-about .icon img {
  height: 100%;
}

.idx-about .sub-title {
  font-weight: bold;
  margin-top: 16px;
  margin-bottom: 16px;
}

.idx-about .info {
  height: 96px;
}

@media(min-width: 720px) {
  .idx-about .title, .idx-about .sub-info {
    width: 80%;
  }

  .idx-about .item-list {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}

@media(min-width: 1200px) {
  .idx-about .item-wrap {
    padding-top: 60px;
    padding-bottom: 110px;
  }

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

  .idx-about .sub-info {
    margin-bottom: 60px;
  }

  .idx-about .item-list p::after {
    width: 60px;
  }

  .idx-about .item-list p>span {
    margin-left: 30px;
  }

  .idx-about .item-list p>span::before {
    left: -20px;
  }

  .idx-about .container {
    position: relative;
    top: -60px;
    margin-top: 0;
  }

  .idx-about .swiper-slide:hover {
    color: #fff;
    background: none;
  }

  .idx-about .swiper-slide:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--style-color);
    opacity: .8;
  }

  .idx-about .swiper-slide>* {
    position: relative;
    z-index: 1;
  }

  .idx-about .icon {
    overflow: hidden;
  }

  .idx-about .swiper-slide:hover .icon img {
    position: relative;
    top: -90px;
    filter: drop-shadow(0 90px 1px #fff);
  }

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

@media(min-width: 1440px) {
  .idx-about .item-wrap {
    padding-top: 80px;
    padding-bottom: 170px;
  }

  .idx-about .container {
    top: -120px;
  }

  .idx-about .swiper-container {
    overflow: inherit;
  }

  .idx-about .swiper-slide {
    box-shadow: 0 0 27px 0 rgba(0, 0, 0, .69);
  }
}

@media(min-width: 1640px) {
  .idx-about .item-wrap {
    padding-top: 96px;
    padding-bottom: 230px;
  }

  .idx-about .sub-info {
    margin-bottom: 80px;
  }

  .idx-about .item-list p {
    font-size: 60px;
  }

  .idx-about .item-list p span {
    font-size: 36px;
  }

  .idx-about .item-list li>span {
    font-size: 30px;
  }

  .idx-about .container {
    top: -180px;
  }
}


/* idx-services */
.idx-services {
  color: #fff;
  padding: 35px 0;
  min-height: 26vw;
}

.idx-services .title {
  font-weight: 900;
  margin-bottom: 20px;
}

.idx-services .sub-info {
  margin-bottom: 30px;
}

.idx-services .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -10px;
}

.idx-services .btn {
  width: 160px;
  margin: 0 15px 10px;
}

.idx-services .btn:first-child {
  color: var(--style-color);
  background: #fff;
}

.idx-services .btn:last-child {
  color: #fff;
  background: var(--style-color);
}

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

@media(min-width: 992px) {
  .idx-services .title {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media(min-width: 1200px) {
  .idx-services {
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .idx-services .sub-info {
    margin-bottom: 60px;
  }

  .idx-services .btn {
    width: 200px;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-left: 20px;
    margin-right: 20px;
    transition: all .3s;
  }

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

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


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

.idx-blog .title {
  color: #000;
  text-align: left;
  font-weight: 900;
}

.idx-blog .btn-wrap {
  text-align: right;
  margin-bottom: 20px;
}

.idx-blog .btn {
  padding: 0.5rem 0;
  border-radius: 0;
  border-bottom: 1px solid #000;
  position: relative;
}

.idx-blog .btn-wrap i {
  margin-left: 10px;
}

.idx-blog .row {
  margin-bottom: -30px;
}

.idx-blog .row>div {
  margin-bottom: 30px;
}

.idx-blog .block {
  padding: 20px 15px;
  border: 1px solid #E5E5E5;
  display: block;
}

.idx-blog .scale-img img {
  width: 100%;
}

.idx-blog .sub-title {
  height: 54px;
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #000;
}

.idx-blog .sub-info {
  height: 54px;
  font-size: 12px;
  color: #666;
  margin-bottom: 30px;
}

.idx-blog .date-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E5E5E5;
  padding-top: 20px;
}

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

  .idx-blog .block {
    padding: 30px;
  }

  .idx-blog .block:hover .sub-title {
    color: var(--style-color);
  }

  .idx-blog .btn-wrap {
    margin-bottom: 40px;
  }

  .idx-blog .btn:hover {
    color: var(--style-color);
    border-bottom: 1px solid var(--style-color);
  }
}

@media(min-width: 1640px) {
  .idx-blog {
    padding-top: 80px;
  }

  .idx-blog .btn-wrap {
    margin-bottom: 62px;
  }
}


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

.idx-contact .title {
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}

.idx-contact .sub-info {
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
}

.idx-contact .form-control {
  height: 38px;
  color: #fff;
  box-shadow: none;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 0;
  border-color: #fff;
}

.idx-contact .form-group {
  margin-bottom: 25px;
}

.idx-contact .btn-wrap {
  margin-top: 25px;
}

.idx-contact .btn {
  width: 180px;
  font-size: 20px;
  color: #fff;
  background: var(--style-color);
}

.idx-contact .row>div:nth-last-child(2) .form-group {
  margin-bottom: 45px;
}

.idx-contact .form-control::-webkit-input-placeholder {
  color: #fff;
}

.idx-contact .form-control:-moz-placeholder {
  color: #fff;
}

.idx-contact .form-control::-moz-placeholder {
  color: #fff;
}

.idx-contact .form-control:-ms-input-placeholder {
  color: #fff;
}

@media(min-width: 768px) {
  .idx-contact .btn {
    font-size: 24px;
  }

  .idx-contact .btn-wrap {
    margin-top: 45px;
  }
}

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

  .idx-contact .title {
    margin-bottom: 32px;
  }

  .idx-contact .sub-info {
    margin-bottom: 55px;
  }

  .idx-contact .form-group {
    margin-bottom: 52px;
  }

  .idx-contact .row>div:nth-last-child(2) .form-group {
    margin-bottom: 80px;
  }

  .idx-contact .btn-wrap {
    margin-top: 60px;
  }

  .idx-contact .btn {
    width: 250px;
    font-size: 30px;
    transition: all .3s;
  }

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

@media(min-width: 1440px) {
  .idx-contact .row {
    margin-left: -30px;
    margin-right: -30px;
  }

  .idx-contact .row>div {
    padding: 0 30px;
  }
}

@media(min-width: 1640px) {
  .idx-contact .row {
    margin-left: -50px;
    margin-right: -50px;
  }

  .idx-contact .row>div {
    padding: 0 50px;
  }

  .idx-contact .btn-wrap {
    margin-top: 80px;
  }
}