123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- .itemWrap {
- padding: 12px 15px 15px;
- border-radius: 10px;
- background-color: #fff;
- margin: 0 13px 12px;
- .itemWrapTop {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- padding-bottom: 12px;
- border-bottom: 1px solid #f2f2f2;
- .itemWrapTopLeft {
- display: flex;
- flex-direction: row;
- align-items: center;
- .clockWrap {
- width: 18px;
- height: 18px;
- margin-right: 6px;
- img {
- width: 100%;
- height: 100%;
- }
- }
- .leftTimer {
- font-size: 14px;
- font-weight: 500;
- color: #333333;
- line-height: 20px;
- }
- }
- .itemWrapTopRight {
- display: flex;
- flex-direction: row;
- align-items: center;
- .passLabel {
- font-size: 14px;
- font-weight: 500;
- color: #4ab78e;
- line-height: 20px;
- }
- .unpassLabel {
- font-size: 14px;
- font-weight: 500;
- color: #f44541;
- line-height: 20px;
- }
- .invalidLabel {
- font-size: 14px;
- font-weight: 500;
- color: #ccc;
- line-height: 20px;
- }
- .passIcon {
- font-size: 16px;
- margin-right: 4px;
- }
- .msgIcon {
- font-size: 24px;
- }
- }
- }
- .itemWrapBottom {
- padding-top: 15px;
- .courseInfo {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- // padding-bottom: 15px;
- .courseInfoLeft {
- display: flex;
- flex-direction: row;
- align-items: center;
- .headImgs {
- width: 48px;
- height: 48px;
- border-radius: 50%;
- overflow: hidden;
- margin-right: 10px;
- }
- .infoMsg {
- .infoMsgMain {
- font-size: 16px;
- font-weight: 600;
- color: #333333;
- line-height: 22px;
- }
- .infoMsgSub {
- font-size: 12px;
- font-weight: 500;
- color: #ffffff;
- line-height: 19px;
- padding: 1px 8px;
- border-radius: 4px;
- margin-top: 3px;
- text-align: center;
- display: inline-block;
- }
- .student {
- background-color: #ff8057;
- }
- .teacher {
- background-color: #64a9ff;
- }
- }
- }
- .courseInfoRight {
- display: flex;
- flex-direction: row;
- align-items: center;
- .approvalType {
- font-size: 16px;
- font-weight: 500;
- color: #333333;
- // line-height: 22px;
- margin-right: 16px;
- }
- .icons {
- font-size: 12px;
- color: #d8d8d8;
- }
- }
- }
- }
- }
|