index.wxss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /* pages/announce-detail/index.wxss */
  2. @import "/wxParse/wxParse.wxss";
  3. .body {
  4. background: #fff;
  5. padding: 32rpx 24rpx 110rpx;
  6. overflow-x: hidden;
  7. border-top: 1rpx solid #e3e3e3;
  8. }
  9. .body .title {
  10. font-weight: bold;
  11. margin-bottom: 42rpx;
  12. }
  13. .body .info {
  14. font-size: 9pt;
  15. color: #888;
  16. margin-bottom: 34rpx;
  17. }
  18. .bar {
  19. position: fixed;
  20. z-index: 10;
  21. bottom: 0;
  22. left: 0;
  23. width: 100%;
  24. background: #fff;
  25. border-top: 1rpx solid #e3e3e3;
  26. }
  27. .bar .btn {
  28. color: #555;
  29. font-size: 9pt;
  30. text-align: center;
  31. padding: 10rpx 30rpx;
  32. display: inline-block;
  33. background: none;
  34. line-height: inherit;
  35. }
  36. .bar .btn:after {
  37. display: none;
  38. }
  39. .bar .btn image {
  40. width: 42rpx;
  41. height: 42rpx;
  42. display: block;
  43. margin: 0 auto 10rpx;
  44. }
  45. .wxParse-p {
  46. padding-left: 0;
  47. padding-right: 0;
  48. }
  49. .goods-link {
  50. overflow: hidden;
  51. height: 220rpx!important;
  52. position: relative;
  53. margin-bottom: 10rpx;
  54. }
  55. .goods-link image {
  56. width: 184rpx!important;
  57. height: 184rpx!important;
  58. background: #fff;
  59. top: 16rpx;
  60. left: 16rpx;
  61. position: absolute;
  62. display: block;
  63. }
  64. .goods-link .goods-info {
  65. padding: 32rpx 24rpx 24rpx 232rpx!important;
  66. height: 100%;
  67. }
  68. .goods-link .goods-name {
  69. -webkit-line-clamp: 2;
  70. display: -webkit-box;
  71. -webkit-box-orient: vertical;
  72. overflow: hidden;
  73. margin-bottom: 16rpx;
  74. }
  75. .goods-link .buy-btn {
  76. display: inline-block;
  77. float: right;
  78. font-size: 9pt!important;
  79. border: 1rpx solid #ff4544!important;
  80. color: #ff4544;
  81. border-radius: 5rpx!important;
  82. padding: 5rpx 10rpx!important;
  83. }