123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .page {
- margin-bottom: 120rpx;
- }
- .page_item{
- border-radius: 5px;
- box-shadow: 0rpx 3rpx 5rpx #DBDBDB;
- margin: 30rpx;
- padding: 0rpx;
- overflow: hidden;
- }
- .item_pic{
- border-top-right-radius: 5px;
- border-top-left-radius: 5px;
- width:695rpx;
- }
- .item_title {
- padding: 0 30rpx 0 30rpx;
- }
- .item_desc {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- padding: 0 30rpx 0 30rpx;
- align-items: center;
- -ms-flex-item-align: center;
- }
- .item_desc .price {
- font-size:36rpx;
- color:#ff9900;
- }
- .item_null {
- margin: 50rpx 30rpx 30rpx 30rpx;
- padding: 0rpx;
- height: 60rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- }
- .item_null .text {
- color: #707070;
- margin: 0 20rpx 0 20rpx;
- font-size: 35rpx;
- }
- .item_null .left_line, .right_line{
- width: 120rpx;
- height: 1rpx;
- }
- .item_null .left_line{
- background: linear-gradient(to right, #DBDBDB , #999);
- }
- .item_null .right_line{
- background: linear-gradient(to left, #DBDBDB , #999);
- }
- .nxh__button2{
- width: 180rpx;
- }
- .nxh__button3 {
- width: 300rpx;
- }
- .cash {
- position: fixed;
- bottom: 0rpx;
- height: 120rpx;
- width: 100%;
- background: #fff;
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- align-items: center;
- }
|