1234567891011121314151617181920212223242526272829303132333435363738 |
- /**app.wxss**/
- @import "colorui/main.wxss";
- @import "colorui/icon.wxss";
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 200rpx 0;
- box-sizing: border-box;
- }
- input{
- text-align: right;
- }
- .input-placeholder{
- color: #CACACA;
- }
- .report{
- width: 670rpx;
- height:96rpx ;
- line-height: 96rpx;
- text-align: center;
- margin: 0 auto;
- color: #fff;
- background: #6AA0FF;
- border-radius: 4px;
- position: absolute;
- bottom: 64rpx;
- left: 40rpx;
- }
- .tip-area {
- width: 100%;
- text-align: center;
- color: #c9c9c9 !important;
- font-size: 26rpx;
- margin-top: 50rpx;
- }
|