/**
 * 全站浏览器兼容（360、搜狗、QQ、Edge、Chrome、Safari、Firefox 等）
 * 仅修正表单控件与文本渲染，不改变布局逻辑。
 */

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* 避免部分内核把表单文字渲染成透明或不可见 */
input,
textarea,
select,
button {
    -webkit-text-fill-color: currentColor;
}

select {
    color: inherit;
    background-color: transparent;
}

/* 后台深色主题下的原生 select（非富文本自定义下拉） */
.admin-body select,
.admin-form select,
.admin-settings-input[type="text"],
.admin-settings-input:not([type]),
.admin-publish-input,
.admin-theme-select,
.admin-log-filters select,
.admin-tpl-select {
    color: var(--a-text, #e4e6ec);
    background-color: var(--a-input-bg, #12141c);
}

.admin-body select option,
.admin-form select option {
    color: #1a1a1a;
    background: #ffffff;
}

/* 前台表单（联系页等） */
.site-main input,
.site-main textarea,
.site-main select,
.contact-form input,
.contact-form textarea,
.contact-form select {
    color: inherit;
    background-color: inherit;
}

/* 图片懒加载与解码：保持默认，仅确保 max-width */
img,
video {
    max-width: 100%;
    height: auto;
}
