123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- .codeDetail {
- width: 100vw;
- min-height: 100vh;
- background-color: rgb(247, 247, 247);
- .detail-top {
- width: 100%;
- height: 100%;
- position: relative;
- z-index: 999;
- @include flex(center);
- .back-icon {
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- }
- .shop-name {
- color: #000;
- font-size: 32rpx;
- }
- }
- .seize {
- width: 100%;
- height: 16rpx;
- background-color: #ffffff;
- }
- .container {
- width: 100%;
- padding: 32rpx 60rpx 0;
- box-sizing: border-box;
- // @include flex(center, column, null);
- position: relative;
- .code-image {
- width: 650rpx;
- position: relative;
- z-index: -1111;
- }
- .img-box {
- width: 100%;
- /* position: absolute;
- top: 32rpx;
- z-index: 9999;
- left: 50%;
- transform: translateX(-50%); */
- height: 908rpx;
- display: block;
- }
- .text {
- margin-top: 16rpx;
- text-align: center;
- margin-bottom: 32rpx;
- font-size: 28rpx;
- color: #3d3d3d;
- }
- .btn {
- margin: 0 auto;
- width: 332rpx;
- height: 96rpx;
- color: #ffffff;
- background-color: #fe4b1e;
- text-align: center;
- line-height: 96rpx;
- border-radius: 16rpx;
- font-size: 28rpx;
- }
- }
- .illustrate {
- position: fixed;
- left: 50%;
- transform: translateX(-50%);
- bottom: 80rpx;
- color: #ef530e;
- font-size: 28rpx;
- .illustrate-box {
- @include flex(center, null, 9rpx);
- margin-bottom: 20rpx;
- }
- }
- .use-illustrate {
- width: 100%;
- border-radius: 16rpx 16rpx 0 0;
- height: 394rpx;
- padding: 48rpx 32rpx 0 32rpx;
- box-sizing: border-box;
- .use-title {
- font-size: 32rpx;
- color: rgba(0, 0, 0, 0.9);
- font-weight: 600;
- margin-bottom: 32rpx;
- text-align: center;
- }
- .use-text {
- font-size: 28rpx;
- color: rgba(0, 0, 0, 0.4);
- }
- .use-btn {
- width: 100%;
- height: 96rpx;
- line-height: 96rpx;
- text-align: center;
- font-weight: 500;
- font-size: 32rpx;
- color: #ffffff;
- border-radius: 16rpx;
- background-color: #fe4b1e;
- margin-top: 48rpx;
- }
- }
- .pay-way {
- width: 100%;
- height: 428rpx;
- border-radius: 16rpx 16rpx 0 0;
- padding: 48rpx 32rpx 0 32rpx;
- box-sizing: border-box;
- .pay-title {
- font-size: 32rpx;
- color: rgba(0, 0, 0, 0.9);
- font-weight: 600;
- margin-bottom: 52rpx;
- text-align: center;
- }
- .pay-more {
- width: 100%;
- @include flex(center, null, 32rpx);
- flex-wrap: wrap;
- .more-box {
- width: 206rpx;
- @include flex(flex-start, null, 16rpx);
- image {
- width: 40rpx;
- height: 40rpx;
- display: block;
- }
- text {
- color: #3d3d3d;
- font-size: 28rpx;
- }
- }
- }
- .pay-btn {
- width: 100%;
- height: 96rpx;
- line-height: 96rpx;
- text-align: center;
- font-weight: 500;
- font-size: 32rpx;
- color: #ffffff;
- border-radius: 16rpx;
- background-color: #fe4b1e;
- margin-top: 48rpx;
- }
- }
- }
|