| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- body {
- overflow: auto;
- }
- .page{
- position: fixed;
- height: 100vh;
- width: 100%;
- overflow: hidden;
- top: 0;
- left: 0;
- }
- .form{
- background-color: rgba(200, 200, 200, 0.1);
- padding: 1rem;
- }
- .bottomarc{
- position: absolute;
- width:100%;
- height:15%;
- background:#648EB8;
- 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:#FFF;
- 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: #648EB8;
- color: #fff;
- width: 100%;
- text-align: center;
- display: flex;
- align-items: center;
- justify-items: center;
- text-align: center;
- padding-top: 30px;
- }
|