﻿*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Arial-Regular',  sans-serif;
}
@font-face {
  font-family: 'Arial-Regular';
  src: url('../font/Arial.ttf') format('truetype');
}
@font-face {
  font-family: 'Arial-Bold';
  src: url('../font/Arial Bold.ttf') format('truetype');
}
body{
   width: 100vw;
   min-height: 100vh;
   background: url('../image/bg.webp') ;
   background-repeat: no-repeat;
   background-size: 100% 100%;
}
.pack{
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-height: 100vh;
  max-width: 450px;
  margin: 0 auto;

}
.pack-header{
  padding: 20px  0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.park-robot{
  width: 268px;
  height: 160px;

}
.pack-title{
  width: 100%;
  height: 148px;
  background: url('../image/title.webp') no-repeat center center;
  background-size:100% 100%;
  
  margin-top: 0px;
  position: relative;
  z-index: 1;
}
.pack-content{
  padding: 0px 10px;
  position: relative;
  z-index: 0;
  margin-top: -16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.content{
  border-radius: 32px 32px 0px 0px;
  background-color: #fff;
  padding: 36px 16px;
  flex: 1;

}
.content-title{
  font-weight: bold;
  font-family: 'Arial-Bold';
font-size: 24px;
color: #1A1B33;
text-align: center;
margin-bottom: 16px;
}

.content-text{

font-weight: 400;
font-size: 16px;
color: #1A1B33;
line-height: 28px;
text-align: center;
}
.filed{
  margin-top:24px;

}
.filed-input{
  width: 100%;
  height: 40px;
  border-radius: 20px;
  /* background-color: #F5F5F5; */
  border: 1px solid #AC9EE4;
  padding: 0px 16px;
  font-size: 16px;
  color: #1A1B33;
  text-align: center;
}
.filed-btn{
  margin-top: 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background: #FF63B4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF;
  cursor: pointer;
  animation: scale 1.5s linear infinite;
}
.animation{
  border-radius: 100%;
  animation: ripple 0.6s linear infinite;
}
.submit-btn{
  font-weight: bold;
font-size: 15px;
color: #FFFFFF;
}
.result-box{
  display: none;
}
.mask{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.72);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;


}
.mask-img{
  width: 323px;
height: 190px;
}
.num{
  font-weight: bold;
font-size: 18px;
color: #FF63B4;
font-family: 'Arial-Bold';
text-decoration: underline;


}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@media (min-width: 700px) {
   .content-title{
    font-weight: bold;
    font-size: 32px;
    color: #1A1B33;
    line-height: 48px;
text-align: center;
padding: 0px 60px;
margin-bottom: 40px;
   }
   .content-text{
    font-weight: 400;
    font-size: 20px;
    color: #1A1B33;
    line-height: 36px;
    text-align: center;
   }
   .filed{
    margin-top: 40px;
   }
   .filed-input{
    height: 48px;
    font-size: 20px;
    border-radius: 24px;

   }
   .filed-btn{
    height: 48px;
    font-size: 20px;
    border-radius: 24px;
    margin-top: 20px; 
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;

   }
   .pack{
    padding-top: 80px;
   }
   .pack-title{
    margin-top: 40px;
   }
   .result-title{
    padding: 0px 0px;
   }
   .gray{
    background-color: #E5E5E5 !important;
    color: #1A1B33 !important;
   }

}
