index.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. .pankoubgcolor{
  21. background-color: #E5F8F6 !important;
  22. }
  23. }
  24. .die{
  25. // 红跌
  26. .color{
  27. color:red !important;
  28. }
  29. .bdColor{
  30. border-color:red !important;
  31. }
  32. .bgcolor{
  33. background-color: rgba(255,0,0,1) !important;
  34. }
  35. .bgcolor01{
  36. background-color: $r_bgColor01 !important;
  37. }
  38. .pankoubgcolor{
  39. background-color: #FEEBED !important;
  40. }
  41. }
  42. // .rise{
  43. // color: #06c174;
  44. // }
  45. // .fall{
  46. // color: red;
  47. // }
  48. // .rise-btn{
  49. // background-color: #06c174;
  50. // }
  51. // .fall-btn{
  52. // background-color: red;
  53. // }
  54. }
  55. [rise-fall='red_rise']{
  56. .zhang{
  57. // 红涨
  58. .color{
  59. color:red !important;
  60. }
  61. .bdColor{
  62. border-color:red !important;
  63. }
  64. .bgcolor{
  65. background-color: rgba(255,0,0,1) !important;
  66. }
  67. .bgcolor01{
  68. background-color: $r_bgColor01 !important;
  69. }
  70. .pankoubgcolor{
  71. background-color: #FEEBED !important;
  72. }
  73. }
  74. .die{
  75. // 红跌
  76. .color{
  77. color:#06c174 !important;
  78. }
  79. .bdColor{
  80. border-color:#06c174 !important;
  81. }
  82. .bgcolor{
  83. background-color: #06c174 !important;
  84. }
  85. .bgcolor01{
  86. background-color: $g_bgColor01 !important;
  87. }
  88. .pankoubgcolor{
  89. background-color: #E5F8F6 !important;
  90. }
  91. }
  92. }
  93. .popup-box {
  94. width: 100%;
  95. background-color: #Fff;
  96. border-radius: 50rpx 50rpx 0px 0px;
  97. .popup-title {
  98. width: 100%;
  99. height: 113rpx;
  100. border-radius: 50rpx 50rpx 0px 0px;
  101. background-color: #F7F7F7 !important;
  102. display: flex;
  103. justify-content: space-between;
  104. align-items: center;
  105. padding: 0 40rpx;
  106. font-weight: 700;
  107. .title-side {
  108. flex-shrink: 0;
  109. font-size: 28rpx;
  110. width: 40rpx;
  111. height: 100%;
  112. line-height: 113rpx;
  113. color: #666;
  114. font-weight: 400;
  115. }
  116. }
  117. }
  118. .iframe-content {
  119. width: 100%;
  120. height: 100vh;
  121. display: flex;
  122. flex-direction: column;
  123. .iframe-box {
  124. flex: 1;
  125. iframe {
  126. width: 100%;
  127. height: 100%;
  128. }
  129. }
  130. }