12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .page {
- margin-bottom: 138rpx;
- }
- .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;
- }
- .item_desc .price {
- font-size:36rpx;
- color:#ff9900;
- display: flex;
- flex-grow: 1;
- }
- .nxh__button2{
- width: 180rpx;
- margin-bottom: 25rpx;
- }
- .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__button3 {
- width: 300rpx;
- }
- .cash {
- position: fixed;
- bottom: 0rpx;
- height: 138rpx;
- width: 750rpx;
- background: #fff;
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- align-items: center;
- }
|