.wrap {
  background-color: #f7f7f7;
  padding: 40px 0 100px;
}

.purchase-crumbs {
  padding: 20px 0;
}
.purchase-banner {
  height: 380px;
  background: url(../image/new/14.jpg) no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
}
.list {
  margin-bottom: 65px;
}
.item-cover {
  height: 220px;
  width: 100%;
  display: block;
  overflow: hidden;
  border: 1px solid #fff;
  position: relative;
}
.item-image {
  height: 100%;
  width: 100%;
  transition: all 0.5s;
  object-fit: cover;
}
.item:hover .item-image {
  transform: scale(1.2);
}
.item-content {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  line-height: 1.8;
}
.item-icon {
  display: inline-block;
  width: 75px;
  height: 75px;
  background: url(../image/new/15.png) no-repeat;
  position: absolute;
  left: 50%;
  margin-left: -35.5px;
  top: 50%;
  margin-top: -55px;
}
.item:nth-child(1) .item-icon {
  background-position: -133px 2.5px;
}
.item:nth-child(2) .item-icon {
  background-position: -495px 2.5px;
}
.item:nth-child(3) .item-icon {
  background-position: -855px 2.5px;
}
.item:nth-child(4) .item-icon {
  background-position: -1215px 2.5px;
}
.item-title {
  color: #fff;
  top: 145px;
  text-align: center;
  z-index: 1;
  position: absolute;
  width: 100%;
  font-size: 22px;
  font-weight: bold;
}
.register-button {
  cursor: pointer;
}
.content {
  background-color: #fff;
  padding-bottom: 120px;
}
.content-title {
  text-align: center;
  font-size: 26px;
  line-height: 36px;
  color: #232323;
  padding: 45px 0 0;
}
.content-desc {
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  color: #616265;
  padding: 13px 0 0;
}
.content-image {
  width: 100%;
}
.content-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content-item {
  display: flex;
  align-items: center;
  margin-top: 50px;
  width: 40%;
}
.content-item-icon {
  width: 36px;
  height: 36px;
  margin-right: 15px;
}
.content-item-content {
  flex: 1;
  overflow: hidden;
}
.content-item-title {
  font-size: 16px;
  color: #232323;
}
.partner-list {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 16px 0 50px;
}
.partner-item {
  width: calc((100% - 10px * 5) / 5);
  background: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  margin: 10px 0 0;
  transition: all .3s;
}
.partner-item:hover {
  box-shadow: 5px 5px 10px rgb(51 51 51 / 10%);
}
.partner-item-image {
  max-width: 100%;
  object-fit: contain;
}
.modal {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 4px;
  width: 1000px;
  max-width: 100%;
  max-height: 80%;
  overflow-y: auto;
}
.modal-header {
  display: flex;
  justify-content: flex-end;
  padding: 19px 20px 17px;
}
.modal-close {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.modal-body {
  padding: 0 100px 100px 60px;
}
.form-title {
  font-size: 30px;
  color: #2f2f2f;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 16px;
}
.form-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  width: 48%;
}
.form-item-label {
  min-width: 80px;
  text-align: right;
  display: block;
}
.form-item-content {
  border-bottom: 1px solid #ddd;
  display: flex;
  padding: 6px 0;
  flex: 1;
}
.form-item-input {
  width: 280px;
}
.form-item-required {
  color: #999;
}
.form-bottom {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
.form-submit {
  background-color: #1576d4;
  color: #fff;
  font-size: 16px;
  width: 114px;
  height: 38px;
  border-radius: 4px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .wrap {
    padding: 20px 0 0 0;
  }
  .purchase-crumbs {
    display: none;
  }
  .purchase-banner {
    height: 150px;
    font-size: 20px;
  }
  .list {
    margin-bottom: 0;
    padding-bottom: 40px!important;
  }
  .content {
    padding-bottom: 30px;
  }
  .content-title {
    font-size: 20px;
    padding-top: 20px;
  }
  .content-desc br {
    display: none;
  }
  .content-item {
    width: 100%;
    margin-top: 30px;
  }
  .partner-item {
    width: calc((100% - 10px) / 2);
    margin: 10px 0 0;
  }
  .modal-header {
    padding: 10px;
  }
  .modal-body {
    padding: 0 20px 20px;
  }
  .form {
    font-size: 14px;
  }
  .form-item-input {
    width: auto;
    flex: 1;
  }
  .form-item {
    margin-bottom: 30px;
  }
  .form-bottom {
    margin-top: 10px;
  }
  .form-submit {
    font-size: 14px;
  }
  .form-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}