/* 
 * 彩虹外链网盘API对接插件 - 前台样式
 * Version: 2.2.0
 */

.baide-cpan-attachments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.baide-cpan-attachment-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    background: #fff;
    transition: all 0.3s ease;
}

.baide-cpan-attachment-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.baide-cpan-attachment-item a {
    display: block;
    text-decoration: none;
}

.baide-cpan-attachment-item img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.baide-cpan-attachment-item .file-icon {
    width: 100%;
    height: 100px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-radius: 3px;
}
