123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /* pages/teaching/teaching.wxss */
- .list{
- margin: 0 24rpx;
- padding: 0;
- color: #393939;
- font-size: 30rpx;
- }
- .list-items{
- border-bottom: 1rpx solid #D0D5E6;
- padding-bottom: 24rpx;
- }
- .list-items-img{
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- }
- .list-items>view{
- display: inline-block;
- position: relative;
- left: 10rpx;
- bottom:28rpx;
- }
- .list-btn{
- margin-bottom: 100rpx;
- }
- .list-btn-items{
- position: relative;
- margin-top: 24rpx;
- display: inline-block;
- }
- .list-btn-text{
- background:rgba(255,100,101,0.2);
- border-radius:29rpx;
- font-size: 24rpx;
- color: #FF6465;
- margin-right: 34rpx;
- padding: 0 33rpx;
- text-align: center;
- line-height: 58rpx;
- }
- .list-btn-add{
- width:160rpx;
- height:58rpx;
- line-height: 58rpx;
- background:rgba(241,243,250,1);
- border-radius:29rpx;
- font-size: 24rrpx;
- color: #D0D5E6;
- display: inline-block;
- text-align: center;
- margin-top: 24rpx;
- }
- .list-btn-close{
- width: 34rpx;
- height: 34rpx;
- border-radius: 50%;
- position: absolute;
- right: 21rpx;
- top:-10rpx;
- }
- .list-save{
- background: #FF6465;
- position: fixed;
- bottom: 0;
- left: 0;
- text-align: center;
- height: 94rpx;
- line-height: 94rpx;
- font-size: 34rpx;
- color: #fff;
- width: 100%;
- }
|