|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /* pages/questionnaire/questionnaire.wxss */
-
- page {
- overflow-y: scroll !important;
- }
-
- .Box {
- background-color: rgba(242, 242, 242, 1);
- overflow: hidden;
- }
-
- .imgBox {
- width: 96%;
- height: 300rpx;
- margin: 20rpx 15rpx;
- border-radius: 6rpx;
- /* background-color: aqua; */
- }
-
- .titleBox {
- width: 96%;
- margin: auto;
- }
-
- .title {
- font-size: 36rpx;
- font-weight: 700;
- color: #999;
- margin-top: 10rpx;
- }
-
- .content {
- padding: 20rpx 0;
- color: #999;
- font-size: 32rpx;
- /* overflow: hidden;
- text-overflow: ellipsis;
- height: 70rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2; */
- }
- .hidBox{
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- background-color: rgba(0, 0, 0, 0.2)
- }
- .contcBox{
- width: 80%;
- height: 300rpx;
- background-color: #fff;
-
- }
- .time{
- font-size: 32rpx;
- padding: 10rpx 0;
- color: #999;
- }
- .oneBox {
- width: 96%;
- margin: 20rpx auto;
- background-color: #fff;
- border-radius: 6rpx;
- padding-bottom: 20rpx;
- }
-
- .moreBox {
- width: 96%;
- margin: 20rpx auto;
- background-color: #fff;
- border-radius: 6rpx;
- padding-bottom: 20rpx;
- }
-
- .oneTitle {
- font-weight: 700;
- padding: 10rpx;
- font-size: 36rpx;
- margin: 10rpx auto;
- }
-
- .item_hie {
- text-align: center;
- line-height: 68rpx;
- margin-top: 10rpx;
- }
-
- .item_show {
- text-align: center;
- line-height: 68rpx;
- color: #fff;
- background-color: rgba(243, 151, 56, 1);
- margin-top: 10rpx;
- }
- .submit{
- width: 600rpx;
- height: 80rpx;
- background-color: rgba(0, 153, 255, 1);
- color: #fff;
- text-align: center;
- line-height: 80rpx;
- border-radius: 6rpx;
- margin: 20rpx auto;
- }
- .invalid{
- width: 600rpx;
- height: 80rpx;
- background-color: rgba(0, 0, 0, 0.2);
- color: #fff;
- text-align: center;
- line-height: 80rpx;
- border-radius: 6rpx;
- margin: 20rpx auto;
- }
|