123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- /* pages/ucenter/myworksheet/myworksheet.wxss */
- page {
- background-color: #f4f4f4;
- height: 100%;
- overflow-y:hidden;
- }
- .context {
- height: calc(100% - 68rpx);
- }
- .context_block{
- width: 100%;
- height: 32rpx;
- }
- .map_text {
- position: relative;
- height: 290rpx;
- background: #fff;
- padding: 0 30rpx;
- margin: 0 20rpx 32rpx 20rpx;
- border-radius: 20rpx;
- box-shadow: 0rpx 4rpx 4rpx #d5d5d5;
- }
- .map_text.active{
- background-color: #ebebeb;
- }
- .worksheet_text_title {
- height: 105rpx;
- width: 100%;
- display: flex;
- }
- .worksheet_text_title1 {
- width: 100%;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- padding-top: 20rpx;
- }
- .worksheet {
- width: 36rpx;
- height: 38rpx;
- margin: 30rpx 30rpx 30rpx 0;
- flex-shrink: 0;
- overflow: hidden;
- }
- .worksheet image {
- width: 36rpx;
- height: 38rpx;
- }
- text {
- margin: 0 0 20rpx 0;
- display: block;
- font-size: 24rpx;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #545253;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- line-height: 24rpx;
- height: 24rpx;
- min-height: 24rpx;
- }
- .bold{
- font-weight: bold;
- }
- .worksheet_text_title1 .inline {
- font-size: 30rpx;
- line-height: 32rpx;
- height: 36rpx;
- min-height: 36rpx;
- margin-right: 10rpx;
- }
- .worksheet_text_title1 .h1{
- font-size: 20rpx;
- }
- text.inline {
- display: inline-block;
- }
- .h1 {
- color: #959595;
- }
- .detail {
- position: absolute;
- right: 0;
- bottom: 0;
- margin: 30rpx;
- font-size: 20rpx;
- color: #959595;
- }
- .detail image {
- width: 22rpx;
- height: 17rpx;
- }
- .addNew{
- background: #F29B76;
- height: 68rpx;
- margin: 30rpx 20rpx;
- border-radius: 60rpx;
- width: calc(100% - 40rpx);
- color: #FFFFFF;
- font-size: 32rpx;
- line-height: 68rpx;
- text-align: center;
- font-weight: bold;
- }
|