style.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. .container {
  2. width: 100%;
  3. position: fixed;
  4. top: 0;
  5. bottom: 0;
  6. overflow-y: scroll;
  7. }
  8. .charts {
  9. width: 750upx;
  10. height: 500upx;
  11. background-color: #ffffff;
  12. }
  13. .line {
  14. width: 100%;
  15. height: 10px;
  16. background: #f5f5f5;
  17. }
  18. .chart-1 {
  19. position: relative;
  20. padding: 10px 0;
  21. .chart-title {
  22. position: absolute;
  23. left: 10px;
  24. z-index: 1;
  25. span {
  26. font-size: 17px;
  27. color: #333333;
  28. }
  29. .icon-wenhao {
  30. font-size: 16px;
  31. color: #dbdbdb;
  32. margin-left: 8px;
  33. }
  34. }
  35. }
  36. .popup-content {
  37. width: 100%;
  38. background: #ffffff;
  39. border-radius: 12px 12px 0 0;
  40. .close-btn {
  41. width: 40px;
  42. height: 40px;
  43. line-height: 40px;
  44. text-align: center;
  45. position: absolute;
  46. top: 5px;
  47. right: 5px;
  48. i {
  49. font-size: 15px;
  50. color: #949494;
  51. }
  52. }
  53. .bl-describe-con {
  54. padding: 21px 15px;
  55. .describe-title {
  56. font-size: 17px;
  57. color: #000000;
  58. text-align: center;
  59. }
  60. .describe-box {
  61. margin-top: 20px;
  62. .describe-tag {
  63. width: 100%;
  64. height: 21px;
  65. border-bottom: 1rpx solid #10aeff;
  66. span {
  67. line-height: 21px;
  68. padding: 0 13px;
  69. box-sizing: border-box;
  70. text-align: center;
  71. transform: skew(-20deg);
  72. background: #10aeff;
  73. display: inline-block;
  74. margin: 1px 0 0 4px;
  75. i {
  76. font-size: 14px;
  77. color: #ffffff;
  78. transform: skew(20deg);
  79. display: inline-block;
  80. }
  81. }
  82. }
  83. .describe-img {
  84. width: 80px;
  85. height: 80px;
  86. border-radius: 12px;
  87. margin-top: 12px;
  88. }
  89. .describe-text {
  90. width: 100%;
  91. max-height: 410px;
  92. overflow-y: scroll;
  93. font-size: 14px;
  94. color: #666666;
  95. margin-top: 12px;
  96. line-height: 23px;
  97. }
  98. }
  99. }
  100. }