123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- /* pages/stock/stock.wxss */
- page{
- padding: 30rpx;
- }
- scroll-view{
- height: calc(100vh - 140rpx);
- }
- image{
- width: 100%;
- border-radius: 8rpx;
- }
- .desc{
- font-size: 30rpx;
- line-height: 48rpx;
- margin: 30rpx 0;
- }
- .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: 29rpx;
- padding: 10rpx 0;
- display: flex;
- }
- .info view{
- color: #666;
- width: 85%;
- vertical-align: top;
- /* font-size: 27rpx; */
- }
- .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;
- }
- .search{
- position: relative;
- display: flex;
- justify-content: space-between;
- margin-bottom: 20rpx;
- }
- .search input{
- width: 88%;
- background: #F7F7F7;
- height: 68rpx;
- padding-left: 70rpx;
- border-radius: 8rpx;
- box-sizing: border-box;
- font-size: 30rpx;
- }
- .search text{
- font-size: 30rpx;
- line-height: 68rpx;
- }
- .search image{
- position: absolute;
- height: 40rpx;
- left: 20rpx;
- top: 0;
- bottom: 0;
- margin: auto;
- }
- .list{
- padding: 40rpx 0;
- border-bottom: 1px solid #F5F5F5;
- }
- .num{
- font-size: 28rpx;
- color: #666;
- text-align: right;
- float: right;
- }
- .num text{
- font-size: 36rpx;
- font-weight: 500;
- }
|