You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
2.3 KiB
130 lines
2.3 KiB
page{
|
|
background: #f7f7f7;
|
|
}
|
|
.notice-detail {
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
padding: 20rpx;
|
|
background: #f7f7f7;
|
|
}
|
|
.richContent img{
|
|
width: 100%!important;
|
|
height: auto;
|
|
}
|
|
.selfContent {
|
|
width: 100%;
|
|
/* display: table; */
|
|
background: #ffffff;
|
|
border-radius: 16rpx;
|
|
box-sizing: border-box;
|
|
padding: 0 25rpx 38rpx;
|
|
}
|
|
.detail-title {
|
|
font-family: PingFang-SC-Bold;
|
|
font-size: 48rpx;
|
|
font-weight: bold;
|
|
line-height: 68rpx;
|
|
color: #333333;
|
|
padding-top: 40rpx;
|
|
}
|
|
.detail-subtitle {
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
font-size: 22rpx;
|
|
color: #999999;
|
|
margin-top:45rpx;
|
|
}
|
|
.detail-subtitle .left span:nth-child(1){
|
|
margin-right: 32rpx;
|
|
}
|
|
.detail-subtitle .right{
|
|
display: flex;
|
|
height: 32rpx;
|
|
line-height: 32rpx;
|
|
}
|
|
.detail-subtitle .right .readNum {
|
|
/* display: inline-block; */
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
.detail-subtitle .right .readNum image{
|
|
width: 100%;
|
|
height: 100%;
|
|
float:left;
|
|
object-fit: cover;
|
|
}
|
|
.banner {
|
|
width: 100%;
|
|
height: 400rpx;
|
|
margin: 39rpx 0 19rpx 0;
|
|
}
|
|
.banner image{
|
|
width: 100%;
|
|
height: 100%;
|
|
float:left;
|
|
object-fit: cover;
|
|
border-radius: 16rpx;
|
|
overflow: hidden;
|
|
}
|
|
.paragraph {
|
|
font-size: 38rpx;
|
|
line-height: 58rpx;
|
|
color: #333333;
|
|
text-indent: 76rpx;
|
|
margin-top:22rpx;
|
|
}
|
|
|
|
.default {
|
|
border: 1px solid #eaeaea;
|
|
}
|
|
.default span {
|
|
color: #999999;
|
|
}
|
|
.active {
|
|
border: 1px solid #ffab00;
|
|
}
|
|
.active span {
|
|
color: #ffb700;
|
|
}
|
|
|
|
/* preload start */
|
|
.preload {
|
|
width: 100%;
|
|
background: #fff;
|
|
box-sizing: border-box;
|
|
border-radius: 16rpx;
|
|
padding: 0 24rpx;
|
|
overflow: hidden;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
.preload-title {
|
|
width: 100%;
|
|
height: 80rpx;
|
|
border-radius: 8rpx;
|
|
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
|
|
animation: loading 1.4s ease infinite;
|
|
background-size: 400% 100%;
|
|
margin-top: 20rpx;
|
|
}
|
|
.preload-content {
|
|
width: 100%;
|
|
height: 200rpx;
|
|
border-radius: 8rpx;
|
|
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
|
|
animation: loading 1.4s ease infinite;
|
|
background-size: 400% 100%;
|
|
margin-top: 20rpx;
|
|
}
|
|
@keyframes loading {
|
|
0% {
|
|
background-position: 100% 50%
|
|
}
|
|
|
|
100% {
|
|
background-position: 0 50%
|
|
}
|
|
}
|
|
/* preload end */
|