/* pages/notice/notice.wxss */
|
.swiper-tab{
|
position: fixed;
|
width: 100%;
|
text-align: center;
|
line-height: 80rpx;
|
white-space: nowrap;
|
z-index: 2;
|
background-color: #EAFFF1;
|
}
|
|
.swiper-tab-list{
|
position: relative;
|
font-size: 30rpx;
|
display: inline-block;
|
min-width: 30%;
|
padding: 0 1%;
|
color: black;
|
}
|
|
.on{
|
color: #6BD9B9;
|
font-weight: bold;
|
border-bottom: 4rpx solid #6BD9B9;
|
}
|
|
.swiper-box{
|
position: absolute;
|
display: block;
|
top: 80rpx;
|
width: 100%;
|
/* margin-top: 10px; */
|
background-color: var(--fyui-BG_1);
|
}
|
|
.fyui-box {
|
margin-bottom: 1rpx;
|
}
|
|
|
.fyui-box .fyui-box__hd {
|
display: flex;
|
align-items: flex-start;
|
}
|
|
.title {
|
width: 100%;
|
align-items: flex-end;
|
font-size: 30rpx;
|
margin-left: 16rpx;
|
}
|
.right-time {
|
display: block;
|
font-size: small;
|
color: var(--fyui-text-color_2);
|
text-align: end;
|
}
|
|
|
.fyui-box .fyui-box__hd>image {
|
width: 12px;
|
height: 12px;
|
background-color: #4C97F8;
|
padding: 5px;
|
border-radius: 50%;
|
}
|
|
.fyui-box__ft {
|
/* position: relative; */
|
/* padding: 20px; */
|
margin-top: 40px;
|
align-items: center;
|
}
|
|
.fyui-box__ft:before{
|
content: " ";
|
width: 100%;
|
height: 1px;
|
background-color: var(--fyui-BG_1);
|
bottom: 50px;
|
position: absolute;
|
}
|
|
.detail {
|
white-space: nowrap;
|
color: var(--fyui-text-color_1);
|
}
|
.sign {
|
background-color: red;
|
margin: 0;
|
}
|
|
.des {
|
/* display: -webkit-box;
|
-webkit-box-orient: vertical;
|
-webkit-line-clamp: 4;
|
width: 100%;
|
overflow: hidden; */
|
/* text-overflow: ellipsis; */
|
font-size: 28rpx !important;
|
color: var(--fyui-text-color_1) !important;
|
}
|
|
.page__ft {
|
color: var(--fyui-text-color_2);
|
}
|
|
.notice-read {
|
position: absolute;
|
top: 16px;
|
left: 4px;
|
width: 10px;
|
height: 10px;
|
background-color: transparent;
|
border-radius: 50%;
|
}
|
|
.notice-not-read {
|
position: absolute;
|
top: 16px;
|
left: 4px;
|
width: 10px;
|
height: 10px;
|
background-color: red;
|
border-radius: 50%;
|
}
|
|
.badge {
|
position: absolute;
|
top: 8px;
|
right: 4px;
|
width: 16px;
|
height: 16px;
|
background-color: red;
|
color: white;
|
border-radius: 50%;
|
font-size: 10px;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
}
|
|
.long-content {
|
max-height: 60vh;
|
margin-top: 16rpx;
|
margin-bottom: 16rpx;
|
font-size: 30rpx;
|
color: #888;
|
}
|
|
.long-content .content-container {
|
white-space: pre-line;
|
}
|
|
.limit-line {
|
/* background-color: aliceblue; */
|
word-break: break-all;
|
/* height: 100rpx; */
|
display: -webkit-box;
|
-webkit-box-orient: vertical;
|
-webkit-line-clamp: 1;
|
overflow: hidden;
|
text-overflow: ellipsis;
|
}
|