index.scss 1.2 KB

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