1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .content {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- width: 100vw;
- height: 100vh;
- }
- .main {
- background-color: var(--rgb000);
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 92vh;
- }
- .main .one {
- background-color: var(--rgb111);
- display: flex;
- padding: 5px;
- }
- .main .one .one_1 {
- flex-grow: 1;
- }
- .main .one .one_1 input {
- border: 1px solid var(--rgbf1f);
- height: 30px;
- border-radius: 2px;
- padding: 0 5px;
- font-size: 12px;
- }
- .main .one .one_2 button {
- height: 100%;
- background-color: var(--rgbfa4);
- color: var(--rgbfff);
- }
- .main .two {
- position: relative;
- flex-grow: 1;
- }
- .main .two .two_0 {
- margin: 0 0 10px 0;
- padding: 0 5px;
- }
- .main .two .two_1 .swiper {
- height: 200px;
- overflow: hidden;
- }
- .main .two .two_1 .list .image {
- width: 100%;
- height: 100%;
- }
- .main .two .two_2 {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: space-between;
- }
- .main .two .two_2 .list {
- text-align: center;
- width: 18%;
- margin: 0 0 10px 0;
- }
- .main .two .two_2 .list .image {
- width: 100%;
- height: 64px;
- border-radius: 90%;
- margin: 0 0 5px 0;
- }
- .main .two .two_2 .list .name {
- font-size: 12px;
- color: #ffffff;
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .scroll-view .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
|