@import url('./common.css');
@import url('./templet.css');

body,ul,li,h1,h2,h3,h4,p{
  padding: 0;
  margin: 0;
}

ul,li{
  list-style-type: none;
}

a {
  text-decoration: none;
}
input{
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.page-container {
    --padding-lr:  12%;
    box-sizing: border-box;
    margin-top: 10px;
}

.page-title{
  position: relative;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: bold;
  width: max-content;
}
.page-title::before{
  content: '';
  width: 18px;
  height: 18px;
  background-size: cover;
  position: absolute;
  left:0px;
  top: 16px;
  background-image:url(../img/icon-back.png);
}
.page-title-icon::before{
  display: none;
}
.btn{
  background-color: var(--color-gold);
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  border: 0;
  height: 45px;
  /* line-height: 45px; */
  padding: 0;
}
.submit-btn {
    display: block;
    width: calc(100% - var(--padding-lr) * 2);
    height: 45px;
    line-height: 45px;
    text-align: center;
    margin: 25px auto 50px auto;
    border-radius: 8px;
    background-color: var(--color-gold);
    border: 0;
    cursor: pointer;
    font-size: 15px;
    color: #fff !important;
    font-size: 16px;
}
.btn:active,.btn:hover,.btn:first-child:active{
  color: #fff;
  background-color: var(--color-gold);
  border-color:var(--color-gold);
  opacity: 0.8;
}
.submit-btn:hover{
  opacity: 0.8;  
}
.submit-btn:active{
  color: #222;
  background-color: var(--color-gold);
  border-color:var(--color-gold);
}
.card{
    display: none;
  }
  .pay-pwd-input .tip {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 400;
    padding: 15px 0;
  }
  .pay-pwd-input .inpt-list {
    border: 1px solid #D6B177;
    border-radius: 4px;
    display: flex;
  }
  .pay-pwd-input .inpt-list .item {
    flex: 1;
    width: 0;
    height: 40px;
    position: relative;
  }
  .pay-pwd-input .inpt-list .item.fill::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
  }
  .pay-pwd-input .item + .item {
    border-left: 1px solid #D6B177;
  }
 #password {
  position: absolute;
  bottom: 20px;
  left: var(--padding-lr);
  right: var(--padding-lr);
  height: 40px;
  opacity: 0;
  }
@media (min-width: 640px){
  .go-back{
    /* margin-left: -20px; */
  }
  .card{
      display: block;
  }
  /* .page-title{
    padding: 20px 0 20px var(--padding-lr);
  } */
  .main-content{
      padding: 20px 50px;
  }
  .page-container {
    margin-top: 0;
      /* padding-bottom: 58px; */
  }
  /* .submit-btn:active,.submit-btn:hover,.btn:active,.btn:hover{
    opacity: 0.8;
    background-color: #d7ab6d;
  } */
  
}