123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* uni.scss */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .content {
- background-color: #F8F8F8;
- }
- .content .order-list-box {
- height: 80vh;
- background-color: #F8F8F8;
- padding-top: 20rpx;
- }
- .content .red {
- color: red;
- }
- .menu-top {
- width: 100%;
- background-color: #FFFFFF;
- }
- .menu-top .menu-list {
- background-color: #F7E8CB;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .card {
- width: 93%;
- padding: 30rpx;
- margin: 0 auto;
- margin-bottom: 40rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- background-color: #FFFFFF;
- border-radius: 30rpx;
- }
- .card .type_name {
- width: 4em;
- text-align: center;
- }
- .card .type_status {
- width: 20%;
- text-align: center;
- }
- .card .green {
- color: #42C308;
- border: 1px #42C308 solid;
- }
- .card .yellow {
- color: #F7B314;
- border: 1px #F7B314 solid;
- }
- .card .blue {
- color: #49BEFA;
- border: 1px #49BEFA solid;
- }
- .card .center {
- width: 60%;
- position: relative;
- }
- .card .center .image {
- width: 50rpx;
- height: 40rpx;
- }
- .card .row {
- position: relative;
- margin: 8rpx 0;
- }
- .card .row .length {
- position: absolute;
- right: 20rpx;
- }
- .card .row .name {
- color: #999;
- width: 20%;
- }
- .card .row .text {
- width: 80%;
- }
- .card .half {
- width: 50%;
- justify-content: flex-start;
- }
- .card .half .name {
- color: #999;
- width: 40%;
- }
- .card .half .text {
- width: 60%;
- }
- .card .border {
- border-top: 1px #eee solid;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: flex-end;
- }
- .card .btn {
- background-color: #F6B301;
- color: #FFFFFF;
- margin: 20rpx 20rpx 0 20rpx;
- padding: 10rpx 30rpx;
- border-radius: 50rpx;
- min-width: 120rpx;
- text-align: center;
- }
- .big-text {
- font-size: 38rpx;
- font-weight: bold;
- }
- .u-update-content {
- width: 500rpx;
- height: 650rpx;
- padding: 40rpx;
- background-image: url("http://pet.hdlkeji.com/assets/static/1/110.png");
- background-size: 100% 100%;
- }
- .u-update-content .u-update-top {
- height: 50%;
- display: flex;
- position: relative;
- }
- .u-update-content .u-update-top .top-image {
- height: 300rpx;
- width: 300rpx;
- position: absolute;
- left: 100rpx;
- }
- .u-update-content .u-update-bottom {
- height: 50%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- }
- .u-update-content .u-update-bottom .btn {
- width: 115px;
- height: 34px;
- background: linear-gradient(90deg, #F6B44D 0%, #FF7A60 100%);
- box-shadow: 0px 3px 6px rgba(248, 144, 64, 0.35);
- opacity: 1;
- border-radius: 34px;
- text-align: center;
- line-height: 34px;
- color: #fff;
- }
|