| 123456789101112131415161718192021222324252627282930313233 |
- // page {
- // background: linear-gradient(to bottom, #F0CABF, #E1CDEE)
- // }
- .main_bg{
- position: fixed;
- left: 0;
- top: 0;
- width: 100vw;
- height: 100vh;
- z-index: -1;
- }
- .operate_panel {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- padding-left: 40px;
- padding-right: 40px;
- justify-content: space-between;
- }
- .operate_card {
- background-color: rgba($color: #ffffff, $alpha: 0.25);
- width: 320px;
- height: 260px;
- border-radius: 24px;
- margin-bottom: 30px;
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- padding: 36px 40px;
- }
|