common.css 587 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. body {
  2. background-color: #F5F5F5;
  3. }
  4. view,
  5. text {
  6. font-size: 16px;
  7. color: #333;
  8. }
  9. image {
  10. display: block;
  11. }
  12. /* 原价 */
  13. .original-price {
  14. font-size: 12px;
  15. text-decoration: line-through;
  16. color: #999999;
  17. }
  18. .text-two-hidden {
  19. overflow: hidden;
  20. word-break: break-all;
  21. }
  22. .top-border {
  23. border-top: 1px solid #e6e7e9;
  24. }
  25. .bottom-border {
  26. border-bottom: 1px solid #e6e7e9;
  27. }
  28. .placeholder-text {
  29. color: #AEAEAE;
  30. font-size: 14px;
  31. font-weight: 400;
  32. }
  33. .top-mar {
  34. margin-top: 10px;
  35. }
  36. .fixed {
  37. position: fixed;
  38. top: 0;
  39. left: 0;
  40. right: 0;
  41. z-index: 2;
  42. }