style.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @import "@/assets/styles/common.scss";
  2. .link-text {
  3. font-size: 12px;
  4. margin-right: 10px;
  5. }
  6. .risk-detail {
  7. .risk-row {
  8. @include flexBetween;
  9. align-items: flex-start;
  10. .top-style{
  11. @include flexStart;
  12. margin-bottom:10px;
  13. cursor: pointer;
  14. &:last-child{
  15. margin-bottom:0;
  16. }
  17. .index{
  18. width: 20px;
  19. font-size: 12px;
  20. text-align: center;
  21. line-height: 20px;
  22. display: inline-block;
  23. background: #A1B3D2;
  24. border-radius: 100%;
  25. color:white;
  26. margin-right:10px;
  27. }
  28. .progress-row{
  29. width: 300px;
  30. .progress-bg{
  31. background: #A1B3D280;
  32. height:14px;
  33. width: 100%;
  34. border-radius: 6px;
  35. margin-top:5px;
  36. @include flexStart;
  37. font-size: 12px;
  38. .progress-bar{
  39. height:14px;
  40. border-radius: 6px;
  41. background: #A1B3D2;
  42. margin-right:5px;
  43. }
  44. }
  45. }
  46. }
  47. }
  48. .top-title{
  49. font-weight: bolder;
  50. margin-bottom: 10px;
  51. border-bottom: 1px solid #EEE;
  52. padding-bottom: 10px;
  53. }
  54. }