| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- .process {
- width: 100%;
- height: 12px;
- overflow: hidden;
- background-color: #eee;
- border-radius: 6px;
- }
- .process-inner {
- display: block;
- height: 100%;
- background-image: linear-gradient(to right, #baffff, #1fc5c5);
- border-radius: 6px;
- transition: width 500ms linear;
- }
- .card-title {
- font-size: 14px;
- font-weight: normal;
- color: rgb(0 0 0 / 55%);
- }
- .card-content {
- height: 30px;
- margin-top: 12px;
- overflow: hidden;
- font-size: 30px;
- line-height: 30px;
- color: black;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .card-expand {
- display: flex;
- align-items: center;
- width: 100%;
- height: 70px;
- margin-top: 24px;
- }
|