@@ -563,11 +563,16 @@ export default {
}
.name {
- font-size: 22rpx;
+ font-size: 24rpx;
font-weight: bold;
margin-bottom: 10rpx;
min-height: 60rpx;
flex: 1;
+ text-overflow:ellipsis;/*设置隐藏部分为省略号*/
+ overflow: hidden;/*设置隐藏*/
+ display: -webkit-box;
+ -webkit-line-clamp: 3;/*设置显示行数,此处为2行,可设置其他数字*/
+ -webkit-box-orient: vertical;
.code {
@@ -653,10 +653,10 @@ export default {
.award-option-btn {
background: #E57519;
- font-size: 16rpx;
+ font-size: 18rpx;
color: #ffffff;
- width: 128rpx;
- height: 48rpx;
+ width: 136rpx;
+ height: 56rpx;
border-radius: 6rpx;
display: flex;
align-items: center;