.feature {
  background-image: linear-gradient(180deg, #fff7f2 0%, rgba(255, 255, 255, 0.8) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}
.feature > .head {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature > .head .title {
  font-size: 44px;
  font-family: Microsoft YaHei UI-Bold;
  font-weight: bold;
}
.feature > .head .desc {
  margin-top: 20px;
  font-size: 20px;
  color: var(--text-sub-color);
}
.feature > .head .primary {
  color: var(--primary-color);
}
.feature > .content {
  width: var(--main-content-width);
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
.feature > .content .item {
  background-color: white;
  box-shadow: 0px 2px 15px 0px rgba(69, 32, 6, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 12px;
  padding: 25px 30px;
}
.feature > .content .item .top {
  display: flex;
  align-items: center;
  column-gap: 14px;
  font-size: 26px;
  font-weight: bold;
  font-family: Microsoft YaHei UI-Bold;
  margin-bottom: 10px;
}
.feature > .content .item .top img {
  display: block;
  width: 45px;
}
.feature > .content .item .desc {
  font-size: 18px;
  color: #333;
}
.feature > .actions {
  display: flex;
  margin-top: 60px;
  column-gap: 40px;
  justify-content: center;
}
.feature > .actions button {
  font-weight: bold;
  font-size: 18px;
}
