123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /* pages/record/record.wxss */
- page{
- background: #F7F7F7;
- }
- .top{
- background: #fff;
- padding: 30rpx;
- }
- .name{
- font-size: 32rpx;
- font-weight: 500;
- margin-bottom: 20rpx;
- }
- .name>text{
- color: #AAAAAA;
- font-size: 22rpx;
- border: 1px solid #AAAAAA;
- border-radius: 4rpx;
- font-weight: 400;
- padding: 0 4rpx;
- position: relative;
- top: -3rpx;
- }
- .name view{
- float: right;
- color: #CE994F;
- font-size: 22rpx;
- text-align: center;
- position: relative;
- top: -5rpx;
- }
- .info{
- font-size: 30rpx;
- padding: 10rpx 0;
- display: flex;
- }
- .info view{
- color: #666;
- width: 85%;
- vertical-align: top;
- }
- .info label{
- font-weight: 500;
- color: #333;
- }
- .info .tag{
- font-size: 28rpx;
- color: #CE994F;
- border: 1px solid #CE994F;
- border-radius: 8rpx;
- margin-right: 8rpx;
- font-weight: 400;
- padding: 0 8rpx;
- }
- .player{
- border-bottom: 1px solid #F5F5F5;
- padding: 30rpx 0;
- }
- .name view{
- float: right;
- color: #CE994F;
- font-size: 22rpx;
- text-align: center;
- position: relative;
- top: -5rpx;
- }
- .name view text{
- display: block;
- font-size: 32rpx;
- color: #CE994F;
- position: relative;
- top: -8rpx;
- }
- .imgs{
- margin-bottom: 20rpx;
- background: #fff;
- padding: 30rpx 0;
- }
- .img{
- display: inline-block;
- width: 224rpx;
- height: 224rpx;
- border-radius: 8rpx;
- margin-right: 8rpx;
- margin-bottom: 8rpx;
- }
- .content{
- background: #fff;
- padding: 30rpx;
- margin-top: 20rpx;
- font-size: 30rpx;
- line-height: 48rpx;
- }
- .content text{
- color: #D94B24;
- width: 128rpx;
- line-height: 48rpx;
- display: inline-block;
- text-align: center;
- background: #FFF5F2;
- margin-right: 20rpx;
- font-size: 28rpx;
- border-radius: 4rpx;
- }
- .comment text{
- background: #F2F9FF;
- color: #2383E5;
- }
|