1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- @import "/__antmove/static/app.acss";
- /**app.wxss**/
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 200rpx 0;
- box-sizing: border-box;
- }
- .page {
- width: 100vw;
- min-height: 100vh;
- box-sizing: border-box;
- overflow-x: hidden;
- background-color: #f3f4f6;
- }
- .text-green {
- color: green;
- }
- .text-red {
- color: red;
- }
- .text-grey {
- color: #606266 !important;
- }
- .text-blue {
- color: #5c8dd8 !important;
- }
- .btn-area {
- position: fixed;
- bottom: 0;
- background-color: #fff;
- height: 180rpx;
- width: 750rpx;
- padding: 20rpx 60rpx;
- box-sizing: border-box;
- }
- .btn-area > button {
- background-color: #3a3c65;
- color: #fff;
- height: 100rpx;
- width: 630rpx;
- line-height: 96rpx;
- margin: 0;
- }
- .border-radius-20 {
- border-radius: 20rpx;
- }
|