金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
1.6 KiB

  1. .waterfalls-flow{
  2. .title{
  3. padding: 10px 15px 10px 15px;
  4. display: flex;
  5. justify-content: space-between;
  6. color: #000;
  7. align-items: center;
  8. background-color: #FFFFFF;
  9. span:nth-child(1) {
  10. font-size: 22px;
  11. font-weight: bold;
  12. display: inline-block;
  13. //padding-left: 6px;
  14. //border-left: 4px solid #E7031C;
  15. }
  16. span:nth-child(2) {
  17. font-size: 12px;
  18. display: flex;
  19. align-items: center;
  20. text{
  21. font-size: 15px;
  22. font-weight: 700;
  23. margin-left: 5px;
  24. }
  25. }
  26. }
  27. .help-select-contet {
  28. column-count: 2; //分为2列
  29. column-gap: 10px;//列之间间隔为10px
  30. width: 100%;
  31. padding:10px 15px;
  32. }
  33. .help-select-card {
  34. background: #fff;
  35. width:100%;
  36. display: inline-block; /*内部卡片需要设置为inline-block,否则会截断显示,如图一*/
  37. justify-content: center;
  38. flex-direction: column;
  39. align-items: center;
  40. margin-bottom: 10rpx;
  41. image{
  42. width: 100%;
  43. }
  44. .goods-detail{
  45. padding: 10px 8px;
  46. .name{
  47. color:#333333;
  48. font-size: 12px;
  49. height: 38px;
  50. line-height: 18px;
  51. margin-bottom:10px;
  52. display: -webkit-box;
  53. -webkit-box-orient: vertical;
  54. -webkit-line-clamp: 2;
  55. overflow: hidden;
  56. }
  57. .money{
  58. color:#E7031C;
  59. font-size: 14px;
  60. line-height: 20px;
  61. span{
  62. color:#999999;
  63. font-size: 12px;
  64. line-height: 17px;
  65. text-decoration: line-through;
  66. display: inline-block;
  67. padding-left: 6px;
  68. }
  69. }
  70. }
  71. }
  72. }