index.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. // @import url("./root.css");
  2. $g_bgColor01:rgba(6,193,116,0.1);
  3. $r_bgColor01:rgba(255,0,0,0.1);
  4. [rise-fall='green_rise']{
  5. // 绿涨红跌
  6. .zhang{
  7. // 绿涨
  8. .color {
  9. color:#06c174 !important;
  10. }
  11. .bdColor{
  12. border-color:#06c174 !important;
  13. }
  14. .bgcolor{
  15. background-color: #06c174 !important;
  16. }
  17. .bgcolor01{
  18. background-color: $g_bgColor01 !important;
  19. }
  20. }
  21. .die{
  22. // 红跌
  23. .color{
  24. color:red !important;
  25. }
  26. .bdColor{
  27. border-color:red !important;
  28. }
  29. .bgcolor{
  30. background-color: rgba(255,0,0,1) !important;
  31. }
  32. .bgcolor01{
  33. background-color: $r_bgColor01 !important;
  34. }
  35. }
  36. // .rise{
  37. // color: #06c174;
  38. // }
  39. // .fall{
  40. // color: red;
  41. // }
  42. // .rise-btn{
  43. // background-color: #06c174;
  44. // }
  45. // .fall-btn{
  46. // background-color: red;
  47. // }
  48. }
  49. [rise-fall='red_rise']{
  50. .zhang{
  51. // 红涨
  52. .color{
  53. color:red !important;
  54. }
  55. .bdColor{
  56. border-color:red !important;
  57. }
  58. .bgcolor{
  59. background-color: rgba(255,0,0,1) !important;
  60. }
  61. .bgcolor01{
  62. background-color: $r_bgColor01 !important;
  63. }
  64. }
  65. .die{
  66. // 红跌
  67. .color{
  68. color:#06c174 !important;
  69. }
  70. .bdColor{
  71. border-color:#06c174 !important;
  72. }
  73. .bgcolor{
  74. background-color: #06c174 !important;
  75. }
  76. .bgcolor01{
  77. background-color: $g_bgColor01 !important;
  78. }
  79. }
  80. }
  81. .popup-box {
  82. width: 100%;
  83. background-color: #Fff;
  84. border-radius: 50rpx 50rpx 0px 0px;
  85. .popup-title {
  86. width: 100%;
  87. height: 113rpx;
  88. border-radius: 50rpx 50rpx 0px 0px;
  89. background-color: #F7F7F7 !important;
  90. display: flex;
  91. justify-content: space-between;
  92. align-items: center;
  93. padding: 0 40rpx;
  94. font-weight: 700;
  95. .title-side {
  96. flex-shrink: 0;
  97. font-size: 28rpx;
  98. width: 40rpx;
  99. height: 100%;
  100. line-height: 113rpx;
  101. color: #666;
  102. font-weight: 400;
  103. }
  104. }
  105. }