123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- .container {
- width: 100%;
- height: 100%;
- background-color: #F7F7F7;
- .shop-info,
- .product-desc,
- .order-time,
- .product-mobile {
- width: 93%;
- margin: 15rpx auto;
- background-color: #fff;
- }
- .shop-info {
- position: relative;
- height: 180rpx;
- width: 93%;
- margin: 10rpx auto;
- background-color: #fff;
- .address-icon {
- width: 50rpx;
- height: 53rpx;
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- left: 70rpx;
- }
- .shop {
- height: 180rpx;
- text-align: left;
- margin-left: 180rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- .shop-name {
- font-size: 17px;
- color: #000;
- font-weight: 500;
- letter-spacing: 2rpx;
- }
- .address {
- font-size: 13px;
- color: #999;
- font-weight: 400;
- margin-top: 20rpx;
- letter-spacing: 1rpx;
- }
- }
- }
- .product-desc {
- display: flex;
- flex-direction: column;
- .product {
- display: flex;
- justify-content: flex-start;
- height: 200rpx;
- padding: 20rpx;
- border-bottom: 1rpx solid #ECECEC;
- .product-img {
- width: 270rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .product-name {
- margin-left: 20rpx;
- position: relative;
- padding-top: 10rpx;
- .title {
- font-size: 17px;
- }
- .price {
- font-size: 18px;
- position: absolute;
- bottom: 0;
- left: 0;
- }
- }
- }
- }
- .people-num {
- display: flex;
- justify-content: space-between;
- height: 90rpx;
- background-color: #fff;
- line-height: 90rpx;
- align-items: center;
- margin-bottom: 10rpx;
- padding-left: 20rpx;
- .num-box {
- width: 250rpx;
- display: flex;
- justify-content: space-around;
- >view {
- width: 40rpx;
- height: 40rpx;
- margin: 5rpx 0;
- background-color: #fff;
- >image {
- width: 30rpx;
- height: 30rpx;
- margin-left: 10rpx;
- }
- }
- .num-text {
- width: 50rpx;
- height: 90rpx;
- line-height: 90rpx;
- text-align: center;
- }
- }
- }
- .desc-title {
- width: 100%;
- text-align: center;
- color: rgb(100, 100, 100);
- line-height: 100rpx;
- letter-spacing: 4rpx;
- }
- .order-time {
- background-color: #fff;
- margin-bottom: 20rpx;
- // padding-bottom: 20rpx;
- display: flex;
- justify-content: flex-start;
- position: relative;
- .weui-tabs {
- width: 100%;
- .weui-tabs-bar__wrp {
- .weui-tabs-bar__content {
- height: 95rpx;
- line-height: 94rpx;
- white-space: nowrap;
- display: flex;
- justify-content: space-around;
- border-bottom: 1rpx solid #ECECEC;
- .weui-tabs-bar__item {
- width: 14.2857%;
- .weui-tabs-bar__title {
- width: 100rpx;
- text-align: center;
- border-bottom-width: 6rpx;
- font-size: 13px;
- }
- }
- }
- }
- .weui-tabs-swiper {
- height: 800rpx;
- }
- }
- .tab-content {
- .orders {
- display: flex;
- flex-wrap: wrap;
- background-color: #fff;
- margin: 10rpx 15rpx 0;
- .time-info {
- width: 20%;
- height: 80rpx;
- line-height: 80rpx;
- // background-color: #E6E6E6;
- margin: 10rpx 0;
- text-align: center;
- }
- .select-time {
- background-color: #DF3361;
- color: #fff
- }
- .out-time {
- color: #acacac;
- }
- }
- }
- }
- .product-mobile {
- height: 100rpx;
- position: relative;
- margin-bottom: 50rpx;
- >button {
- background-color: rgba(0, 0, 0, 0);
- color: #202020;
- font-weight: 400;
- height: 100rpx;
- line-height: 100rpx;
- padding: 0;
- /* margin: 0; */
- position: absolute;
- left: -40rpx;
- top: 0;
- }
- }
- .appointment {
- width: 100%;
- height: 100rpx;
- display: flex;
- justify-content:flex-start;
- .price{
- flex: 1;
- background-color: #222224;
- color: #fff;
- padding-left: 36rpx;
- line-height: 100rpx;
- font-weight: 300;
- letter-spacing: 2rpx;
- }
- .btn{
- width: 300rpx;
- background-color: #BA9D6E;
- text-align: center;
- line-height: 100rpx;
- }
- }
- .appointment-hover {
- background-color: #fff;
- border: 2rpx solid #DF3361;
- color: rgb(54, 54, 54);
- }
- }
|