.section1 {
  background: #F4F5F5;
}
.section1 .wrap {
  padding-top: 120px;
  padding-bottom: 120px;
}
.section1 .wrap .main {
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 0 120px;
  position: relative;
  overflow: hidden;
}
.section1 .wrap .main .title {
  text-align: center;
}
.section1 .wrap .main .title h2 {
  color: #333;
  font-size: 36px;
  line-height: 60px;
  letter-spacing: 1.8px;
}
.section1 .wrap .main .text {
  text-align: center;
}
.section1 .wrap .main .text p {
  color: #5D6970;
  font-size: 18px;
  line-height: 32px;
}
.section1 .wrap .main .flex {
  margin-top: 100px;
  display: flex;
}
.section1 .wrap .main .flex .left {
  padding-left: 120px;
  padding-right: 120px;
  width: fit-content;
  border-right: 1px solid #D9D9D9;
}
.section1 .wrap .main .flex .left .tit {
  margin-bottom: 60px;
}
.section1 .wrap .main .flex .left .tit h3 {
  color: #333;
  font-size: 32px;
  line-height: 60px;
}
.section1 .wrap .main .flex .left .list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section1 .wrap .main .flex .left .list .item {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #333;
  transition: all .6s;
}
.section1 .wrap .main .flex .left .list .item:nth-child(2) p {
  text-decoration: underline;
}
.section1 .wrap .main .flex .left .list .item:hover {
  color: var(--color);
}
.section1 .wrap .main .flex .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.section1 .wrap .main .flex .right p {
  color: #000;
  font-size: 16px;
}
.section1 .wrap .main::before, .section1 .wrap .main::after {
  content: "";
  display: block;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(100px);
  position: absolute;
}
.section1 .wrap .main::after {
  background: var(--color);
  width: 600px;
  height: 600px;
  right: -190px;
  top: -240px;
}
.section1 .wrap .main::before {
  background: #C8A96A;
  width: 320px;
  height: 320px;
  left: -147px;
  bottom: -150px;
}

.section2 {
  background-color: #fff;
}
.section2 .layui-input-wrap .layui-input-suffix {
  line-height: 60px;
}
.section2 .wrap {
  padding-top: 120px;
  padding-bottom: 100px;
}
.section2 .wrap .title {
  margin-bottom: 24px;
}
.section2 .wrap .title h2 {
  color: #333;
  font-size: 40px;
}
.section2 .wrap .content {
  margin-bottom: 57px;
}
.section2 .wrap .content p {
  color: #5D6970;
  font-size: 18px;
}
.section2 .wrap .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-bottom: 40px;
}
.section2 .wrap .flex .item {
  width: calc(50% - 20px);
}
.section2 .wrap .flex .item.row {
  width: 100%;
}
.section2 .wrap .flex .item input {
  background-color: #FAFAFA;
  border: 1px solid #E9E9E9;
  height: 60px;
  border-radius: 8px;
  width: 100%;
  padding: 0 20px;
  font-size: 16px;
}
.section2 .wrap .flex .item input::placeholder {
  color: #999;
}
.section2 .wrap .flex .item textarea {
  width: 100%;
  height: 200px;
  padding: 20px;
  border: 1px solid #E9E9E9;
  border-radius: 8px;
  font-size: 16px;
  background-color: #FAFAFA;
}
.section2 .wrap .flex .item textarea::placeholder {
  color: #999;
}
.section2 .wrap .button {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}
.section2 .wrap .button button {
  width: 150px;
  height: 50px;
  border-radius: 8px;
  background-color: transparent;
  font-size: 16px;
  transition: all .6s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section2 .wrap .button button:nth-child(1) {
  border: 1px solid #333;
}
.section2 .wrap .button button:nth-child(2) {
  background-color: var(--color);
  color: #fff;
}
.section2 .wrap .button button:hover {
  opacity: 0.8;
  background-color: var(--color);
  border-color: var(--color);
  color: #fff;
}

.layui-form-select .layui-icon::before {
  content: none;
}

.layui-form-select .layui-icon {
  display: block;
  border: 12px solid transparent;
  border-bottom: none;
  border-top-color: #333;
  border-left-width: 8px;
  border-right-width: 8px;
  margin-top: -6px;
}

.layui-form-select dl {
  top: 100%;
}

.layui-form-selectup dl {
  bottom: 100%;
  top: auto;
}

.section3 {
  background-color: #fff;
}
.section3 .wrap {
  padding-bottom: 110px;
  display: flex;
}
.section3 .wrap .left {
  background-color: #F4F5F5;
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.section3 .wrap .left .icon {
  width: 56px;
  margin-bottom: 17px;
}
.section3 .wrap .left .tit {
  margin-bottom: 14px;
}
.section3 .wrap .left .value {
  font-size: 18px;
  color: var(--color);
  margin-bottom: 17px;
}
.section3 .wrap .left .time {
  font-size: 14px;
  color: #5D6970;
}
.section3 .wrap .right {
  width: 50%;
  border-radius: 12px;
}
.section3 .wrap .right img {
  width: 100%;
  height: 100%;
}
