| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- page {
- width: 100%;
- }
- .save_btn {
- margin: 50rpx;
- width: 650rpx;
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- background: #FCD202;
- border-radius: 16rpx;
- color: #333333;
- }
- .container {
- width: 100%;
- padding-bottom: calc(98rpx + env(safe-area-inset-bottom));
- padding-bottom: calc(98rpx + constant(safe-area-inset-bottom));
- }
- .container .main {
- padding: 20rpx 20rpx 20rpx;
- }
- .container .main .order-des {
- padding: 30rpx;
- background-color: #fff;
- position: relative;
- }
- .container .main .order-des .title {
- font-size: 30rpx;
- font-weight: bold;
- color: #333333;
- line-height: 32rpx;
- padding-bottom: 20rpx;
- }
- .container .main .order-des .textarea-wrap {
- padding-top: 20rpx;
- width: 100%;
- border-bottom: 1rpx solid #E6E6E6;
- }
- .container .main .order-des .textarea-wrap .textarea {
- width: 100%;
- font-size: 28rpx;
- line-height: 35rpx;
- color: #333;
- }
- .container .main .order-des .textarea-counter {
- text-align: right;
- font-size: 28rpx;
- font-weight: 500;
- color: #999999;
- margin-top: 10rpx;
- }
- .container .main .order-list {
- margin-top: 20rpx;
- padding: 0 30rpx;
- border-radius: 20rpx;
- background-color: #fff;
- }
- .container .main .order-list .order-list-item {
- width: 100%;
- height: 110rpx;
- border-bottom: 1rpx solid #E6E6E6;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .container .main .order-list .order-list-item .tit {
- font-size: 34rpx;
- font-weight: 500;
- color: #333333;
- }
- .container .main .order-list .order-list-item .right {
- font-size: 34rpx;
- font-weight: 500;
- color: #666;
- display: flex;
- align-items: center;
- }
- .container .main .order-list .order-list-item .right .input {
- flex: 1;
- display: flex;
- align-items: center;
- text-align: right;
- padding-right: 10rpx;
- }
- .container .main .order-list .order-list-item:last-child {
- border-bottom: 0;
- }
- .container .btns button {
- margin: 22rpx;
- color: #fff;
- border: none;
- border-radius: 10rpx;
- }
- .container .btns .qr {
- background: #FF4701;
- }
- .container .footer {
- width: 100%;
- height: calc(98rpx + env(safe-area-inset-bottom));
- height: calc(98rpx + constant(safe-area-inset-bottom));
- padding-bottom: env(safe-area-inset-bottom);
- /*兼容IOS>11.2*/
- padding-bottom: constant(safe-area-inset-bottom);
- /*兼容IOS<11.2*/
- background: #FFFFFF;
- position: fixed;
- bottom: 0;
- padding: 0 30rpx;
- z-index: 10;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .container .footer .payinfo {
- font-size: 32rpx;
- font-weight: bold;
- color: #333333;
- }
- .container .footer .payinfo text {
- color: #FF3737;
- }
- .container .footer .tui-button-primar {
- width: 300rpx;
- height: 78rpx;
- line-height: 78rpx;
- background: #FF332F;
- border-radius: 10rpx;
- margin: 0;
- }
- .container .dragImg {
- position: absolute;
- left: 266rpx;
- top: 88rpx;
- height: 99%;
- width: 50%;
- }
- .container .dragImg .area-con {
- width: 186rpx !important;
- }
- .container .dragImg image {
- width: 186rpx !important;
- height: 186rpx !important;
- }
|