index.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. line-height: 22px;
  41. background-color: #fff;
  42. padding: 10px 0;
  43. display: flex;
  44. justify-content: space-around;
  45. border-bottom: 1px solid #f5f5f9;
  46. }
  47. .cart-list-checkbox {
  48. width: 10%;
  49. display: flex;
  50. align-items: center;
  51. z-index: 0;
  52. }
  53. .cart-list-image {
  54. width: 25%;
  55. }
  56. .cart-list-image img {
  57. width: 80%;
  58. margin-left: 10%;
  59. }
  60. .cart-list-intro {
  61. width: 35%;
  62. position: relative;
  63. text-align: left;
  64. }
  65. .cart-list-intro :first-child {
  66. color: black;
  67. }
  68. .cart-list-intro :nth-child(2) {
  69. font-size: 12px;
  70. }
  71. .cart-list-intro :last-child {
  72. color: #f44;
  73. position: absolute;
  74. bottom:0;
  75. }
  76. .cart-list-count {
  77. width: 30%;
  78. position: relative;
  79. }
  80. .footer{
  81. position: fixed;
  82. bottom: 50px;
  83. height: 45px;
  84. width: 100%;
  85. }
  86. .jiesuan {
  87. height: 100%;
  88. display: flex;
  89. font-size: 14px;
  90. align-items: center;
  91. background-color: #fdfbfb;
  92. border-top: 1px solid #f5f5f9;
  93. z-index: 3;
  94. }
  95. .jiesuan-disabled {
  96. opacity: 0.5;
  97. }
  98. .jiesuan-checkbox_label {
  99. color: #323233;
  100. margin-left: 10px;
  101. vertical-align: middle;
  102. line-height: 20px;
  103. }
  104. .jiesuan-total {
  105. flex: 1;
  106. font-weight: 500;
  107. text-align: right;
  108. color: #323233;
  109. padding-right: 12px;
  110. }
  111. .jiesuan-total_price {
  112. color: #f44;
  113. font-size: 18px;
  114. }
  115. .jiesuan-button {
  116. width: 110px;
  117. height: 100%;
  118. color: #fff;
  119. background-color: #f44;
  120. border: 1px solid #f44;
  121. font-size: 16px;
  122. text-align: center;
  123. }