123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- /* pages/buy/buy.wxss */
- @import "../../module/search/search.wxss"
- @import "../../module/caritem/caritem.wxss"
- .filter_space{
- height: 88rpx;
- }
- .filter_c{
- height: 88rpx;
- position: fixed;
- top:206rpx;
- width:100%;
- background: white;
- }
- .filter_nav{
- display: flex;
- }
- .filter_nav_item{
- flex: 1;
- text-align: center;
- height: 85rpx;
- border-bottom: 3rpx solid white;
- transition: all 0.5s;
- }
- .filter_nav_item_active{
- border-bottom: 3rpx solid #FFE600;
- color:red;
- }
- .filter_nav_name{
- line-height: 80rpx;
- color: rgba(56, 55, 53, 1);
- font-size: 28rpx;
- display: inline;
- }
- .filter_nav_switch{
- transition: all 0.5s;
- height: 16rpx;
- width: 16rpx;
- }
- .filter_nav_item_active .filter_nav_switch{
- transform: rotate(180deg);
- }
- /****************排序条件***************/
- .sortby_c{
- overflow: hidden;
- transition: all 0.5s;
- background-color: rgba(56, 55, 53, 0.2);
- }
- .sortby_list{
- background: white;
- padding: 0rpx 38rpx;
- }
- .sortby_item{
- border-top:1px solid rgba(235, 235, 235, 1);
- height: 78rpx;
- line-height: 78rpx;
- font-size:26rpx;
- background-color: white;
- color: rgba(56, 55, 53, 1);
- }
- .sortby_active{
- width:26rpx;
- height: 26rpx;
- float:right;
- margin:30rpx 15rpx 0rpx;
- }
- /****************间隔区间***************/
- .price_c{
- overflow: hidden;
- transition: all 0.5s;
- background-color: rgba(56, 55, 53, 0.2);
- }
- .price_list{
- background: white;
- padding-left:38rpx;
- padding-bottom: 30rpx;
- display: flex;
- justify-content:flex-start;
- flex-wrap:wrap;
- }
- .price_item{
- margin-top:20rpx;
- margin-right: 22rpx;
- border-radius: 6rpx;
- height: 80rpx;
- line-height: 80rpx;
- width: 210rpx;
- font-size:24rpx;
- background-color: white;
- color: rgba(56, 55, 53, 1);
- background-color: rgba(248, 248, 250, 1);
- border:1px solid rgba(248, 248, 250, 1);
- text-align: center;
- }
- .price_item_active{
- background: rgba(255, 230, 0, 0.1);
- border:1px solid #FFE600;
- }
- /****************品牌筛选条件***************/
- .brandw_c{
- position: fixed;
- top:0rpx;
- left:100%;
- width: 100%;
- background: white;
- z-index:101;
- transition: all 0.5s;
- }
- .brandw_title{
- background-color:#fede18;
- height:128rpx;
- position: fixed;
- z-index:100;
- top:0rpx;
- width: 100%;
- }
- .brandw_back{
- width:30rpx;
- height: 30rpx;
- position: absolute;
- top:70rpx;
- left:40rpx;
- }
- .brandw_title_w{
- padding-top: 60rpx;
- font-size: 36rpx;
- height: 44rpx;
- line-height: 44rpx;
- text-align: center;
- }
- /*******like*******/
- .nocar_w{
- margin-top:55rpx;
- height: 39rpx;
- line-height: 39rpx;
- color: rgba(56, 55, 53, 1);
- font-size: 26rpx;
- text-align: center;
- }
- .nocar_back{
- width:280rpx;
- height: 68rpx;
- border-radius: 6rpx;
- line-height: 68rpx;
- color: rgba(56, 55, 53, 1);
- font-size: 26rpx;
- text-align: center;
- background:linear-gradient(90deg,#FFD800,#FFE600);
- margin:40rpx auto;
- }
- .recommend{
- margin-top:20rpx;
- background: white;
- }
- .recommend_t{
- padding:64rpx 0rpx 60rpx;
- }
- .recommend_img{
- height: 32rpx;
- display: block;
- margin:0px auto;
- width:176rpx;
- }
- .like_cart_c{
- margin-top:-20rpx;
- }
|