| 1234567891011121314151617181920212223242526272829303132333435363738 |
- .console_box{
- display: flex;
- flex-direction: column;
- align-items: center;
- margin: 20px;
- padding-top: 40px;
- padding-bottom: 40px;
- color: #fff;
- background-color: #1c1c1c;
- border-radius: 40px;
- }
- .popDemo{
- position: fixed;
- top: 0;
- left: 0;
- z-index: 100000;
- width: 100%;
- height: 100%;
- overflow: hidden;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: rgba($color: #000000, $alpha: 0.5);
- }
- .clock_bg{
- width: 578px;
- height: 578px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .swiperItem{
- // height: 300px !important;
- // height: auto !important;
- // overflow: visible !important;
- }
|