common.css 667 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. display: -webkit-box;
  20. -webkit-box-orient: vertical;
  21. -webkit-line-clamp: 2;
  22. overflow: hidden;
  23. word-break: break-all;
  24. }
  25. .top-border {
  26. border-top: 1px solid #e6e7e9;
  27. }
  28. .bottom-border {
  29. border-bottom: 1px solid #e6e7e9;
  30. }
  31. .placeholder-text {
  32. color: #AEAEAE;
  33. font-size: 14px;
  34. font-weight: 400;
  35. }
  36. .top-mar {
  37. margin-top: 10px;
  38. }
  39. .fixed {
  40. position: fixed;
  41. top: 0;
  42. left: 0;
  43. right: 0;
  44. z-index: 2;
  45. }