169 lines
2.8 KiB
Plaintext
169 lines
2.8 KiB
Plaintext
/*
|
|
* 手太欠
|
|
* 愿这世界都如故事里一样 美好而动人~
|
|
*/
|
|
|
|
/* 投诉tab */
|
|
.header-classify {
|
|
white-space: nowrap;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.periphery-tab {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
display: flex;
|
|
height: 80rpx;
|
|
line-height: 80rpx;
|
|
z-index: 9;
|
|
background: white;
|
|
border-bottom: 2rpx solid #e1e1e1;
|
|
}
|
|
|
|
.periphery-tab-item {
|
|
font-size: 30rpx;
|
|
width: 50%;
|
|
text-align: center;
|
|
color: #000;
|
|
background: white;
|
|
display: inline-block;
|
|
position: relative;
|
|
}
|
|
|
|
.periphery-tab-item.active {
|
|
color: #2170f1;
|
|
}
|
|
|
|
.periphery-tab-item::after {
|
|
position: absolute;
|
|
content: '';
|
|
background-color: transparent;
|
|
width: 50rpx;
|
|
height: 6rpx;
|
|
left: calc(50% - 25rpx);
|
|
bottom: 2rpx;
|
|
border-radius: 20rpx;
|
|
}
|
|
|
|
.periphery-tab-item.active::after {
|
|
background-color: #2170f1;
|
|
}
|
|
|
|
|
|
/* 底部工具 */
|
|
.release-btn {
|
|
background-color: #f5f5f5;
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 99;
|
|
width: 100%;
|
|
height: 110rpx;
|
|
font-size: 30rpx;
|
|
color: white;
|
|
padding: 15rpx;
|
|
box-sizing: border-box;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.release-btn-make {
|
|
width: calc(50% - 20rpx);
|
|
background: #2170f1;
|
|
height: 84rpx;
|
|
line-height: 80rpx;
|
|
font-size: 30rpx;
|
|
color: white;
|
|
padding: 0;
|
|
text-align: center;
|
|
border-radius: 50rpx;
|
|
float: left;
|
|
margin: 0 10rpx;
|
|
border: transparent solid 2rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.release-btn-border {
|
|
background-color: white;
|
|
border-color: #2170f1;
|
|
color: #2170f1;
|
|
}
|
|
|
|
/* 列表 */
|
|
.make {
|
|
margin: 100rpx 20rpx 0;
|
|
border-bottom: 110rpx solid transparent;
|
|
}
|
|
|
|
.makeLIst {
|
|
margin-bottom: 30rpx;
|
|
background-color: #fff;
|
|
padding: 20rpx;
|
|
box-sizing: border-box;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.makeLIst-top {
|
|
display: flex;
|
|
}
|
|
|
|
.makeLIst-img {
|
|
width: 110rpx;
|
|
height: 110rpx;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.makeLIst-text {
|
|
width: calc(100% - 130rpx);
|
|
margin-left: 30rpx;
|
|
}
|
|
|
|
.makeLIst-list {
|
|
display: flex;
|
|
font-size: 28rpx;
|
|
color: #999;
|
|
margin: 0 0 15rpx;
|
|
}
|
|
|
|
.makeLIst-list text {
|
|
color: #000;
|
|
font-size: 30rpx;
|
|
display: block;
|
|
flex: 1;
|
|
margin-right: 30rpx;
|
|
margin-top: -2rpx;
|
|
}
|
|
|
|
.makeLIst-tips {
|
|
color: #818181;
|
|
font-size: 28rpx;
|
|
text-align: justify;
|
|
}
|
|
|
|
.makeLIst-reply {
|
|
margin: 30rpx 0 0 130rpx;
|
|
border-top: 2rpx solid #eee;
|
|
padding-top: 20rpx;
|
|
}
|
|
|
|
/* 社区回复 */
|
|
.community {
|
|
margin-top: 30rpx;
|
|
padding-top: 30rpx;
|
|
border-top: 1rpx solid #e1e1e1;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.community-title {
|
|
display: flex;
|
|
margin-bottom: 20rpx;
|
|
color: #818181;
|
|
}
|
|
|
|
.community-title text {
|
|
color: #000;
|
|
display: inline-block;
|
|
flex: 1;
|
|
width: 80%;
|
|
} |