details.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. @import './groupDetails.wxss';
  2. .rule {
  3. text-decoration: underline;
  4. }
  5. .more .iconfont {
  6. transition: 200ms all ease-in;
  7. }
  8. .more .iconfont.rotate {
  9. display: inline-block;
  10. transform: rotate(180deg);
  11. }
  12. .fixed-bar {
  13. left: 0;
  14. right: 0;
  15. bottom: 0;
  16. z-index: 800;
  17. height: 100rpx;
  18. }
  19. .fixed-bar-bg {
  20. position: absolute;
  21. left: 0;
  22. right: 0;
  23. bottom: 0;
  24. top: 0;
  25. background: linear-gradient(45deg, #474442 0%, #3f2a1c 50%, #4a3721 100%);
  26. overflow: hidden;
  27. z-index: 800;
  28. }
  29. .fixed-bar-bg::after{
  30. content: "";
  31. width:100%;
  32. height:100%;
  33. position: absolute;
  34. left:0;
  35. top:0;
  36. background: inherit;
  37. filter: blur(20px);
  38. z-index: 801;
  39. }
  40. .cartBtn {
  41. position: relative;
  42. margin: -30rpx 30rpx 0;
  43. width: 110rpx;
  44. height: 110rpx;
  45. line-height: 110rpx;
  46. text-align: center;
  47. border-radius: 50%;
  48. background: linear-gradient(45deg, #fdd225 0%, #feb600 100%);
  49. }
  50. .cartBtn.disable {
  51. background: rgb(70, 69, 69);
  52. color: #ccc;
  53. }
  54. .cartBtn .iconfont {
  55. font-size: 60rpx;
  56. }
  57. .cartBtn .num {
  58. color: #fff;
  59. background-color: #ff5041;
  60. position: absolute;
  61. top: -10rpx;
  62. right: -10rpx;
  63. min-width: 44rpx;
  64. height: 44rpx;
  65. line-height: 44rpx;
  66. border-radius: 44rpx;
  67. text-align: center;
  68. font-size: 24rpx;
  69. }
  70. .fixed-bar-sub {
  71. background: linear-gradient(270deg, #f9c706 0%, #feb600 100%);
  72. padding: 0 40rpx;
  73. height: 100rpx;
  74. line-height: 100rpx;
  75. }
  76. .fixed-bar-sub.disable {
  77. background: rgba(103, 103, 103, 0.4);
  78. color: #7f8285;
  79. }
  80. .order-goods-item {
  81. width: 160rpx;
  82. margin-right: 20rpx;
  83. }
  84. .order-goods-item .img {
  85. width: 160rpx;
  86. height: 160rpx;
  87. }
  88. .phone {
  89. margin-left: 20rpx;
  90. padding: 0 20rpx;
  91. height: 44rpx;
  92. display: flex;
  93. align-items: center;
  94. border: 0.1rpx solid #efefef;
  95. border-radius: 26rpx;
  96. }
  97. .phone .icon-phone {
  98. width: 20rpx;
  99. height: 20rpx;
  100. margin-right: 10rpx;
  101. }