type.scss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .creditIndex {
  2. position: relative;
  3. margin: -85px 0 0;
  4. width: 100%;
  5. .contentArea {
  6. width: 1000px;
  7. margin: 0 auto 57px auto;
  8. .list {
  9. .cell {
  10. margin-top: 20px;
  11. padding: 38px 40px 38px 29px;
  12. background: #fff;
  13. border-radius: 8px;
  14. .cellBody {
  15. height: 64px;
  16. display: flex;
  17. align-items: center;
  18. .left {
  19. width: 64px;
  20. height: 64px;
  21. img{
  22. width: 64px;
  23. height: 64px;
  24. }
  25. }
  26. .center {
  27. margin-left: 17px;
  28. display: flex;
  29. justify-content: center;
  30. flex-direction: column;
  31. width: 718px;
  32. .title {
  33. font-size:22px;
  34. font-weight:600;
  35. color:rgba(51,51,51,1);
  36. line-height:30px;
  37. }
  38. .subTitle {
  39. margin-top: 10px;
  40. font-size:12px;
  41. font-weight:400;
  42. color:rgba(153,153,153,1);
  43. line-height:17px;
  44. }
  45. }
  46. .right {
  47. margin-left: 15px;
  48. width:115px;
  49. height:48px;
  50. display: flex;
  51. justify-content: center;
  52. align-items: center;
  53. background:rgba(236,236,236,1);
  54. border-radius:2px;
  55. cursor: not-allowed;
  56. p {
  57. font-size:14px;
  58. font-weight:500;
  59. color:rgba(102,102,102,1);
  60. line-height:20px;
  61. }
  62. &.ok {
  63. background:rgba(48,142,255,1);
  64. box-shadow:0 2px 6px 0 rgba(48,142,255,0.3);
  65. border-radius:2px;
  66. cursor: pointer;
  67. p {
  68. color: #fff;
  69. }
  70. }
  71. }
  72. }
  73. }
  74. }
  75. }
  76. }