12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .show-box {
- width: 96%;
- overflow: hidden;
- padding: 0 2%;
- }
- .text-box {
- display: block;
- white-space: nowrap;
- line-height: 36rpx;
- padding: 20rpx 0;
- }
- .icon {
- width: 60rpx;
- height: 76rpx;
- text-align: center;
- line-height: 76rpx;
- display: inline-block;
- vertical-align: middle;
- }
- .no-icon {
- flex: 1;
- width: calc(100%) !important;
- }
- .show-info {
- overflow: hidden;
- width: calc(100% - 60rpx);
- display: inline-block;
- vertical-align: middle;
- }
- .scroll-box {
- width: 94%;
- overflow: hidden;
- height: 76rpx;
- line-height: 76rpx;
- }
- .round {
- border-radius: 10rpx;
- }
- .text-box.text-rows {
- white-space: normal;
- }
|