style.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. padding-bottom: 10px;
  16. }
  17. .popup-content {
  18. width: 100%;
  19. background: #ffffff;
  20. border-radius: 12px 12px 0 0;
  21. .close-btn {
  22. width: 40px;
  23. height: 40px;
  24. line-height: 40px;
  25. text-align: center;
  26. position: absolute;
  27. top: 5px;
  28. right: 5px;
  29. i {
  30. font-size: 15px;
  31. color: #949494;
  32. }
  33. }
  34. .bl-describe-con {
  35. padding: 21px 15px;
  36. .describe-title {
  37. font-size: 17px;
  38. color: #000000;
  39. text-align: center;
  40. }
  41. .describe-box {
  42. margin-top: 20px;
  43. .describe-tag {
  44. width: 100%;
  45. height: 21px;
  46. border-bottom: 1rpx solid #10aeff;
  47. span {
  48. line-height: 21px;
  49. padding: 0 13px;
  50. box-sizing: border-box;
  51. text-align: center;
  52. transform: skew(-20deg);
  53. background: #10aeff;
  54. display: inline-block;
  55. margin: 1px 0 0 4px;
  56. i {
  57. font-size: 14px;
  58. color: #ffffff;
  59. transform: skew(20deg);
  60. display: inline-block;
  61. }
  62. }
  63. }
  64. .describe-img {
  65. width: 80px;
  66. height: 80px;
  67. border-radius: 12px;
  68. margin-top: 12px;
  69. }
  70. .describe-text {
  71. width: 100%;
  72. max-height: 410px;
  73. overflow-y: scroll;
  74. font-size: 14px;
  75. color: #666666;
  76. margin-top: 12px;
  77. line-height: 23px;
  78. }
  79. }
  80. }
  81. }