123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- /* pages/worksheetinfo/worksheetinfo.wxss */
- page {
- height: 100%;
- overflow-y: hidden;
- }
- scroll-view{
- height:calc(100% - 180rpx);
- }
- .context {
- margin: 0rpx 32rpx;
- height: 87rpx;
- border-bottom: 1rpx solid #f7f7f7;
- line-height: 87rpx;
- min-height: 87rpx;
- display: flex;
- }
- text {
- font-size: 28rpx;
- 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;
- flex-shrink: 0;
- }
- .picker{
- width: 100%;
- text-align: right;
- }
- .picker text{
- color: #959595;
- }
- .picker1{
- width: 100%;
- text-align: right;
- }
- .picker1 text{
- color: #959595;
- }
- .picker2{
- flex-shrink: 0;
- margin-left: 10rpx;
- text-align: right;
- }
- .picker2 text{
- color: #959595;
- }
- .input{
- height: 87rpx;
- line-height: 87rpx;
- min-height: 87rpx;
- color: #959595;
- font-size: 28rpx;
- text-align: right;
- margin-right: 0;
- width: 100%;
- }
- .input .span_withoutclear{
- float: left;
- line-height: 87rpx;
- min-height: 87rpx;
- width: 100%;
- }
- .input .span_withclear{
- float: left;
- line-height: 87rpx;
- min-height: 87rpx;
- width: calc(100% - 50rpx);
- }
- .img_clear{
- float: right;
- width: 40rpx;
- height:40rpx;
- margin: 30rpx -4rpx 30rpx 8rpx;
- }
- .context_image {
- margin: 0rpx 32rpx;
- height: 239rpx;
- border-bottom: 1rpx solid #f7f7f7;
- line-height: 87rpx;
- min-height: 239rpx;
- }
- .context_image .add {
- width: 120rpx;
- height: 120rpx;
- border: 1rpx solid #f7f7f7;
- line-height: 120rpx;
- min-height: 120rpx;
- }
- .add.active {
- background-color: #ebebeb;
- }
- .add text {
- width: 120rpx;
- display: block;
- color: #959595;
- font-size: 80rpx;
- font-weight: 100;
- text-align: center;
- }
- .question-images {
- margin: 0rpx 32rpx;
- border-bottom: 1rpx solid #f7f7f7;
- }
- .q-image-wrap {
- width: 120rpx;
- height: 120rpx;
- display: inline-block;
- margin: 20rpx;
- }
- .q-image-wrap image {
- width: 120rpx;
- height: 120rpx;
- }
- .q-image-remover {
- width: 120rpx;
- height: 30rpx;
- text-align: center;
- font-size: 28rpx;
- line-height: 30rpx;
- 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;
- }
- .submitbutton{
- position: absolute;
- bottom: 0;
- width: calc(100% - 60rpx);
- font-size: 32rpx;
- margin: 50rpx 30rpx;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #ffffff;
- text-overflow: ellipsis;
- white-space: nowrap;
- background-color: #2583c1;
- }
- .submitbutton.button-hover{
- background-color: #1ca05e;
- }
|