index.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. .pullDownList {
  2. width: 100%;
  3. box-sizing: border-box;
  4. background-color: #fff;
  5. border-radius: 8rpx;
  6. margin-bottom: 24rpx;
  7. overflow: hidden;
  8. }
  9. .pullDownList .switchBox {
  10. height: 120rpx;
  11. display: flex;
  12. justify-content: space-between;
  13. align-items: center;
  14. padding: 0 32rpx;
  15. font-size: 32rpx;
  16. line-height: 48rpx;
  17. color: #333;
  18. }
  19. .pullDownList .tag {
  20. width: 100rpx;
  21. text-align: center;
  22. border-radius: 5rpx;
  23. font-size: 26rpx;
  24. }
  25. .pullDownList .tag.type-func {
  26. color: #fff;
  27. background-color: #29bf12;
  28. }
  29. .pullDownList .tag.type-template {
  30. color: #fff;
  31. background-color: #ff9914;
  32. }
  33. .pullDownList .tag.type-case {
  34. color: #fff;
  35. background-color: #08bdbd;
  36. }
  37. .pullDownList .name,
  38. .pullDownList .icon {
  39. transition: opacity 0.3s;
  40. }
  41. .pullDownList .name {
  42. opacity: 0.9;
  43. }
  44. .pullDownList.actived .name {
  45. opacity: 0.4;
  46. }
  47. .pullDownList.actived .icon {
  48. opacity: 0.4;
  49. }
  50. .pullDownList .childBox {
  51. transition: height 0.3s;
  52. }
  53. .pullDownList .childBox .child {
  54. box-sizing: border-box;
  55. border-bottom: 1rpx solid #e5e5e5;
  56. border-top-width: 2rpx;
  57. height: 112rpx;
  58. display: flex;
  59. justify-content: space-between;
  60. align-items: center;
  61. padding-left: 32rpx;
  62. padding-right: 32rpx;
  63. font-size: 28rpx;
  64. opacity: 0.9;
  65. }
  66. .pullDownList .childBox .child:last-of-type {
  67. border-bottom-color: transparent;
  68. }
  69. .message {
  70. border: 20rpx solid #000;
  71. }
  72. .ar {
  73. border: 20rpx solid #1D5B79;
  74. }
  75. .custom {
  76. border: 20rpx solid #468B97;
  77. }
  78. .gltf {
  79. border: 20rpx solid #EF6262;
  80. }
  81. .tool {
  82. border: 20rpx solid #F3AA60;
  83. }