123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /* pages/orderCanvas/orderCanavs.wxss */
- page{
- background:#fff;
- }
- .canvas-box image{
- width:100%;
- }
- .share-box{
- background:none;
- color:#fff;
- line-height:100rpx;
- }
- /* 商品信息 */
- .goods_infor{
- padding:0 32rpx 0 0;
- background-color: #fff;
- border-bottom:1px solid #dedede;
- }
- .each_goods{
- min-height: 212rpx;
- margin-bottom:3rpx;
- }
- .goods_img{
- float: left;
- display: block;
- width: 214rpx;
- height: 214rpx;
- }
- .goods_cont{
- float: left;
- width: 450rpx;
- margin:36rpx 0 0 20rpx;
- }
- .goods_name{
- height: 94rpx;
- font-size: 24rpx;
- line-height: 50rpx;
- color: #262626;
- text-overflow: ellipsis;
- overflow: hidden;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .goods_style,.goods_num{
- float: left;
- font-size: 24rpx;
- line-height: 30rpx;
- color: #616161;
- /* text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap; */
- }
- .goods_price{
- font-size: 24rpx;
- line-height: 30rpx;
- color: #e60012;
- text-align: left;
- padding: 0 0 14rpx 0;
- }
- .goods_price text{
- font-size: 50rpx;
- }
- .goods_style{
- width: 340rpx;
- padding-right:10rpx;
- }
- .goods_num{
- width: 100rpx;
- text-align: right;
- }
- .infor_content{
- background-color: #fff;
- padding:0 30rpx;
- }
- .each_infor{
- height: 106rpx;
- font-size: 28rpx;
- line-height: 106rpx;
- color: #636363;
- }
- .checkbox{
- width: 300rpx;
- }
- checkbox .wx-checkbox-input {
- border:1px solid #e60012;
- background-color:#fff;
- }
- checkbox.checkact .wx-checkbox-input{
- background-color:#e60012;
- }
- .infor_title{
- float: left;
- }
- .infor_num{
- float: right;
- }
- .infor_num_coupon{
- color:#f2442d;
- }
- .borderBottom{
- border-bottom: 1px solid #f0f0f0;
- }
- .order-img{
- width:100%;
- }
|