.home_page {
        position: relative;
        z-index: 99;
    }

    .jobIndex .seach_content {
        height: 60px;
        margin-bottom: 20px;
        background-color: #fff;
    }

    .jobIndex .seach_content {
        width: 100%;
        position: relative;
    }

    .jobIndex .seach_left {
        flex: 1;
    }

    .jobIndex .seach_left input {
        width: 100%;
        height: 60px;
        padding: 0 20px;
        border-radius: 25px;
        font-size: 14px;
    }

    .jobIndex .seach_right {
        position: absolute;
        right: 3px;
        top: 3px;
        height: 54px;
        line-height: 54px;
        padding: 0 30px;
        background-color: #9571ff;
        color: #fff;
        border-radius: 6px;
        cursor: pointer;
    }
  
    .tab-item {
        font-size: 16px;
        color: #666;
        cursor: pointer;
        padding: 5px 0;
        position: relative;
    }

    .tab-item.active {
        color: #9571ff;
    }

    .tab-item.active::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #9571ff;
    }

    /* 内容区域样式 */
    .content-area {
        display: flex;
        gap: 20px;
    }

    .content-main {
        flex: 1;
    }

    .content-sidebar {
        width: 300px;
    }

    /* 文章列表样式 */
    .article-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .article-item {
        display: flex;
        gap: 15px;
        padding: 15px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .article-item .article-image {
        width: 254px;
        /* height: 191px; */
        border-radius: 4px;
        overflow: hidden;
    }

    .article-item .article-image img {
        width: 100%;
        /* height: 100%; */
        object-fit: cover;
    }

    .article-item .article-content {
        flex: 1;
    }

    .article-item .article-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .article-item .article-title:hover{
        color: #9571FF;
    }
    .article-item .article-meta {
        display: flex;
        gap: 10px;
        font-size: 14px;
        color: #94989E;
        margin-bottom: 8px;
    }

    .article-item .article-summary {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .article-item .article-tags {
        display: flex;
        gap: 8px;
        margin-bottom: 20px;
    }

    .article-item .article-tag {
        font-size: 12px;
        color: #9571ff;
        background-color: rgba(149, 113, 255, 0.1);
        padding: 2px 8px;
        border-radius: 4px;
    }
    .article-source{
        font-size: 12px;
        color: red;
        background-color: rgba(149, 113, 255, 0.1);
        padding: 2px 8px;
        border-radius: 4px;
    }
    /* 侧边栏样式 */
    .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;
    }

    /* 最近搜索样式 */
    .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;
    }

  

    .contentAll .contentAll_left_choose .left_choose_box i {
        height: 38px;
        display: block;
    }

   
    .not_login{
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        position: fixed;
        bottom: 0px;
        left: 0;
        width: 100%;
        height: 160px;
        z-index: 888;
    }
    .not_login_title{
    font-size: 30px;
    margin-bottom: 10px;
    }
    .not_login_content{
        font-size: 20px;
    }
   
    .layui-layer .layui-layer-btn0{
        background-color: #9571ff !important;
        border-color: #9571ff !important;
    }
    .layui-layer-btn-{
        display: flex;
        flex-direction: row-reverse;
    }
    .serchbj{
        background-image: url('/static/pc//images/article/filtbg.png');
        background-size: cover;
        height: 120px;
    }
    .fixedTop{
        position: fixed;
        top: 46px;
        left: 0;
        width: 100%;
        z-index: 999;
    }
    /*选项卡*/
    .arcticeltab .layui-tab-title{
        height: 60px;
        display: flex;
        justify-content: space-between;
        position: fixed;
        top: 177px;
        z-index: 10001;
        width: 1200px;
        left: calc((100% - 1200px) / 2);
    }
    .arcticeltab .layui-tab-title .layui-this::after {
    border-color: #9571FF;
    height: 61px;
    width: 100%;
    }
    .arcticeltab .layui-tab-title .layui-this{
        color: #9571FF;
        font-size: 18px;
        position: relative;
    }
    .layui-tab-title a{
        display: inline-block;
        line-height: 61px;
        font-size: 16px;
        padding:0 30px;
        color: #333;
        text-decoration: none;
    }
    .layui-tab-title a:hover{
        color: #9571FF;
    }
    /*自定义分页*/
    #demo-laypage-data-view{
        text-align: right;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 6px;
        padding: 10px 0;
    }
    #demo-laypage-data-view a{
        display: inline-block;
        min-width: 16px;
        height: 31px;
        line-height: 31px;
        text-align: center;
        border: 1px solid #e2e2e2;
        border-radius: 3px;
        color: #333;
        text-decoration: none;
        font-size: 12px;
        padding: 0 10px;
        background-color: #fff;
    }
    #demo-laypage-data-view a:hover{
        color: #9571FF;
        border-color: #9571FF;
    }
    #demo-laypage-data-view a.page-active{
        background: #9571FF;
        color: #fff;
        border-color: #9571FF;
    }
    #demo-laypage-data-view a.page-disabled{
        color: #ccc;
        border-color: #e2e2e2;
        pointer-events: none;
        cursor: default;
    }