type.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. .creditIndex {
  2. position: relative;
  3. margin: -85px 0 0 !important;
  4. width: 100%;
  5. .contentArea {
  6. width: 1000px;
  7. margin: 0 auto 57px auto;
  8. .tabList {
  9. width: 1000px;
  10. height: 56px;
  11. background: rgba(255, 255, 255, 1);
  12. display: flex;
  13. justify-content: center;
  14. align-items: center;
  15. .cell {
  16. position: relative;
  17. width: 56px;
  18. height: 100%;
  19. &:nth-child(1n + 2) {
  20. margin-left: 48px;
  21. }
  22. display: flex;
  23. justify-content: center;
  24. align-items: center;
  25. flex-direction: column;
  26. cursor: pointer;
  27. .word {
  28. height: 21px;
  29. font-size: 14px;
  30. font-weight: 600;
  31. color: rgba(25, 34, 46, 1);
  32. line-height: 21px;
  33. }
  34. .line {
  35. position: absolute;
  36. left: 0;
  37. bottom:0;
  38. width: 56px;
  39. height: 3px;
  40. background: rgba(48, 142, 255, 1);
  41. }
  42. }
  43. }
  44. .list {
  45. .cell {
  46. margin-top: 20px;
  47. padding: 38px 40px 38px 29px;
  48. background: #fff;
  49. border-radius: 8px;
  50. &:nth-child(1) {
  51. margin-top: 10px;
  52. }
  53. .cellBody {
  54. height: 64px;
  55. display: flex;
  56. align-items: center;
  57. .left {
  58. width: 64px;
  59. height: 64px;
  60. img {
  61. width: 64px;
  62. height: 64px;
  63. }
  64. }
  65. .center {
  66. margin-left: 17px;
  67. display: flex;
  68. justify-content: center;
  69. flex-direction: column;
  70. width: 718px;
  71. .title {
  72. font-size: 22px;
  73. font-weight: 600;
  74. color: rgba(51, 51, 51, 1);
  75. line-height: 30px;
  76. }
  77. .subTitle {
  78. margin-top: 10px;
  79. font-size: 12px;
  80. font-weight: 400;
  81. color: rgba(153, 153, 153, 1);
  82. line-height: 17px;
  83. }
  84. }
  85. .right {
  86. margin-left: 15px;
  87. width: 115px;
  88. height: 48px;
  89. display: flex;
  90. justify-content: center;
  91. align-items: center;
  92. background: rgba(236, 236, 236, 1);
  93. border-radius: 2px;
  94. cursor: not-allowed;
  95. p {
  96. font-size: 14px;
  97. font-weight: 500;
  98. color: rgba(102, 102, 102, 1);
  99. line-height: 20px;
  100. }
  101. &.ok {
  102. background: rgba(48, 142, 255, 1);
  103. box-shadow: 0 2px 6px 0 rgba(48, 142, 255, 0.3);
  104. border-radius: 2px;
  105. p {
  106. color: #fff;
  107. }
  108. }
  109. &.none {
  110. }
  111. &.click {
  112. cursor: pointer;
  113. }
  114. &.noClick {
  115. cursor: not-allowed;
  116. }
  117. }
  118. }
  119. }
  120. }
  121. }
  122. }