* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 让成熟方案代替无效思考区域 */
.client-solution-section {
  background-image:linear-gradient(-90deg, #1A62D8 0%, #2575FC 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.client-solution-section .container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

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

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

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

.solution-title {
  background-image: url('../img/client/client_bg.png');
  padding: 100px 0;
  font-size: 48px;
  color: #FFFFFF;
  text-align: center;
  background-position: 100% 100%;
  background-size: cover;
}

.solution-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 45px 40px;
}

.solution-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px 65px;
  background: rgba(255, 255, 255, 0.1);
}

.solution-card-icon {
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-card-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.solution-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.solution-card-title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.solution-card-subtitle {
  font-size: 14px;
  color: #FFFFFF;
  margin: 0;
}

.solution-arrow {
  padding: 30px;
}

.solution-arrow img {
  width: 30px;
  height: auto;
  object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 991px) {
  .solution-title{
    font-size: 24px;
  }

  .solution-arrow {
    margin: 20px 0;
    transform: rotate(90deg);
  }
  .solution-arrow {
    padding: 15px;
  }
  .solution-cards{
    padding:15px 40px;
  }
}

@media only screen and (max-width: 468px){
  .solution-title{
    padding:100px 0 60px;
  }
  .solution-arrow{
    margin:15px;
    padding:0;
  }
  .solution-cards{
   padding:15px 40px 30px;
  }
}



/* 客户案例区域 */
.client-cases-section {
  padding: 80px 0 50px;
  background: #fff;
}

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

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

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

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

.client-cases-grid {
  display: flex;
  flex-wrap: wrap;
}

.client-case-card-wrapper {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.client-case-card {
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  overflow: hidden;
  position: relative;
}
.client-featured-badge{
  position: absolute;
    top: -40px;
    display: flex;
    right: -40px;
    height: 80px;
    width: 80px;
    background-color: #357AD5;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 5px 0;
    align-items: flex-end;
    justify-content: center;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

/* .client-case-card:hover .client-case-title {
 text-decoration: underline;
} */

.client-case-image {
  width: 100%;
  height: 278px;
  overflow: hidden;
  background: #f5f5f5;
}

.client-case-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.client-case-title {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  padding:20px 0;
  margin-bottom: 10px;
  text-align: center;
  line-height: 33px;
}

/* 响应式设计 */
@media (max-width: 991px) {
  .client-case-card-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 468px){
  .client-case-card-wrapper{
    padding:0 7px 0 15px;
  }
  .client-cases-section{
    padding:40px 0 20px;
  }
  .client-case-image{
    height: 144px;
  }
  .client-case-title{
    font-size: 16px;
    padding:10px 0;
  }
}