﻿body {
    background: #fff;
    height: 16.08rem;
}
/* 头部 */
.top {
    position: relative;
    width: 100%;
    height: 4.8rem;
    background: #F5F3F3;
    text-align: center;
}
.top > span {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -0.6667rem;
    margin-top: -1rem;     
    width: 1.32rem;
    height: 1.32rem;
    display: block;
}
.top > span > img {
    width: 100%;
    height: 100%;
    display: block;
}
.top > img {
    width: 100%;
    height: 4.8rem;
    display: block;
    position: absolute;
    border:  none;
}
.top > input {
    background-color: #ffeded;
    position: absolute;
    top: 50%;
    left: 50%;    
    margin-left: -0.6667rem;
    margin-top: -1rem;  
    width: 1.32rem;
    height: 1.32rem;
    padding: 30px 0px 50px 30px;
    z-index: 99999;
    opacity: 0;
}
.top > .first {
    text-align: center;
    position: absolute;
    height: 1.2rem;
    line-height: 1.2rem;
    width: 100%;
    bottom: 0.8rem;
}
.top > .last {
    background: #fff;
    opacity: .5!important;
    position: absolute;
    bottom: 0;
    height: 0.7rem;
    right: 1rem;
    bottom: 0.1rem;
    line-height: 0.7rem;
    width: 1rem;
    text-align: center;
    display: none;
    border-radius: 3px;
    color: #1282e4;
}
.name {
    margin-top: 0.5rem;
    height: 1.0667rem;
    line-height:1.0667rem;
}
.name > span {
    display: block;
    float: left;
    height:1.0667rem;
    width: 1.7333rem;
    border: 1px solid #bebebe;
    border-radius: 3px;
    font-size: 0.2933rem;
    text-align: center;
    background-color: #bebebe;
    color: #fff;
}
.name > input {
    width:8.2267rem;
    background-color: #F3F1F1;
    height: 1.0667rem;
    color: #C6C4C4;
    padding: 0.2667rem;
    
    font-size: 0.3rem;
}
.url {
    margin-top:0.5rem;
    height: 1.0667rem;
    line-height:1.0667rem;
}
.url > span {
    display: block;
    float: left;
    height:1.0667rem;
    width: 1.7333rem;
    border: 1px solid #bebebe;
    border-radius: 3px;
    font-size:0.2933rem;
    text-align: center;
    background-color: #bebebe;
    color: #fff;
}
.url > input {
    width: 8.2267rem;
    background-color: #F3F1F1;
    height: 1.0667rem;
    color: #C6C4C4;
    padding: 0.2667rem;
    
    font-size: 0.3rem;
}
.submit {
    margin-top: 0.5rem;
    width: 90%;
    height: 1.1733rem;
    background: #1282e4;
    line-height: 1.1733rem;
    text-align: center;
    margin-left: 5%;
    border-radius: 5px;
    color: #fff;
    font-size: 0.4rem;    
}
.submit > input {
    width: 100%;
    height: 100%;
    background: #1282e4;
    line-height: 1.1733rem;
    text-align: center;
    color: #fff;
    font-size: 0.4rem;
    border-radius: 5px;    
}
.remarks {
    margin-top: 0.2667rem;
}
.remarks > p:nth-child(2),.remarks > p:nth-child(3),.remarks > p:nth-child(4),.remarks > p:nth-child(5) {
    margin-left: 5%;
}
.spinner {
    display: none;
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: 9999;
    top: 20%;
    left: 50%;
    margin-left: -30px;
  }
   
  .double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #67CF22;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
     
    -webkit-animation: bounce 2.0s infinite ease-in-out;
    animation: bounce 2.0s infinite ease-in-out;
  }
   
  .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
  }
   
  @-webkit-keyframes bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
  }
   
  @keyframes bounce {
    0%, 100% {
      transform: scale(0.0);
      -webkit-transform: scale(0.0);
    } 50% {
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
  }