12345678910111213141516171819202122232425262728 |
- html,
- body {
- height: 100%;
- font-family: PingFangSC-Regular;
- color: #333333;
- }
- view:first-child{
- height: 100rpx;
- box-sizing: border-box;
- padding: 0 32rpx;
- background: #ffffff;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin: 24rpx 0 48rpx;
- }
- input{
- text-align: right;
- }
- .btn{
- margin: 0 32rpx;
- height: 90rpx;
- text-align: center;
- line-height: 90rpx;
- color: #ffffff;
- background: #3296FB;
- border-radius: 45rpx;
- }
|