test.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .container {
  2. padding: 40rpx;
  3. min-height: 100vh;
  4. background: #f5f5f5;
  5. }
  6. .title {
  7. font-size: 40rpx;
  8. font-weight: bold;
  9. text-align: center;
  10. margin-bottom: 40rpx;
  11. color: #333;
  12. }
  13. .test-section {
  14. background: white;
  15. border-radius: 16rpx;
  16. padding: 32rpx;
  17. margin-bottom: 24rpx;
  18. box-shadow: 0 2rpx 12rpx rgba(0,0,0,0.05);
  19. }
  20. .section-title {
  21. font-size: 28rpx;
  22. color: #666;
  23. margin-bottom: 24rpx;
  24. }
  25. .test-btn {
  26. width: 100%;
  27. height: 88rpx;
  28. background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  29. border-radius: 44rpx;
  30. color: white;
  31. font-size: 32rpx;
  32. font-weight: bold;
  33. margin-bottom: 20rpx;
  34. }
  35. .test-btn:active {
  36. opacity: 0.8;
  37. }
  38. .input {
  39. width: 100%;
  40. height: 80rpx;
  41. border: 2rpx solid #e0e0e0;
  42. border-radius: 12rpx;
  43. padding: 0 24rpx;
  44. margin-bottom: 20rpx;
  45. font-size: 28rpx;
  46. }
  47. .result-text {
  48. font-size: 26rpx;
  49. color: #666;
  50. word-break: break-all;
  51. padding: 16rpx;
  52. background: #f9f9f9;
  53. border-radius: 8rpx;
  54. }
  55. .user-info {
  56. font-size: 26rpx;
  57. color: #333;
  58. line-height: 2;
  59. padding: 16rpx;
  60. background: #f9f9f9;
  61. border-radius: 8rpx;
  62. }