@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .popup { position: fixed; left: 0; right: 0; top: 0; height: 100vh; background-color: rgba(0, 0, 0, 0.4) !important; z-index: 9998; } .popup-info { position: fixed; width: 320px; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); font-size: 30rpx; box-shadow: 0px 1px 13px -6px rgba(0, 0, 0, 0.25); background-color: #fff; z-index: 9999; border-radius: 8px; display: flex; flex-direction: column; align-items: center; } .popup-info .popup-title { width: 320px; height: 56px; background: linear-gradient(95.13deg, #5DA4F7 3.75%, #3285E4 95.95%); border-radius: 8px 8px 0px 0px; display: flex; justify-content: center; align-items: center; font-family: 'PingFang SC'; font-style: normal; font-weight: 500; font-size: 17px; line-height: 24px; /* identical to box height, or 140% */ color: #FFFFFF; } .popup-info .popup-text { width: 262px; display: flex; justify-content: center; margin-top: 23px; text-align: center; font-family: 'PingFang SC'; font-style: normal; font-weight: 500; font-size: 17px; line-height: 24px; } .popup-info .popup-btn { display: flex; flex-direction: row; justify-content: space-between; width: 250px; height: 42px; border-top-color: #f5f5f5; margin: 0 auto; margin-top: 22px; margin-bottom: 20px; } .popup-info .popup-btn .btn-left { display: flex; width: 107px; height: 42px; border: 0.5px solid #569FF4; border-radius: 35px; justify-content: center; align-items: center; font-family: 'PingFang SC'; font-style: normal; font-weight: 500; font-size: 16px; line-height: 22px; letter-spacing: -0.2176px; color: #569FF4; } .popup-info .popup-btn .btn-right { display: flex; align-items: center; width: 107px; height: 42px; background: linear-gradient(95.13deg, #5DA4F7 3.75%, #3285E4 95.95%); border-radius: 35px; justify-content: center; align-items: center; font-color: #FFFFFF; font-family: 'PingFang SC'; font-style: normal; font-weight: 500; font-size: 16px; line-height: 22px; letter-spacing: -0.2176px; color: #FFFFFF; }