| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* subpages/detectionResult.wxss */
- .swiper-page {
- width: 100vw;
- height: 100vh;
- }
- .swiper-item {
- width: 100vw;
- height: 100vh;
- }
- .scroll-box {
- width: 100vw;
- height: 100vh;
- overflow-x: hidden;
- }
- .container-page {
- width: 100vw;
- display: flex;
- flex-direction: column;
- position: relative;
- }
- .title {
- margin-top: 76rpx;
- color: #FFFFFF;
- font-weight: 600;
- font-size: 40rpx;
- margin-left: 40rpx;
- }
- .tips {
- margin: 12rpx 40rpx 0 30rpx;
- font-size: 24rpx;
- color: #FFFFFF;
- }
- .subTitle {
- width: fit-content;
- font-size: 22rpx;
- height: 32rpx;
- line-height: 32rpx;
- padding: 2rpx 10rpx;
- color: #FFFFFF;
- background: #00C1AF;
- border-radius: 8rpx;
- margin: 18rpx 40rpx 0 40rpx;
- }
- .desc {
- margin: 40rpx auto 0;
- font-size: 24rpx;
- padding: 40rpx 30rpx;
- width: 630rpx;
- line-height: 40rpx;
- color: #666666;
- background: #FFFFFF;
- box-shadow: 20rpx 8rpx 20rpx 0rpx rgba(219, 225, 231, 0.2);
- border-radius: 28rpx;
- }
|