123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- .share-btn {
- width: fit-content;
- color: #FD6820;
- font-size: 28rpx;
- display: flex;
- align-items: center;
- }
- .share-btn image {
- width: 38rpx;
- }
- .header-btn-box {
- display: flex;
- justify-content: flex-end;
- padding: 0 20rpx;
- box-sizing: border-box;
- position: relative;
- }
- .swiper-box {
- width: 100%;
- margin-bottom: 30rpx;
- }
- .swiper {
- width: 100%;
- height: 300rpx;
- border-radius: 16rpx;
- }
- .swiper-item {
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- color: #fff;
- padding: 0 10rpx;
- box-sizing: border-box;
- }
- .swiper-item-content {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- background-color: #fff;
- border-radius: 16rpx;
- border-radius: 30rpx;
- padding: 24rpx 28rpx;
- box-sizing: border-box;
- }
- .bg {
- width: 100%;
- height: 556rpx;
- position: absolute;
- top: 0;
- left: 0;
- background-color: #F0754C;
- }
- .nav-list {
- width: 100%;
- white-space: nowrap;
- margin-bottom: 40rpx;
- padding: 0 24rpx;
- box-sizing: border-box;
- }
- .child {
- height: 60rpx;
- line-height: 60rpx;
- display: inline-block;
- color: #FFFFFF;
- font-size: 32rpx;
- position: relative;
- margin-right: 50rpx;
- }
- .child:last-child {
- margin-right: 0;
- }
- .child.selected::after {
- content: "";
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translate(-50%, 0);
- width: 54rpx;
- height: 6rpx;
- background-color: #FFFFFF;
- }
- .tabList {
- width: 100%;
- white-space: nowrap;
- }
- .type {
- height: 60rpx;
- line-height: 60rpx;
- border-radius: 10rpx;
- box-sizing: border-box;
- color: #A7A7A7;
- background-color: #fff;
- font-size: 30rpx;
- display: inline-block;
- margin-right: 22rpx;
- border-radius: 100rpx;
- }
- .type:last-child {
- margin-right: 0;
- }
- .active {
- background: rgb(242, 80, 26, 0.22);
- color: #F2501A;
- font-size: 32rpx;
- padding: 0 34rpx;
- }
- .container-wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
- }
- .bottom {
- width: calc(100% - 48rpx);
- padding: 0 20rpx;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- border-radius: 16rpx;
- margin: 0 auto;
- background-color: #fff;
- }
- .bottom-label {
- width: 100%;
- color: #202020;
- font-weight: bold;
- font-size: 34rpx;
- padding: 20rpx 0;
- display: flex;
- align-items: center;
- }
- .bottom-label text {
- font-weight: normal;
- font-size: 30rpx;
- color: #A7A7A7;
- margin-left: 20rpx;
- }
- .list {
- width: 100%;
- margin: 0 auto 20rpx;
- display: flex;
- flex-direction: column;
- background-color: #fff;
- border-radius: 16rpx;
- padding: 24rpx 0;
- box-sizing: border-box;
- }
- .product-item {
- width: 100%;
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
- padding-right: 12rpx;
- box-sizing: border-box;
- }
- .product-item:last-child {
- margin-bottom: 0;
- }
- .product-item-img {
- width: 174rpx;
- height: 174rpx;
- border-radius: 12rpx;
- margin-right: 18rpx;
- }
- .product-item-column {
- flex: 1;
- height: 174rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .product-name {
- width: 100%;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- color: #202020;
- font-weight: bold;
- font-size: 26rpx;
- }
- .product-item-row-between {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .product-item-btn {
- width: 40rpx;
- height: 40rpx;
- line-height: 40rpx;
- border-radius: initial;
- }
- .product-item-btn image {
- width: 100%;
- height: 100%;
- }
- .product-item-price {
- color: #F2501A;
- font-size: 28rpx;
- }
- .product-item-price>text {
- color: #919191;
- font-size: 24rpx;
- margin-left: 6rpx;
- text-decoration: line-through;
- }
|