.banner {
  position: relative;
}

.banner .img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-position: center;
  object-fit: cover;
}

.banner .title {
  left: 50%;
  bottom: 27%;
  transform: translateX(-50%);
  position: absolute;
  text-align: center;
}

.banner .title .ch {
  font-family: OPPOSans-R;
  font-weight: bold;
  font-size: 60px;
  line-height: 1.33;
  color: #ffffff;
}

.banner .title .en {
  font-family: Gilroy-Regular;
  font-size: 24px;
  line-height: 1.25;
  color: #ffffff;
}

.myContent {
  padding: 50px 0 140px;
}

.myContent .way .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.myContent .way .list .item {
  width: 22.85%;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 32px;
  border-radius: 5px;
}

.myContent .way .list .item .imgBox {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: 31.25%;
  margin-top: 44px;
}

.myContent .way .list .item .img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.myContent .way .list .item .text {
  font-family: OPPOSans-M;
  font-size: 20px;
  padding-top: 16px;
  color: #313131;
}

.myContent .way .list .item .value {
  max-width: 90.5%;
  font-family: OPPOSans-R;
  font-weight: bold;
  font-size: 24px;
  padding-top: 10px;
  color: #016de9;
  text-align: center;
}

.myContent .message {
  margin-top: 100px;
}

.myContent .message .inpList {
  padding-top: 42px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.myContent .message .inpList .inpBox {
  margin-bottom: 30px;
  width: 48.92%;
}

.myContent .message .inpList .inpBox .myInp {
  display: block;
  height: 60px;
  padding-left: 40px;
  width: 100%;
  color: #333;
  border: solid 1px #d2d2d2;
  transition: all 0.3s;
  border-radius: 5px;
}

.myContent .message .inpList .inpBox .myInp::placeholder {
  color: #7d7d7d;
}

.myContent .message .inpList .inpBox .myInp:focus {
  border-color: var(--theme-color);
}

.myContent .message .inpList .inpBox .myTextArea {
  height: 280px;
  width: 100%;
  padding-top: 21px;
  padding-left: 40px;
  color: #333;
  border: solid 1px #d2d2d2;
  transition: all 0.3s;
  resize: none;
  border-radius: 5px;
}

.myContent .message .inpList .inpBox .myTextArea::placeholder {
  color: #7d7d7d;
}

.myContent .message .inpList .inpBox .myTextArea:focus {
  border-color: var(--theme-color);
}

.myContent .message .inpList .inpBox:first-child {
  width: 100%;
}

.myContent .message .inpList .inpBox:last-child {
  width: 100%;
}

.myContent .message .inpList .inpBox.point {
  position: relative;
}

.myContent .message .inpList .inpBox.point::after {
  content: '*';
  position: absolute;
  top: 21px;
  left: 25px;
  color: #e60012;
}

.myContent .buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.myContent .buttons .item {
  width: 220px;
  height: 60px;
  font-family: OPPOSans-M;
  font-size: 24px;
  color: #ffffff;
  border-radius: 5px;
}

.myContent .buttons .item:first-child {
  background: var(--theme-color);
}

.myContent .buttons .item:last-child {
  background: #313131;
}

@media (max-width: 1200px) {
  .banner .title .ch {
    font-size: 38px;
  }
  .banner .title .en {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .banner .title {
    bottom: 50%;
    transform: translate(-50%, 50%);
  }
  .banner .title .ch {
    font-size: 32px;
  }
  .banner .title .en {
    font-size: 16px;
  }
  .myContent {
    padding: 60px 0;
  }
  .myContent .way .list {
    flex-wrap: wrap;
    gap: 30px;
  }
  .myContent .way .list .item {
    width: calc(50% - 15px);
  }
  .myContent .message {
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .banner .title .ch {
    font-size: 24px;
  }
  .banner .title .en {
    font-size: 15px;
  }
  .myContent {
    padding: 40px 0;
  }
  .myContent .way .list {
    gap: 15px;
  }
  .myContent .way .list .item {
    padding-bottom: 15px;
    margin-top: 20px;
  }
  .myContent .way .list .item .text {
    font-size: 14px;
    padding-top: 10px;
  }
  .myContent .way .list .item .value {
    font-size: 14px;
    padding-top: 5px;
  }
  .myContent .message {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .myContent .message .inpList {
    padding-top: 15px;
  }
  .myContent .message .inpList .inpBox {
    width: 100%;
    margin-bottom: 10px;
  }
  .myContent .message .inpList .inpBox .myInp {
    height: 40px;
    font-size: 14px;
    padding-left: 20px;
  }
  .myContent .message .inpList .inpBox .myTextArea {
    padding-top: 5px;
    padding-left: 20px;
    height: 150px;
  }
  .myContent .message .inpList .inpBox.point::after {
    top: 5px;
    left: 10px;
  }
  .myContent .buttons {
    gap: 15px;
  }
  .myContent .buttons .item {
    width: 120px;
    height: 35px;
    font-size: 12px;
  }
}
