| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* pages/home/home.wxss */
- .swiper {
- width: 100%;
- height: 350rpx;
- }
- .swiperImg {
- width: 100%;
- height: 350rpx;
- }
- .list {
- width: 100%;
- height: auto;
- margin-top: 25rpx;
- }
- .listTop {
- display: flex;
- height: 60rpx;
- /* background: #00f; */
- align-items: center;
- justify-content: space-between;
- padding: 0 20rpx;
- }
- .title-right {
- font-size: 20rpx;
- color: rgba(61, 57, 57, 0.267);
- }
- .scroll-view_H{
- white-space: nowrap;
- }
- .listBottom {
- padding: 0 20rpx;
- }
- .list-item {
- width: 200rpx;
- display: inline-flex;
- flex-direction: column;
- text-align: center;
- margin-left: 10rpx;
- }
- .item-image {
- width: 100%;
- height: 300rpx;
- margin-bottom: 10rpx;
- border-radius: 4rpx;
- }
- .item-title {
- width: 100%;
- font-size: 26rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .list .list-item:first-child {
- margin-left: 0;
- }
|