| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- .goods-view {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- }
- .goods-view>view:nth-child(n) {
- width: 45.5%;
- margin-left: 3%;
- background: #fff;
- border-radius: 16rpx;
- overflow: hidden;
- margin-bottom: 3vw;
- }
- .goods-view>view:nth-child(n)>image:nth-child(1) {
- position: absolute;
- width: 15vw;
- height: 15vw;
- transform: rotate(270deg);
- }
- .goods-view>view:nth-child(n)>image:nth-child(2) {
- width: 100%;
- height: 41.5vw;
- }
- .goods-view>view:nth-child(n)>view:nth-child(3) {
- padding: 2.5vw;
- }
- .goods-view>view:nth-child(n)>view:nth-child(3)>view:nth-child(1) {
- width: 100%;
- font-size: 3.5vw;
- text-overflow: -o-ellipsis-lastline;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .goods-view>view:nth-child(n)>view:nth-child(3)>view:nth-child(2) {
- display: flex;
- justify-content: space-between;
- margin-top: 2vw;
- }
- .goods-view>view:nth-child(n)>view:nth-child(3)>view:nth-child(2)>view:nth-child(1) {
- color: rgb(255, 97, 70);
- font-size: 5vw;
- display: flex;
- align-items: center;
- }
- .goods-view>view:nth-child(n)>view:nth-child(3)>view:nth-child(2)>view:nth-child(2) {
- display: flex;
- align-items: center;
- font-size: 3vw;
- color: #afafaf;
- }
|