1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- @charset "UTF-8";
- /* 水平间距 */
- /* 水平间距 */
- .content {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- }
- .content .one {
- position: relative;
- flex-grow: 1;
- }
- .content .one .one_1 {
- border-bottom: 0.5vw solid var(--f9Color);
- }
- .content .one .one_1 swiper {
- height: 44vh !important;
- }
- .content .one .one_1 .list {
- border-radius: 5px;
- }
- .content .one .one_1 .list .image {
- width: 100%;
- height: 100%;
- border-radius: 5px;
- background-color: #fff;
- }
- .content .one .one_2 {
- border-bottom: 0.5vw solid var(--f9Color);
- padding: 2vw;
- }
- .content .one .one_2 .money {
- font-size: 20px;
- padding: 0 1vw 0 0;
- color: var(--fF0Color);
- font-weight: bold;
- }
- .content .one .one_2 .money text {
- font-size: 14px;
- }
- .content .one .one_3 {
- display: flex;
- flex-wrap: wrap;
- padding: 1vw;
- border-bottom: 0.5vw solid var(--f9Color);
- }
- .content .one .one_4 {
- border-bottom: 0.5vw solid var(--f9Color);
- padding: 2vw;
- }
- .content .one .one_4 .name {
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- font-size: 17px;
- font-weight: bold;
- margin: 0 0 2vw 0;
- }
- .content .one .one_4 .brief {
- font-size: 14px;
- color: var(--f85Color);
- margin: 0 0 1vw 0;
- }
- .content .one .one_5 {
- text-align: center;
- margin: 0 0 15vw 0;
- }
- .content .one .one_5 .list .image {
- border-radius: 5px;
- background-color: #fff;
- }
- .content .bottom {
- width: 100vw;
- position: fixed;
- bottom: 0;
- left: 0px;
- right: 0px;
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .scroll-view .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
|