1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* compontents/curriculum/curriculum.wxss */
- .record {
- width:100%;
- margin:20rpx 0;
- border-radius:25rpx;
- padding: 28rpx 28rpx 61rpx 28rpx;
- box-sizing:border-box;
- background:#fff;
- position: relative;
-
- }
- .record_con {
- overflow: hidden;
- }
- .record_title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .record_title text:nth-child(1) {
- font-size: 36rpx;
- font-weight: 600;
- }
- .record_title text:nth-child(2) {
- font-size: 28rpx;
- color: #878787;
- }
- .record_list {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height:32rpx;
- margin-top:24rpx;
- }
- .record_list text {
- color: #444;
- font-size: 28rpx;
- }
- .unfold {
- position: absolute;
- right: 28rpx;
- bottom: 24rpx;
- font-size: 28rpx;
- line-height: 28rpx;
- height: 28rpx;
- color: #93AAFA;
- }
- .dirImg{
- width: 16rpx;
- height: 9rpx;
- position: absolute;
- top: 50%;
- left: -20rpx;
- margin-top: -5rpx;
- }
|