1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- html,
- body {
- height: 100%;
- font-family: PingFangSC-Regular;
- color: #333333;
- }
- .content {
- height: 100%;
- }
- .content > view {
- box-sizing: border-box;
- padding: 0 32rpx;
- }
- .content > view:first-child {
- font-size: 26rpx;
- color: #999999;
- height: 90rpx;
- line-height: 90rpx;
- }
- .content > .item {
- height: 100rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background: #ffffff;
- }
- .content>.line{
- background: #ffffff;
- height: 2rpx;
- padding: 0;
- }
- .content>.line>view{
- background: #eeeeee;
- height: 100%;
- margin-left: 32rpx;
- }
- .content > .btn {
- margin: 0 20rpx;
- height: 90rpx;
- background: #3296FB;
- border-radius: 45rpx;
- text-align: center;
- line-height: 90rpx;
- color: #ffffff;
- }
- input{
- text-align: right;
- color: #666666;
- }
- .arrow{
- display: flex;
- align-items: center;
- }
- .arrow>image{
- width: 14rpx;
- height: 24rpx;
- margin-left: 20rpx;
- }
|