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