123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /* pages/match/details/index.wxss */
- .match-details-container {
- min-height: calc(100vh - 4rpx);
- background: #ffffff;
- /* padding-bottom: 140rpx; */
- box-sizing: border-box;
- }
- /* 页面头部信息 */
- .header-info {
- background: #ffffff;
- padding: 40rpx 30rpx 30rpx;
- border-bottom: 1rpx solid #f0f0f0;
- }
- .title {
- font-size: 34rpx;
- font-weight: bold;
- color: #1a1a1a;
- margin-bottom: 20rpx;
- text-align: center;
- }
- .publish-info {
- display: flex;
- align-items: center;
- justify-content: center;
- /* gap: 20rpx; */
- font-size: 24rpx;
- color: #666666;
- }
- .author {
- margin-right: 15rpx;
- }
- .publish-info .iconfont1{
- font-size: 30rpx;
- margin-right: 5rpx;
- }
- .content-section {
- padding: 30rpx 40rpx;
- }
|