style.scss 1.6 KB

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