123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- /* pages/shareOrderDetail/shareOrderDetail.wxss */
- page {
- height: 100%;
- background-size: 100%;
- background: #F9F9F9;
- }
- .order-detail {
- margin: 30rpx;
- background: #fff;
- border-radius: 10rpx;
- padding: 15rpx 20rpx;
- box-shadow:1rpx 2rpx 20rpx 5rpx #eee
- }
- .order-detail_i {
- border-bottom: 1rpx solid #eee;
- padding: 0 16rpx;
- display: flex;
- flex-direction: row;
- font-size: 32rpx;
- height: 96rpx;
- align-items: center;
- }
- .order-detail_i_l {
- padding: 15rpx;
- color: #636363;
- font-size: 28rpx;
- display: flex;
- flex-direction: row;
- }
- .order-detail_i_name{
- width: 200rpx;
- font-weight: 700;
- white-space:nowrap;
- text-align: right;
- color:#636363;
- }
- .weui-uploader {
- margin-top: 10rpx;
- }
- .weui-uploader__hd {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- padding-bottom: 10px;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .weui-uploader__title {
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- color: #333;
- }
- .weui-uploader__info {
- color: #b2b2b2;
- }
- .weui-uploader__bd {
- margin-bottom: -4px;
- margin-right: -9px;
- overflow: hidden;
- }
- .weui-uploader__file {
- float: left;
- margin-right: 9px;
- margin-bottom: 9px;
- }
- .weui-uploader__img {
- display: block;
- width: 79px;
- height: 79px;
- }
- .weui-uploader__file_status {
- position: relative;
- }
- .weui-uploader__file_status:before {
- content: " ";
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background-color: rgba(0, 0, 0, 0.5);
- }
- .weui-uploader__file-content {
- position: absolute;
- top: 50%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- color: #fff;
- }
- .weui-uploader__input-box {
- float: left;
- position: relative;
- margin-right: 9px;
- margin-bottom: 9px;
- width: 77px;
- height: 77px;
- border: 1px solid #d9d9d9;
- }
- .weui-uploader__input-box:after, .weui-uploader__input-box:before {
- content: " ";
- position: absolute;
- top: 50%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- background-color: #d9d9d9;
- }
- .weui-uploader__input-box:before {
- width: 2px;
- height: 39.5px;
- }
- .weui-uploader__input-box:after {
- width: 39.5px;
- height: 2px;
- }
- .weui-uploader__input-box:active {
- border-color: #999;
- }
- .weui-uploader__input-box:active:after, .weui-uploader__input-box:active:before {
- background-color: #999;
- }
- .weui-uploader__input {
- position: absolute;
- z-index: 1;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- opacity: 0;
- }
- .register-btn{
- background: #0099ff;
- border-radius: 10px;
- background-size: 100%;
- width:592rpx;
- height: 114rpx;
- margin:50rpx auto 80rpx;
- color:#fff;
- font-size: 36rpx;
- line-height:114rpx;
- text-align: center;
- font-weight:bold;
- }
- .picker-content{
- height: 96rpx;
- line-height: 96rpx;
- width:420rpx;
- }
|