index.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. font-size: 28rpx;
  42. }
  43. .date-box {
  44. font-size:26rpx;
  45. color:#999;
  46. margin-bottom: 20rpx;
  47. }
  48. .info .text{
  49. color: #000;
  50. line-height: 42rpx;
  51. }
  52. .dot{
  53. width: 30rpx;
  54. height: 30rpx;
  55. margin-right: 30rpx;
  56. display: flex;
  57. align-items: center;
  58. justify-content: center;
  59. box-sizing: border-box;
  60. }
  61. .default-dot{
  62. background:#ddd;
  63. width:14rpx;
  64. height:14rpx;
  65. border-radius:100%;
  66. }
  67. .active-dot{
  68. border:2rpx solid #e64340;
  69. width:26rpx;
  70. height:26rpx;
  71. border-radius:50%;
  72. display: flex;
  73. align-items: center;
  74. justify-content: center;
  75. background-color: #fff;
  76. }
  77. .active-dot .yuan-red{
  78. background:#e64340;
  79. width:14rpx;
  80. height:14rpx;
  81. border-radius:50%;
  82. }
  83. .line-box{
  84. position: absolute;
  85. top:-120rpx;
  86. left: 54rpx;
  87. background:#dddddd;
  88. width:2rpx;
  89. height:100%;
  90. }