| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .content {
- position: relative;
- width: 750rpx;
- height: 1334rpx;
- font-family: "MicrosoftYaHei";
- font-weight: 400;
- image {
- position: absolute;
- top: 50rpx;
- left: 50%;
- transform: translateX(-115rpx);
- max-width: 230rpx;
- max-height: 230rpx;
- margin-top: 100rpx;
- }
- .tip {
- position: absolute;
- top: 280rpx;
- left: 50%;
- transform: translateX(-50rpx);
- // width: 150rpx;
- height: 54rpx;
- margin-top: 100rpx;
- font-size: 28rpx;
- font-weight: 700;
- color: #33cc33;
- }
- .item {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- position: absolute;
- top: 300rpx;
- left: 50%;
- transform: translateX(-375rpx);
- width: 750rpx;
- height: 180rpx;
- margin-top: 250rpx;
- text-align: center;
- text {
- font-size: 32rpx;
- font-weight: 700;
- color: #000;
- }
- }
- button {
- position: absolute;
- top: 900rpx;
- left: 50%;
- transform: translateX(-200rpx);
- width: 400rpx;
- height: 100rpx;
- font-size: 40rpx;
- color: #33cc33;
- background: #fff;
- border: 1rpx solid #33cc33;
- }
- }
|