@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ page .list { padding: 30rpx; background: #F6F6F6; height: 100vh; } page .list .search { width: 690rpx; height: 80rpx; background: #FFFFFF; box-shadow: 0px 2rpx 9rpx 4rpx rgba(99, 99, 99, 0.1); border-radius: 40rpx; display: flex; flex-direction: row; justify-content: space-around; align-items: center; } page .list .search .dist_search { height: 80rpx; max-width: 130rpx; white-space: nowrap; display: flex; margin-left: 20rpx; } page .list .search .dist_search .district { height: 80rpx; font-size: 28rpx; font-weight: bold; color: #111111; line-height: 80rpx; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; max-width: 110rpx; } page .list .search .dist_search > .icon { background: url(/static/icon/1_b01_down.2x.png) no-repeat 0px 0px; background-size: 100% 100%; width: 13rpx; height: 8rpx; line-height: 80rpx; margin-top: 38rpx; margin-left: 10rpx; } page .list .search .separate { width: 0rpx; height: 35rpx; border: 1rpx solid #CCCCCC; box-sizing: border-box; } page .list .search .inp { width: 450rpx; height: 80rpx; } page .list .search .inp .icon { display: inline-block; background: url(/static/icon/1_b01_search.2x.png) no-repeat 0px 0px; background-size: 100% 100%; width: 26rpx; height: 26rpx; margin-bottom: 25rpx; } page .list .search .inp > input { display: inline-block; margin-left: 20rpx; width: 310rpx; height: 80rpx; line-height: 80rpx; background: none; outline: none; border: none; } page .list .postion { margin: 30rpx 30rpx 0 30rpx; } page .list .postion .icon { background: url(/static/icon/1_b01_location.2x.png) no-repeat 0px 0px; background-size: 100% 100%; width: 33rpx; height: 35rpx; display: inline-block; } page .list .postion .current { margin-left: 20rpx; display: inline-block; height: 40rpx; font-size: 28rpx; color: #868686; line-height: 40rpx; max-width: 550rpx; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } page .list .postion .refresh { background: url(/static/icon/icon_shuaxin.2x.png) no-repeat 0px 0px; background-size: 100% 100%; margin-top: 5rpx; width: 27rpx; height: 27rpx; float: right; } page .list .collection { margin-top: 30rpx; } page .list .collection .station { margin-bottom: 30rpx; padding: 40rpx; width: 690rpx; height: 285rpx; background: #FFFFFF; box-shadow: 0px 2rpx 9rpx 4rpx rgba(99, 99, 99, 0.1); border-radius: 18rpx; box-sizing: border-box; } page .list .collection .station .content { display: flex; } page .list .collection .station .content > image { width: 155rpx; height: 155rpx; display: inline-block; } page .list .collection .station .content .detail { margin-left: 20rpx; width: 450rpx; height: 155rpx; display: inline-block; } page .list .collection .station .content .detail .name { height: 45rpx; font-size: 32rpx; font-weight: bold; color: #111111; line-height: 45rpx; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } page .list .collection .station .footer { margin-top: 40rpx; display: flex; justify-content: space-around; } page .list .collection .station .footer .gothere { height: 40rpx; width: 250rpx; font-size: 28rpx; font-weight: bold; color: #6c6c6c; line-height: 40rpx; text-align: center; } page .list .collection .station .footer .separator { color: #CCCCCC; } page .list .collection .station .footer .gobuy { height: 40rpx; font-size: 28rpx; font-weight: bold; width: 250rpx; color: #F3B235; line-height: 40rpx; text-align: center; }