123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- .main {
- height: var(--twoHeight);
- background-color: var(--mainColor);
- .one {
- width: 100vw;
- margin: 0 0 2vw 0;
- }
- .two {
- position: relative;
- flex-grow: 1;
- .a {
- height: 83vh;
- .one {
- width: 96vw;
- padding: 0 2vw;
- .one_1 {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- border: 1px dashed var(--f85Color);
- border-radius: 5px;
- margin: 0 0 10px 0;
- padding: 10px;
- .text {
- color: var(--f85Color);
- font-size: var(--font16Size);
- }
- .text1 {
- font-size: var(--font16Size);
- }
- .image {
- width: 15vw;
- height: 15vw;
- }
- .name {
- display: flex;
- flex-direction: column;
- }
- button {
- font-size: var(--font14Size);
- margin: 0;
- background: -webkit-linear-gradient(right, lightblue, #53C9F8);
- }
- }
- .btn {
- width: 92vw;
- text-align: center;
- margin: 2vw 0 0 0;
- button {
- font-size: var(--font14Size);
- background: -webkit-linear-gradient(right, lightblue, #53C9F8);
- }
- }
- }
- }
- .b {
- height: 83vh;
- .list {
- background-color: var(--f9Color);
- margin: 0 0 2vw 0;
- padding: 2vw;
- margin: 0 2vw 2vw 2vw;
- border-radius: 5px;
- border: 1px dashed var(--f85Color);
- .name {
- font-size: var(--font18Szie);
- font-weight: bold;
- margin: 0 0 1vw 0;
- }
- .other {
- margin: 0 0 1vw 0;
- .other_1 {
- margin: 0 0 1vw 0;
- font-size: var(--font16Size);
- text:first-child {
- color: var(--f85Color);
- }
- }
- }
- .btn {
- text-align: center;
- button {
- margin: 0 2vw;
- font-size: var(--font14Size);
- }
- }
- }
- }
- }
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
- }
|