12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .container {
- width: 100%;
- height: 100%;
- align-items: center;
- }
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- box-sizing: border-box;
- }
- .main {
- width: 90%;
- display: flex;
- flex-direction: column;
- font-family: PingFang SC;
- }
- .sub_title {
- font-size: 28rpx;
- color: rgba(0, 0, 0, 0.6);
- line-height: 52rpx;
- }
- .font_title_2 {
- color: #000;
- font-size: 32rpx;
- font-weight: 500;
- font-family: "PingFang SC";
- }
- .title {
- margin-bottom: 20rpx;
- margin-top: 40rpx;
- }
- .image_container {
- display: flex;
- justify-content: center;
- }
- .code_worn {
- font-weight: bold;
- color: #dd0000;
- }
- .margin_10 {
- margin-top: 20rpx;
- }
|