×

注意!页面内容来自https://www.apkuo.com/,本站不储存任何内容,为了更好的阅读体验进行在线解析,若有广告出现,请及时反馈。若您觉得侵犯了您的利益,请通知我们进行删除,然后访问 原网页

<> /* ===== custom-card-wrapper 独立样式 ===== */ .custom-card-wrapper .card { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; border-radius: 8px; background-color: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.08); text-decoration: none; color: #333; transition: transform 0.2s easebox-shadow 0.2s ease; max-width: 100%; box-sizing: border-box; } .custom-card-wrapper .card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.12); } .custom-card-wrapper .card .icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 6px; object-fit: cover; } .custom-card-wrapper .card .right { flex: 1; display: flex; flex-direction: column; justify-content: center; overflow: hidden; } .custom-card-wrapper .card .name { font-size: 14px; font-weight: 500; line-height: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .custom-card-wrapper .card .name .score { margin-left: 4px; font-size: 12px; color: #f39c12; } .custom-card-wrapper .card .desc { font-size: 12px; color: #666; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .custom-card-wrapper .card .button { flex-shrink: 0; background-color: #4087F7; color: #fff; font-size: 12px; line-height: 16px; padding: 6px 10px; border-radius: 4px; text-align: center; white-space: nowrap; } /* ===== 三个链接 ===== */ .link-group { margin-top: 10px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; /* 防止小屏太挤换行 */ } .link-item { font-size: 12px; color: #4087F7; text-decoration: none; padding: 6px 10px; border: 1px solid #4087F7; border-radius: 4px; transition: all 0.2s ease; } .link-item:hover { background: #4087F7; color: #fff; } .custom-card-wrapper .how-to { display: block; margin-top: 4px; font-size: 12px; color: #666; text-decoration: underline; } /* social network */ .custom-card-wrapper .social-network { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; } .custom-card-wrapper .social-network .network { display: inline-flex; align-items: center; justify-content: center; padding: 4px 8px; border-radius: 4px; font-size: 12px; color: #fff; text-decoration: none; background-color: #4087F7; transition: background-color 0.2s ease; } .custom-card-wrapper .social-network .network:hover { background-color: #2877F6; } .custom-card-wrapper .social-network .network span { white-space: nowrap; } /* 响应式 */ @media screen and (max-width: 480px) { .custom-card-wrapper .card { flex-direction: column; align-items: flex-start; } .custom-card-wrapper .card .right { width: 100%; margin-top: 8px; } .custom-card-wrapper .card .button { width: 100%; margin-top: 8px; text-align: center; } .custom-card-wrapper .social-network { flex-direction: column; gap: 6px; } }