123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /* pages/testpaper/testpaper.wxss */
- page{overflow: auto;}
- .testpaper{
- padding: 0 56rpx;
- }
- .testpaper_cont{
- padding: 56rpx 0;
- }
- .is_navbar{
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- z-index: 10;
- }
- .list_name{
- font-size:40rpx;
- font-weight:bold;
- color: #00C7C6;
- line-height:40rpx;
- margin-top: 56rpx;
- }
- .testpaper_list:first-child .list_name{margin-top: 0;}
- .list_desc{
- font-size:28rpx;
- font-weight:400;
- color: #8C8C8C;
- line-height:44rpx;
- margin-top: 16rpx;
- }
- /* 问题内容item */
- .list_content{margin-top: 32rpx;}
- .item_inp, .item_sel{
- border-radius: 10rpx;
- padding: 22rpx 30rpx;
- margin-top: 32rpx;
- }
- .item_selIs{
- background-color: #00C7C6;
- }
- .item_inp{
- background-color: #F3F3F3;
- display: flex;
- align-items: center;
- position: relative;
- }
- .input_area{
- width: 100%;
- height: 298rpx;
- }
- .area_tit{
- position: absolute;
- right: 40rpx;
- bottom: 26rpx;
- color: #8C8C8C;
- }
- .item_text{
- flex: 0 0 142rpx;
- }
- .input_inp{
- flex: 1 0 auto;
- height: 72rpx;
- line-height: 72rpx;
- }
- .select_img{
- width:24rpx;
- height:24rpx;
- margin-right: 22rpx;
- display: inline-block;
- }
- .isBtn{
- height:82rpx;
- line-height: 82rpx;
- background:linear-gradient(90deg,rgba(0,199,198,0.97) 0%,rgba(0,210,210,1) 100%);
- box-shadow:0px 14rpx 44rpx 2px rgba(0,199,198,0.2);
- border-radius:40rpx;
- margin-top: 138rpx;
- font-size:36rpx;
- color: #ffffff;
- font-weight:500;
- }
|