/* 案例列表 */
.case_ul2 {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.case_ul2 li {
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
  margin-right: 10px;
}

.case_ul2 li:nth-of-type(4n) {
  margin-right: 0 !important;
}

#opt1,
#opt2 {
  display: flex;
  align-items: center;
}

#opt1 {
  margin-bottom: 27px;
}

#opt2 {
  margin-bottom: 10px;
}

.options {
  width: auto;
  overflow: hidden;
  overflow-x: scroll;
  /* 设置x轴可滑动 */
  white-space: nowrap;
  /* 元素不换行 */
  padding-left: 10%;
  margin: 48px 0;
}

/* 隐藏滚动条 */
/* .options::-webkit-scrollbar {
  display: none;
} */

.item {
  display: flex;
  align-items: center;
  height: 34px;
  font-size: 13px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  border: 1px solid #f1f1f1;
  padding: 0 19px;
  margin-right: 14px;
}

.item1 {
  display: flex;
  align-items: center;
  height: 34px;
  font-size: 13px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #ffffff;
  background: #005bfe;
  padding: 0 19px;
  margin-right: 14px;
}

.item span,
.item1 span {
  display: block;
  /* height: 12px; */
  line-height: 12px;
}