1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .score {
- margin: 40px 0 52px;
- // color: #fff;
- display: flex;
- align-items: center;
- padding-left: 60px;
- }
- .scoreRight {
- margin-left: 56px;
- h3 {
- font-size: 28px;
- font-family: PingFangSC-Regular, PingFang SC;
- color: #4a4a4a;
- line-height: 40px;
- margin-bottom: 9px;
- }
- .time {
- margin-bottom: 16px;
- font-size: 24px;
- font-weight: 400;
- color: #6e6e6e;
- line-height: 32px;
- }
- .btn {
- height: 66px;
- width: 134px;
- font-size: 22px;
- }
- }
- .card {
- border-radius: 8px;
- box-shadow: 0px 0px 8px 2px rgba(191, 191, 191, 0.2);
- padding: 24px 20px;
- border: 1px solid #eee;
- background: rgb(255, 255, 255);
- margin-bottom: 40px;
- h3 {
- font-size: 30px;
- color: #4a4a4a;
- line-height: 38px;
- margin-bottom: 26px;
- font-weight: bold;
- }
- ul {
- margin: 0;
- padding: 0;
- padding-bottom: 10px;
- li {
- margin-bottom: 20px;
- font-size: 26px;
- font-weight: 400;
- color: #4a4a4a;
- line-height: 30px;
- &:last-child {
- margin-bottom: 0;
- }
- }
- }
- i {
- display: inline-block;
- width: 14px;
- height: 14px;
- background-color: #4a90e2;
- border-radius: 50%;
- margin-right: 8px;
- }
- }
- .card2 {
- .card;
- i {
- background-color: #ffc800;
- }
- }
|