12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- .score {
- margin: 0.4rem 0 0.52rem;
- // color: #fff;
- display: flex;
- align-items: center;
- padding-left: 0.6rem;
- }
- .scoreRight {
- margin-left: 0.56rem;
- h3 {
- font-size: 0.28rem;
- font-family: PingFangSC-Regular, PingFang SC;
- color: #4a4a4a;
- line-height: 0.4rem;
- margin-bottom: 0.09rem;
- }
- .time {
- margin-bottom: 0.16rem;
- font-size: 0.24rem;
- font-weight: 400;
- color: #6e6e6e;
- line-height: 0.32rem;
- }
- .btn {
- height: 0.66rem;
- font-size: 0.22rem;
- }
- }
- .circle {
- width: 1.94rem;
- height: 1.94rem;
- text-align: center;
- display: flex;
- flex-direction: column;
- justify-content: center;
- background: url('@/assets/home-circle.png') no-repeat center;
- background-size: 100% 100%;
- font-size: 0.34rem;
- font-weight: bold;
- }
- .card {
- border-radius: 0.08rem;
- box-shadow: 0rem 0rem 0.08rem 0.02rem rgba(191, 191, 191, 0.2);
- padding: 0.3rem;
- border: 0.01rem solid #eee;
- background: rgb(255, 255, 255);
- margin-bottom: 0.4rem;
- border-radius: 0.4rem 0 0.4rem 0;
- h3 {
- font-size: 0.3rem;
- color: #4a4a4a;
- line-height: 0.38rem;
- margin-bottom: 0.26rem;
- font-weight: bold;
- }
- ul {
- margin: 0;
- padding: 0;
- padding-bottom: 0.1rem;
- li {
- margin-bottom: 0.2rem;
- font-size: 0.26rem;
- font-weight: 400;
- color: #4a4a4a;
- line-height: 0.3rem;
- &:last-child {
- margin-bottom: 0;
- }
- }
- }
- i {
- display: inline-block;
- width: 0.14rem;
- height: 0.14rem;
- background-color: #4a90e2;
- border-radius: 50%;
- margin-right: 0.08rem;
- }
- }
- .card2 {
- .card;
- i {
- background-color: #ffc800;
- }
- }
|