.all_box a {
  display: block;
  color: #333333;
}
.all_box ul {
  list-style: none;
}
.all_box .more {
  line-height: 40px;
  border-bottom: none;
  font-size: 18px;
  /* 初始状态下没有边框 */
  transition: border-bottom 0.5s ease;
  /* 只针对 border-bottom 设置过渡效果 */
}
.all_box .more :hover {
  border-radius: 3px;
  border-bottom: 2px solid #0079EE;
}
.all_box .more a {
  color: #333333;
}
.spot_apart .line1,
.QA_apart .line1 {
  display: flex;
  justify-content: space-between;
}
.spot_apart .line1 .title,
.QA_apart .line1 .title {
  line-height: 40px;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 22px;
  border-radius: 3px;
  border-bottom: 3px solid #0079EE;
}
.spot_apart .line1 {
  border-bottom: 1px #bfbfbf solid;
}
.spot_apart .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px 0;
  box-sizing: border-box;
  /* 启用换行 */
}
.spot_apart .content .content_item {
  text-align: justify;
  box-sizing: border-box;
  width: 32.5%;
  height: 212px;
  flex-wrap: wrap;
  /* 启用换行 */
  margin-bottom: 15px;
  background-color: #fff;
  padding: 10px;
  transition: all 0.3s ease;
  /* 简单缓动 */
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* 基础阴影 */
  position: relative;
  z-index: 1;
}
.spot_apart .content .content_item .item_title,
.spot_apart .content .content_item .item_content {
  letter-spacing: 1px;
}
.spot_apart .content .content_item .item_title {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 2px #bfbfbf dashed;
  height: 80px;
}
.spot_apart .content .content_item .item_title img {
  width: 45px;
  height: 40px;
  margin: 0 10px 0 0;
}
.spot_apart .content .content_item .item_title p {
  color: #0477e6;
  font-weight: bold;
  font-size: 18px;
}
.spot_apart .content .content_item .item_content {
  line-height: 30px;
  font-size: 15px;
  padding-top: 12px;
  color: #696969;
}
.spot_apart .content .content_item .item_content p {
    line-height: 30px !important;
    text-indent: 0 !important;
    font-size: 15px !important;
    margin-top: 0 !important;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif !important;
}

.spot_apart .content .content_item:hover {
  transform: translateY(-2px);
  /* 轻微抬升 */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), /* 加深投影 */ 0 2px 6px rgba(0, 0, 0, 0.1);
  /* 保留底层微影 */
}
.QA_apart {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.QA_apart .part {
  width: 48%;
}
.QA_apart .part .list_content {
  margin: 20px 0;
}
.QA_apart .part .list_content li {
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  text-align: left;
  display: flex;
  align-items: center;
  position: relative;
  /* 让下划线定位相对于li */
}
.QA_apart .part .list_content li ::after {
  content: '';
  position: absolute;
  bottom: 0;
  /* 定位到 li 底部 */
  left: 0;
  width: 0%;
  /* 初始宽度为0，隐藏 */
  height: 2px;
  /* 下划线的高度 */
  background-color: #0079EE;
  /* 下划线颜色 */
  transition: width 0.3s ease;
  /* 过渡效果，0.3秒的时间，平滑地展示 */
}
.QA_apart .part .list_content li :hover::after {
  width: 100%;
  /* hover 时下划线的宽度为 100% */
}
.QA_apart .part .list_content li i {
  display: block;
  width: 7px;
  height: 7px;
  background: url(/scjgswj/xhtml/zsk/images/ico_dian.png) no-repeat center center;
  margin-right: 10px;
}
.QA_apart .part .list_content li a {
  color: #333333;
}
.link_apart {
  display: flex;
  justify-content: space-between;
}
.link_apart > div {
  width: 100%;
  height: 150px;
}
.link_apart > div img {
  width: 100%;
  height: 100%;
}
