|
- /* package_mine/pages/feedbackDetail/index.wxss */
- .detail_container {
- width: 100%;
- min-height: 100vh;
- }
- .detail_head {
- padding: 70rpx 50rpx 80rpx 50rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background: linear-gradient(180deg, #027CFF, #61A7FF);
- }
- .head_river {
- font-size: 40rpx;
- font-weight: 600;
- color: #ffffff;
- font-family: DFPLiJinHeiW8-GB;
- }
- .head_status {
- padding: 10rpx 26rpx;
- color: #3275E9;
- font-size: 26rpx;
- background-color: #ffffff;
- border-radius: 4rpx;
- }
- .info_box {
- width: 100%;
- margin-top: -10rpx;
- padding: 30rpx;
- background-color: #ffffff;
- border-top-left-radius: 10rpx;
- border-top-right-radius: 10rpx;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- overflow: hidden;
- }
- .content {
- font-size: 28rpx;
- color: #4C4C4C;
- font-family: SourceHanSansCN-Normal;
- }
- .feedback_title {
- padding-left: 24rpx;
- margin-bottom: 30rpx;
- font-size: 30rpx;
- color: #000000;
- font-weight: bold;
- position: relative;
- }
- .feedback_title::before {
- content: '';
- width: 10rpx;
- height: 26rpx;
- border-radius: 5rpx;
- background-color: #3275E9;
- position: absolute;
- left: 0;
- top: 8rpx;
- }
- .feedback_info {
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .image_box {
- width: 100%;
- padding: 30rpx 0;
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-end;
- align-items: flex-start;
- }
- .image_item {
- width: 136rpx;
- height: 114rpx;
- border-radius: 4rpx;
- margin-left: 30rpx;
- }
-
- .detail_item {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-top: 1rpx solid #EDEDED;
- }
- .item_title {
- padding: 30rpx 0;
- font-size: 28rpx;
- color: #6F6F6F;
- }
- .item_value {
- font-size: 28rpx;
- color: #4F4F4F;
- }
- .textera_box {
- width: 100%;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .item_textera {
- box-sizing: border-box;
- width: 100%;
- padding: 20rpx 30rpx;
- background-color: rgba(32, 35, 42, 0.05);
- border-radius: 10rpx;
- font-size: 28rpx;
- color: rgba(79, 79, 79, 1);
- }
- .image_list {
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- border-top: 1rpx solid #EDEDED;
-
- }
-
-
-
|