.tj_11 {
    width: 500px;
    height: 800px;
    margin: 0 auto;
    padding-top: 100px;
}


.tj_11 ul li {
    margin-top: 50px;
    font-size: 22px;
    position: relative;
    padding-left: 6rem;
    cursor: pointer;
    /* 网格项样式 */
    display: flex;
    font-weight: normal;
    line-height: 1.5;
    /* 行高为字体大小的 1.5 倍（推荐） */
}



.tj_11 ul li::before {
    
    content: '•';
    position: absolute;
    left: 0;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.tj_11 ul li:hover {
    font-weight: 600;
    transform: scale(1.1); /* 鼠标悬停时文字放大10% */
}

.tj_11 ul li:hover::before {
    color: #3b82f6;
}


a {
    text-decoration: none;
    color: inherit;
}



