index.css 2.1 KB

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