12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**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;
- }
|