/* 电力解决方案基础样式 */
.power_item {
  width: 30% !important;
  position: relative;
}

.power_item_text {
  padding: 0 35px;
}

.power_item_text .power_item_title {
  text-align: left;
  font-size: 20px;
  color: #111;
  line-height: 26px;
  font-weight: bold;
  margin-top: 15px;
  width: 100%;
}

.power_item_text .p {
  text-align: left;
  line-height: 24px !important;
  color: #666 !important;
  font-size: 14px !important;
}

.power_item .more {
  display: inline-block;
  padding: 4px 16px;
  border: 1px solid #409EFF;
  color: #409EFF;
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: all 0.3s ease;
}

.power_item .more:hover {
  background: #409EFF;
  color: #fff;
}

/* 响应式样式 */
@media screen and (max-width: 1569px) {
  .power_item {
    width: 31% !important;
    margin: 0 1% !important;
  }
  
  .power_item_text {
    padding: 0 25px;
  }
  
  .power_item_text .power_item_title {
    font-size: 18px;
    line-height: 24px;
  }
  
  .power_item_text .p {
    font-size: 13px !important;
    line-height: 22px !important;
  }
}

@media screen and (max-width: 1199px) {
  .power_item {
    width: 48% !important;
    margin: 0 1% 30px 1% !important;
  }
  
  .power_item:nth-child(3) {
    width: 98% !important;
    margin: 0 1% !important;
  }
  
  .power_item_text {
    padding: 0 20px;
  }
  
  .power_item_text .power_item_title {
    font-size: 17px;
    line-height: 22px;
  }
  
  .power_item_text .p {
    font-size: 13px !important;
    line-height: 20px !important;
    height: auto !important;
    min-height: 120px;
  }
  
  .power_item .more {
    bottom: 15px;
    right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .power_item {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 0 0 50px 0 !important;
  }
  
  .power_item:nth-child(3) {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }
  
  .power_item_text {
    padding: 0 15px;
  }
  
  .power_item_text .power_item_title {
    font-size: 16px;
    line-height: 20px;
    margin-top: 10px;
  }
  
  .power_item_text .p {
    font-size: 12px !important;
    line-height: 18px !important;
    height: auto !important;
    min-height: 100px;
  }
  
  .power_item .more {
    bottom: 10px;
    right: 10px;
    font-size: 13px;
    padding: 3px 12px;
  }
  
  .power_item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
} 