1234567891011121314151617181920212223242526272829 |
- .main {
- height: 88vh;
- .one {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- width: 96vw;
- .list {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- background-color: #ffffff;
- border-bottom: 1px solid #858585;
- padding: 2vw;
- .list_1 {
- text {
- font-size: 14px;
- }
- }
- .list_2 {
- color: #858585;
- }
- }
- }
- }
|