.top-content>ul {
    padding: 50px;
    height: 300px;
    border: solid 1px #f5f5f5;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-content>ul>li {
    width: 50%;
    height: 100%;
}

.top-content>ul>li:first-child {
    display: flex;
    justify-content: start;
    align-items: center;
}

.top-content>ul>li:first-child>div:nth-child(1) {
    margin-right: 50px;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
    overflow: hidden;

    background-color: #f5f5f5;

    background-image: url(../resources/img/user/吾即萌新LOGO-白-800px.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.top-content>ul>li:first-child>div:nth-child(1) img {
    width: 100%;
}

.top-content>ul>li:first-child>div:nth-child(2)>h1 {
    margin-bottom: 20px;
    font-size: 18px;
}

.top-content>ul>li:first-child>div:nth-child(2)>p {
    font-size: 12px;
    color: #9e9e9e;
}


.top-content>ul>li:last-child {
    display: flex;
    justify-content: end;
}

.top-content>ul>li:last-child>div a {
    margin-right: 20px;
    font-size: 12px;
}




/* 技能树 */
.my-skill-tree {
    margin-top: 50px;
}

.my-skill-tree>h2 {
    margin-bottom: 30px;

    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.my-skill-tree>p {
    text-align: center;
    margin-bottom: 20px;
}

.my-skill-tree>div {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #f5f5f5;

    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 50px;
}


.my-skill-tree>div>div>ul {
    margin-top: 20px;
    min-height: 100%;

    width: 100%;
    height: auto;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(50px, 1fr);
    gap: 20px;

}

.my-skill-tree>div>div>ul>li {
    max-height: 100px;
    height: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.my-skill-tree>div>div>ul>li:hover {
    background-color: #00ff;
    color: #fff;
}


/* 目标 */
.target-content {
    margin-top: 50px;
}

.target-content>.target {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
}

.target-content>.target>li {
    padding: 50px;
    width: 100%;
    min-height: 400px;
    border-radius: 10px;
    background-color: #f5f5f5;
}

.target-content>.target>li>h1 {
    font-size: 15px;
    margin-bottom: 30px;
}

.target-content>.target>li>h2,
.target-content>.target>li>p {
    font-size: 12px;
    margin-bottom: 20px;
}