| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- .manage{
- width: 668rpx;
- font-size: 25rpx;
- text-align: right;
- border-bottom: 2rpx solid #CFCFCF;
- margin: 50rpx auto 0 auto;
- }
- /* 暂无可管理商品 */
- .empty{
- text-align: center;
- padding: 148rpx 0;
- }
- .emptyIcon{
- width: 107rpx;
- height: 107rpx;
- }
- .empty text{
- font-size: 30rpx;
- margin-top: 20rpx;
- display: block;
- }
- /* 商品列表 */
- .prodsList{
- width: 668rpx;
- margin: auto;
- }
- .itemProd{
- height: 224rpx;
- border-bottom: 1rpx solid #EFEFEF;
- display: flex;
- align-items: center;
- }
- /* 商品信息 */
- .goods-info {
- flex: 1;
- display: flex;
- margin-left: 10px;
- }
- .goods-info image {
- width: 170rpx;
- height: 170rpx;
- }
- .goods-info .info {
- margin-left: 10px;
- display: flex;
- flex-direction: column;
- }
-
- /* 数量加减按钮 */
- .count {
- width: 144rpx;
- height: auto;
- display: flex;
- align-items: center;
- }
- .count .addNum,.count .reduceNum {
- width: 39rpx;
- line-height: 39rpx;
- text-align: center;
- font-size: 16px;
- display: inline-block;
- background: #CFCFCF;
- }
- .count .num{
- width: 66rpx;
- text-align: center;
- display: inline-block;
- }
-
- /* 底部栏 */
- .footer {
- position: fixed;
- bottom: 0;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 10px;
- background: #fff;
- border-top: 1px solid #eee;
- }
- .divider{
- margin: 30rpx 0;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .divider .text{
- margin: 0 20rpx;
- }
- .line{
- width: 200rpx;
- height: 2rpx;
- background: #CFCFCF;
- display: inline-block;
- }
|