index.wxss 888 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. page{
  2. width: 100%;
  3. height: 100%;
  4. background-color: #F9F9FD;
  5. }
  6. .projectbox{
  7. background-color: #FFFFFF;
  8. color: #666666;
  9. }
  10. .projectbox>view{
  11. height:88rpx;
  12. line-height: 88rpx;
  13. margin-left: 30rpx;
  14. padding-left: 36rpx;
  15. /* border-bottom: 1px solid #EEEEEE; */
  16. }
  17. .proname{
  18. font-size: 32rpx;
  19. color: #949494;
  20. }
  21. .projectbox .children{
  22. padding-left:72rpx;
  23. position: relative;
  24. }
  25. .projectbox .children::before{
  26. content: '';
  27. width: 18rpx;
  28. top: 29rpx;
  29. left: 41rpx;
  30. position: absolute;
  31. height: 18rpx;
  32. border-bottom: 1px solid #cccccc;
  33. border-left: 1px solid #cccccc;
  34. }
  35. .projectbox .childrenactive{
  36. /* background-color: #f0f0f0; */
  37. color: #0089ff;
  38. }
  39. .projectbox .childrenactive::before{
  40. content: '';
  41. width: 18rpx;
  42. top: 29rpx;
  43. left: 41rpx;
  44. position: absolute;
  45. height: 18rpx;
  46. border-bottom: 1px solid #0089ff;
  47. border-left: 1px solid #0089ff;
  48. }