| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- body {
- overflow: auto;
- }
- .page{
- position: fixed;
- height: 100vh;
- width: 100%;
- overflow: hidden;
- top: 0;
- left: 0;
- overflow-y: scroll;
- }
- .form{
- background-color: rgba(200, 200, 200, 0.1);
- padding: 1rem;
- }
- .bottomarc{
- position: absolute;
- width:100%;
- height:15%;
- background:#3f73b3;
- border-bottom-left-radius: 400rpx 70rpx;
- border-bottom-right-radius: 400rpx 70rpx;
- z-index: -999;
- }
- .mybtn{
- height:50rpx;
- background:-webkit-linear-gradient(0deg, #648EB8 1%, #47689D 99%);
- background:-moz-linear-gradient(90deg, #648EB8 1%, #47689D99);
- background:linear-gradient(90deg, #648EB8 1%, #47689D 99%);
- color:#FFFFFF;
- border-radius:15rpx;
- display:flex;
- justify-content:center;
- align-items:center;
- font-size:36rpx;
- }
- .donext_div{
- position: fixed;
- bottom: 1em;
- width: 100%;
- display: flex;
- align-items: center;
- flex-direction: column;
- }
- .bar{
- height: 4rem;
- background-color: #3f73b3;
- color: #fff;
- width: 100%;
- text-align: center;
- display: flex;
- align-items: center;
- justify-items: center;
- text-align: center;
- padding-top: 30px;
- }
- .app_content{
- margin-top: 7em;
- }
- span{
- word-wrap: break-word;
- word-break: break-word;
- }
|