| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /* pages/clock/clock-success/clock-success.wxss */
- page {
- background-color: #f5f5f5;
- }
- .container {
- width: 690rpx;
- background-color: #fff;
- margin: 30rpx auto;
- padding-top: 70rpx;
- padding-bottom: 130rpx;
- border-radius: 16rpx;
- }
- .clock-success {
- font-size: 48rpx;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #000000;
- margin-left: 50rpx;
- }
- .time {
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #000000;
- margin-top: 10rpx;
- margin-left: 50rpx;
- }
- image {
- width: 100%;
- height: 332rpx;
- margin-top: 100rpx;
- }
- .money {
- font-size: 34rpx;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #000000;
- text-align: center;
- }
- .number {
- font-size: 58rpx;
- font-family: DINCondensed-Bold, DINCondensed;
- font-weight: bold;
- color: #0177FF;
- margin: 0 10rpx;
- }
- .end {
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #000000;
- margin-top: 24rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- }
- .btn {
- width: 560rpx;
- height: 88rpx;
- line-height: 80rpx;
- text-align: center;
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #000000;
- border-radius: 10px;
- border: 2rpx solid #000000;
- margin: 0 auto;
- margin-top: 130rpx;
- }
|