/* 为什么要定制开发部分 */
.customize-section {
  width: 100%;
  padding: 80px 0;
}

.flexible-section{
  width: 100%;
  padding: 80px 0 50px;
  margin-bottom: 100px;
}

.customize-section.module-gray {
  background-color: #F7F8FB;
}
.customize-section.module-white {
  background-color: #fff;
}

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

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

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

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

.customize-section .content-h {
  text-align: center;
  margin-bottom: 60px;
}

.customize-section .content-h h2 {
  font-size: 34px;
  color: #333333;
  margin: 20px 0 10px;
  padding:0 15px;
}

.customize-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.customize-card-wrapper {
  flex: 0 0 calc(100% / 4);
  max-width: calc(100% / 4);
  padding-left: 15px;
  padding-right: 15px;
}

.customize-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0 20px;
}

.customize-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.customize-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.customize-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.customize-title {
  font-size: 16px;
  color: #3478D1;
  font-weight: 400;
}

.customize-description {
  font-size: 12px;
  color: #777777;
  margin-bottom: 10px;
  line-height: 22px;
}

/* 为什么要定制开发响应式 */
@media (max-width: 991px) {
  .customize-card-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }
  
  .customize-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .customize-header{
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .customize-card-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  
  .customize-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .customize-section .content-h {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 468px){
  .customize-section{
    padding: 40px 0;
  }
  .flexible-section{
    padding: 40px 0 20px;
  }
  .customize-section .content-h h2{
    font-size: 24px;
  }
  .customize-section .content-h{
    margin-bottom: 20px;
  }
}

