index.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. .am-checkbox.am-checkbox-checked .am-checkbox-inner {
  2. border-color: #f44;
  3. background: #f44;
  4. }
  5. .selected {
  6. width: 50%;
  7. min-width: 100px;
  8. position: absolute;
  9. bottom: 0;
  10. }
  11. .selected_button {
  12. width: 30px;
  13. height: 30px;
  14. background-color: #fff;
  15. border: 1px solid #ebedf0;
  16. }
  17. .selected_button:active {
  18. background-color: #e8e8e8;
  19. }
  20. .selected_button-disabled {
  21. background-color: #f8f8f8;
  22. }
  23. .selected_input {
  24. width: 33px;
  25. height: 30px;
  26. border: 1px solid #ebedf0;
  27. border-radius: 0;
  28. color: black;
  29. font-size: 14px;
  30. text-align: center;
  31. }
  32. .cart-list {
  33. width: 100%;
  34. background-color: #fff;
  35. padding: 10px 0;
  36. display: flex;
  37. justify-content: space-around;
  38. }
  39. .cart-list-checkbox {
  40. width: 10%;
  41. display: flex;
  42. align-items: center;
  43. }
  44. .cart-list-image {
  45. width: 25%;
  46. }
  47. .cart-list-image img {
  48. width: 80%;
  49. margin-left: 10%;
  50. }
  51. .cart-list-intro {
  52. width: 35%;
  53. position: relative;
  54. }
  55. .cart-list-intro :first-child {
  56. color: black;
  57. }
  58. .cart-list-intro :nth-child(2) {
  59. font-size: 12px;
  60. }
  61. .cart-list-intro :last-child {
  62. color: #f44;
  63. position: absolute;
  64. bottom:0;
  65. }
  66. .cart-list-count {
  67. width: 30%;
  68. position: relative;
  69. }
  70. .footer{
  71. position: fixed;
  72. bottom: 50px;
  73. width: 100%;
  74. }
  75. .jiesuan {
  76. height: 45px;
  77. display: flex;
  78. font-size: 14px;
  79. align-items: center;
  80. background-color: #fff;
  81. }
  82. .jiesuan-disabled {
  83. opacity: 0.5;
  84. }
  85. .jiesuan-checkbox_label {
  86. color: #323233;
  87. margin-left: 10px;
  88. vertical-align: middle;
  89. line-height: 20px;
  90. }
  91. .jiesuan-total {
  92. flex: 1;
  93. font-weight: 500;
  94. text-align: right;
  95. color: #323233;
  96. padding-right: 12px;
  97. }
  98. .jiesuan-total_price {
  99. color: #f44;
  100. font-size: 18px;
  101. }
  102. .jiesuan-button {
  103. width: 110px;
  104. height: 100%;
  105. color: #fff;
  106. background-color: #f44;
  107. border: 1px solid #f44;
  108. font-size: 16px;
  109. text-align: center;
  110. }