myworksheet.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /* pages/ucenter/myworksheet/myworksheet.wxss */
  2. page {
  3. background-color: #f4f4f4;
  4. height: 100%;
  5. overflow-y:hidden;
  6. }
  7. .context {
  8. height: calc(100% - 68rpx);
  9. }
  10. .context_block{
  11. width: 100%;
  12. height: 32rpx;
  13. }
  14. .map_text {
  15. position: relative;
  16. height: 290rpx;
  17. background: #fff;
  18. padding: 0 30rpx;
  19. margin: 0 20rpx 32rpx 20rpx;
  20. border-radius: 20rpx;
  21. box-shadow: 0rpx 4rpx 4rpx #d5d5d5;
  22. }
  23. .map_text.active{
  24. background-color: #ebebeb;
  25. }
  26. .worksheet_text_title {
  27. height: 105rpx;
  28. width: 100%;
  29. display: flex;
  30. }
  31. .worksheet_text_title1 {
  32. width: 100%;
  33. text-overflow: ellipsis;
  34. white-space: nowrap;
  35. overflow: hidden;
  36. padding-top: 20rpx;
  37. }
  38. .worksheet {
  39. width: 36rpx;
  40. height: 38rpx;
  41. margin: 30rpx 30rpx 30rpx 0;
  42. flex-shrink: 0;
  43. overflow: hidden;
  44. }
  45. .worksheet image {
  46. width: 36rpx;
  47. height: 38rpx;
  48. }
  49. text {
  50. margin: 0 0 20rpx 0;
  51. display: block;
  52. font-size: 24rpx;
  53. font-family: 'Lucida Sans',
  54. 'Lucida Sans Regular',
  55. 'Lucida Grande',
  56. 'Lucida Sans Unicode',
  57. Geneva,
  58. Verdana,
  59. sans-serif;
  60. color: #545253;
  61. text-overflow: ellipsis;
  62. white-space: nowrap;
  63. overflow: hidden;
  64. line-height: 24rpx;
  65. height: 24rpx;
  66. min-height: 24rpx;
  67. }
  68. .bold{
  69. font-weight: bold;
  70. }
  71. .worksheet_text_title1 .inline {
  72. font-size: 30rpx;
  73. line-height: 32rpx;
  74. height: 36rpx;
  75. min-height: 36rpx;
  76. margin-right: 10rpx;
  77. }
  78. .worksheet_text_title1 .h1{
  79. font-size: 20rpx;
  80. }
  81. text.inline {
  82. display: inline-block;
  83. }
  84. .h1 {
  85. color: #959595;
  86. }
  87. .detail {
  88. position: absolute;
  89. right: 0;
  90. bottom: 0;
  91. margin: 30rpx;
  92. font-size: 20rpx;
  93. color: #959595;
  94. }
  95. .detail image {
  96. width: 22rpx;
  97. height: 17rpx;
  98. }
  99. .addNew{
  100. background: #F29B76;
  101. height: 68rpx;
  102. margin: 30rpx 20rpx;
  103. border-radius: 60rpx;
  104. width: calc(100% - 40rpx);
  105. color: #FFFFFF;
  106. font-size: 32rpx;
  107. line-height: 68rpx;
  108. text-align: center;
  109. font-weight: bold;
  110. }