| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- @import '@/utils/common.scss';
- .console_btn {
- height: 88px;
- border-radius: 44px;
- position: relative;
- background-color: $fastColor;
- // margin-left: 46px;
- // margin-right: 46px;
- // margin-bottom: 36px;
- align-items: center;
- justify-content: center;
- display: flex;
- color: #000;
- }
- .btn_line {
- height: 32px;
- width: 1px;
- background-color: #fff;
- opacity: 0.4;
- margin-left: 68px;
- flex-shrink: 0;
- opacity: 0;
- }
- .stage_btn {
- height: 88px;
- border-radius: 44px;
- position: relative;
- // margin-left: 46px;
- // margin-right: 46px;
- // margin-bottom: 36px;
- align-items: center;
- justify-content: center;
- flex-direction: row;
- display: flex;
- color: #fff;
- border-width: 1px;
- border-style: solid;
- border-color: #fff;
- opacity: 0.4;
- box-sizing: border-box;
- padding-left: 44px;
- padding-right: 44px;
- }
- .lock {
- left: 44px;
- width: 48px;
- height: 48px;
- position: absolute;
- top: 18px;
- }
- .btn_disable {
- opacity: 0.4;
- }
- .btn_sleep {
- background-color: $sleepColor;
- }
- .expand {
- color: #fff;
- opacity: 0.4;
- width: 100%;
- text-align: center;
- display: flex;
- font-size: 28px;
- line-height: 48px;
- font-weight: bold;
- // margin-top: 36px;
- margin-top: 16px;
- align-items: center;
- justify-content: center;
- }
|