123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- .courses_container {
- width: 100%;
- height: 100%;
- .course_item {
- width: 100%;
- height: 400rpx;
- background: #fff;
- // display: flex;
- // flex-direction: column;
- // align-items: center;
- .course_icon {
- display: block;
- width: 704rpx;
- height: 290rpx;
- border-radius: 20rpx;
- margin: 0 auto;
- }
- .course_info {
- width: 704rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- margin: 17rpx auto;
- .course_title {
- color: #373737;
- font-size: 30rpx;
- }
- .course_btn {
- width: 270rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .btn_icon {
- width: 56rpx;
- height: 56rpx;
- }
- .btn_text {
- font-size: 28rpx;
- color: rgba(0, 0, 0, .6);
- }
- }
- }
- }
- }
|