viewCareful.scss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. .careful-view{
  2. position: relative;
  3. width: auto;
  4. box-sizing: border-box;
  5. z-index: 12;
  6. }
  7. .grid{
  8. display: grid;
  9. grid-template-columns: repeat(2, 1fr);;
  10. grid-row-gap: 20px;
  11. grid-column-gap:50px;
  12. }
  13. .careful-list{
  14. width: 100%;
  15. max-height:600px;
  16. margin-top:30px;
  17. }
  18. .item-top{
  19. width: 100%;
  20. }
  21. .scroll-view{
  22. overflow-y: auto;
  23. }
  24. .careful-item .item-top {
  25. font-family: "Verdana Bold";
  26. font-weight: 700;
  27. font-size: 28px;
  28. color: #585858;
  29. .index-view{
  30. // font-family: "DINCondensed-Bold";
  31. font-family: "Verdana";
  32. margin-right:10px;
  33. }
  34. .name-view{
  35. max-width:150px;
  36. margin-right:15px;
  37. }
  38. .percent-view{
  39. font-family: "DINCondensed-Bold";
  40. opacity: 0.3;
  41. font-size:24px;
  42. }
  43. .area-view{
  44. font-family: "DINCondensed-Bold";
  45. font-weight: 700;
  46. color: #8D8D8D;
  47. font-size:26px;
  48. }
  49. }
  50. .item-top.active {
  51. color: #ff9f40;
  52. .area-view{
  53. color: #f5891c;
  54. }
  55. }
  56. .item-slider{
  57. width: 100%;
  58. .slider-style{
  59. margin:20px 16px
  60. }
  61. }
  62. .ai-btn{
  63. width: 80px;
  64. height: 84px;
  65. border-radius: 8px;
  66. background-image:linear-gradient(124deg, rgba(245, 201, 82, 0.2) 0%, rgba(239, 149, 57, 0.2) 100%);
  67. font-weight: 400;
  68. font-size: 24px;
  69. color: #f59d40;
  70. }
  71. /deep/ .el-slider__runway{
  72. .el-slider__bar{
  73. background-color: #A3A3A3;
  74. }
  75. .el-slider__button{
  76. background: #A5A5A5;
  77. border: 4px solid #fff;
  78. }
  79. }
  80. .active{
  81. /deep/ .el-slider__runway{
  82. .el-slider__bar{
  83. background-color: #FFAD5C;
  84. }
  85. .el-slider__button{
  86. background: #FF9B0A;
  87. border: 4px solid #fff;
  88. }
  89. }
  90. }