123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /* pages/user/myArtist/myArtist.wxss */
- .item-box{
- padding: 30rpx 50rpx;
- }
- .item-box .item{
- background:rgba(255,255,255,1);
- border:1rpx solid rgba(234,234,234,1);
- display: flex;
- margin-bottom: 30rpx;
- padding: 30rpx;
- align-items: center;
- }
- .item-box .item .item-media{
- position: relative;
- width: 220rpx;
- height: 254rpx;
- margin-right: 40rpx;
- }
- .item-box .item .item-media .label{
- position: absolute;
- left: 0;
- top: 0;
- width:110rpx;
- height:44rpx;
- text-align: center;
- line-height: 44rpx;
- background:rgba(44,48,57,1);
- font-size: 24rpx;
- color: #fff;
- }
- /* .item-box .item .item-content{
- } */
- .item-box .item .item-content .name{
- color: #161616;
- font-size: 32rpx;
- line-height: 1.6;
- padding: 6rpx 0;
- }
- .item-box .item .item-content .art{
- color: #A4ABB3;
- font-size: 28rpx;
- line-height: 1.6;
- margin-bottom: 6rpx;
- }
- .item-box .item .item-content .price{
- color: #161616;
- font-size: 28rpx;
- line-height: 1.6;
- margin-bottom:30rpx;
- }
- .item-box .item .item-content .tool{
-
- }
- .item-box .item .item-content .small-btn{
- display: inline-block;
- vertical-align: middle;
- width:220rpx;
- height:58rpx;
- line-height: 58rpx;
- text-align: center;
- font-size: 28rpx;
- color: #FFFFFF;
- background:rgba(44,48,57,1);
- }
|