123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // 颜色
- $color-blue:#3387FF;
- $color-white:#FFFFFF;
- // 字体大小
- $font_size_34:34rpx;
- $font_size_36:36rpx;
- page{
- background-color: #fff;
- }
- .but_button690{
- margin: 10rpx;
- width: 690rpx;
- height: 88rpx;
- font-size: $font_size_34;
- font-weight: normal;
- }
- .but_button630{
- margin: 10rpx;
- width: 630rpx;
- height: 88rpx;
- font-size: $font_size_34;
- font-weight: normal;
- }
- .center_in_sequence{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .center_in{
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .space_between{
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .up_and_down{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- }
- .font36{
- font-size: $font_size_36;
- font-weight: bold;
- text-align: left;
- color: #333;
- }
|