12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* pages/qrcode/qrcode.wxss */
- .qrcode {
- width: 100vw;
- padding: 30rpx;
- }
- .step {
- padding: 30rpx 50rpx;
- margin-bottom: 20rpx;
- }
- .item1 {
- display: flex;
- align-items: center;
- justify-content: space-between;
- background: #FCEDE3;
- margin-bottom: 30rpx;
- padding: 30rpx 50rpx;
- }
- .item1 image {
- width: 90rpx;
- height: 90rpx;
- }
- .item1 text {
- color: #F86B38;
- font-size: 32rpx;
- flex: 1;
- padding-left: 70rpx;
- text-align: left;
- }
- .start {
- display: block;
- width: 80%;
- height: 80rpx;
- line-height: 80rpx;
- margin: 50rpx auto;
- background: #2662FF;
- color: #fff;
- border-radius: 50rpx;
- text-align: center;
- font-size: 32rpx;
- }
- .base {
- max-width: 680rpx;
- display: block;
- margin: 50rpx auto;
- }
- .item {
- margin-top: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background: #fff;
- padding: 20rpx;
- font-size: 30rpx;
- border-bottom: 2rpx solid #EDEDED;
- }
- .info {
- color: #999;
- }
- .info image {
- width: 40rpx;
- height: 40rpx;
- vertical-align: middle;
- }
|