@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ page { padding: 20rpx; box-sizing: border-box; } page .info { padding: 20rpx 40rpx; color: #fff; line-height: 50rpx; font-size: 26rpx; background-size: 100% auto; background-repeat: no-repeat; background-color: #0DC6B6; background-position: top left; box-sizing: border-box; width: 100%; } page .info .tishi { width: 28rpx; height: 28rpx; margin: 0rpx 0 0 20rpx; } page .on { background-image: url("http://www.hnyfwlw.com:8006/bigdata_app/image/cb/onBg.png"); } page .off { background-image: url("http://www.hnyfwlw.com:8006/bigdata_app/image/cb/offBg.png"); } page .equip_part { display: flex; flex-wrap: wrap; text-align: center; font-size: 28rpx; color: #666; line-height: 50rpx; } page .equip_part image { width: 52rpx; } page .equip_part .item1 { padding: 20rpx 0; box-sizing: border-box; flex-basis: 25%; } page .equip_part .item2 { padding: 20rpx 10rpx; box-sizing: border-box; flex-basis: 33%; /* flex-grow: 1; */ } page .equip_part .item3 { padding: 20rpx 0; box-sizing: border-box; flex-basis: 25%; } page .tit { font-weight: 800; height: 50rpx; font-size: 30rpx; margin-bottom: 20rpx; display: flex; justify-content: space-between; } page .tit .span { color: #6e6c76; font-size: 24rpx; display: flex; justify-content: space-between; /* margin-top: 12rpx; */ } page .newtishi { width: 90%; margin: 0 auto; text-align: center; padding-top: 40rpx; font-size: 32rpx; } page .newtishi .dataloading:after { overflow: hidden; display: inline-block; vertical-align: bottom; -webkit-animation: ellipsis 2s infinite; animation: ellipsis 2s infinite; content: "\2026"; } @-webkit-keyframes ellipsis { from { width: 2px; } to { width: 15px; } } @keyframes ellipsis { from { width: 2px; } to { width: 15px; } } page .newState { display: flex; flex-wrap: wrap; text-align: center; margin: 0 -10rpx; } page .newState .item { display: flex; flex-wrap: nowrap; margin: 10rpx; width: 345rpx; justify-content: flex-start; padding: 20rpx 10rpx; box-sizing: border-box; border-radius: 4px; box-shadow: 0px 0px 5px 3px rgba(136, 136, 136, 0.1); font-size: 24rpx; } page .newState .item .info-con { padding-left: 30rpx; text-align: left; line-height: 40rpx; } page .newState .item .item_info_img { width: 30%; text-align: center; } page .newState .item .item_info_img image { width: 64rpx; height: 64rpx; margin-top: 10rpx; } page .btn-box { text-align: center; padding: 30rpx; } page .field .uni-input-input { border: 2rpx solid #FF0000; border-radius: 24rpx; width: 140px; padding-left: 10rpx; box-sizing: border-box; } .u-calendar__action { display: flex; justify-content: space-around; } .u-calendar__action .u-calendar__action__text { line-height: 25px; } .red { color: #eb6765; }