1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .main {
- height: 88.8vh;
- }
- .main .zero {
- width: 96vw;
- margin: 0 0 2vw 0;
- }
- .main .zero:last-child {
- margin: 0;
- }
- .main .two {
- flex-grow: 1;
- position: relative;
- }
- .main .two .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .main .two .scroll-view .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
- .main .two .scroll-view .list-scroll-view .list {
- background-color: #ffffff;
- border-bottom: 1px solid #cccccc;
- width: 96vw;
- padding: 2vw;
- }
- .main .two .scroll-view .list-scroll-view .list .name {
- font-size: 18px;
- margin: 0 0 1vw 0;
- font-weight: bold;
- }
- .main .two .scroll-view .list-scroll-view .list .other {
- margin: 0 0 1vw 0;
- }
- .main .two .scroll-view .list-scroll-view .list .other .other_1 {
- margin: 0 0 1vw 0;
- font-size: 15px;
- }
- .main .two .scroll-view .list-scroll-view .list .other .other_1 text {
- color: #000000;
- }
- .main .two .scroll-view .list-scroll-view .list .other .other_1 text:nth-child(1) {
- color: #858585;
- }
- .main .two .scroll-view .list-scroll-view .list .btn {
- text-align: center;
- }
- .main .two .scroll-view .list-scroll-view .list .btn button {
- margin: 0 2vw;
- font-size: 14px;
- }
- .main .two .scroll-view .list-scroll-view .list:last-child {
- border-bottom: none;
- }
|