/* 按钮样式 */
.try-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #FF8533;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 30px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.try-btn:hover {
    background: #FF6B00;
    color: #fff;
}
/*无序列表样式*/
.type-new li {
  margin-bottom: 0.3em;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.type-new li::before {
  content: "•";
  color: #DDDDDD;
  position: absolute;
  left: 0;
  font-size: 1.5em;
  top: 50%;
  transform: translateY(-50%);
}

.hxys_img fl {
    width: 40%;
    height: auto;
}

/* 产品特点样式 */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
    padding: 0 20px;
}

.feature-item {
    background: #fff;
    padding: 40px 25px;
    min-height: 320px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(42, 91, 158, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(42, 91, 158, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(42, 91, 158, 0.04);  /* 修改图标背景为半透明 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-item {
    background: transparent;  /* 移除卡片背景 */
    padding: 40px 25px;
    min-height: 320px;
    border-radius: 16px;
    box-shadow: none;  /* 移除默认阴影 */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: none;  /* 移除悬浮阴影 */
}

.feature-icon img {
    width: 48px;
    height: 48px;
}

.feature-item h3 {
    color: #333333;
    font-size: 24px;
    margin: 0 0 20px;
    position: relative;
}

.feature-item p {
    color: #4A4A4A;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.w1200 img {
    display: block;
    margin: 0 auto;
}

/* 响应式调整保持不变 */
@media screen and (max-width: 1200px) {
    .features {
        grid-template-columns: repeat(2, 1fr);  /* 平板端2列显示 */
    }
}

@media screen and (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;  /* 手机端1列显示 */
    }
    
    .feature-item {
        min-height: auto;  /* 移动端取消最小高度限制 */
    }
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(42, 91, 158, 0.1);  /* 调整悬浮阴影 */
}

.feature-item h3 {
    color: #333333;  /* 修改为文字黑 */
    font-size: 24px;  /* 修改标题字体大小 */
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
}

.feature-item p {
    color: #4A4A4A;  /* 修改为深空灰 */
    font-size: 16px;  /* 修改正文字体大小 */
    line-height: 1.8;
}

