| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- .creditIndex {
- position: relative;
- margin: -85px 0 0;
- width: 100%;
- .contentArea {
- width: 1000px;
- margin: 0 auto 57px auto;
- .list {
- .cell {
- margin-top: 20px;
- padding: 55px 40px 20px 40px;
- background: #fff;
- border-radius: 8px;
- .cellBody {
- height: 108px;
- display: flex;
- align-items: center;
- .left {
- width: 108px;
- height: 108px;
- img{
- width: 108px;
- height: 108px;
- }
- }
- .center {
- margin-left: 37px;
- display: flex;
- justify-content: center;
- flex-direction: column;
- width: 718px;
- .title {
- font-size:25px;
- font-weight:600;
- color:rgba(51,51,51,1);
- line-height:36px;
- }
- .subTitle {
- margin-top: 10px;
- font-size:14px;
- font-weight:400;
- color:rgba(153,153,153,1);
- line-height:20px;
- }
- }
- .right {
- margin-left: 50px;
- height: 14px;
- width: 8px;
- background: url('~@/assets/img/credit/rightIcon.png') no-repeat;
- background-size: cover;
- }
- }
- .lines {
- width: 100%;
- height: 1px;
- background-color: rgba(244,244,244,1);
- margin: 60px auto 20px auto;
- }
- .cellBottom {
- display: flex;
- .bottomBox {
- margin-left: 13px;
- height: 38px;
- min-width: 106px;
- padding: 9px 25px;
- font-size:14px;
- font-weight:500;
- color:rgba(102,102,102,1);
- line-height:20px;
- background:rgba(255,255,255,1);
- box-shadow:0 6px 23px 0 rgba(13,24,36,0.07);
- border-radius:2px;
- }
- }
- }
- }
- }
- }
|