1
0

wuliu.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. page{
  2. min-height: 100%;
  3. background-color: #F2f2f2;
  4. }
  5. .top-sec{
  6. background-color: #fff;
  7. width: 100%;
  8. margin-top: 20rpx;
  9. box-sizing: border-box;
  10. padding: 24rpx 30rpx;
  11. }
  12. .top-sec .a-row{
  13. display: flex;
  14. font-size: 24rpx;
  15. line-height: 54rpx;
  16. }
  17. .top-sec .a-row .text{
  18. font-size: 24rpx;
  19. }
  20. .top-sec .a-row .label{
  21. color: #999;
  22. margin-right: 28rpx;
  23. }
  24. .sec-wrap{
  25. width: 100%;
  26. background-color: #fff;
  27. margin-top: 20rpx;
  28. }
  29. .details-info{
  30. position: relative;
  31. width: 100%;
  32. margin-top: 40rpx;
  33. overflow: hidden;
  34. }
  35. .details-info .a-row{
  36. margin-left: 40rpx;
  37. display: flex;
  38. margin-right: 30rpx;
  39. margin-bottom: 50rpx;
  40. position: relative;
  41. z-index: 4;
  42. }
  43. .details-info .a-row .info{
  44. width:90%;
  45. font-size: 28rpx;
  46. }
  47. .date-box {
  48. font-size:26rpx;
  49. color:#999;
  50. margin-bottom: 20rpx;
  51. }
  52. .info .text{
  53. color: #000;
  54. line-height: 42rpx;
  55. font-size: 24rpx;
  56. }
  57. .dot{
  58. width: 30rpx;
  59. height: 30rpx;
  60. margin-right: 30rpx;
  61. display: flex;
  62. align-items: center;
  63. justify-content: center;
  64. box-sizing: border-box;
  65. }
  66. .default-dot{
  67. background:#ddd;
  68. width:14rpx;
  69. height:14rpx;
  70. border-radius:100%;
  71. }
  72. .active-dot{
  73. border:2rpx solid #e64340;
  74. width:26rpx;
  75. height:26rpx;
  76. border-radius:50%;
  77. display: flex;
  78. align-items: center;
  79. justify-content: center;
  80. background-color: #fff;
  81. }
  82. .active-dot .yuan-red{
  83. background:#e64340;
  84. width:14rpx;
  85. height:14rpx;
  86. border-radius:50%;
  87. }
  88. .line-box{
  89. position: absolute;
  90. top:-120rpx;
  91. left: 54rpx;
  92. background:#dddddd;
  93. width:2rpx;
  94. height:100%;
  95. }