| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /* 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;
- flex-shrink: 0;
- }
- .publish-time{
- flex-shrink: 0;
- }
- .content-section {
- padding: 30rpx 40rpx;
- }
|