product-mobile.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .wrap {
  2. padding-top: 2.75rem;
  3. }
  4. .wrap .tab {
  5. height: 2.5rem;
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. border-bottom: 1px solid rgba(151, 151, 151, 0.2);
  10. position: relative;
  11. }
  12. .tab .tab-item {
  13. height: 3.125rem;
  14. width: 6.25rem;
  15. font-size: 0.875rem;
  16. font-weight: 400;
  17. color: #222222;
  18. text-align: center;
  19. line-height: 3.125rem;
  20. }
  21. .tab .current-tab {
  22. position: absolute;
  23. bottom: 0;
  24. width: 3rem;
  25. height: 0.125rem;
  26. background-color: #1d52a2;
  27. transition: all 0.25s;
  28. }
  29. .wrap .content {
  30. padding: 0.9375rem;
  31. width: 100%;
  32. margin: 0 auto;
  33. display: flex;
  34. flex-wrap: wrap;
  35. align-items: center;
  36. }
  37. .wrap .content > :not(:nth-child(2n)) {
  38. margin-right: 0.9375rem;
  39. }
  40. .content .content-item {
  41. width: calc((100% - 1.25rem) / 2);
  42. height: 9.75rem;
  43. background: #f4f4f4;
  44. border: 1px solid #bfbfbf;
  45. padding: 0.9375rem;
  46. margin-bottom: 0.9375rem;
  47. position: relative;
  48. }
  49. .content .content-item .title {
  50. height: 1rem;
  51. font-size: 0.875rem;
  52. font-weight: 500;
  53. color: #222222;
  54. text-overflow: ellipsis;
  55. overflow: hidden;
  56. white-space: nowrap;
  57. }
  58. .content .content-item .detail {
  59. font-size: 0.75rem;
  60. font-weight: 400;
  61. color: #222222;
  62. overflow: hidden;
  63. text-overflow: ellipsis;
  64. display: -webkit-box;
  65. -webkit-box-orient: vertical;
  66. -webkit-line-clamp: 4;
  67. margin: 0.9375rem 0 0.625rem;
  68. }
  69. .content .content-item .more {
  70. font-size: 0.75rem;
  71. font-weight: 400;
  72. color: #1d52a2;
  73. text-decoration: none;
  74. position: absolute;
  75. bottom: 0.9375rem;
  76. left: 0.9375rem;
  77. }