/* 基础设施支持和支付方式部分样式 */
.support-section {
  padding: 80px 0;
  background: #fff;
}

.support-section .container {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .support-section .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .support-section .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .support-section .container{
    width: 1170px;
  }
}

.support-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 60px;
  line-height: 1.4;
}

.payment-title {
  font-size: 20px;
  margin: 40px 0 20px;
  color: #222;
  text-align: center;
}

.support-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.support-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 calc(100% / 6);
  max-width: calc(100% / 6);
}

.support-item img {
  width: 100%;
  height: 66px;
  margin-bottom: 10px;
  object-fit: contain;
}

.support-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  margin-bottom: 10px;
}

.support-img-wrapper {
  width: 100%;
  height: 66px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.support-logos .support-item:last-child .support-img-wrapper {
  border-right: 1px solid #eee;
}

.support-img-wrapper img {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  object-fit: contain;
}

/* 基础设施和支付方式响应式 */
@media (max-width: 991px) {
  .support-item {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
    margin-bottom: 30px;
  }

  .support-item{
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 468px) {
  .support-section{
    padding: 40px 0;
  }
  .support-section .container{
    padding:0 20px;
  }
  .support-item:last-child,.support-item:nth-last-child(2){
    margin-bottom: 0;
  }
  .support-title{
    font-size: 24px;
    margin:20px 0;
  }
  .phone-inhide {
    display: none;
  }
  .support-img-wrapper{
    height: 54px;
  }
  .support-item{
    margin-bottom: 20px;
  }
  .payment-title{
    font-size: 20px;
    margin: 40px 0 20px;
  }
}

