index.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. .bgcolor{
  12. background-color: #06c174 !important;
  13. }
  14. .bgcolor01{
  15. background-color: $g_bgColor01 !important;
  16. }
  17. }
  18. .die{
  19. // 红跌
  20. .color{
  21. color:red !important;
  22. }
  23. .bgcolor{
  24. background-color: rgba(255,0,0,1) !important;
  25. }
  26. .bgcolor01{
  27. background-color: $r_bgColor01 !important;
  28. }
  29. }
  30. // .rise{
  31. // color: #06c174;
  32. // }
  33. // .fall{
  34. // color: red;
  35. // }
  36. // .rise-btn{
  37. // background-color: #06c174;
  38. // }
  39. // .fall-btn{
  40. // background-color: red;
  41. // }
  42. }
  43. [rise-fall='red_rise']{
  44. .zhang{
  45. // 红涨
  46. .color{
  47. color:red !important;
  48. }
  49. .bgcolor{
  50. background-color: rgba(255,0,0,1) !important;
  51. }
  52. .bgcolor01{
  53. background-color: $r_bgColor01 !important;
  54. }
  55. }
  56. .die{
  57. // 红跌
  58. .color{
  59. color:#06c174 !important;
  60. }
  61. .bgcolor{
  62. background-color: #06c174 !important;
  63. }
  64. .bgcolor01{
  65. background-color: $g_bgColor01 !important;
  66. }
  67. }
  68. }
  69. .popup-box {
  70. width: 100%;
  71. background-color: #Fff;
  72. border-radius: 50rpx 50rpx 0px 0px;
  73. .popup-title {
  74. width: 100%;
  75. height: 113rpx;
  76. border-radius: 50rpx 50rpx 0px 0px;
  77. background-color: #F7F7F7 !important;
  78. display: flex;
  79. justify-content: space-between;
  80. align-items: center;
  81. padding: 0 40rpx;
  82. font-weight: 700;
  83. .title-side {
  84. flex-shrink: 0;
  85. font-size: 28rpx;
  86. width: 40rpx;
  87. height: 100%;
  88. line-height: 113rpx;
  89. color: #666;
  90. font-weight: 400;
  91. }
  92. }
  93. }