You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /* components/GoodsInfo/index.wxss */
- .info_container {
- width: 100%;
- max-height: 400rpx;
- padding: 27rpx 20rpx;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- background-color: #ffffff;
- overflow: hidden;
- }
- .goods_image {
- width: 245rpx;
- height: 212rpx;
- flex-shrink: 0;
- }
- .goods_info {
- width: 100%;
- margin-top: 30rpx;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .goods_desc {
- width: 100%;
- font-size: 30rpx;
- font-weight: bold;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .goods_points {
- margin-top: 10rpx;
- font-size: 28rpx;
- }
|