123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- /* pages/shopDetail/shopDetail.wxss */
- @import '../../assets/css/commonDetail.wxss';
- .liveDetail {
- background: #f7f7f7;
- padding: 20rpx 0;
- }
- .item {
- background: #fff;
- padding: 30rpx 42rpx;
- display:flex;
- align-items:center;
- justify-content:space-between;
- }
- .cate {
- width: auto;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- display: inline-block;
- font-size: 20rpx;
- color: #585858;
- padding: 1px 20rpx;
- line-height: 38rpx;
- background: #f1f4fb;
- border-radius: 8rpx;
- margin-right: 8rpx;
- margin-top: 6rpx;
- -webkit-transform: scale(.9);
- transform: scale(.9);
- }
- .coverImg {
- display: inline-block;
- position: relative;
- width: 180rpx;
- height: auto;
- background: #f7f7f7;
- }
- .blur {
- width: 100%;
- height: 100%;
- -webkit-filter: blur(15px);
- filter: blur(15px);
- position: absolute;
- top: 0;
- left: 0;
- }
- .videoImg {
- width: 100%;
- float: left;
- }
- .name {
- width: 300rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- line-height: 20px;
- vertical-align: middle;
- text-align: left;
- font-size: 30rpx;
- font-weight: bold;
- display: block;
-
- }
- .infoText {
- width: calc(100% - 150rpx);
- padding: 0 20rpx;
- }
- .icon {
- display: inline-block;
- width: 40rpx;
- height: 40rpx;
- margin-right: 6rpx;
- vertical-align: middle;
- border-radius: 50%;
- }
- .user {
- width: 40%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin: auto;
- line-height: 40rpx;
- display: inline-block;
- vertical-align: middle;
- text-align: left;
- font-size: 28rpx;
- }
- .count {
- float: right;
- font-size: 28rpx;
- }
- .total {
- width: 100%;
- background: #fff;
- padding: 0rpx 20rpx;
- font-size: 28rpx;
- }
- .title {
- line-height: 40rpx;
- }
- .ul {
- padding: 30rpx 0;
- background: #fff;
- margin: 20rpx 0;
- }
- .top {
- display: flex;
- align-items:center;
- justify-content:space-between;
- }
- .topInfo {
- display: block;
- }
- .title {
- width: 60%;
- display: inline-block;
- }
- .text {
- width: 100%;
- }
- .price {
- text-align: right;
- float: right;
- }
- .echarts {
- width: 100%;
- height: 740rpx;
- padding-top: 40rpx;
- box-sizing: border-box;
- position: relative;
- background: #fff;
- }
- .topName {
- display: inline-block;
- font-size: 26rpx;
- line-height: 60rpx;
- font-weight: 700;
- margin-bottom: -40rpx;
- }
- .topName::before {
- content: "";
- width: 22rpx;
- height: 22rpx;
- background: #2296f3;
- display: inline-block;
- margin-right: 20rpx;
- }
- .btn {
- float: right;
- margin-right: 10rpx;
- }
|