From 45ba192d96626ff508405c395d9417fc7416cd2f Mon Sep 17 00:00:00 2001 From: wuhui_zzw <1760308791@qq.com> Date: Mon, 18 Dec 2023 09:37:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=EF=BC=9A=E5=88=86=E9=94=80?= =?UTF-8?q?=E6=B5=B7=E6=8A=A5=E4=B8=AD=E7=9A=84=E5=88=86=E4=BA=AB=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E8=A2=AB=E8=A6=86=E7=9B=96=E5=88=A0=E9=99=A4=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/users/user_spread_code/index.vue | 993 +++++++++++++------------ 1 file changed, 535 insertions(+), 458 deletions(-) diff --git a/pages/users/user_spread_code/index.vue b/pages/users/user_spread_code/index.vue index eb44a18..0bbdd52 100644 --- a/pages/users/user_spread_code/index.vue +++ b/pages/users/user_spread_code/index.vue @@ -1,467 +1,544 @@ +page { + background-color: #a3a3a3 !important; +} + +.canvas { + width: 100%; + position: absolute; + top: 0; + left: 0; +} + +.box { + width: 100%; + height: 100%; + position: relative; + border-radius: 18rpx; + overflow: hidden; + + .user-msg { + position: absolute; + width: 100%; + height: 100%; + display: flex; + align-items: center; + justify-content: center; + + .user-code { + width: 100%; + display: flex; + align-items: center; + justify-content: center; + justify-content: space-between; + + image { + width: 100%; + } + } + } +} + +.img-list { + margin-right: 40px; +} + +.distribution-posters swiper { + width: 100%; + height: 1000rpx; + position: relative; + margin-top: 40rpx; +} + +.distribution-posters .slide-image { + width: 100%; + height: 100%; + margin: 0 auto; + border-radius: 15rpx; +} + +.distribution-posters /deep/.active { + transform: none; + transition: all 0.2s ease-in 0s; +} + +.distribution-posters /deep/ .quiet { + transform: scale(0.8333333); + transition: all 0.2s ease-in 0s; +} + +.distribution-posters .Sharebution { + display: grid; + grid-template-columns: 1fr 1fr; + height: 80rpx; + font-size: 30rpx; + margin: 15rpx auto; + margin-top: 38rpx; + + .left { + width: 350rpx; + color: #fff; + border-radius: 50rpx; + text-align: center; + line-height: 80rpx; + margin: 15rpx auto; + background: #f4c241; + background-color: var(--view-theme); + } + + .right { + font-size: 30rpx; + color: #fff; + width: 350rpx; + border-radius: 50rpx; + text-align: center; + line-height: 80rpx; + margin: 15rpx auto; + background-color: var(--view-theme); + } +} + +.distribution-posters .keep { + font-size: 30rpx; + color: #fff; + width: 600rpx; + height: 80rpx; + border-radius: 50rpx; + text-align: center; + line-height: 80rpx; + margin: 15rpx auto; + background-color: var(--view-theme); +} + +.distribution-posters .preserve { + color: #fff; + text-align: center; + margin-top: 38rpx; +} + +.distribution-posters .preserve .line { + width: 100rpx; + height: 1px; + background-color: #fff; +} + +.distribution-posters .preserve .tip { + margin: 0 30rpx; +} + \ No newline at end of file