index.scss 935 B

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