/* 服务区块样式 */
.services-section {
  padding: 80px 0;
  background: url(../images/indexbg.jpg) no-repeat center;
  background-size: cover;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* 服务卡片 */
.service-card {
  text-align: center;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* 服务图标 */
.service-icon {
  margin: 0 auto 30px;
}

.service-icon img {
  object-fit: contain;
}
.service-card1 .service-title,.service-card1 .service-learn-more{
    color: #ffac20;
}
.service-card1 .service-learn-more{
    color: #ffac20;
    border: 1px solid #ffac20;
}
.service-card1 .service-learn-more:hover{
    border: 1px solid #ffac20;
    background: #ffac20;
}
.service-card2 .service-title,.service-card2 .service-learn-more{
    color: #ce01d9;
}
.service-card2 .service-learn-more{
    color: #ce01d9;
    border: 1px solid #ce01d9;
}
.service-card2 .service-learn-more:hover{
    border: 1px solid #ce01d9;
    background: #ce01d9;
}
.service-card3 .service-title,.service-card3 .service-learn-more{
    color: #0372d3;
}.service-card3 .service-learn-more{
    color: #0372d3;
    border: 1px solid #0372d3;
}
.service-card3 .service-learn-more:hover{
    border: 1px solid #0372d3;
    background: #0372d3;
}
/* 服务标题 */
.service-title {
  font-size: 20px;
  color: #333;
  font-weight: 500;
  margin: 0 0 20px 0;
  line-height: 1.4;
  transition: all 0.3s ease-in-out;
}

/* 服务描述 */
.service-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 30px 0;
  min-height: 120px;
}

/* Learn More 按钮 */
.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: transparent;
  color: #0175d2;
  border: 1px solid #0175d2;
  border-radius: 50px;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.service-learn-more::after {
  content: '>';
  font-size: 16px;
  transition: transform 0.3s ease;
}

.service-learn-more:hover {
  background: #007bff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.service-learn-more:hover::after {
  transform: translateX(4px);
}

/* 响应式设计 */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .services-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }
      .copyright {
        
        line-height: 1.5;
    }
  .services-section {
    padding: 50px 0;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .service-description {
    min-height: auto;
  }
  .service-icon {
    width: 100px;
    height: 100px;
  }
  
  .service-title {
    font-size: 18px;
  }
  
  .service-description {
    font-size: 13px;
  }
  .index_news {
    margin-top: 50px;
        margin-bottom:30px;
  }
  .news-grid-container {
    margin-top: 30px;
}

.news-more-section {
    margin-top: 30px;
}

}
