123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .main {
- height: var(--thrHeight);
- .zero {
- margin: 0 2vw 2vw 2vw;
- }
- .one {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- padding: 2vw;
- background-color: var(--footColor);
- input {
- font-size: var(--txtSize);
- }
- }
- .two {
- flex-grow: 1;
- position: relative;
- .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 {
- background-color: var(--bgColor);
- margin: 0 0 2vw 0;
- padding: 2vw;
- display: flex;
- flex-direction: column;
- .list_1 {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- font-size: 14px;
- margin: 0 0 1vw 0;
- color: var(--labelColor);
- .name {
- width: 65vw;
- }
- }
- .list_2 {
- margin: 0 0 3vw 0;
- font-size: var(--titleSize);
- font-weight: bold;
- }
- .list_3 {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- font-size: 14px;
- color: var(--labelColor);
- .btn {
- color: #334790;
- font-size: 14px;
- font-weight: 700;
- }
- }
- }
- .list:last-child {
- margin: 0;
- }
- }
- }
- }
- }
|