1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .main {
- height: 88vh;
- .one {
- width: 96vw;
- margin: 0 0 2vw 0;
- background-color: #fff;
- }
- .two {
- flex-grow: 1;
- position: relative;
- width: 96vw;
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- .list-scroll-view {
- display: flex;
- flex-wrap: wrap;
- align-content: flex-start;
- justify-content: space-between;
- .list {
- display: flex;
- flex-direction: column;
- width: 96vw;
- padding: 2vw;
- background-color: #ffffff;
- margin: 0 0 2vw 0;
- .name {
- font-size: 14px;
- font-weight: bold;
- margin: 0 0 1vw 0;
- }
- .other {
- font-size: 12px;
- margin: 0 0 1vw 0;
- .other_1 {
- padding: 0 0 1vw 0;
- }
- .other_1 text:nth-child(1) {
- color: #666;
- }
- }
- .btn {
- text-align: center;
- button {
- color: #ffffff;
- font-size: 14px;
- margin: 0 2vw;
- }
- }
- }
- }
- }
- }
- }
|