.wpulike{display:none;}
.challenge{margin-top:20px;}
        .main-content {
            display: flex;
            background-color: #23222b;
            color: white;
            position: relative;
        }
        .wd-prefooter{
            display: none;
        }
        .wd-page-content{
            background-image: url('/wp-content/themes/woodmart/img/challengbg.webp');
            background-repeat: no-repeat;
            background-size:100% 100%;
        }
        .text-section {
            flex: 0 1 65%;
            padding: 40px;
            padding-top: 60px;
        }

        .date-header {
            color: #ffffff;
            font-size: 18px;
            font-weight: 100;
        }

        .title {
            color: #ffffff;
            font-size: 34px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .hashtag {
            color: #ffffff;
            font-size: 26px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .description p {
            color: #ffffff;
            font-size: 22px;
            line-height: 1.4;
            margin-bottom: 10px;
        }
        
        .description {
            margin-bottom: 40px;
        }
        
        .button-wrapper {
            text-align: center;
        }

        .cta-button {
            background-color: #F43B51;
            color: white;
            border: none;
            padding: 6px 25px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 20px;
            cursor: pointer;
            display: inline-block;
        }
        .cta-button:hover {
            color: #fff;
        }

        .image-section {
            flex: 0 1 35%; 
        }

        .image-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #ffffff;
            padding: 15px 40px;
            font-size: 16px;
            color: #555;
            position: relative;
            border: 1px solid #e0e0e0;
        }

        .timeline {
            display: flex;
            align-items: center;
            font-family: 'OPPO Sans 4.0';
        }

        .timeline .icon {
            font-size: 24px;
            margin-right: 10px;
        }

        .status {
            background-color: #F43B51;
            color: white;
            padding: 10px 40px;
            font-weight: bold;
            position: relative;
            margin-right: -41px;
            clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 20px 50%, 0% 0%);
        }
        .status.in-progress {
    background-color: #F43B51;
}
.status.in-progress::before {
    border-right-color: #F43B51;
}
.status.expired {
    background-color: #ccc; 
}
.status.expired::before {
    border-right-color: #ccc; 
}
.page_bar {
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 40px 0;
    clear: both;
}
.page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0 8px;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 16px;
    color: #a09db0;
    border: 1.5px solid #dcdbe3;
    transition: all 0.3s ease;
}
.page-numbers.prev,
.page-numbers.next {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: none;
    box-shadow: 0 5px 20px rgba(200, 200, 220, 0.6);
    font-size: 20px;
}
.page-numbers.current {
    border-color: #f04a58;
    color: #f04a58;
    font-weight: bold;
    background-color: #fff;
}
.page-numbers:not(.current):not(.dots):hover {
    border-color: #f04a58;
    color: #f04a58;
}
.page-numbers.prev:hover,
.page-numbers.next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 200, 220, 0.8);
}
.page-numbers.dots {
    border: none;
    background: none;
    box-shadow: none;
}
@media (max-width: 768px) {

    /* --- 整体布局和容器调整 --- */
    .container {
        width: 100%;
        border-radius: 0;
    }

    .site-content .container {
        margin-bottom: 5px;
    }
    
    /* --- 文字区域调整 --- */
    .text-section {
        padding: 10px
    }

    .date-header {
        font-size: 10px;
    }

    .title {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .hashtag {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .description p {
        font-size: 10px; /* 减小正文字号 */
        line-height: 1; /* 调整行高 */
    }

    .description {
        margin-bottom: 5px;
    }
    
    .cta-button {
        padding: 3px 10px; /* 减小按钮尺寸 */
        font-size: 10px;
    }
    /* --- 底部信息栏调整 --- */
    .footer {
        padding: 3px 12px;
        font-size: 8px;
    }
    
    .timeline .icon {
        font-size: 20px;
        margin-right: 5px;
    }

    .status {
        padding: 5px 15px 5px 30px; /* 调整内边距，特别是左侧，为箭头留出空间 */
        font-size: 10px;
        white-space: nowrap; /* 防止文字换行 */
        margin-right: -13px;
    }

    .status::before {
        /* 调整箭头尺寸以匹配新的padding和字体大小 */
        left: -14px;
        border-top-width: 16px;
        border-right-width: 15px;
        border-bottom-width: 16px;
    }


    /* --- 分页样式调整 --- */
    .page_bar {
        padding: 30px 15px;
    }
    .page-numbers {
        width: 22px;
        height: 22px;
        margin: 0 4px;
        font-size: 10px;
    }

    .page-numbers.prev,
    .page-numbers.next {
        width: 26px;
        height: 26px;
        box-shadow: 0 3px 15px rgba(200, 200, 220, 0.5);
    }
}