| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /* pages/home/home.wxss */
- .swiper {
- width: 100vw;
- height: 400rpx;
- }
- .swiperImg {
- width: 100vw;
- height: 100%;
- }
- .list {
- width: 100vw;
- height: 500rpx;
- display: flex;
- align-items: center;
- flex-direction: column;
- margin-top: 30px;
- }
- .listTop {
- width: 96vw;
- height: 100rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .title-left {
- font-size: 20px;
- }
- .title-right {
- font-size: 14px;
- color: rgb(163, 159, 159);
- }
- .listBottom {
- width: 96vw;
- display: flex;
- margin-top: 13px;
- }
- .list-item {
- width: 100px;
- margin-left: 15px;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .list-item:first-child {
- margin-left: 0;
- }
- .pictures {
- width: 200rpx;
- height: 300rpx;
- }
- .tips {
- width: 100%;
- text-align: center;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .score{
- text-align: center;
- }
- .no-score {
- font-size: 14px;
- color: #ccc;
- text-align: center;
- }
- .scroll-view_H{
- white-space: nowrap;
- }
- .scroll-view-item_H{
- display: inline-block;
- /* width: 100%; */
- height: 300rpx;
- }
|