123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- /* pages/order/order.wxss */
- page{
- padding: 0;
- }
- .tab{
- height: 80rpx;
- display: flex;
- }
- .tab text{
- width: 50%;
- line-height: 80rpx;
- text-align: center;
- color: #333;
- font-size: 26rpx;
- background: #fff;
- transition: .5s;
- }
- .tab .act{
- color: #fff;
- background: #3780CD;
- }
- .content{
- height: calc(100vh - 80rpx);
- overflow: auto;
- padding: 30rpx;
- }
- .list{
- /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
- border-radius: 20rpx;
- display: flex;
- /* padding: 20rpx; */
- /* box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2); */
- /* margin: 0 20rpx 40rpx; */
- padding: 28rpx;
- background: #fff;
- position: relative;
- margin-bottom: 40rpx;
-
- }
- .list image{
- width: 25%;
- height: 210rpx;
- }
- .list>view{
- width: 75%;
- padding-left: 20rpx;
- vertical-align: middle;
- }
- .list .title{
- margin-bottom: 20rpx;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- font-size: 28rpx;
- }
- .list text{
- color: #999;
- display: block;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- white-space: normal;
- font-size: 22rpx;
- }
- .btn{
- /* width: 132rpx; */
- height: 56rpx;
- background: #09A65E;
- border-radius: 6px;
- text-align: center;
- line-height: 56rpx;
- color: #fff;
- font-size: 26rpx;
- position: absolute;
- bottom: 28rpx;
- right: 28rpx;
- padding: 0 6rpx;
- }
- .ewm{
- position: fixed;
- width: 100%;
- height: 100vh;
- top: 0;
- left: 0;
- }
- .bg{
- position: fixed;
- width: 100%;
- height: 100vh;
- top: 0;
- left: 0;
- z-index: 99;
- background: rgba(0,0,0,.5);
- padding: 50rpx 0;
- }
- .ewm>.ww{
- background: #fff;
- border-radius: 18rpx;
- padding: 100rpx;
- display: block;
- position: absolute;
- width: 90%;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
- height: 60vh;
- z-index: 99;
- overflow: auto;
- }
- .form{
- background: #fff;
- border-radius: 18rpx;
- padding: 80rpx 100rpx;
- display: block;
- position: absolute;
- width: 90%;
- height: 700rpx;
- margin: auto;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- text-align: center;
- }
- .form .tt{
- font-size: 32rpx;
- }
- .code{
- width: 400rpx;
- height: 400rpx;
- border: 1px solid #D0D0D0;
- margin: 40rpx auto;
- }
- .code image{
- width: 100%;
- }
- .form text{
- color: #999;
- font-size: 26rpx;
- }
- .addr{
- word-break: break-all;
- }
|