wuliu.wxss 1.6 KB

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