261 lines
4.5 KiB
Plaintext
Raw Normal View History

2024-07-30 16:33:21 +08:00
.containerView.public {
background: none;
2024-08-15 15:23:13 +08:00
padding-bottom: 320rpx;
2024-07-30 16:33:21 +08:00
}
.elHidden {
visibility: hidden;
}
.selfLine {
height: 2rpx;
background: rgb(126, 126, 126, 0.2);
}
.topHead {
position: relative;
height: 400rpx;
background: #2b2d3d;
}
.topHead .navigatorView {
position: absolute;
left: 0;
top: 120rpx;
width: 100%;
box-sizing: border-box;
padding: 0 30rpx;
}
.topHead .navigatorView .backView {
display: flex;
justify-content: flex-start;
align-items: center;
}
.topHead .navigatorView .backView .label {
color: white;
font-size: 28rpx;
line-height: 1;
margin-left: 8rpx;
}
.topHead .navigatorView .title {
position: absolute;
top: 14rpx;
left: 50%;
transform: translateX(-50%);
font-size: 32rpx;
color: #FFFFFF;
line-height: 1rpx;
}
.topHead .contentView {
position: absolute;
left: 30rpx;
bottom: 100rpx;
}
.topHead .contentView .label1 {
font-size: 28rpx;
color: white;
line-height: 1;
}
.topHead .contentView .label2 {
font-size: 24rpx;
color: white;
line-height: 1;
margin-top: 20rpx;
}
.mainView {
position: relative;
box-sizing: border-box;
margin: -20rpx 20rpx 20rpx;
z-index: 999;
}
.mainView .statusView {
box-sizing: border-box;
position: relative;
padding: 40rpx 30rpx;
background: white;
border-radius: 8rpx;
line-height: 1;
}
.mainView .statusView .label {
font-size: 28rpx;
font-weight: bold;
}
.mainView .statusView .tag {
position: absolute;
right: 30rpx;
top: 50%;
transform: translateY(-50%);
background: #ee6f21;
color: white;
padding: 10rpx 20rpx;
border-radius: 6rpx;
2024-08-20 14:19:18 +08:00
font-size: 24rpx;
2024-07-30 16:33:21 +08:00
}
.mainView .statusView .time {
margin-top: 20rpx;
2024-08-20 14:19:18 +08:00
font-size: 28rpx;
2024-07-30 16:33:21 +08:00
}
.mainView .statusView .leftImg {
position: absolute;
top: 26rpx;
left: 20rpx;
width: 60rpx;
height: 60rpx;
border-radius: 8rpx;
}
.mainView .reportView {
margin-top: 20rpx;
padding-bottom: 60rpx;
border-radius: 8rpx;
background: white;
}
.mainView .reportView .topTitle {
padding: 30rpx;
font-size: 28rpx;
font-weight: bold;
}
.mainView .reportView .itemView {
display: flex;
justify-content: flex-start;
align-items: flex-start;
margin-top: 30rpx;
padding: 0 30rpx;
}
.mainView .reportView .itemView .label {
flex-shrink: 0;
width: 200rpx;
font-size: 30rpx;
color: gray;
}
.mainView .reportView .itemView .content {
font-size: 30rpx;
word-break: break-all;
}
2024-08-08 10:42:56 +08:00
.mainView .reportView .itemView .content .voiceView {
display: flex;
justify-content: flex-start;
align-items: center;
}
2024-08-15 15:23:13 +08:00
.mainView .reportView .itemView .content .voiceView .voiceTimeView {
margin-left: 10rpx;
font-size: 24rpx;
2024-08-08 10:42:56 +08:00
}
2024-07-30 16:33:21 +08:00
.mainView .reportView .itemView .content .imgView {
width: 100rpx;
height: 100rpx;
margin-right: 10rpx;
margin-bottom: 10rpx;
display: inline-block;
vertical-align: middle;
}
2024-08-14 11:44:30 +08:00
.mainView .reportView .itemLineView {
display: flex;
justify-content: flex-start;
align-items: flex-start;
margin: 0 30rpx;
padding: 30rpx 0;
border-bottom: 2rpx solid rgb(126, 126, 126, 0.2);
}
.mainView .reportView .itemLineView .label {
flex-shrink: 0;
width: 200rpx;
font-size: 30rpx;
color: gray;
}
.mainView .reportView .itemLineView .content {
font-size: 30rpx;
word-break: break-all;
}
2024-08-15 15:23:13 +08:00
.mainView .reportView .repairProgressView {
2024-08-15 09:58:01 +08:00
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
2024-08-15 15:23:13 +08:00
padding: 80rpx 0 0;
}
.mainView .reportView .repairProgressView .progressBar {
width: 266rpx;
height: 50rpx;
2024-08-15 09:58:01 +08:00
}
2024-08-15 15:23:13 +08:00
.mainView .reportView .repairProgressView .label {
2024-08-15 09:58:01 +08:00
margin-top: 10rpx;
2024-08-15 15:23:13 +08:00
font-size: 28rpx;
color: #5176b1;
2024-08-15 09:58:01 +08:00
}
2024-07-30 16:33:21 +08:00
.bottomFixView {
position: fixed;
z-index: 999;
left: 0;
bottom: 0;
width: 100vw;
2024-08-20 09:45:39 +08:00
padding: 40rpx 0 30rpx;
2024-08-14 11:44:30 +08:00
border-top: 2rpx solid rgb(126, 126, 126, 0.2);
2024-07-30 16:33:21 +08:00
background: white;
display: flex;
2024-08-26 11:57:31 +08:00
justify-content: space-evenly;
2024-07-30 16:33:21 +08:00
align-items: center;
2024-08-14 11:44:30 +08:00
flex-wrap: wrap;
2024-07-30 16:33:21 +08:00
}
.bottomFixView .btn {
2024-08-15 14:07:00 +08:00
position: relative;
2024-07-30 16:33:21 +08:00
box-sizing: border-box;
border-radius: 6rpx;
2024-08-26 11:57:31 +08:00
width: 23%;
2024-08-20 11:34:12 +08:00
margin-bottom: 20rpx;
2024-08-26 11:57:31 +08:00
padding: 16rpx 0;
2024-07-30 16:33:21 +08:00
2024-08-20 14:48:02 +08:00
font-size: 30rpx;
2024-08-26 11:57:31 +08:00
text-align: center;
2024-07-30 16:33:21 +08:00
color: white;
2024-08-15 14:07:00 +08:00
background: #579ff8;
2024-07-30 16:33:21 +08:00
}
.bottomFixView .btn.red {
background: #ee6f21;
2024-08-15 14:07:00 +08:00
}
.bottomFixView .shareBtn {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0;
2024-08-08 10:42:56 +08:00
}