12345678910111213141516171819202122232425262728293031323334353637 |
- /* 技能培训课程 */
- /* #ifndef H5 */
- page {
- height: 100%;
- background-color: #f2f2f2;
- font-family: 'PingFangSC-Regular, PingFang SC';
- }
- /* #endif */
- .course {
-
- &-list {
- padding: 26rpx 30rpx;
- &-item {
- background-color: #fff;
- padding: 30rpx 32rpx;
- border-radius: 10rpx;
- display: flex;
- margin-bottom: 20rpx;
- .left {
- margin-right: 22rpx;
- border: solid 1px #b6b6b6;
- border-radius: 10rpx;
- }
- .right {
- view {
- color: #525252;
- font-size: 28rpx;
- line-height: 50rpx;
- &:first-child {
- font-size: 36rpx;
- color: #0B0B0B;
- }
- }
- }
- }
- }
- }
|