.pagination a {
    min-height: 35px;
}
.dropdown{
    display: none;
}
ul.ul1 li{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e3e3e3;
    height: inherit;
}
ul.ul1 li a{
    display: block;
    flex: 1;
    white-space: normal;
}
ul.ul1 li .date_sp{
    width: 90px;
    position: relative;
}
/* 小屏移动端适配 (768px以下) */
@media (max-width: 768px) {
    .main-content {
        width: 100% !important;
    }

    .main-content>div.main_conter:first-child {
        display: none;
    }

    .main-content>div.main_conter:last-child {
        width: 100% !important;
        margin-top: 10px !important;
    }

    .main-content>div.main_conter .index_title {
        display: none;
    }

    .tcdPageCode {
        padding: 10px !important;
        margin-top: 0!important;
    }

    .pagination {
        margin-top: 0 !important;
        padding: 0 !important;
        font-size: 13px!important;
    }

    .pagination a {
        margin-bottom: 9px !important;
    }


    /* 下拉容器 */
    .dropdown {
        display: block;
        position: relative;
        width: 100%;
        border-bottom: 1px solid #888;
        text-align: center;
        margin-bottom: 10px;
    }

    /* 触发按钮 */
    .dropdown-btn {
        width: 100%;
        margin: 0 auto;
        padding: 8px 12px;
        border-radius: 4px;
        text-align: center;
        cursor: pointer;
        background: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #2c6cc3;
        font-size: 19px;
        font-weight: 600;
        display: flex;
        justify-content: center;
    }

    .dropdown-btn::after {
        content: "▼";
        font-size: 10px;
        color: #666;
        padding-left: 13px;
    }

    /* 下拉列表 */
    .dropdown-list {
        position: absolute;
        top: 100%;
       left: 50%;
        transform: translatex(-50%);
        width: 96%;
        box-shadow: 0px 1px 2px 2px #e3e3e3;
        border-top: none;
        border-radius: 0 0 4px 4px;
        background: #fff;
        display: none;
        border: 1px solid #ddd;
        border-bottom: 0;
        z-index: 999;
    }

    /* 悬停显示列表 */
    .dropdown:hover .dropdown-list {
        display: block;
    }

    /* 列表项链接 */
    .dropdown-list a {
        display: block;
        padding: 12px;
        color: #333;
        border-bottom: 1px solid #ddd;
    }
    
    /* 选中态（蓝色字体）+ hover效果 */
    .dropdown-list a.active {
        color: #1677ff;
        font-weight: 500;
    }

    .dropdown-list a:hover {
        background: #f5f5f5;
    }

    ul.ul1 li{
        height: auto;
        line-height: 25px;
        padding: 6px 0;
    }
    ul.point li a span{
        margin-left: 0;
    }
}