| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- page {
- background-color: #00b075;
- }
- .uni-icons {
- font-size: 40rpx !important;
- }
- .textbox {
- width: 100%;
- height: 100vh;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- border-top-left-radius: 80rpx;
- border-top-right-radius: 80rpx;
- margin-top: 30rpx;
- background-color: #f9f9f9;
- }
- .inputs .u-content {
- background-color: #fff !important;
- }
- .inputs .uni-input-wrapper {
- background-color: #fff !important;
- }
- .utabs_box {
- width: 100%;
- position: fixed;
- top: 88px;
- background-color: #ffffff;
- z-index: 100;
- }
- .utabs_box .utabs {
- width: 95%;
- margin: 0 auto;
- }
- .loading {
- position: fixed;
- top: 440px;
- width: 95%;
- left: 2.5%;
- text-align: center;
- }
- .loading .img {
- width: 300rpx;
- height: 40rpx;
- }
- .listbox {
- display: flex;
- justify-content: space-around;
- height: calc(100vh - 84px);
- margin-top: 20rpx;
- }
- .listbox .listbox_left {
- background-color: #fff;
- padding: 20rpx;
- width: 140rpx;
- }
- .listbox .listbox_left .listbox_left_item {
- height: 50rpx;
- width: 100%;
- margin-bottom: 20rpx;
- text-align: center;
- border-radius: 10rpx;
- line-height: 50rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .listbox .listbox_left .listbox_left_item_act {
- background-color: rgba(0, 176, 117, 0.2);
- color: #00b075;
- }
- .list {
- width: 70%;
- background-color: #fdfdfd;
- overflow-y: auto;
- }
- .list .list_item {
- width: 100%;
- margin: 0 auto 20rpx;
- padding: 20rpx 20rpx;
- box-sizing: border-box;
- position: relative;
- background-color: #ffffff;
- box-shadow: 0 0 10rpx #bcb9ca;
- }
- .list .list_item .list_item_top {
- display: flex;
- justify-content: space-between;
- }
- .list .list_item .list_item_top .p1 {
- height: 60rpx;
- line-height: 60rpx;
- font-size: 28rpx;
- }
- .list .list_item .list_item_top .p1 image {
- width: 40rpx;
- height: 40rpx;
- vertical-align: text-top;
- margin-right: 20rpx;
- }
- .list .list_item .list_item_top .p2 {
- height: 60rpx;
- line-height: 60rpx;
- font-size: 28rpx;
- color: #42b983;
- }
- .list .list_item .list_item_top .p_out {
- height: 60rpx;
- line-height: 60rpx;
- font-size: 28rpx;
- color: red;
- }
- .list .list_item .list_item_text {
- margin-top: 20rpx;
- }
- .list .list_item .list_item_text ._p {
- font-size: 24rpx;
- color: #636363;
- margin-top: 10rpx;
- }
- .list .list_item .list_item_text ._p:first-child {
- font-size: 28rpx;
- font-weight: 700;
- }
- .list .list_item .list_item_btn {
- width: 126rpx;
- color: #42b983;
- height: 40rpx;
- text-align: center;
- border: 1rpx solid #42b983;
- border-radius: 25rpx;
- font-size: 24rpx;
- line-height: 35rpx;
- position: absolute;
- bottom: 15rpx;
- right: 20rpx;
- }
- .top {
- position: fixed;
- right: 30px;
- bottom: 100px;
- z-index: 100;
- }
- .top image {
- width: 100rpx;
- height: 100rpx;
- }
|