12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .ugc_title {
- padding-left: 30rpx;
- font-size: 32rpx;
- height: 84rpx;
- line-height: 84rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .show {
- opacity: 1;
- transition: opacity .3s linear;
- -webkit-transition: opacity .3s linear;
- }
- .hide {
- opacity: 0;
- }
- .fcode_item {
- font-size: 24rpx;
- background: #ffffff;
- }
- .fcode_goods {
- position: relative;
- display: flex;
- width: 100%;
- padding: 25rpx 0 25rpx 25rpx;
- box-sizing: border-box;
- }
- .fcode_goods image{
- border: 2rpx solid #D9D9D9;
- margin-right: 24rpx;
- width:106rpx;
- height: 106rpx;
- }
- .fcode_goods fcode {
- font-size: 20rpx;
- }
- .fcode_goods::after {
- content: "";
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- height: 1px;
- border-bottom: 1px solid #D9D9D9;
- color: #D9D9D9;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- }
- .fcode_content {
- display: flex;
- width: 100%;
- height: 67rpx;
- line-height: 67rpx;
- padding: 0 25rpx;
- box-sizing: border-box;
- }
- .fcode_content>view {
- flex: 1;
- }
- .fcode_content .fcode_state {
- text-align: right;
- }
- .fcode_content .fcode_state text {
- padding: 8rpx 20rpx;
- border-radius: 30rpx;
- }
|