123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- @charset "UTF-8";
- Page {
- width: 100%;
- height: 100%;
- background-color: #F7F7F7;
- }
- .container {
- width: 100%;
- height: 100%;
- background-color: #F7F7F7;
- /* 门店的标题 */
- }
- .container .shop {
- background-color: #fff;
- border-top: 1rpx solid #ECECEC;
- margin-top: 20rpx;
- /* 未获得授权时显示获取授权按钮 */
- }
- .container .shop > .title {
- display: flex;
- justify-content: space-between;
- padding: 0 40rpx;
- height: 80rpx;
- line-height: 80rpx;
- }
- .container .shop .shop-info {
- width: 100%;
- height: 220rpx;
- border: 1rpx solid #ECECEC;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- margin-bottom: 10rpx;
- background-color: #fff;
- }
- .container .shop .shop-info > .shopimg {
- width: 150rpx;
- height: 150rpx;
- }
- .container .shop .shop-info > .shopimg > .img {
- width: 100%;
- height: 100%;
- }
- .container .shop .shop-info .shopmsg {
- flex: 2;
- height: 200rpx;
- margin-left: 50rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- /* 处理定位图标上移的问题 */
- /* 新品促销标签 */
- }
- .container .shop .shop-info .shopmsg > .shopview {
- display: flex;
- justify-content: space-between;
- }
- .container .shop .shop-info .shopmsg > .shop-address {
- position: relative;
- padding-left: 45rpx;
- }
- .container .shop .shop-info .shopmsg > .shop-address .address-icon {
- position: absolute;
- top: -6rpx;
- left: 0;
- }
- .container .shop .shop-info .shopmsg .mark {
- width: 105rpx;
- height: 30rpx;
- line-height: 30rpx;
- text-align: center;
- border-radius: 30rpx;
- }
- .container .shop .shop-info .shopmsg .discount {
- color: #E359A8;
- border: 1px solid #E359A8;
- }
- .container .shop .shop-info .shopmsg .new {
- border: 1px solid #80CB5F;
- color: #80CB5F;
- }
- .container .shop .user-location-btn {
- width: 100%;
- height: 220rpx;
- border-top: 1rpx solid #ECECEC;
- background-color: #fff;
- position: relative;
- }
- .container .shop .user-location-btn .location-btn {
- background-color: #ECECEC;
- padding: 0;
- width: 50%;
- height: 50%;
- line-height: 100rpx;
- color: #21ad50;
- position: absolute;
- left: 50%;
- top: 28%;
- transform: translate(-50%);
- }
- .container .product {
- overflow-y: auto;
- /* .weui-tabs {
- .weui-tabs-bar__wrp {
- .weui-tabs-bar__content {
- height: 100rpx;
- line-height: 99rpx;
- white-space: nowrap;
- display: flex;
- justify-content: space-around;
- border-bottom: 1rpx solid #ECECEC;
- }
- }
- } */
- }
- .container .product .productinfo {
- width: 95%;
- height: 380rpx;
- padding: 10rpx 0;
- margin: 0 auto;
- }
- .container .product .productinfo .product-item {
- position: relative;
- width: 100%;
- height: 380rpx;
- border-radius: 20rpx;
- background-size: cover;
- background-position: center;
- }
- .container .product .productinfo .product-item .product-desc {
- height: 380rpx;
- color: #fff;
- position: absolute;
- color: #fff;
- top: 210rpx;
- left: 20rpx;
- letter-spacing: 2rpx;
- font-weight: 100;
- }
- .container .product .productinfo .product-item .order {
- position: absolute;
- right: 40rpx;
- bottom: 20rpx;
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- background-color: #098932;
- color: #fff;
- }
- .container .product .productinfo .product-item .order > view {
- width: 70rpx;
- height: 70rpx;
- line-height: 35rpx;
- letter-spacing: 5rpx;
- text-align: center;
- font-size: 14px;
- margin: 18rpx;
- }
- .container .product .productinfo .product-item .gray {
- background-color: #999;
- }
- .container .product .productinfo:first-child {
- margin-top: 10rpx;
- }
- .fw700 {
- font-weight: 500;
- font-size: 18px;
- }
|