| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- .creditIndex {
- position: relative;
- margin: -85px 0 0 !important;
- width: 100%;
- .contentArea {
- width: 1000px;
- margin: 0 auto 57px auto;
- .tabList {
- width: 1000px;
- height: 56px;
- background: rgba(255, 255, 255, 1);
- display: flex;
- justify-content: center;
- align-items: center;
- .cell {
- position: relative;
- width: 56px;
- height: 100%;
- &:nth-child(1n + 2) {
- margin-left: 48px;
- }
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- cursor: pointer;
- .word {
- height: 21px;
- font-size: 14px;
- font-weight: 600;
- color: rgba(25, 34, 46, 1);
- line-height: 21px;
- }
- .line {
- position: absolute;
- left: 0;
- bottom:0;
- width: 56px;
- height: 3px;
- background: rgba(48, 142, 255, 1);
- }
- }
- }
- .list {
- .cell {
- margin-top: 20px;
- padding: 38px 40px 38px 29px;
- background: #fff;
- border-radius: 8px;
- &:nth-child(1) {
- margin-top: 10px;
- }
- .cellBody {
- height: 64px;
- display: flex;
- align-items: center;
- .left {
- width: 64px;
- height: 64px;
- img {
- width: 64px;
- height: 64px;
- }
- }
- .center {
- margin-left: 17px;
- display: flex;
- justify-content: center;
- flex-direction: column;
- width: 718px;
- .title {
- font-size: 22px;
- font-weight: 600;
- color: rgba(51, 51, 51, 1);
- line-height: 30px;
- }
- .subTitle {
- margin-top: 10px;
- font-size: 12px;
- font-weight: 400;
- color: rgba(153, 153, 153, 1);
- line-height: 17px;
- }
- }
- .right {
- margin-left: 15px;
- width: 115px;
- height: 48px;
- display: flex;
- justify-content: center;
- align-items: center;
- background: rgba(236, 236, 236, 1);
- border-radius: 2px;
- cursor: not-allowed;
- p {
- font-size: 14px;
- font-weight: 500;
- color: rgba(102, 102, 102, 1);
- line-height: 20px;
- }
- &.ok {
- background: rgba(48, 142, 255, 1);
- box-shadow: 0 2px 6px 0 rgba(48, 142, 255, 0.3);
- border-radius: 2px;
- p {
- color: #fff;
- }
- }
- &.none {
- }
- &.click {
- cursor: pointer;
- }
- &.noClick {
- cursor: not-allowed;
- }
- }
- }
- }
- }
- }
- }
|