* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.data-safety {
  margin-top: 20px;
}

.data-safety .title-row {
  display: flex;
  align-items: center;
}

.data-safety .title-row .material-icons {
  margin-top: 3px;
  font-size: 20px;
  color: rgb(95, 99, 104);
  user-select: none;
}

.data-safety .title-row span {
  font-size: 22px;
  font-weight: 500;
  color: #202124;
  line-height: 48px;
}

.data-safety .img-wrapper {
  width: 48px;
  height: 48px;
  margin-right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 6px;
  cursor: pointer;
  /* transition: all 0.2s ease; */
}

.data-safety .img-wrapper:active {
  background-color: rgb(224, 224, 224); /* 淡灰色背景 */
}

.img-wrapper:hover {
  background-color: #f5f5f5; /* 淡灰色背景 */
}

.data-safety .title-row {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}
.data-safety .title-row .right {
  margin-left: 8px;
}

.data-safety .desc {
  color: rgb(95, 99, 104);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.data-safety .card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  padding: 20px 20px 12px 20px;
  margin-bottom: 18px;
}
.data-safety .item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 14px;
  color: rgb(95, 99, 104);
}
.data-safety .item img {
  width: 20px;
  height: 20px;
  margin-right: 20px;
}
.data-safety .card .item-b0 {
  margin-bottom: 0;
}
.data-safety .title-row .right .icon,
.item .icon {
  width: 20px;
  height: 20px;
  text-align: center;
  margin-right: 20px;
}
.data-safety .item .main {
  flex: 1;
}
.data-safety .small {
  font-size: 12px;
  display: inline-block;
  cursor: pointer;
  color: rgb(95, 99, 104);
}
.data-safety .small .details {
  color: rgb(95, 99, 104);
}

.data-safety .see-details {
  color: #01875f;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
  cursor: pointer;
  font-weight: 500;
  padding: 8px 6px;
  border-radius: 2px;
}

.ios .data-safety .see-details {
  color: #0070c9;
}
.data-safety .see-details:hover {
  background-color: #f6fafe;
}

.data-safety .card .see-details:active {
  background-color: #dbe9fb;
}

@media (max-width: 1280px) {
  .data-safety .title-row span {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .data-safety .title-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}