| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .container {
- padding: 40rpx;
- min-height: 100vh;
- background: #f5f5f5;
- }
- .title {
- font-size: 40rpx;
- font-weight: bold;
- text-align: center;
- margin-bottom: 40rpx;
- color: #333;
- }
- .test-section {
- background: white;
- border-radius: 16rpx;
- padding: 32rpx;
- margin-bottom: 24rpx;
- box-shadow: 0 2rpx 12rpx rgba(0,0,0,0.05);
- }
- .section-title {
- font-size: 28rpx;
- color: #666;
- margin-bottom: 24rpx;
- }
- .test-btn {
- width: 100%;
- height: 88rpx;
- background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
- border-radius: 44rpx;
- color: white;
- font-size: 32rpx;
- font-weight: bold;
- margin-bottom: 20rpx;
- }
- .test-btn:active {
- opacity: 0.8;
- }
- .input {
- width: 100%;
- height: 80rpx;
- border: 2rpx solid #e0e0e0;
- border-radius: 12rpx;
- padding: 0 24rpx;
- margin-bottom: 20rpx;
- font-size: 28rpx;
- }
- .result-text {
- font-size: 26rpx;
- color: #666;
- word-break: break-all;
- padding: 16rpx;
- background: #f9f9f9;
- border-radius: 8rpx;
- }
- .user-info {
- font-size: 26rpx;
- color: #333;
- line-height: 2;
- padding: 16rpx;
- background: #f9f9f9;
- border-radius: 8rpx;
- }
|