123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /**app.wxss**/
- page {
- height: 100%;
- --maincolor: #45A6B5;
- }
- .wh {
- width: 100%;
- height: 100%;
- }
- .placeholder-class {
- font-size: 30rpx;
- font-weight: 400;
- color: #999999;
- }
- .container {
- height: 100%;
- width: 100%;
- box-sizing: border-box;
- }
- .ittflex {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .ittflex-jcs {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .ittflex-jca {
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
- .ittflex-jcb {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .itt-btn {
- background: var(--maincolor);
- display: flex;
- justify-content: center;
- align-items: center;
- color: #fff;
- font-size: 26rpx;
- font-weight: 400;
- }
- .itt-btn-disabled {
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 26rpx;
- font-weight: 400;
- background: #CCCCCC;
- color: #FFFFFF;
- }
|