1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .header {
- width: 750rpx;
- height: 392rpx;
- }
- /* 基础盒子 */
- .bsae-box {
- width: 750rpx;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- background: #ffffff;
- font-family: PingFang SC-Regular, PingFang SC;
- }
- /* 简介 */
- .brief {
- .first-line {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- font-size: 30rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- .multi-line {
- width: 500rpx;
- }
- text {
- font-size: 24rpx;
- color: #666666;
- }
- }
- .by-time {
- height: 28rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 10rpx;
- font-size: 20rpx;
- color: #999999;
- .line-1 {
- width: 480rpx;
- }
- }
- }
- /* 描述 */
- .describe {
- margin-top: 20rpx;
- .title {
- font-size: 28rpx;
- color: #333333;
- }
- .multi-line {
- font-size: 28rpx;
- color: #666666;
- margin-top: 20rpx;
- }
- }
|