| 1234567891011121314151617181920212223242526272829303132333435 | /* 技能培训课程 */page {	height: 100%;	background-color: #f2f2f2;	font-family: 'PingFangSC-Regular, PingFang SC';}.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 #e0e0e0;				border-radius: 10rpx;			}			.right {				view {					color: #525252;					font-size: 28rpx;					line-height: 50rpx;					&:first-child {						font-size: 36rpx;						color: #0B0B0B;					}				}			}		}	}}
 |