.section1 .wrap {
  padding-top: 100px;
  padding-bottom: 208px;
}
.section1 .wrap .title {
  margin-bottom: 70px;
}
.section1 .wrap .title h3 {
  font-size: 40px;
}
.section1 .wrap .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.section1 .wrap .list .item {
  background-color: #F8F8F8;
  padding: 50px;
  text-align: center;
  cursor: pointer;
}
.section1 .wrap .list .item:hover .icon {
  transform: rotateY(360deg);
}
.section1 .wrap .list .item:hover .value {
  color: #F38D2C;
}
.section1 .wrap .list .item .icon {
  transition: all 0.6s;
  margin-bottom: 24px;
}
.section1 .wrap .list .item .key {
  margin-bottom: 24px;
  font-size: 16px;
  color: #333;
}
.section1 .wrap .list .item .value {
  color: #333;
  font-weight: 700;
  font-size: 22px;
  transition: all 0.6s;
}
.section1 .wrap .list .item .time {
  margin-top: 8px;
  color: #888888;
  font-size: 12px;
}
.section1 .wrap .list .item:last-child .value {
  font-size: 18px;
}
.section2 .wrap {
  padding-bottom: 140px;
}
.section2 .wrap .title {
  margin-bottom: 24px;
}
.section2 .wrap .title h3 {
  font-size: 40px;
  color: #333;
}
.section2 .wrap .text {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 85px;
}
.section2 .wrap .list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.section2 .wrap .list .item {
  background-color: #FAFAFA;
  border: 1px solid #E9E9E9;
  width: calc(50% - 20px);
}
.section2 .wrap .list .item.z {
  z-index: 2;
}
.section2 .wrap .list .item.row {
  width: 100%;
}
.section2 .wrap .list .item input {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  font-size: 16px;
  border: none;
  background-color: transparent;
}
.section2 .wrap .list .item textarea {
  width: 100%;
  height: 200px;
  border: none;
  background-color: transparent;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 36px;
}
.section2 .wrap .list .item .down_pull {
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 24px;
  align-items: center;
  justify-content: space-between;
}
.section2 .wrap .list .item .down_pull .txt {
  font-size: 14px;
}
.section2 .wrap .list .item .down_pull .jt {
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top-color: #333;
  border-left-width: 5px ;
  border-right-width: 5px ;
  border-bottom-width: 0;
}
.section2 .wrap .flex {
  width: fit-content;
  margin: 40px auto 0;
  display: flex;
  gap: 20px;
}
.section2 .wrap .flex button {
  width: 150px;
  height: 50px;
  background-color: transparent;
  font-size: 16px;
  border: 1px solid #333;
  transition: all 0.6s;
}
.section2 .wrap .flex button:hover {
  background-color: #F38D2C;
  border-color: #F38D2C;
  color: #fff;
}
