/****************************************首页的用户推荐*****************************/
.container-team {
    width: 100%;
    height: 90%;
    margin-top: 150px;
}

.container-index {
    width: 90%;
    height: 70%;
    margin: 0 auto;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.17);
    box-shadow: 0 4px 12px rgba(244, 244, 244, 0.2);
    padding: 20px;
    overflow: hidden;
}

.card-container-index {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.card-index {
    width: calc((100% - (5 * 22px)) / 6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.card-index:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.image-section {
    position: relative;
    width: 100%;
    padding-top: 70%;
    overflow: hidden;
    border-radius: 18px;
}

.image-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.title-section {
    padding: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.identity-section {
    padding: 0 8px 8px;
    text-align: center;
    font-size: 14px;
    color: #eae1e1;
}

/****************************************用户分享的部分标题*****************************/
.container-index-show {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.home-subject {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    color: #a5a5a5;
    font-weight: 600;
    margin: 0;
}

.scroll-buttons {
    display: flex;
    gap: 5px;
}

.scroll-btn {
    padding: 10px;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    background-color: transparent;
    color: #333;
    cursor: pointer;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    border-color: #a0a0a0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.welcome-message2 {
    width: 90%;
    margin: 30px auto;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    background-image: linear-gradient(90deg, #ffffff, #683ce1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-message2 h1 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: bold;
    line-height: 1.2;
}

.welcome-message2 p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}




.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    padding: 10px;
    background: rgba(104, 104, 104, 0.11);
    backdrop-filter: blur(10px);
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #676767;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    animation: fadeIn 2.5s ease-in-out;
}

.footer > div {
    margin: 0 20px;
    font-size: 0.9em;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-right p {
    margin-right: 20px;
}