You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /* pages/checkImg/checkImg.wxss */
- page {
- background-color: #333333;
- padding: 50rpx 0;
-
- .name {
- text-align: center;
- font-size: 45rpx;
- color: #ffffff;
- margin-bottom: 40rpx;
- }
-
- .imageList {
- width: 100%;
- height: 800rpx;
- text-align: center;
- overflow: hidden;
-
- image {
- width: 75%;
- border-radius: 40rpx;
- }
- }
-
- .indicator {
- display: flex;
- justify-content: space-between;
- padding: 0 280rpx;
- margin-bottom: 100rpx;
-
- .item {
- width: 20rpx;
- height: 20rpx;
- background-color: #ffffff50;
- border-radius: 10rpx;
- transition: all 0.3s;
-
- &.active {
- width: 28rpx;
- background-color: #fff;
- }
- }
- }
-
- .downloadImage {
- width: 70%;
- height: 100rpx;
- line-height: 100rpx;
- font-weight: 600;
- background-color: #ff4f00;
- color: #ffffff;
- font-size: 32rpx;
- text-align: center;
- border-radius: 50rpx;
- margin: auto;
- }
- }
|