123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- page{
- padding-bottom: 180rpx;
- }
- /* 拼团失败图片 */
- .fail-image{
- text-align: center;
- margin-top: 40rpx;
- margin-bottom: 24rpx;
- }
- .fail-image image{
- width: 200rpx;
- height: 200rpx;
- }
- /* 拼团提醒 */
- .group-tip{
- text-align: center;
- color: #333;
- font-size: 32rpx;
- font-weight: 600;
- margin-bottom: 40rpx;
- }
- /* 拼团说明 */
- .group-explain{
- width: 710rpx;
- height: 260rpx;
- background-color: #fff;
- border-radius: 24rpx;
- margin-left: 20rpx;
- margin-bottom: 20rpx;
- padding: 24rpx;
- box-sizing: border-box;
- }
- .group-explain view{
- font-size: 28rpx;
- color: #333;
- }
- /* 拼团商品 */
- .group-product{
- height: 208rpx;
- width: 710rpx;
- margin-left: 20rpx;
- display: flex;
- background-color: #fff;
- border-radius: 12px;
- padding: 24rpx;
- box-sizing: border-box;
- }
- .product-item-left image{
- width: 160rpx;
- height: 160rpx;
- border-radius: 20rpx;
- margin-right: 20rpx;
- }
- .product-item-right{
- flex: 1;
- height: 160rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .item-right-title{
- height: 80rpx;
- width: 100%;
- font-size: 28rpx;
- color: #333333;
- }
- .item-right-price{
- text-align: right;
- }
- .item-right-price text{
- text-align: right;
- font-size: 20rpx;
- color: #333333;
- }
- .item-right-price .price__big{
- font-size: 36rpx;
- color: #333333;
- }
- /* 拼团列表 */
- .groupList {
- width: 710rpx;
- height: 320rpx;
- background-color: #fff;
- margin-left: 20rpx;
- margin-top: 20rpx;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- border-radius: 24rpx;
- }
- .groupList .group-title {
- display: flex;
- justify-content: space-between;
- margin-bottom: 20rpx;
- }
- .newGroup {
- color: #333333;
- font-size: 28rpx;
- font-weight: 600;
- }
- .Checkmore {
- font-size: 24rpx;
- color: #666666;
- }
- .groupList .groupList-box .groupList-item {
- display: flex;
- align-items: center;
- }
- .groupList .groupList-box .item-image image {
- width: 60rpx;
- height: 60rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- }
- .groupList-item .item-content {
- flex: 1;
- color: #333333;
- font-size: 20rpx;
- }
- .groupList-item .item-content text {
- color: #FA7D22;
- font-size: 20rpx;
- }
- .groupList-item .item-goGroup {
- width: 92rpx;
- height: 40rpx;
- background-color: #FA7D22;
- font-size: 28rpx;
- border-radius: 8rpx;
- font-size: 20rpx;
- color: #fff;
- text-align: center;
- line-height: 40rpx;
- }
- /* 支付 */
- .bottom {
- display: flex;
- position: fixed;
- bottom: 0;
- height: 140rpx;
- /* align-items: center; */
- padding-top: 10rpx;
- box-sizing: border-box;
- width: 100%;
- background-color: #fff;
- }
- .bottom .oneselfBuy,
- .toGroupBuy {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .bottom .oneselfBuy {
- width: 334rpx;
- height: 84rpx;
- background-color: #FF9F58;
- border-radius: 42px 0px 0px 42px;
- margin-left: 40rpx;
- }
- .bottom .toGroupBuy {
- height: 84rpx;
- width: 334rpx;
- background-color: #FA7D22;
- border-radius: 0px 42px 42px 0px;
- }
- .bottom-price {
- color: #fff;
- font-size: 32rpx;
- }
- .bottom-type {
- color: #fff;
- font-size: 28rpx;
- }
|