1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /* pages/scan/scan.wxss */
- .scan-content {
- width: 100%;
- height: 100%;
- }
- .scan-item {
- width: 100%;
- height: 900rpx;
- background-color: #f66;
- }
- .wrapper {
- height: 100%;
- }
- .modal {
- width: 558rpx;
- height: 522rpx;
- background-color: #fff;
- border-radius: 20rpx;
- }
- .status-icon {
- width: 100%;
- height: auto;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 90rpx;
- }
- .status-img {
- width: 144rpx;
- height: 144rpx;
- }
- .status-text {
- font-size: 26rpx;
- font-weight: 400;
- color: #333333;
- text-align: center;
- margin-top: 40rpx;
- }
- .actions {
- width: 100%;
- margin-top: 80rpx;
- }
- .status-btn {
- width: 210rpx;
- height: 68rpx;
- border-radius: 10px;
- font-size: 26rpx;
- font-weight: 400;
- color: #FFFFFF;
- }
|