
.tool-card {
    padding: 5px;
    gap: 16px;
}
.card-mini__game2 {
    padding: 5px;
    gap: 16px;
    transition: opacity .2s;
}
.card-mini__game2:hover {
    transform: translateY(-1px);
}

.tool-card .card {
    /*min-width: 250px;*/
    /*max-width: 300px;*/
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    transition: opacity .2s;
    opacity: .8;
}

.tool-card .magical {
    --circle-size: 600px;
    --inset: 1px;
    --border: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border);
    background-color: #141419;
}

.tool-card .magical::after {
    background: linear-gradient(180deg, rgba(78, 78, 100, 0.48) 0%, rgba(78, 78, 100, 0.2) 100%);
    z-index: -2;
}

.tool-card .card-left {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    padding-left: 8px;
}

.tool-card .title {
    display: flex;
    align-items: center;
    gap: 6px;
}
.tool-card .name::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 24px;
    height: 28px;
    width: 120px;
    filter: blur(16px);
    background: linear-gradient(90deg, rgba(255, 98, 154, 0.2) 0%, rgba(113, 232, 246, 0.2) 100%);
    pointer-events: none;
}
.tool-card .name {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    background: linear-gradient(180deg, #E8E8F6 0%, rgba(232, 232, 246, 0.72) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tool-card .link {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    opacity: 0;
    transition: opacity .2s;
    background: linear-gradient(180deg, #E8E8F6 0%, rgba(232, 232, 246, 0.72) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tool-card .desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #A8A8B6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tool-card .time1 {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: #62616F;
}

.tool-card .pic {
    padding: 8px 0;
    perspective: 280px;
    min-width: 119px;
    will-change: transform, filter;
}

.tool-card .pic img {
    width: 80%;
    max-width: 160px;
    border-radius: 6px;
    filter: brightness(0.8);
    transition: filter 0.2s, transform 0.4s;
}

.tool-card .logo {
    position: relative;
}

.tool-card .logo img {
    width: 40px;
}

.tool-card:hover .pic img {
    transform: rotateX(8deg) scale(0.96);
    filter: brightness(1);
}

.tool-card:hover .link {
    opacity: 1;
}



/* 卡片图片样式 */
.card-img {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: no-repeat center;
    opacity: .8;
    transition: opacity .4s;
    
}




/* 信息区域样式 */
.info {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    opacity: .8;
    transition: opacity .4s;
}

.info-title {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    background: linear-gradient(180deg, #E8E8F6 0%, rgba(232, 232, 246, 0.72) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* 箭头图标样式 */
.icon-arrow {
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: opacity .4s;
}

/* 悬停效果 */
.link-card-item:hover .card-img,
.link-card-item:hover .info {
    opacity: 1;
}

.link-card-item:hover .icon-arrow {
    opacity: 1;
}

/* 底部渐变效果 */
.tool-card .magical::after {
    background: linear-gradient(180deg, rgba(78, 78, 100, 0.48) 0%, rgba(78, 78, 100, 0.2) 100%);
    z-index: -2;
}
