2026-08-23 22:32:39 +08:00
|
|
|
|
/* 像素字体(web 端 BubbledotICG-FinePos 同款,CC BY 4.0)——资源内联为 base64 */
|
|
|
|
|
|
@font-face {
|
|
|
|
|
|
font-family: 'BubbledotICG';
|
|
|
|
|
|
src: url('./assets/fonts/BubbledotICG-FinePos.ttf') format('truetype');
|
|
|
|
|
|
font-display: swap;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* page 是最顶层根节点,所有页面共用 —— 未来感背景直接铺这里,
|
|
|
|
|
|
不依赖任何 App 层 DOM(Taro 下 App.render 不会渲染成包裹页面的容器)。 */
|
|
|
|
|
|
/* page = 微信真正的根节点,背景直接铺这里(Taro 下 App.render 不渲染成包裹容器的 DOM)。
|
|
|
|
|
|
星点:平铺小格(各自尺寸 + repeat);光晕与底:满屏(100%);逐层 background-size/repeat 匹配。 */
|
2026-08-27 16:06:15 +08:00
|
|
|
|
/* Soft UI 浅色柔彩底色(无动画、无 canvas,真机流畅不遮挡) */
|
2026-08-23 22:32:39 +08:00
|
|
|
|
page {
|
2026-08-27 16:06:15 +08:00
|
|
|
|
background: #f4f6ff;
|
|
|
|
|
|
color: #3a4672;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
background-image:
|
|
|
|
|
|
radial-gradient(64% 42% at 12% 2%, rgba(229, 167, 224, 0.26), transparent 60%),
|
|
|
|
|
|
radial-gradient(56% 40% at 94% 4%, rgba(158, 225, 236, 0.30), transparent 60%),
|
|
|
|
|
|
radial-gradient(50% 42% at 84% 100%, rgba(151, 225, 212, 0.22), transparent 60%),
|
|
|
|
|
|
linear-gradient(165deg, #edf2ff 0%, #f6eefc 40%, #ecf7f6 72%, #eaf4ff 100%);
|
|
|
|
|
|
background-attachment: fixed;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 隐藏滚动条:所有页面内容可滚动,但不显示滚动条(含内部横向滚动容器) */
|
|
|
|
|
|
page::-webkit-scrollbar,
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
width: 0;
|
|
|
|
|
|
height: 0;
|
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
page { -ms-overflow-style: none; scrollbar-width: none; }
|
|
|
|
|
|
.ev-tabs, .phase-filters, .quiz-body, .sv-opts, .ot-opts { scrollbar-width: none; }
|
|
|
|
|
|
|
|
|
|
|
|
/* 页面切换淡入:挂到各页面根容器,切换时淡入,缓解硬切/一瞬空白 */
|
|
|
|
|
|
.page-in {
|
|
|
|
|
|
animation: pageIn 0.22s ease both;
|
|
|
|
|
|
}
|
|
|
|
|
|
@keyframes pageIn {
|
|
|
|
|
|
from { opacity: 0; }
|
|
|
|
|
|
to { opacity: 1; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 内容层:底部留白避开固定 tabBar(含首页上凸按钮)。
|
|
|
|
|
|
用 @supports 把「基础值」与「安全区增强」分成两条独立规则:
|
|
|
|
|
|
压缩器无法合并去重,即使 env() 在个别基础库不可用,180rpx 基础值仍生效,内容绝不被遮蔽 */
|
|
|
|
|
|
.app {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
|
padding-bottom: 180rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 测评/政策/流程等:标题/进度头部保持在顶部,仅题目/表单卡片垂直居中。整页不滚动 */
|
|
|
|
|
|
.quiz-center {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
z-index: 2;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
height: 100vh;
|
|
|
|
|
|
overflow: hidden; /* 内容超出即裁剪,杜绝页面滚动 */
|
|
|
|
|
|
}
|
|
|
|
|
|
.quiz-body {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
min-height: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@supports (padding-bottom: env(safe-area-inset-bottom)) {
|
|
|
|
|
|
.app {
|
|
|
|
|
|
padding-bottom: calc(180rpx + env(safe-area-inset-bottom));
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-08-27 16:06:15 +08:00
|
|
|
|
/* 通用卡片(Soft UI:柔白面 + 软阴影 + 大圆角) */
|
2026-08-23 22:32:39 +08:00
|
|
|
|
.card {
|
2026-08-27 16:45:45 +08:00
|
|
|
|
background: rgba(255,255,255,0.55); backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
|
2026-08-27 16:06:15 +08:00
|
|
|
|
border: 1px solid rgba(99, 132, 255, 0.12);
|
2026-08-23 22:32:39 +08:00
|
|
|
|
border-radius: 20px;
|
|
|
|
|
|
padding: 24px;
|
|
|
|
|
|
margin-bottom: 16px;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
box-shadow: 0 10rpx 28rpx rgba(59, 79, 125, 0.09);
|
|
|
|
|
|
backdrop-filter: blur(8px);
|
2026-08-23 22:32:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.card-title {
|
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
|
font-weight: 700;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #23315c;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.card-desc {
|
|
|
|
|
|
font-size: 26px;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #6a76a8;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-main {
|
2026-08-27 16:06:15 +08:00
|
|
|
|
background: linear-gradient(135deg, #6b8bff, #8f7bff);
|
2026-08-23 22:32:39 +08:00
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
|
padding: 0 40px;
|
|
|
|
|
|
line-height: 2.6;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
box-shadow: 0 8rpx 24rpx rgba(98, 132, 255, 0.28);
|
2026-08-23 22:32:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-main::after {
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-ghost {
|
2026-08-27 16:06:15 +08:00
|
|
|
|
background: rgba(255, 255, 255, 0.7);
|
|
|
|
|
|
color: #5a6aa3;
|
|
|
|
|
|
border: 1px solid rgba(99, 132, 255, 0.22);
|
2026-08-23 22:32:39 +08:00
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
|
padding: 0 40px;
|
|
|
|
|
|
line-height: 2.6;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-ghost::after {
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.section-head {
|
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
|
font-weight: 700;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #23315c;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
margin: 32px 0 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.muted {
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #9aa4c6;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
font-size: 24px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
|
单题一屏 · 共享答题组件(OPC 测评 / 政策测评共用)
|
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
.ot-quiz-head {
|
|
|
|
|
|
padding-top: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-quiz-top {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: baseline;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
}
|
|
|
|
|
|
.ot-quiz-left {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 10px;
|
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.ot-back {
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
font-size: 22px;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #6284ff;
|
|
|
|
|
|
background: rgba(99, 132, 255, 0.10);
|
|
|
|
|
|
border: 1px solid rgba(99, 132, 255, 0.24);
|
2026-08-23 22:32:39 +08:00
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
padding: 4px 14px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-quiz-title {
|
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
|
font-weight: 700;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #23315c;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-quiz-tag {
|
|
|
|
|
|
margin-left: 14px;
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
font-weight: 600;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #fff;
|
|
|
|
|
|
background: linear-gradient(135deg, #6b8bff, #8f7bff);
|
2026-08-23 22:32:39 +08:00
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
padding: 4px 16px;
|
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-progress-text {
|
|
|
|
|
|
font-size: 24px;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #9aa4c6;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-progress {
|
|
|
|
|
|
height: 10px;
|
|
|
|
|
|
border-radius: 999px;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
background: rgba(99, 132, 255, 0.14);
|
2026-08-23 22:32:39 +08:00
|
|
|
|
margin: 20px 0;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-progress-fill {
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
border-radius: 999px;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
background: linear-gradient(90deg, #6b8bff, #8f7bff);
|
2026-08-23 22:32:39 +08:00
|
|
|
|
transition: width 0.3s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-part {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
font-size: 24px;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #6284ff;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 单题卡片下方的操作提示 */
|
|
|
|
|
|
.ot-hint {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
|
font-size: 22px;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #9aa4c6;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-qcard {
|
2026-08-27 16:45:45 +08:00
|
|
|
|
background: rgba(255,255,255,0.55); backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
|
2026-08-27 16:06:15 +08:00
|
|
|
|
border: 1px solid rgba(99, 132, 255, 0.12);
|
2026-08-23 22:32:39 +08:00
|
|
|
|
border-radius: 16px;
|
|
|
|
|
|
padding: 28px 30px;
|
|
|
|
|
|
margin-bottom: 20px;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
box-shadow: 0 8rpx 24rpx rgba(59, 79, 125, 0.08);
|
2026-08-23 22:32:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-qcard.answered {
|
2026-08-27 16:06:15 +08:00
|
|
|
|
border-color: rgba(98, 132, 255, 0.5);
|
2026-08-23 22:32:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 一题一屏:卡片更突出,题目/选项更大 */
|
|
|
|
|
|
.ot-qcard.one {
|
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
|
padding: 44px 32px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-qcard.one .ot-qtext {
|
|
|
|
|
|
font-size: 36px;
|
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
|
margin-bottom: 36px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-qcard.one .ot-opt {
|
|
|
|
|
|
padding: 26px 26px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-qnum {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
font-size: 22px;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #a3abc9;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-check {
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #6284ff;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
font-size: 26px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-qtext {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
|
font-weight: 600;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #23315c;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
line-height: 1.5;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-opts {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-opt {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
gap: 12px;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
background: #f6f8ff;
|
|
|
|
|
|
border: 1px solid rgba(99, 132, 255, 0.14);
|
2026-08-23 22:32:39 +08:00
|
|
|
|
border-radius: 14px;
|
|
|
|
|
|
padding: 20px 22px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-opt.sel {
|
2026-08-27 16:06:15 +08:00
|
|
|
|
border-color: #6284ff;
|
|
|
|
|
|
background: rgba(99, 132, 255, 0.08);
|
2026-08-23 22:32:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.opt-key {
|
|
|
|
|
|
font-family: 'BubbledotICG', monospace;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #8a94c0;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
font-size: 26px;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-opt.sel .opt-key {
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #6284ff;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.opt-text {
|
|
|
|
|
|
font-size: 27px;
|
2026-08-27 16:06:15 +08:00
|
|
|
|
color: #4a5580;
|
2026-08-23 22:32:39 +08:00
|
|
|
|
line-height: 1.55;
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 底部导航(上一题 / 进度计数) */
|
|
|
|
|
|
.ot-nav-one {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
gap: 16px;
|
|
|
|
|
|
margin: 28px 0 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-nav-btn {
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
line-height: 2.4;
|
|
|
|
|
|
padding: 0 28px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-nav-info {
|
|
|
|
|
|
font-family: 'BubbledotICG', monospace;
|
|
|
|
|
|
font-size: 26px;
|
|
|
|
|
|
color: #8e8e8e;
|
|
|
|
|
|
letter-spacing: 2px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 单选无右侧按钮时,占位保持计数居中 */
|
|
|
|
|
|
.ot-nav-empty {
|
|
|
|
|
|
width: 110px;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ot-loading {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
font-size: 26px;
|
|
|
|
|
|
color: #ffd28a;
|
|
|
|
|
|
margin-top: 24px;
|
|
|
|
|
|
}
|
2026-08-27 15:47:17 +08:00
|
|
|
|
|
|
|
|
|
|
/* 通用线性图标(CSS mask SVG,仿 lucide;禁用 emoji 图标) */
|
|
|
|
|
|
.ic {
|
|
|
|
|
|
display: inline-block; width: 36rpx; height: 36rpx; background-color: currentColor;
|
|
|
|
|
|
-webkit-mask-repeat: no-repeat; -webkit-mask-position: center; -webkit-mask-size: contain;
|
|
|
|
|
|
mask-repeat: no-repeat; mask-position: center; mask-size: contain;
|
|
|
|
|
|
}
|
|
|
|
|
|
.ic-play { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M5 3l14 9-14 9V3z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M5 3l14 9-14 9V3z'/%3E%3C/svg%3E"); }
|
|
|
|
|
|
.ic-heart { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M20.8 4.6a5.5 5.5 0 0 0-7.8 0L12 5.6l-1-1a5.5 5.5 0 0 0-7.8 7.8l1 1L12 21l7.8-7.6 1-1a5.5 5.5 0 0 0 0-7.8z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M20.8 4.6a5.5 5.5 0 0 0-7.8 0L12 5.6l-1-1a5.5 5.5 0 0 0-7.8 7.8l1 1L12 21l7.8-7.6 1-1a5.5 5.5 0 0 0 0-7.8z'/%3E%3C/svg%3E"); }
|
|
|
|
|
|
.ic-check { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); }
|
|
|
|
|
|
.ic-thumb { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M7 10v12M15 5.9s0-1-.5-2a1.5 1.5 0 0 0-2.8 1C12.4 6.6 11 10 11 10h6a2 2 0 0 1 2 2.5l-1.4 5.6a2 2 0 0 1-2 1.5H7M15 6l2-1.5a1.5 1.5 0 0 1 2.7 1.3L18 13M7 22H4a2 2 0 0 1-2-2V12a2 2 0 0 1 2-2h3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M7 10v12M15 5.9s0-1-.5-2a1.5 1.5 0 0 0-2.8 1C12.4 6.6 11 10 11 10h6a2 2 0 0 1 2 2.5l-1.4 5.6a2 2 0 0 1-2 1.5H7M15 6l2-1.5a1.5 1.5 0 0 1 2.7 1.3L18 13M7 22H4a2 2 0 0 1-2-2V12a2 2 0 0 1 2-2h3'/%3E%3C/svg%3E"); }
|
|
|
|
|
|
.ic-share { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M4 12v7a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7M16 6l-4-4-4 4M12 2v13'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M4 12v7a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7M16 6l-4-4-4 4M12 2v13'/%3E%3C/svg%3E"); }
|
|
|
|
|
|
.ic-cmt { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E"); }
|
2026-08-27 16:06:15 +08:00
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
|
Soft UI 全局降级:表单控件/选项统一柔白面 + 深蓝灰文本(覆盖各页暗色控件)
|
|
|
|
|
|
============================================================ */
|
2026-08-27 16:45:45 +08:00
|
|
|
|
.input, .picker, .ot-opt, .sv-opt, .sv-textarea, .sv-lk, .ed-form,
|
2026-08-27 16:06:15 +08:00
|
|
|
|
.ca-textarea, .ca-code .input, .pt-picker, .pt-textarea, .pa-textarea, .pa-picker, .step, .summary, .cell {
|
2026-08-27 16:45:45 +08:00
|
|
|
|
background: rgba(255, 255, 255, 0.55) !important;
|
|
|
|
|
|
backdrop-filter: blur(20px) saturate(160%);
|
|
|
|
|
|
-webkit-backdrop-filter: blur(20px) saturate(160%);
|
2026-08-27 16:06:15 +08:00
|
|
|
|
border-color: rgba(99, 132, 255, 0.16) !important;
|
|
|
|
|
|
color: #3a4672 !important;
|
|
|
|
|
|
}
|