|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /* pages/questionnaire/questionnaireLsit/questionnaireLsit.wxss */
-
- page {
- overflow-y: scroll !important;
- }
-
- .questionLsi {
- background-color: #fff;
- border-radius: 6rpx;
- margin: 20rpx auto;
- overflow: hidden;
- width: 96%;
- position: relative;
- height: 520rpx;
- }
-
- .img {
- width: 96%;
- margin: 20rpx 16rpx;
- /* background-color: aqua; */
- height: 300rpx;
- }
-
- .title {
- width: 96%;
- font-size: 36rpx;
- font-weight: 700;
- color: #999;
- margin: auto;
- }
-
- .conten {
- width: 96%;
- padding: 20rpx 0;
- color: #999;
- font-size: 32rpx;
- margin: 0 auto 20rpx auto;
- overflow: hidden;
- text-overflow: ellipsis;
- height: 70rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
-
- .accomplish {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: rgb(0, 0, 0, 0.2);
- text-align: center;
- line-height: 480rpx;
- color: #fff;
- font-size: 36rpx;
- font-weight: 700;
- }
-
- .noData {
- width: 100%;
- z-index: 1000;
- position: fixed;
- top: 0;
- left: 0;
- text-align: center;
- line-height: 100vh;
- height: 100vh;
- background-color: rgb(0, 0, 0, 0.2);
- color: #fff;
- }
- .dingdan {
- margin-top: 220rpx;
- }
-
- .dingdan text:nth-of-type(1) {
- display: block;
- font-size: 34rpx;
- color: #333;
- letter-spacing: 0;
- text-align: center;
- }
-
- .dingdan text:nth-of-type(2) {
- display: block;
- font-size: 28rpx;
- color: #999;
- letter-spacing: 0;
- text-align: center;
- }
-
- .dingdan image {
- display: block;
- width: 300rpx;
- height: 300rpx;
- margin: 0 auto 16rpx;
- }
|