1234567891011121314151617181920212223242526272829303132333435363738 |
- .main {
- height: 88.8vh;
- .zero {
- width: 96vw;
- margin: 0 0 2vw 0;
- }
- .zero {
- margin: 0;
- }
- .one {
- display: flex;
- flex-direction: column;
- .one_1 {
- width: 92vw;
- padding: 2vw;
- margin: 0 0 1vw 0;
- background-color: #ccc;
- }
- .one_2 {
- text-align: center;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- width: 96vw;
- button {
- margin: 0 2vw;
- font-size: 14px;
- }
- }
- }
- }
|