@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .uni-row::after { clear: both; width: 608rpx; border-bottom: 1rpx solid #E3E6EC; -webkit-transform: translateX(28rpx); transform: translateX(28rpx); } .pageWrapper { width: 100vw; height: calc(100vh-44rpx); padding-top: 44rpx; background: linear-gradient(180deg, #007AFF 0%, #419AFF 16%, #EFF1F4 43%); } .body-wrapper { margin: 0 auto; width: 690rpx; padding-top: 20rpx; padding-left: 15rpx; padding-right: 15rpx; background: #FFFFFF; border-radius: 10rpx; } .body-wrapper.auto { margin-top: 30rpx; background-color: #D1E5FB; } .body-wrapper.auto .demo-uni-row { padding-top: 10rpx; padding-bottom: 10rpx; } .body-wrapper.auto .uni-row::after { border-bottom-color: #FFFFFF; } .body-wrapper.auto .demo-uni-row-unborder::after { border-bottom-color: transparent; } .body-wrapper .sumary-title { position: relative; padding-left: 50rpx; font-size: 32rpx; color: #007AFF; margin-top: 20rpx; margin-bottom: 20rpx; } .body-wrapper .sumary-title:before { content: ''; width: 16rpx; height: 16rpx; background: #007AFF; border-radius: 50%; position: absolute; left: 20rpx; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); } .logo-wrapper { display: flex; justify-content: center; } .logo-wrapper image { width: 366rpx; height: 432rpx; margin: 0 auto; } .mb-10 { margin-bottom: 10rpx; } ._title { height: 70rpx; text-align: center; line-height: 70rpx; margin-right: 10rpx; font-size: 29rpx; font-weight: bold; color: #000000; } ._content { height: 70rpx; line-height: 70rpx; padding-left: 20rpx; position: relative; } ._content:after { content: 'm'; width: 70rpx; height: 70rpx; position: absolute; right: -12rpx; top: 0; text-align: center; line-height: 70rpx; font-size: 29rpx; color: #000000; } .funcBtn { width: 280rpx; height: 70rpx; line-height: 70rpx; background: #007AFF; border-radius: 35rpx; text-align: center; font-size: 29rpx; color: #FFFFFF; border: 2px solid #007AFF; } .funcBtn.end { background: #FFFFFF; color: #007AFF; } .funcBtn.loading { opacity: 0.5; } .footer-wrapper { display: flex; justify-content: space-around; margin-top: 50rpx; } .angle:after { content: '°'; } .unaffix:after { display: none; } /** * 蓝牙连接互动相关 */ page { color: #333; } /*划线 */ .line { background-color: blue; height: 5px; width: 100%; } .div { background-color: white; height: 10px; width: 10px; } .blank { height: 150rpx; }