12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @import "@/assets/styles/common.scss";
- .link-text {
- font-size: 12px;
- margin-right: 10px;
- }
- .risk-detail {
- .risk-row {
- @include flexBetween;
- align-items: flex-start;
- .top-style{
- @include flexStart;
- margin-bottom:10px;
- cursor: pointer;
- &:last-child{
- margin-bottom:0;
- }
- .index{
- width: 20px;
- font-size: 12px;
- text-align: center;
- line-height: 20px;
- display: inline-block;
- background: #A1B3D2;
- border-radius: 100%;
- color:white;
- margin-right:10px;
- }
- .progress-row{
- width: 300px;
- .progress-bg{
- background: #A1B3D280;
- height:14px;
- width: 100%;
- border-radius: 6px;
- margin-top:5px;
- @include flexStart;
- font-size: 12px;
- .progress-bar{
- height:14px;
- border-radius: 6px;
- background: #A1B3D2;
- margin-right:5px;
- }
- }
- }
- }
- }
- .top-title{
- font-weight: bolder;
- margin-bottom: 10px;
- border-bottom: 1px solid #EEE;
- padding-bottom: 10px;
- }
- }
|