123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- .card {
- background: #FFFFFF;
- border-radius: 20rpx;
- margin: 25rpx;
- padding-bottom: 10rpx;
- }
- .card1 {
- background: #FFFFFF;
- border-top-left-radius: 20rpx;
- border-top-right-radius: 20rpx;
- margin: 25rpx;
- padding-bottom: 10rpx;
- }
- .top-img {
- position: relative;
- }
- .score-bg-img {
- width: 700rpx;
- height: 143rpx;
- position: relative;
- }
- .score-tip {
- position: absolute;
- left: 40rpx;
- top: 50%;
- transform: translateY(-50%);
- font-size: 30rpx;
- color: #FFFFFF;
- }
- .btn-group{
- position: absolute;
- right: 0;
- top: 0;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-end;
- width: 700rpx;
- height: 143rpx;
- }
- .btn-group .btn{
- position: relative;
- width: 100%;
- height: 48rpx;
- }
- .btn-group .btn:first-child{
- margin-bottom: 16rpx;
- }
- .score-btn-bg {
- width: 180rpx;
- height: 48rpx;
- line-height: 52rpx;
- position: absolute;
- right: 0;
- /* top: 50%;
- transform: translateY(-50%); */
- background: rgba(255, 255, 255, 0.32);
- font-size: 30rpx;
- color: #FFFFFF;
- text-align: center;
- }
- .score-bg-tag {
- width: 48rpx;
- height: 48rpx;
- position: absolute;
- right: 160rpx;
- /* top: 50%;
- transform: translateY(-50%); */
- }
- .score-item {
- margin: 15rpx 25rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .score-left {
- flex: 1;
- font-size: 24rpx;
- color: #666666;
- }
- .score-right {
- margin-left: 5rpx;
- font-size: 26rpx;
- color: #FF4330;
- }
- .score-course-img {
- padding: 30rpx 0 40rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
|