12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .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;
- }
- .by-time {
- height: 28rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 16rpx;
- font-size: 20rpx;
- color: #999999;
- }
- .notes {
- margin-top: 10rpx;
- font-size: 24rpx;
- color: #666;
- }
- }
- .item {
- display: flex;
- justify-content: space-between;
- box-sizing: border-box;
- padding: 20rpx 30rpx;
- background-color: #fff;
- font-size: 24rpx;
- border-top: 1rpx solid #ddd;
- text {
- width: 84%;
- }
- }
- .item:last-child {
- border-bottom: 1rpx solid #ddd;
- }
|