123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- @charset "UTF-8";
- /* 水平间距 */
- /* 水平间距 */
- .content {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- }
- .content .one {
- width: 100%;
- }
- .content .two {
- padding: 1vw 2vw;
- background-color: var(--f9Color);
- }
- .content .two .grid {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 5px 0 0 0;
- margin: 5px;
- background-color: var(--mainColor);
- border-radius: 10px;
- }
- .content .two .grid .image {
- width: 25px;
- height: 25px;
- }
- .content .two .grid .text {
- font-size: var(--font14Size);
- margin-top: 5px;
- }
- .content .thr {
- position: relative;
- flex-grow: 1;
- background-color: var(--f9Color);
- }
- .content .thr .thr_1 {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- padding: 2vw;
- }
- .content .thr .thr_1 .list {
- display: flex;
- flex-direction: column;
- justify-content: inherit;
- width: 43vw;
- padding: 2vw;
- margin: 0 0 2vw 0;
- border-radius: 10px;
- background-color: var(--mainColor);
- }
- .content .thr .thr_1 .list .image {
- width: 100%;
- height: 40vw;
- border-top-right-radius: 10px;
- border-top-left-radius: 10px;
- }
- .content .thr .thr_1 .list .name {
- font-size: var(--font14Size);
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .scroll-view .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
- .is_bottom {
- text-align: center;
- }
- .is_bottom text {
- padding: 2vw 0;
- display: inline-block;
- color: var(--f85Color);
- font-size: var(--font14Size);
- }
|