/**
 * 自定义样式
 */

/* 网盘图标对齐 */
img[src$=".svg"] {
    display: inline-block;
    vertical-align: middle;
}

/* 行截断 */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

html { scroll-behavior: smooth; }

#qrcode img { margin: 0 auto; }
#qrcode { display: inline-block; }

input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.1);
}

/* 滚动条 */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d6d3d1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #a8a29e; }

::selection {
    background: rgba(20, 184, 166, 0.15);
    color: #134e4a;
}
