* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
}
@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial.ttf") format("truetype");
}
body {
  background: #f4fffc;
}
.section {
  width: 100vw;
  min-height: 100vh;
  background: url("../img/bottomBg.webp") no-repeat;
  background-size: 100% 40vh;
  background-position: bottom;
  padding-bottom: 4%;
}
.section-content {
  width: 100%;
  height: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.section-top {
  width: 100%;
  height: 171px;
  object-fit: cover;
}
.content {
  margin-top: 10%;
  line-height: 20px;
  text-align: center;
  padding: 0px 20px;
}
.info-title {
  margin-bottom: 6%;
}
.info-content {
}
.section-info{
  width: 100%;
  height: 127px;
  background: url('../img/text1.webp') no-repeat;
  background-size: 100% 100%;
}
.section-box {
  margin-top: 10%;
  min-height: 160px;
  background: #ffffff;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.16);
  border-radius: 8px 8px 8px 8px;
  padding: 12px;
}
.section-box-title{
  font-weight: bold;
  color: #333333;
  text-align: center;
}
.section-box-input{
  margin-top: 3%;


}
.input-text{
  width: 100%;
  height: 40px;
  background: #FFFFFF;
  border-radius: 40px 40px 40px 40px;
  border: 1px solid #01855C;
  text-align: center;
}
.section-box-button{
  margin-top: 3%;
  width: 100%;
  height: 40px;
  animation: btn 1.5s infinite;
}
.section-box-info{
  width: 100%;
  height: 88px;
  background: url('../img/text2.webp') no-repeat;
  background-size: 100% 100%;
  margin-top: 6%;
}
@keyframes btn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media (min-width: 376px) and (max-width: 414px) {
  *{
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 415px) and (max-width: 768px) {
  *{
    font-size: 18px;
    line-height: 28px;
  }

}
@media (min-width: 769px)  {
  *{
    font-size: 20px;
    line-height: 30px;
  }
  .section-top{
    height: 212px;
  }
  .section {
 
    background: url("../img/bottomBg1.webp") no-repeat;
    background-size: 100% 50vh;
    background-position: bottom;
  }
  .section-box-info{
    margin-top: 12%;
    /* color: #333; */
  }

}
