123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- .goods-bottom-bar {
- height: 96rpx;
- display: flex;
- }
- .goods-bottom-bar .leftBtn {
- height: 94rpx;
- display: flex;
- border-top: 2rpx solid #efefef;
- }
- .goods-bottom-bar .leftBtn .bar-item {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .goods-bottom-bar .leftBtn .back-to-index {
- width: 132rpx;
- height: 94rpx;
- font-size: 20rpx;
- color: #707070;
- }
- .goods-bottom-bar .leftBtn .back-to-index .icon {
- width: 54rpx;
- height: 54rpx;
- }
- .goods-bottom-bar .leftBtn .shop-cart {
- width: 132rpx;
- height: 96rpx;
- font-size: 20rpx;
- color: #707070;
- position: relative;
- }
- .goods-bottom-bar .leftBtn .shop-cart .icon {
- width: 54rpx;
- height: 54rpx;
- position: relative;
- }
- .goods-bottom-bar .leftBtn .shop-cart .icon .img {
- width: 100%;
- height: 100%;
- }
- .goods-bottom-bar .leftBtn .shop-cart .icon .cart-num {
- position: absolute;
- right: -16rpx;
- top: -4rpx;
- width: 36rpx;
- height: 36rpx;
- background: #ff384a;
- border-radius: 36rpx;
- color: #fff;
- font-size: 22rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .goods-bottom-bar .goodsStatus {
- width: 100%;
- height: 96rpx;
- background: #dcdcdc;
- font-size: 30rpx;
- color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .goods-bottom-bar .gobuy {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-weight: bold;
- }
- .goods-bottom-bar .gobuy .add-to-cart {
- width: 240rpx;
- height: 96rpx;
- background: linear-gradient(270deg, #f9c706 0%, #feb600 100%);
- color: #fff;
- font-size: 30rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .goods-bottom-bar .gobuy .btn {
- width: 208rpx;
- height: 96rpx;
- position: absolute;
- opacity: 0;
- z-index: 9;
- top: 0;
- padding: 0;
- margin: 0;
- }
- .goods-bottom-bar .gobuy .balanceBtn {
- display: flex;
- flex: 1;
- }
- .goods-bottom-bar .gobuy .balanceBtn .balance {
- height: 96rpx;
- flex: 1;
- background: linear-gradient(90deg, #ff5041 0%, #ff695c 100%);
- color: #fff;
- font-size: 30rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
|