.my-tabs {
  display: flex;
  flex-direction: column;
  width: 270px;
}

.my-tabs .tab {
  box-sizing: border-box;
  width: 100%;
  height: 75px;
  line-height: 75px;
  background-color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
  color: #282828;
  padding-left: 45px;
  padding-right: 25px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 8px 16px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-user-select: none;
  /* 添加这行以支持 Safari */
  user-select: none;
  cursor: pointer;
}

.my-tabs .tab a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.my-tabs .tab svg {
  color: #ccc;
}

.my-tabs .activeTab {
  color: #fff;
  background-color: #2c97ec;
}

.my-tabs .activeTab svg {
  color: #fff;
}