index.wxss 2.2 KB
page{
  width: 100%;
  height: 100%;
}
.container{
  background-color: rgb(247,247,249);
  padding: 20rpx;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.codeBox1{
	position: relative;
	background-color: #fff;
}
.codeBox2{
	position: relative;
	background-color: #fff;
	margin-top: 20rpx;
}
.qrBox {
	display: flex;
	/* flex-direction: column; */
	align-items: flex-end;
	padding: 20rpx;
	position: relative;
}

.qr-section {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.qr-code {
	width: 300rpx;
	height: 300rpx;
}

.code-box {
	position: absolute;
	bottom: -30rpx;
	background-color: white;
	border: 2rpx solid red;
	padding: 5rpx 15rpx;
	border-radius: 8rpx;
}

.code-text {
	font-size: 28rpx;
	color: #333;
	font-weight: bold;
}

.dashed-line {
	width: 28vw;
	height: 2rpx;
	border-bottom: 2rpx dashed red;
	/* position: relative; */
	/* top: 20rpx; */
}

.code-display {
	display: flex;
	align-items: center;
	/* margin-top: 20rpx; */
	transform: translateY(20rpx);
	z-index: 8;
	position: absolute;
	right: 10px;
	/* justify-content: center; */
}

.label {
	font-size: 30rpx;
	font-weight: bold;
	color: #333;
}

.code-value {
	font-size: 30rpx;
	color: red;
	font-weight: bold;
}

.instruction {
	margin-top: 20rpx;
	font-size: 26rpx;
	color: #666;
	text-align: center;
	position: absolute;
	top: 0;
	right: 0;
	text-align: left;
	width: 50%;
}

.guide-title {
  font-size: 32rpx;
  font-weight: bold;
  margin-bottom: 20rpx;
  padding-top: 40rpx;
  text-align: center;
}
.steps {
  margin-top: 20rpx;
  font-size: 30rpx;
  color: #666;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 50rpx;
  padding-left: 50rpx;
}
.stepsTxt{
	font-weight: bold;
	font-size: 36rpx;
	color: #000;
}
.banner {
  width: 100%;
}
.input-section {
  margin-top: 40rpx;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.code-input {
  width: 80%;
  height: 80rpx;
  border: 1px solid #ddd;
  border-radius: 10rpx;
  padding: 0 20rpx;
  font-size: 28rpx;
}
.open-btn {
  width: 80%;
  height: 80rpx;
  background-color: #007aff;
  color: white;
  text-align: center;
  line-height: 80rpx;
  font-size: 30rpx;
  border-radius: 10rpx;
  margin-top: 20rpx;
}