金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

107 lines
2.0 KiB

  1. @import '../../../common/css/global';
  2. #favorite-index{
  3. .num-box{
  4. position: fixed;
  5. top: 0;
  6. width: 100%;
  7. display: flex;
  8. align-items: center;
  9. justify-content: space-between;
  10. height: 45px;
  11. padding: 0 10px;
  12. font-size: 15px;
  13. z-index: 10;
  14. background: #eeeeee;
  15. .goods{
  16. color: #959595;
  17. flex: 1;
  18. .num{
  19. color: #d0021b;
  20. }
  21. }
  22. .operation{
  23. color: #0479ff;
  24. }
  25. }
  26. .goods-list{
  27. padding: 45px 0 55px 0;
  28. .goods-item {
  29. display: flex;
  30. padding: 10px;
  31. background: #FFFFFF;
  32. align-items: inherit;
  33. .img-box{
  34. display: flex;
  35. align-items: center;
  36. image{
  37. width: 74px;
  38. height: 74px;
  39. border: 1px solid #e5e5e5;
  40. display: block;
  41. }
  42. }
  43. .text {
  44. display: flex;
  45. flex-direction: column;
  46. flex: 1;
  47. justify-content: space-between;
  48. padding-left: 10px;
  49. font-size: 12px;
  50. .money {
  51. color: #ff4931;
  52. }
  53. }
  54. }
  55. .loadingbox{
  56. margin-top: 10px;
  57. height: 40px;
  58. line-height: 40px;
  59. text-align: center;
  60. font-size:14px;
  61. }
  62. }
  63. .cancel{
  64. display: flex;
  65. align-items: center;
  66. justify-content: space-between;
  67. height: 50px;
  68. background: #FFFFFF;
  69. position: fixed;
  70. bottom: 0;
  71. width: 100%;
  72. z-index: 20;
  73. .checkbox{
  74. margin-left: 10px;
  75. }
  76. .cancel-button{
  77. height: 50px;
  78. line-height: 50px;
  79. width: 110px;
  80. text-align: center;
  81. color: #FFFFFF;
  82. background: @mainColor;
  83. }
  84. }
  85. //重置按钮样式
  86. checkbox .wx-checkbox-input{
  87. border-radius: 100%;
  88. background-color: #fff;
  89. border: 1px solid #c1caca;
  90. box-shadow: 0 1px 2px rgba(0,0,0,.05), inset 0 -15px 10px -12px rgba(0,0,0,.05);
  91. height: 14px;
  92. width: 14px;
  93. }
  94. checkbox .wx-checkbox-input.wx-checkbox-input-checked{
  95. background-color: @globalColor;
  96. border: 1px solid @globalColor;
  97. }
  98. }