
.idc_adv_wrap {
  width: 100%;
  padding: 60px 20px 80px 20px;

  border-top: none !important;
}
.idc_adv_box {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.idc_adv_inner {}


.idc_adv_title {
  text-align: center;
  font-size: 24px;
  color: #1d2129;
  font-weight: 600;
  margin-bottom: 52px;
  line-height: 1.7;
  letter-spacing: 1px;
}
.idc_adv_title span {
  color:#0066ff;
  padding:0 14px;
  font-weight:500;
}

.idc_adv_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.idc_adv_item {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #e5e6eb;
  transition: all 0.3s ease;
  min-width: 0;
  overflow: hidden;
}
.idc_adv_item:hover {
  box-shadow: 0 8px 24px rgba(0,102,255,0.12);
  border-color: #0066ff;
  transform: translateY(-4px);
}
.idc_adv_icon_box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.idc_adv_icon_box img {
  width: 40px !important;
  height: 40px !important;
  object-fit: contain;
}
.idc_adv_icon_box span {
  font-size: 16px;
  font-weight: 600;
  color: #0066ff;
}
.idc_adv_text_box h4 {
  font-size: 18px;
  color: #1d2129;
  margin-bottom: 12px;
  font-weight: 600;
  margin-top:0;
}
.idc_adv_text_box p {
  font-size: 14px;
  color: #4e5969;
  line-height: 1.8;
  word-break: break-all;
  overflow-wrap: break-word;
  margin:0;
}

/* 平板适配 */
@media(max-width:992px){
  .idc_adv_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .idc_adv_title{
    font-size:21px;
  }
}
/* 手机适配 */
@media(max-width:768px){
  .idc_adv_wrap {
    padding: 40px 16px 50px 16px;
  }
  .idc_adv_title {
    font-size: 18px;
    margin-bottom: 36px;
  }
  .idc_adv_list {
    grid-template-columns: 1fr;
  }
  .idc_adv_item {
    padding: 24px 20px;
  }
}
