210 lines
3.6 KiB
Plaintext
Raw Normal View History

2024-07-30 17:43:32 +08:00
.containerView.public {
background: none;
}
.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;
2024-07-31 09:13:31 +08:00
z-index: 3;
2024-07-30 17:43:32 +08:00
}
.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;
font-size: 22rpx;
}
.mainView .statusView .time {
margin-top: 20rpx;
}
.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;
}
.mainView .reportView .itemView .content .imgView {
width: 100rpx;
height: 100rpx;
margin-right: 10rpx;
margin-bottom: 10rpx;
display: inline-block;
vertical-align: middle;
}
2024-07-31 09:13:31 +08:00
.mainView .reportView .itemLineView {
2024-07-30 17:43:32 +08:00
display: flex;
2024-07-31 09:13:31 +08:00
justify-content: flex-start;
align-items: flex-start;
margin: 0 30rpx;
padding: 30rpx 0;
border-bottom: 2rpx solid rgb(126, 126, 126, 0.2);
2024-07-30 17:43:32 +08:00
}
2024-07-31 09:13:31 +08:00
.mainView .reportView .itemLineView .label {
flex-shrink: 0;
width: 200rpx;
font-size: 30rpx;
color: gray;
}
2024-07-30 17:43:32 +08:00
2024-07-31 09:13:31 +08:00
.mainView .reportView .itemLineView .content {
font-size: 30rpx;
word-break: break-all;
2024-07-30 17:43:32 +08:00
}
2024-07-31 09:13:31 +08:00
.mainView .reportView .itemLineCenterView {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 30rpx;
padding: 30rpx 0;
border-bottom: 2rpx solid rgb(126, 126, 126, 0.2);
2024-07-30 17:43:32 +08:00
}
2024-07-31 09:13:31 +08:00
.mainView .reportView .itemLineCenterView .label {
font-size: 30rpx;
}
.tijiaoBtn{
width: 600rpx;
border-radius: 10rpx;
margin: 60rpx auto;
padding: 20rpx;
background: #4e96f8;
color: white;
font-size: 30rpx;
text-align: center;
}