/* ============================================================
 *  柒柒资源社区 SourceVault · v6.6.2 UI 美化层
 * ------------------------------------------------------------
 *  前台 + 后台都引这一层（放在 app.css / glass.css / sv66.css 之后）。
 *  只做「把原生观感换成站内观感」，不动页面结构、不动原有功能：
 *
 *    1) 弹窗：提示 / 确认 / 输入，全站统一成毛玻璃卡片（逻辑在 sv67.js）
 *    2) 原生控件：文件选择按钮、下拉框、勾选框、单选框、滚动条
 *    3) 图片上传器：一张图一个上传按钮，可加可删、能一次选多张
 *    4) 小元件：轻提示、进度条、空槽
 *
 *  变量只依赖 app.css 里的基础变量，后台（没引 glass.css）也照常好看。
 * ============================================================ */

/* ═══════════════════════════════════════════════════════════
 *  1) 弹窗
 * ═══════════════════════════════════════════════════════════ */
.svui-mask {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(9, 12, 20, .52);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  backdrop-filter: blur(10px) saturate(150%);
  opacity: 0;
  transition: opacity .18s ease;
}
.svui-mask.on { opacity: 1; }

.svui-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 24px 22px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 26px 70px rgba(8, 12, 24, .32), 0 4px 14px rgba(8, 12, 24, .18);
  transform: translateY(14px) scale(.965);
  opacity: 0;
  transition: transform .24s cubic-bezier(.18, .9, .28, 1.18), opacity .2s ease;
}
.svui-mask.on .svui-box { transform: none; opacity: 1; }

.svui-ico {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 24px color-mix(in srgb, var(--brand) 32%, transparent);
}
.svui-ico svg { width: 24px; height: 24px; display: block; }
.svui-ico.warn { background: linear-gradient(135deg, #f59e0b, #ea580c); box-shadow: 0 10px 24px rgba(234, 88, 12, .3); }
.svui-ico.danger { background: linear-gradient(135deg, #f43f5e, #dc2626); box-shadow: 0 10px 24px rgba(220, 38, 38, .3); }
.svui-ico.ok { background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 10px 24px rgba(22, 163, 74, .3); }

.svui-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin: 0 0 8px;
}
.svui-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0;
  word-break: break-word;
}
.svui-text .svui-strong { color: var(--text); font-weight: 600; }

.svui-input {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14.5px;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.svui-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 16%, transparent);
}

.svui-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.svui-foot .svui-btn:last-child { margin-left: auto; }

.svui-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 20px;
  font: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-2);
  background: var(--surface-2);
  border-color: var(--line);
  transition: transform .14s ease, filter .14s ease, background .14s ease, color .14s ease;
}
.svui-btn:hover { color: var(--text); border-color: var(--line-strong, var(--line)); }
.svui-btn:active { transform: translateY(1px); }
.svui-btn.primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 8px 20px color-mix(in srgb, var(--brand) 30%, transparent);
}
.svui-btn.primary:hover { filter: brightness(1.06); color: #fff; }
.svui-btn.danger {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #f43f5e, #dc2626);
  box-shadow: 0 8px 20px rgba(220, 38, 38, .28);
}
.svui-btn.danger:hover { filter: brightness(1.06); color: #fff; }
.svui-btn.ghost { background: transparent; }
.svui-btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* 轻提示（原来是 alert，现在走这个，不再打断操作） */
.svui-toast-wrap {
  position: fixed;
  left: 50%;
  bottom: calc(var(--bnav-h, 60px) + 26px);
  transform: translateX(-50%);
  z-index: 2147483001;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  width: max-content;
  max-width: min(92vw, 460px);
}
.svui-toast {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: var(--r-pill, 999px);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  box-shadow: 0 14px 34px rgba(10, 14, 28, .22);
  opacity: 0;
  transform: translateY(10px) scale(.97);
  transition: opacity .2s ease, transform .22s cubic-bezier(.18, .9, .28, 1.15);
}
.svui-toast.on { opacity: 1; transform: none; }
.svui-toast .svui-tdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  flex: none;
}
.svui-toast.ok .svui-tdot { background: var(--ok); }
.svui-toast.warn .svui-tdot { background: var(--warn); }
.svui-toast.bad .svui-tdot { background: var(--bad); }

/* ═══════════════════════════════════════════════════════════
 *  2) 原生控件美化
 * ═══════════════════════════════════════════════════════════ */

/* ---------- 文件选择：把系统那个灰按钮换掉 ---------- */
input[type="file"] {
  display: block;
  width: 100%;
  padding: 7px 8px;
  font: inherit;
  font-size: 13px;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px dashed var(--line-strong, var(--line));
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
input[type="file"]:hover {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  background: color-mix(in srgb, var(--brand) 5%, var(--surface-2));
}
input[type="file"]::file-selector-button {
  margin: 0 12px 0 0;
  padding: 9px 16px;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 6px 16px color-mix(in srgb, var(--brand) 28%, transparent);
  cursor: pointer;
  transition: transform .14s ease, filter .14s ease;
}
input[type="file"]::file-selector-button:hover { filter: brightness(1.07); transform: translateY(-1px); }
input[type="file"]::-webkit-file-upload-button {
  margin: 0 12px 0 0;
  padding: 9px 16px;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  cursor: pointer;
}
/* 多图上传器里的 input 是隐藏的，交给下面的按钮管 */
.sv-imgs input[type="file"] { display: none; }

/* ---------- 下拉框：去掉系统箭头，换站内的 ---------- */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px !important;
  background-color: var(--surface-2);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    right 19px center,
    right 13px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
select:hover { border-color: var(--line-strong, var(--line)); }
select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 15%, transparent);
}
[data-theme="dark"] select { background-color: var(--surface-2); color: var(--text); }
select option { background: var(--surface); color: var(--text); }

/* ---------- 勾选框 / 单选框：统一成主色 ---------- */
input[type="checkbox"],
input[type="radio"] {
  width: 17px;
  height: 17px;
  accent-color: var(--brand);
  cursor: pointer;
  vertical-align: -2px;
}
/* 开关式的（.switch / .sv-agree-row）本来就有自己的排版，尺寸保持原样 */
.switch input[type="checkbox"],
.switch-row input[type="checkbox"],
.sv-agree-row input[type="checkbox"] {
  width: auto;
  height: auto;
  accent-color: var(--brand);
}

/* ---------- 搜索框上的那个原生叉 ---------- */
input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }

/* ---------- 滚动条 ---------- */
* { scrollbar-width: thin; scrollbar-color: color-mix(in srgb, var(--muted) 45%, transparent) transparent; }
*::-webkit-scrollbar { width: 9px; height: 9px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: color-mix(in srgb, var(--muted) 42%, transparent);
  border: 2px solid transparent;
  background-clip: content-box;
}
*::-webkit-scrollbar-thumb:hover { background: color-mix(in srgb, var(--muted) 70%, transparent); background-clip: content-box; }

/* ---------- 取色器（后台主色 / 辅色）---------- */
input[type="color"] {
  width: 64px;
  height: 40px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface-2);
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input[type="color"]:hover { border-color: var(--line-strong, var(--line)); }
input[type="color"]:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 15%, transparent);
}
input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; }
input[type="color"]::-webkit-color-swatch { border: 0; border-radius: 8px; }
input[type="color"]::-moz-color-swatch { border: 0; border-radius: 8px; }

/* ---------- 数字输入框的上下箭头收窄一点，别顶到边框 ---------- */
input[type="number"] { -moz-appearance: textfield; }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { margin-left: 4px; }

/* ═══════════════════════════════════════════════════════════
 *  3) 图片上传器：一张图一个上传按钮
 * ═══════════════════════════════════════════════════════════ */
.sv-imgs {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-2);
  padding: 12px;
}
.sv-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px;
}
.sv-img-slot {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.sv-img-slot:hover { border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); }
.sv-img-slot.filled {
  border-color: color-mix(in srgb, var(--brand) 55%, var(--line));
  box-shadow: 0 6px 18px color-mix(in srgb, var(--brand) 14%, transparent);
}
.sv-img-thumb {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.sv-img-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sv-img-thumb svg,
.sv-img-thumb iconify-icon,
.sv-img-thumb .sv-ic { width: 20px; height: 20px; font-size: 20px; }
.sv-img-meta { min-width: 0; flex: 1; }
.sv-img-name {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sv-img-slot.filled .sv-img-name { color: var(--text); font-weight: 600; }
.sv-img-pick {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 6px 16px color-mix(in srgb, var(--brand) 26%, transparent);
  cursor: pointer;
  user-select: none;
  transition: transform .14s ease, filter .14s ease;
}
.sv-img-pick:hover { filter: brightness(1.07); transform: translateY(-1px); }
.sv-img-pick svg,
.sv-img-pick iconify-icon,
.sv-img-pick .sv-ic { width: 15px; height: 15px; font-size: 15px; }
.sv-img-x {
  flex: none;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: color .14s ease, border-color .14s ease, background .14s ease;
}
.sv-img-x:hover { color: var(--bad); border-color: color-mix(in srgb, var(--bad) 45%, var(--line)); background: color-mix(in srgb, var(--bad) 8%, var(--surface-2)); }
.sv-imgs-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 11px;
  flex-wrap: wrap;
}
.sv-img-add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  border: 1px dashed color-mix(in srgb, var(--brand) 50%, var(--line));
  border-radius: 11px;
  background: color-mix(in srgb, var(--brand) 7%, transparent);
  cursor: pointer;
  transition: background .14s ease, transform .14s ease;
}
.sv-img-add:hover { background: color-mix(in srgb, var(--brand) 13%, transparent); transform: translateY(-1px); }
.sv-img-add[disabled] { opacity: .45; cursor: not-allowed; transform: none; }
.sv-imgs-tip { font-size: 12.5px; color: var(--muted); }
.sv-img-count { font-size: 12.5px; color: var(--muted); margin-left: auto; }

/* 已上传图集的小角标（和收藏/点赞一个观感） */
.ad-gallery .g-item { position: relative; }

/* ═══════════════════════════════════════════════════════════
 *  4) 其它原生观感
 * ═══════════════════════════════════════════════════════════ */

/* 表单校验失败时浏览器弹的原生气泡管不了，但边框可以统一 */
input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) { border-color: color-mix(in srgb, var(--bad) 55%, var(--line)); }

/* 说明：站内 <button> 基本都带 .btn 类，无类名的那几个（顶栏搜索、聊天撤回）
   各自有容器样式管着，这里一律不碰；只把裸的 input[type=submit] 美化一下。 */
input[type="submit"]:not([class]),
input[type="button"]:not([class]) {
  padding: 9px 16px;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  cursor: pointer;
}

/* 打印 / 减少动效偏好 */
@media (prefers-reduced-motion: reduce) {
  .svui-mask, .svui-box, .svui-toast { transition: none; }
}

/* ═══════════════════════════════════════════════════════════
 *  卡片封面上的发布者（v6.6.2）
 * ------------------------------------------------------------
 *  源码卡 / 视频卡 / 教程卡 / 资源分享卡 / 用户分享卡，封面左下角统一挂一条
 *  「圆头像 + 发布者名字」。原来占着左下角的下载数角标挪到右上，
 *  轮播小圆点抬到条子上面，谁也不压谁。
 * ═══════════════════════════════════════════════════════════ */

.card-up {
  position: absolute; left: 8px; bottom: 8px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  max-width: calc(100% - 70px);
  padding: 3px 10px 3px 3px; border-radius: 999px;
  background: rgba(10, 12, 18, .58);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: #fff; font-size: 12px; line-height: 1;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
}
.card-up .cup-av {
  width: 20px; height: 20px; border-radius: 50%; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden; font-size: 11px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.card-up .cup-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-up em {
  font-style: normal; font-weight: 600;
  max-width: 108px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* 下载数角标从封面左下挪到右上，把左下让给发布者条 */
.bili-play { left: auto; right: 6px; bottom: auto; top: 6px; }

/* 轮播圆点抬到发布者条上方，别叠在一起 */
.pdd-thumb .sv-gal-dots, .bili-thumb .sv-gal-dots,
.tut-thumb .sv-gal-dots, .share-thumb .sv-gal-dots { bottom: 36px; }

/* 窄屏把条子收小一点，长名字自动省略 */
@media (max-width: 520px) {
  .card-up { font-size: 11.5px; padding-right: 8px; max-width: calc(100% - 58px); }
  .card-up .cup-av { width: 18px; height: 18px; font-size: 10px; }
  .card-up em { max-width: 78px; }
}

/* ═══════════════════════════════════════════════════════════
 *  5) 剩下这些原生观感也一并换掉（v6.6.2）
 * ------------------------------------------------------------
 *  都是浏览器自己画的东西：选中文字的颜色、自动填充的黄底、日期框的小日历、
 *  滑块、进度条、折叠块、分隔线……不改它们，页面里会零星露出生面孔。
 * ═══════════════════════════════════════════════════════════ */

/* 选中文字 */
::selection { background: color-mix(in srgb, var(--brand) 32%, transparent); color: inherit; }

/* 输入框里的提示文字 */
input::placeholder, textarea::placeholder { color: color-mix(in srgb, var(--muted) 78%, transparent); }

/* 浏览器自动填充：默认那层淡黄底会把整行染黄 */
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus,
textarea:-webkit-autofill, select:-webkit-autofill {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 1000px var(--surface) inset;
  box-shadow: 0 0 0 1000px var(--surface) inset;
  transition: background-color 9999s ease-out 0s;
}

/* 日期 / 时间框：小日历图标太灰，换成跟着主题走 */
input[type="date"], input[type="time"], input[type="datetime-local"],
input[type="month"], input[type="week"] { font-variant-numeric: tabular-nums; }
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator,
input[type="month"]::-webkit-calendar-picker-indicator,
input[type="week"]::-webkit-calendar-picker-indicator {
  opacity: .55; cursor: pointer; border-radius: 5px; padding: 2px;
  transition: opacity .15s ease, background .15s ease;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover,
input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover,
input[type="month"]::-webkit-calendar-picker-indicator:hover,
input[type="week"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1; background: color-mix(in srgb, var(--brand) 18%, transparent);
}
html[data-theme="dark"] input[type="date"]::-webkit-calendar-picker-indicator,
html[data-theme="dark"] input[type="time"]::-webkit-calendar-picker-indicator,
html[data-theme="dark"] input[type="datetime-local"]::-webkit-calendar-picker-indicator,
html[data-theme="dark"] input[type="month"]::-webkit-calendar-picker-indicator,
html[data-theme="dark"] input[type="week"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .62; }

/* 滑块 */
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 999px; outline: none;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%; cursor: pointer;
  background: #fff; border: 2px solid var(--brand);
  box-shadow: 0 2px 8px rgba(8, 12, 24, .25);
}
input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%; cursor: pointer;
  background: #fff; border: 2px solid var(--brand);
}
input[type="range"]::-moz-range-track { height: 6px; border-radius: 999px; background: var(--surface-2); }

/* 进度条 */
progress {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; border: 0; border-radius: 999px; overflow: hidden;
  background: var(--surface-2);
}
progress::-webkit-progress-bar { background: var(--surface-2); }
progress::-webkit-progress-value { background: linear-gradient(90deg, var(--brand), var(--brand-2)); border-radius: 999px; }
progress::-moz-progress-bar { background: linear-gradient(90deg, var(--brand), var(--brand-2)); border-radius: 999px; }

/* 折叠块：只接管没自带样式的裸 details，站内已经美化过的那种一律不碰 */
details:not([class]) {
  border: 1px solid var(--line); border-radius: 14px;
  padding: 2px 15px; background: var(--surface);
}
details:not([class])[open] { padding-bottom: 14px; }
details:not([class]) > summary {
  cursor: pointer; padding: 12px 0; font-weight: 600; list-style: none;
  display: flex; align-items: center; gap: 8px;
}
details:not([class]) > summary::-webkit-details-marker { display: none; }
details:not([class]) > summary::after {
  content: ''; width: 7px; height: 7px; margin-left: auto;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px); transition: transform .18s ease;
}
details:not([class])[open] > summary::after { transform: rotate(-135deg) translateY(-2px); }

/* 分隔线 */
hr { border: 0; height: 1px; background: var(--line); margin: 18px 0; }

/* 禁用态：灰一点、光标提示不能用（只挑没自带样式的那些） */
input:disabled:not([class]), select:disabled:not([class]),
textarea:disabled:not([class]) { opacity: .55; cursor: not-allowed; }
