| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .course-card{
- cursor: pointer;
- width: 340px;
- height: 328px;
- border-radius: 5px;
- margin-bottom: 20px;
- background-color: #F8F9FB;
- display: flex;
- flex-direction: column;
- align-items: center;
- &__picture{
- width: 100%;
- height: 180px;
- }
- &__header{
- margin: 15px 20px 5px 20px;
- }
- &__title{
- display: block;
- color: $common-color;
- font-weight: 500;
- font-size: 18px;
- }
- &__info{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- &__status{
- color: #666666;
- }
- &__origin{
- display: block;
- color: $sub-color;
- font-size: 13px;
- }
- &__description{
- color: $note-color;
- width: 90%;
- padding: 5px 20px;
- font-size: 14px;
- background-color: #FFFFFF;
- border-radius: 8px;
- height: 66px;
- }
- .el-card__body{
- padding: 0;
- }
- }
|