123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- /* pages/feedback/feedback.wxss */
- .menus {
- width: 100%;
- position: fixed;
- left: 0;
- top: 0;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- z-index: 99999;
- }
- .top{
- position: relative;
- width: 100%;
- background-color: #fff;
- }
- .top .picker{
-
- position: absolute;
- width: 90%;
- }
- .menu .van-dropdown-menu {
- width: 100%;
- position: fixed;
- left: 70rpx;
- top: 0rpx;
- z-index: 888;
- align-items: center;
- height: 129rpx !important;
- padding-top: 18rpx;
- z-index: 99999;
- }
- .menu1 .van-dropdown-menu {
- width: 100%;
- position: fixed;
- left: 70rpx;
- top: 0rpx;
- z-index: 888;
- align-items: center;
- height: 100rpx !important;
- padding-top: 75rpx;
- z-index: 99999;
- }
- .van-dropdown-menu__item {
- flex: 0.25 !important;
- z-index: 99999;
- }
- .menus text {
- margin-left: 20rpx;
- font-size: 35rpx;
- }
- .feed {
- height: 100%;
- position: relative;
- /* background: #ff000022; */
- }
- .feed .cut {
- width: 100%;
- display: flex;
- justify-content: center;
- margin-bottom: 30rpx;
- position: fixed;
- background: #fff;
- padding: 15rpx 0;
- z-index: 999;
- }
- .quest>view {
- margin-top: 10rpx;
- }
- .quest .user {
- margin-top: 15rpx;
- }
- .box {
- height: 80%;
- margin: 110rpx 0 40rpx 0;
- width: 100%;
- }
- .time {
- /* padding: 20rpx 20rpx; */
- padding: 20rpx 0;
- border-top: 1rpx solid #efefef;
- width: 92%;
- margin: 0 auto;
- }
- .list {
- background: #fff;
- margin-top: 15rpx;
- width: 92%;
- margin: 15rpx auto 0;
- border: 1px solid #d8d8d8;
- border-radius: 20rpx;
- box-shadow: 0 0 6rpx 0 rgba(216, 216, 216, 1);
- }
- .list .info {
- display: flex;
- padding: 15rpx 0;
- }
- .list .quest {
- width: 70%;
- }
- .list text {
- font-size: 26rpx;
- }
- .list .read {
- margin-top: 15rpx;
- }
- .list .read view {
- color: #FE5C28;
- font-size: 26rpx;
- }
- .list image {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- vertical-align: middle;
- margin: 5rpx 15rpx 0 20rpx;
- }
|