123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- .title {
- font-weight: Medium;
- font-size: 36rpx;
- color: #222222;
- }
- .text-large {
- font-size: 36rpx;
- }
- .text {
- font-size: 30rpx;
- }
- .text-small {
- font-size: 24rpx;
- /* word-break: keep-all; */
- }
- .grey {
- color: #666666;
- }
- .flex {
- display: flex;
- }
- .justify-between {
- justify-content: space-between;
- }
- .flex-aligin-center {
- display: flex;
- align-items: center;
- }
- .flex-1 {
- flex: 1;
- }
- .flex-grow-1 {
- flex-grow: 1;
- }
- .w-100 {
- width: 100%;
- }
- .h-100 {
- height: 100%;
- }
- .page-section {
- margin: 20rpx;
- border-radius: 20rpx;
- background-color: #ffffff;
- }
- .page-section-spacing {
- padding: 20rpx;
- }
- .spacing-small {
- padding: 10rpx;
- }
- .ellipsis {
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- }
- .ellipsis-2 {
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .detail-tags {
- width: 100%;
- margin: 8rpx 0;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .goods-tags {
- width: 100%;
- margin: 8rpx 0;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .cell-title {
- flex: 1;
- margin-bottom: 10rpx;
- }
- .cell-icon {
- margin-right: 10rpx;
- }
- .cell-end {
- display: flex;
- align-items: center;
- min-width: 100rpx;
- justify-content: flex-end;
- }
- .detail-name {
- width: 100%;
- margin: 10rpx 0;
- font-size: 30rpx;
- color: #222222;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- }
- .detail-describe {
- width: 100%;
- margin: 10rpx 0;
- min-height: 80rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .detail-tags {
- width: 100%;
- margin: 8rpx 0;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .detail-price-wrapper {
- display: flex;
- color: #F01740;
- margin-top: 10rpx;
- }
- .detail-price-wrapper .detail-price-text {
- margin: 0 10rpx 0 0;
- }
- .detail-price-wrapper .detail-price-num {
- font-size: 28rpx;
- font-weight: 600;
- }
|