orderCanavs.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /* pages/orderCanvas/orderCanavs.wxss */
  2. .canvas-box image{
  3. width:100%;
  4. }
  5. .share-box{
  6. background:none;
  7. color:#fff;
  8. line-height:100rpx;
  9. }
  10. /* 商品信息 */
  11. .goods_infor{
  12. padding:0 32rpx 0 0;
  13. background-color: #fff;
  14. border-bottom:1px solid #dedede;
  15. }
  16. .each_goods{
  17. min-height: 212rpx;
  18. margin-bottom:14rpx;
  19. }
  20. .goods_img{
  21. float: left;
  22. display: block;
  23. width: 214rpx;
  24. height: 234rpx;
  25. }
  26. .goods_cont{
  27. float: left;
  28. width: 450rpx;
  29. margin:36rpx 0 0 20rpx;
  30. }
  31. .goods_name{
  32. height: 94rpx;
  33. font-size: 24rpx;
  34. line-height: 50rpx;
  35. color: #262626;
  36. text-overflow: ellipsis;
  37. overflow: hidden;
  38. display: -webkit-box;
  39. -webkit-line-clamp: 2;
  40. -webkit-box-orient: vertical;
  41. }
  42. .goods_style,.goods_num{
  43. float: left;
  44. font-size: 24rpx;
  45. line-height: 30rpx;
  46. color: #616161;
  47. /* text-overflow: ellipsis;
  48. overflow: hidden;
  49. white-space: nowrap; */
  50. }
  51. .goods_price{
  52. font-size: 24rpx;
  53. line-height: 30rpx;
  54. color: #e60012;
  55. text-align: left;
  56. padding: 0 0 14rpx 0;
  57. }
  58. .goods_price text{
  59. font-size: 50rpx;
  60. }
  61. .goods_style{
  62. width: 340rpx;
  63. padding-right:10rpx;
  64. }
  65. .goods_num{
  66. width: 100rpx;
  67. text-align: right;
  68. }
  69. .infor_content{
  70. background-color: #fff;
  71. padding:0 30rpx;
  72. }
  73. .each_infor{
  74. height: 106rpx;
  75. font-size: 28rpx;
  76. line-height: 106rpx;
  77. color: #636363;
  78. }
  79. .checkbox{
  80. width: 300rpx;
  81. }
  82. checkbox .wx-checkbox-input {
  83. border:1px solid #e60012;
  84. background-color:#fff;
  85. }
  86. checkbox.checkact .wx-checkbox-input{
  87. background-color:#e60012;
  88. }
  89. .infor_title{
  90. float: left;
  91. }
  92. .infor_num{
  93. float: right;
  94. }
  95. .infor_num_coupon{
  96. color:#f2442d;
  97. }
  98. .borderBottom{
  99. border-bottom: 1px solid #f0f0f0;
  100. }