123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- page {
- background-color: #fff;
- }
- .spike_nav {
- background-color: #434343;
- text-align: center;
- color: #fff;
- }
- .spike_nav_item {
- position: relative;
- padding-top: 15rpx;
- padding-bottom: 10rpx;
- box-sizing: border-box;
- }
- .like-tip,.loading,.nomore {
- text-align: center;
- margin: 20rpx 0;
- font-size: 26rpx
- }
- .spike_nav_item.active {
- background-color: #ff5777;
- }
- .spike_nav_item.active::after {
- content: "";
- position: absolute;
- top: 100%;
- left: 50%;
- width: 0;
- height: 0;
- border-width: 14rpx;
- border-style: solid;
- border-color: #ff5777 transparent transparent transparent;
- margin-left: -7rpx;
- }
- .nav_title {
- font-size: 30rpx;
- font-weight: bold;
- }
- .nav_subtitle {
- font-size: 22rpx;
- }
- .spike_list {
- padding: 50rpx 25rpx 0;
- }
- .spike_item {
- position: relative;
- padding-bottom: 28rpx;
- margin-bottom: 28rpx;
- }
- .spike_item::after {
- content: "";
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- height: 1px;
- border-bottom: 1px solid #e5e5e5;
- transform-origin: 0 0;
- transform: scaleY(.5);
- }
- .spike_item .s-flex-item {
- position: relative;
- min-width: 0;
- }
- .spike_item_image {
- width: 220rpx;
- margin-right: 28rpx;
- }
- .spike_item_image image {
- width: 100%;
- }
- .spike_item_title {
- font-size: 28rpx;
- color: #333;
- overflow:hidden;
- text-overflow:ellipsis;
- white-space:nowrap;
- }
- .spike_item_desc {
- display: block;
- font-size: 26rpx;
- color: #999;
- overflow:hidden;
- text-overflow:ellipsis;
- white-space:nowrap;
- margin-top: 14rpx;
- }
- .spike_item_spec {
- display: block;
- font-size: 22rpx;
- color: #999;
- overflow:hidden;
- text-overflow:ellipsis;
- white-space:nowrap;
- margin-top: 14rpx;
- }
- .spike_item_price,.spike_item_btn {
- position: absolute;
- }
- .spike_item_price {
- left: 0;
- bottom: 0;
- }
- .spike_offer_price {
- color: #ff5777;
- font-size: 34rpx;
- font-weight: bold;
- }
- .spike_origin_price {
- font-size: 24rpx;
- text-decoration:line-through;
- color:#999;
- margin-left: 8rpx;
- }
- .spike_item_btn {
- right: 0;
- bottom: -20rpx;
- width: 152rpx;
- margin: 15rpx auto;
- height: 50rpx;
- line-height: 50rpx;
- border-radius: 25rpx;
- background-color: #ff5777;
- color: #fff;
- font-size: 24rpx;
- text-align: center;
- }
- .sale-out {
- background-color: #e5e5e5;
- color: #999;
- }
- .remind {
- background-color: #f7da49;
- color: #000;
- }
|