123456789101112131415161718192021222324252627282930 |
- /* pages/file-detail/file-detail.wxss */
- .detail {
- padding: 30rpx;
- box-sizing: border-box;
- }
- .title {
- font-size: 1.2em;
- text-align: center;
- }
- .publish-time {
- font-size: .7em;
- color: #999999;
- text-align: center;
- margin-top: 10rpx;
- }
- .line {
- height: 2rpx;
- color: #fff;
- text-align: center;
- background-color: #EBE8E3;
- margin-top: 40rpx;
- margin-bottom: 40rpx;
- }
- .content {
- color: #747474;
- }
|