From a20379890e116aad285d5afe651292690f8ac733 Mon Sep 17 00:00:00 2001 From: gyq <875626088@qq.com> Date: Mon, 15 Dec 2025 17:41:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=96=B0=E7=89=88=E7=A7=81?= =?UTF-8?q?=E5=9F=9F=E5=BC=95=E6=B5=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pageMarket/drainageConfig/index.vue | 694 +++++++++++++++------------- 1 file changed, 380 insertions(+), 314 deletions(-) diff --git a/pageMarket/drainageConfig/index.vue b/pageMarket/drainageConfig/index.vue index 8930055..271928a 100644 --- a/pageMarket/drainageConfig/index.vue +++ b/pageMarket/drainageConfig/index.vue @@ -1,366 +1,432 @@ \ No newline at end of file +.new_preview { + --bg: #3f3b37; + --color: #f6dfc4; + --borderColor: #f6dfc45b; + width: 90vw; + background-color: var(--bg); + border-radius: 4px; + position: relative; + .close { + --size: 70upx; + width: var(--size); + height: var(--size); + border-radius: 50%; + background-color: var(--bg); + display: flex; + align-items: center; + justify-content: center; + position: absolute; + bottom: calc(var(--size) * -1 - 20upx); + left: 50%; + margin-left: calc(var(--size) / 2 * -1); + } + + .header { + display: flex; + align-items: center; + justify-content: center; + font-size: 16px; + color: var(--color); + height: 50px; + border-bottom: 1px dashed var(--borderColor); + } + + .content { + padding-bottom: 14px; + + .title { + font-size: 14px; + color: var(--color); + height: 50px; + display: flex; + align-items: center; + justify-content: center; + } + + .img_wrap { + display: flex; + justify-content: center; + + .img { + --size: 220px; + width: var(--size); + height: var(--size); + border-radius: 4px; + } + } + + .intro { + height: 40px; + font-size: 14px; + color: var(--color); + display: flex; + align-items: center; + justify-content: center; + padding: 0 14px; + } + + .foot { + height: 40px; + color: var(--borderColor); + font-size: 14px; + display: flex; + align-items: center; + justify-content: center; + padding: 0 14px; + text-align: center; + } + } +} +