128 lines
1.6 KiB
Plaintext
128 lines
1.6 KiB
Plaintext
.page {
|
|
min-height: 100vh;
|
|
background-color: #fff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.unified-header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 194rpx;
|
|
background: linear-gradient(135deg, #B06AB3 0%, #9B59B6 100%);
|
|
border-bottom: none;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
padding: 0 32rpx 20rpx;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.unified-header-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8rpx;
|
|
width: 160rpx;
|
|
height: 56rpx;
|
|
}
|
|
|
|
.unified-back-icon {
|
|
width: 56rpx;
|
|
height: 56rpx;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.unified-back-text {
|
|
font-size: 34rpx;
|
|
font-weight: bold;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.unified-header-title {
|
|
font-size: 40rpx;
|
|
font-weight: bold;
|
|
color: #ffffff;
|
|
flex: 1;
|
|
text-align: center;
|
|
}
|
|
|
|
.unified-header-right {
|
|
width: 160rpx;
|
|
height: 56rpx;
|
|
}
|
|
|
|
.content {
|
|
flex: 1;
|
|
}
|
|
|
|
.article-content {
|
|
padding: 30rpx;
|
|
}
|
|
|
|
.header {
|
|
margin-bottom: 30rpx;
|
|
}
|
|
|
|
.title {
|
|
font-size: 36rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
line-height: 1.4;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.meta {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
}
|
|
|
|
.meta text {
|
|
margin-right: 20rpx;
|
|
}
|
|
|
|
.author {
|
|
font-size: 30rpx;
|
|
color: #576b95;
|
|
}
|
|
|
|
.cover {
|
|
width: 100%;
|
|
border-radius: 12rpx;
|
|
margin-bottom: 30rpx;
|
|
}
|
|
|
|
.body {
|
|
font-size: 36rpx;
|
|
color: #444;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.body h3 {
|
|
font-size: 42rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin: 30rpx 0 15rpx;
|
|
display: block;
|
|
}
|
|
|
|
.body p {
|
|
margin-bottom: 20rpx;
|
|
display: block;
|
|
}
|
|
|
|
.date{
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 50rpx;
|
|
padding-bottom: 50rpx;
|
|
}
|
|
|
|
.read-count {
|
|
font-size: 36rpx;
|
|
color: #999;
|
|
}
|