/* idx-banner */
.idx-banner {
  position: relative;
}

.idx-banner img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.idx-banner .container {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
}

.idx-banner .title {
  text-align: left;
}

.idx-banner .title p {
  line-height: 1;
  font-weight: normal;
}

.idx-banner .title p:first-child {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

.idx-banner .title p:last-child {
  font-size: 24px;
}

.idx-banner .info {
  font-size: 18px;
  margin-top: 10px;
  max-height: 81px;
}

@media (min-width: 768px) {
  .idx-banner .title p:first-child {
    font-size: 60px;
  }

  .idx-banner .title p:last-child {
    font-size: 45px;
  }

  .idx-banner .info {
    font-size: 24px;
    margin-top: 20px;
    max-height: 108px;
  }
}

@media (min-width: 1200px) {
  .idx-banner .title p:first-child {
    font-size: 80px;
  }

  .idx-banner .title p:last-child {
    font-size: 60px;
  }

  .idx-banner .info {
    font-size: 34px;
    margin-top: 30px;
    max-width: 800px;
    max-height: 153px;
  }
}

@media (min-width: 1640px) {
  .idx-banner .title p:first-child {
    font-size: 100px;
    margin-bottom: 20px;
  }

  .idx-banner .title p:last-child {
    font-size: 75px;
  }
}


/* idx-product */
.idx-product {
  padding-top: 30px;
}

.idx-product .title {
  margin-bottom: 20px;
}

.idx-product .swiper-wrap {
  position: relative;
}

.idx-product .swiper-container {
  margin: 0 -13px;
  margin-left: -5px;
  margin-right: -18px;
  padding: 5px 18px 18px 5px;
}

.idx-product .swiper-slide {
  box-shadow: 6px 6px 12px 1px rgba(0, 0, 0, 0.16);
}

.idx-product .pic {
  display: block;
  text-align: center;
}

.idx-product .tit {
  height: 50px;
  color: #fff;
  padding: 5px 15px;
  background: rgba(7, 26, 56, .65);
  display: flex;
  align-items: center;
  text-align: left;
}

.idx-product .prev-btn, .idx-product .next-btn {
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  background: var(--style-color);
}

.idx-product .prev-btn {
  transform: translate(-50%, -50%);
}

.idx-product .next-btn {
  transform: translate(50%, -50%);
}

@media (min-width: 768px) {
  .idx-product .prev-btn, .idx-product .next-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .idx-product {
    padding-top: 74px;
  }

  .idx-product .title {
    margin-bottom: 35px;
  }

  .idx-product .tit {
    height: 65px;
  }

  .idx-product .prev-btn,
  .idx-product .next-btn {
    width: 65px;
    height: 65px;
    font-size: 40px;
  }
}

@media (min-width: 1440px) {
  .idx-product .title {
    margin-bottom: 52px;
  }

  .idx-product .tit {
    padding-left: 25px;
    padding-right: 25px;
  }
}


/* idx-about */
.idx-about {
  padding-top: 12px;
}

.idx-about .item:last-child {
  margin-top: 30px;
}

.idx-about .lt {
  margin-bottom: 20px;
}

.idx-about .title {
  margin-bottom: 20px;
  text-align: left;
  justify-content: flex-start;
}

.idx-about .info {
  line-height: 1.8;
  max-height: 144px;
}

.idx-about .btn {
  width: 166px;
  color: #fff;
  margin-top: 15px;
  background: var(--style-color);
}

@media (min-width: 992px) {
  .idx-about .item {
    display: flex;
  }

  .idx-about .item:last-child {
    flex-direction: row-reverse;
  }

  .idx-about .lt {
    flex: 0 0 48%;
    max-width: 48%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  }

  .idx-about .info {
    max-height: 173px;
  }

  .idx-about .rt {
    flex: 0 0 52%;
    max-width: 52%;
    position: relative;
    overflow: hidden;
  }

  .idx-about .rt::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  }

  .idx-about .item:nth-child(odd) .rt::after {
    left: 0;
    border-top: 55px solid transparent;
    border-left: 49px solid #fff;
    border-bottom: 55px solid transparent;
  }

  .idx-about .item:nth-child(even) .rt::after {
    right: 0;
    border-top: 55px solid transparent;
    border-right: 49px solid #fff;
    border-bottom: 55px solid transparent;
  }
}

@media (min-width: 1200px) {
  .idx-about {
    padding-top: 62px;
  }

  .idx-about .item:last-child {
    margin-top: 75px;
  }

  .idx-about .lt {
    padding-left: 30px;
    padding-right: 30px;
  }

  .idx-about .title {
    margin-bottom: 25px;
  }

  .idx-about .info {
    max-height: 202px;
  }

  .idx-about .btn {
    margin-top: 30px;
    padding: 11px 15px;
  }
}

@media (min-width: 1440px) {
  .idx-about .lt {
    padding-left: 60px;
    padding-right: 60px;
  }

  .idx-about .title {
    margin-bottom: 30px;
  }

  .idx-about .info {
    max-height: 231px;
  }
}

@media (min-width: 1640px) {
  .idx-about .lt {
    padding-left: 87px;
    padding-right: 87px;
  }

  .idx-about .title {
    margin-bottom: 40px;
  }

  .idx-about .btn {
    margin-top: 44px;
  }
}

@media (min-width: 1840px) {
  .idx-about .item:last-child .lt {
    padding-left: 122px;
    padding-right: 122px;
  }
}


/* idx-partner */
.idx-partner {
  padding-top: 30px;
}

.idx-partner .title {
  margin-bottom: 20px;
}

.idx-partner .swiper-container {
  margin-left: -9px;
  margin-left: -6px;
  padding: 6px 9px 10px 6px;
}

.idx-partner .swiper-slide {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
}

.idx-partner img {
  width: 100%;
}

@media (min-width: 768px) {
  .idx-partner .title {
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  .idx-partner {
    padding-top: 60px;
  }

  .idx-partner .title {
    margin-bottom: 40px;
  }
}

@media (min-width: 1440px) {
  .idx-partner {
    padding-top: 80px;
  }
}

@media (min-width: 1640px) {
  .idx-partner {
    padding-top: 104px;
  }

  .idx-partner .title {
    margin-bottom: 51px;
  }
}


/* idx-blog */
.idx-blog {
  padding-top: 30px;
}

.idx-blog .title {
  margin: 0;
}

.idx-blog .row {
  margin-top: 1.875rem;
}

.idx-blog .news-hot .info-group {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1.5625rem 1.25rem 1.25rem 1.25rem;
}

.idx-blog .news-hot .pic {
  display: block;
  margin-bottom: 10px;
}

.idx-blog .news-hot .tit {
  line-height: 1.8;
  text-align: left;
  margin-bottom: 10px;
}

.idx-blog .news-hot .info-desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.idx-blog .news-hot .btn {
  width: 170px;
  height: 45px;
  color: #fff;
  padding: 0;
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  position: relative;
  transition: all .5s;
}

.idx-blog .news-hot .btn span {
  display: block;
  width: 76%;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--style-color);
}

.idx-blog .news-hot .btn i {
  width: 32%;
  margin-left: -11%;
  padding-left: 8px;
  font-size: 24px;
  color: #fff;
  background: #01378D;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-clip-path: polygon(22% 0, 100% 0%, 100% 100%, 0 100%);
  clip-path: polygon(22% 0, 100% 0%, 100% 100%, 0 100%);
  transition: all .5s;
}

.idx-blog .news-hot .btn:hover i {
  color: #fff;
  background: var(--style-color);
}

.idx-blog .news-list ul {
  list-style: none;
}

.idx-blog .news-list li {
  margin-top: 28px;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
}

.idx-blog .news-list .block {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: all 550ms cubic-bezier(.19, 1, .22, 1);
}

.idx-blog .news-list .date-wrap {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  position: relative;
  display: none;
}

.idx-blog .news-list .date-wrap::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  background-color: #DBDBDB;
  right: 12%;
  top: 0;
  transform: skewX(166deg);
}

.idx-blog .news-list .date {
  font-size: 24px;
  padding-right: 20px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.idx-blog .news-list .date span {
  display: block;
  font-size: 50px;
  line-height: 1;
}

.idx-blog .news-list .info-group {
  width: 100%;
  padding: 10px 20px;
}

.idx-blog .news-list .tit {
  color: #333;
  font-weight: bold;
  text-align: left;
  margin-bottom: 6px;
}

.idx-blog .news-list .info-desc {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

@media (min-width: 648px) {
  .idx-blog .news-list .date-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .idx-blog {
    padding-top: 50px;
  }

  .idx-blog .news-list .date {
    font-size: 28px;
  }

  .idx-blog .news-list .date span {
    font-size: 70px;
  }
}

@media (min-width: 992px) {
  .idx-blog .news-hot {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .idx-blog .news-hot .pic,
  .idx-blog .news-hot .tit,
  .idx-blog .news-hot .info-desc {
    margin-bottom: 0;
  }

  .idx-blog .news-list li:first-child {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .idx-blog {
    padding-top: 70px;
  }

  .idx-blog .row {
    margin-top: 3.125rem;
  }

  .idx-blog .news-list .date-wrap {
    width: 180px;
    height: 180px;
  }

  .idx-blog .news-list .date {
    font-size: 30px;
    padding-right: 38px;
  }

  .idx-blog .news-list .date span {
    font-size: 80px;
  }

  .idx-blog .news-list .info-group {
    padding-left: 26px;
    padding-right: 26px;
  }

  .idx-blog .news-list .block:hover {
    background: var(--style-color);
    box-shadow: none;
  }

  .idx-blog .news-list .block:hover .date-wrap::before {
    background: #01378D;
  }

  .idx-blog .news-list .block:hover .tit,
  .idx-blog .news-list .block:hover .info-desc {
    color: #fff;
  }
}

@media (min-width: 1440px) {
  .idx-blog .news-list .date-wrap {
    width: 200px;
    height: 200px;
  }
}

@media (min-width: 1640px) {
  .idx-blog {
    padding-top: 94px;
  }

  .idx-blog .news-hot {
    flex: 0 0 46.5%;
    max-width: 46.5%;
  }

  .idx-blog .news-list {
    flex: 0 0 53.5%;
    max-width: 53.5%;
    padding-left: 30px;
  }

  .idx-blog .news-list .date-wrap {
    width: 230px;
    height: 230px;
  }

  .idx-blog .news-list .date {
    font-size: 36px;
  }

  .idx-blog .news-list .date span {
    font-size: 100px;
  }
}


/* idx-contact */
.idx-contact {
  padding-top: 30px;
  padding-bottom: 30px;
}

.idx-contact .title {
  margin-bottom: 15px;
}

.idx-contact .form-control {
  box-shadow: none;
  border-radius: 0;
  border: none;
  background: none;
  border-bottom: 1px solid #707070;
}

.idx-contact .btn {
  width: 160px;
  color: #fff;
  font-size: 24px;
  margin-top: 20px;
  background-color: var(--style-color);
}

@media(min-width: 768px) {
  .idx-contact .form-group {
    margin-bottom: 30px;
  }
}

@media(min-width: 1200px) {
  .idx-contact {
    padding: 60px 0;
  }

  .idx-contact .title {
    margin-bottom: 49px;
  }

  .idx-contact .row {
    margin: 0 -18px;
  }

  .idx-contact .row>div {
    padding: 0 18px;
  }

  .idx-contact .form-group {
    margin-bottom: 50px;
  }

  .idx-contact .form-control {
    height: 62px;
    font-size: 20px;
    padding-left: 41px;
  }

  .idx-contact .btn {
    width: 229px;
    font-size: 30px;
    margin-top: 30px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

@media(min-width: 1440px) {
  .idx-contact .btn {
    margin-top: 50px;
  }
}

@media(min-width: 1640px) {
  .idx-contact {
    padding-top: 99px;
  }

  .idx-contact .btn {
    margin-top: 76px;
  }
}