style.scss 1.5 KB

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