12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* pages/scan/scan.wxss */
- .scan-content {
- width: 100%;
- height: 100%;
- }
- .scan-item {
- width: 100%;
- height: 900rpx;
- background-color: var(--maincolor);
- }
- .wrapper {
- height: 100%;
- align-items: flex-start;
- }
- .modal {
- width: 558rpx;
- min-height: 522rpx;
- background-color: #fff;
- border-radius: 20rpx;
- margin-top: 300rpx;
- padding-bottom: 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;
- }
- .scan-msg {
- display: inline-block;
- width: 518rpx;
- margin: 0 auto;
- }
- .actions {
- width: 100%;
- margin-top: 80rpx;
- }
- .status-btn {
- width: 210rpx;
- height: 68rpx;
- border-radius: 10px;
- font-size: 26rpx;
- font-weight: 400;
- color: #FFFFFF;
- }
|