   body{
            background: #f7f6f8;
            height: auto;
        }
        .detail_header{
            width: 100%;
            background: linear-gradient(180deg, #ede1f4 200px, #f7f6f8 40%, #f7f6f8);
            padding-bottom: 20px;
        }
        .article_title{
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }
        .article_tags{
            margin-bottom: 15px;
        }
        .article_tag{
            display: inline-block;
            font-size: 14px;
            color: #9571FF;
            margin-right: 10px;
            background: rgba(149,113,255,0.1);
            border-radius: 4px 4px 4px 4px;
            padding:5px 8px;
        }
        .article_time{
            font-size: 14px;
            color: #94989E;
            margin-bottom: 20px;
        }
        .article_content img{
            width: 100%;
        }
        .article_content h2,.article_content h3,.article_content h4{
            color: #333;
            font-size: 16px;
        }
       
        .detail_left{
            background: #fff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .right_section{
            background: #fff;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .right_section_title{
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0;
        }
      
        .related_jobs{
            margin-bottom: 10px;
        }
        .job_item{
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        .job_item:last-child{
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .job_title{
            font-size: 14px;
            font-weight: bold;
            color: #333640;
            margin-bottom: 8px;
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        .job_title:hover{
            color: #9571ff;
        }
        .job_city{
            padding:5px 8px;
            background: #F5F6F7;
            border-radius: 2px 2px 2px 2px;
            font-size: 12px;
            color: #61656C;
            flex-shrink: 0;
            margin-left: 5px;
        }
        .job_salary{
            font-size: 14px;
            color: #EA0000;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .job_company{
            font-size: 14px;
            color: #61656C;
        }
        
    /* 侧边栏样式 */
    .sidebar-section {
        background-color: #fff;
        border-radius: 6px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .sidebar-section .recent-search-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        position: relative;
        vertical-align: middle;
        height: 44px;
        line-height: 44px;
        background: linear-gradient( 270deg, #FBFBFB 0%, #FAF3FF 100%);
        border-radius: 6px 6px 0px 0px;
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
    }
    .sidebar-section h3 img{
        margin-right: 5px;
        vertical-align: middle;
    }
    .sidebar-section .clearOut{
        cursor: pointer;
        font-size: 12px;
        color: #9571ff;
        vertical-align: middle;
        display: none;
    }

    /*返回列表*/
    .back-btn{
        width: 116px;
        height: 35px;
        background: #9571FF;
        border-radius: 50px 50px 50px 50px;
        cursor: pointer;
        text-align: center;
        line-height: 32px;
        font-size: 16px;
        color: #FFFFFF;
        margin-bottom: 20px;
    }


    /* 最近搜索样式 */
    .recent-searches {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .recent-search-item {
        font-size: 14px;
        color: #666;
        cursor: pointer;
        padding: 5px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .recent-search-item::before {
        content: '•';
        color: #9571ff;
        font-size: 16px;
    }

    /* 本周排行样式 */
    .weekly-ranking-box{
        background: linear-gradient( 180deg, #FFF3ED 0%, #FFFFFF 40%);
        padding:12px 16px;
    }
    .weekly-ranking-box h3 {
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 30px;
    }
    .weekly-ranking {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .ranking-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        border-bottom: 1px solid #F5F6F7;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .ranking-number {
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        color: #A3A3A3;
        border-radius: 4px;
        font-family: DIN, DIN;
    font-size: 16px;
        flex-shrink: 0;
    }

    .ranking-item:nth-child(1) .ranking-number{
        color: #E35F54;
    }
    .ranking-item:nth-child(2) .ranking-number{
        color: #E88245;
    }
    .ranking-item:nth-child(3) .ranking-number {
        color: #F6C85A;
    }
    .ranking-title {
        font-size: 14px;
        color: #333;
        line-height: 1.4;
        flex: 1;
    }