12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* pages/chinese/chinese.wxss */
- .chinese {
- width: 100%;
- padding: 0 15rpx;
- box-sizing: border-box;
- }
- .material,
- .works,
- .share {
- width: 100%;
- margin: 20rpx 0;
- border-radius: 25rpx;
- padding: 20rpx 0;
- box-sizing: border-box;
- background: #fff;
- position: relative;
- }
- .this-week {
- display: flex;
- padding: 0 25rpx;
- box-sizing: border-box;
- }
- .this-week image {
- width: 86rpx;
- height: 86rpx;
- }
- .lesson-name {
- display: flex;
- flex-direction: column;
- margin: 8rpx 16rpx;
- }
- .lesson-name text:nth-child(1) {
- height: 38rpx;
- font-size: 32rpx;
- font-weight: 600;
- }
- .lesson-name text:nth-child(2) {
- height: 30rpx;
- margin-top: 10rpx;
- font-size: 24rpx;
- color: #C3C3C3;
- }
- /* 标题定位到顶部 */
- .adsorb {
- position: fixed;
- left: 0;
- top: 72rpx;
- }
- /* 定位图片 */
- .questions-one {
- position: fixed;
- right: 20rpx;
- bottom: 30rpx;
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- }
- .questions-one image {
- width: 100%;
- height: 100%;
- }
- .upload-one {
- position: fixed;
- right: 20rpx;
- bottom: 150rpx;
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- }
- .upload-one image {
- width: 100%;
- height: 100%;
- }
|