index.acss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .page {
  2. /* width: 100vw;
  3. height: 100vh; */
  4. background: linear-gradient(180deg, #DFEDFF 1%, #F3F8FF 39%, #FFFFFF 73.5%);
  5. }
  6. .tips-content {
  7. width: 95%;
  8. height: 95%;
  9. background-color: #fff;
  10. border-radius: 10rpx;
  11. }
  12. .content-box {
  13. height: 75%;
  14. padding: 6rpx 15rpx 0;
  15. overflow: hidden;
  16. }
  17. .content-box .content {
  18. width: 99%;
  19. height: 300rpx;
  20. box-sizing: border-box;
  21. margin-top: 10rpx;
  22. }
  23. .icon-box {
  24. margin-left: 50rpx;
  25. font-size: 9rpx;
  26. margin-top: 10rpx;
  27. display: flex;
  28. align-items: center;
  29. }
  30. .icon {
  31. width: 10rpx;
  32. height: 10rpx;
  33. margin-right: 5rpx;
  34. }
  35. .tips-btn {
  36. width: 100%;
  37. /* height: 25rpx; */
  38. margin-top: 20rpx;
  39. }
  40. .tips-btn .logOut,
  41. .tips-btn .sure,
  42. .tips-btn .sure-gray {
  43. width: 160rpx;
  44. height: 26rpx;
  45. line-height: 26rpx;
  46. border-radius: 5rpx;
  47. font-size: 12rpx;
  48. text-align: center;
  49. }
  50. .tips-btn .logOut {
  51. border: 1px solid rgba(32, 89, 190, 80);
  52. color: rgba(105, 126, 163, 1);
  53. margin-right: 35rpx;
  54. }
  55. .tips-btn .sure-gray {
  56. background-color: rgba(185, 194, 216, 1);
  57. color: #fff;
  58. }
  59. .tips-btn .sure {
  60. background-color: #1677ff;
  61. color: #fff;
  62. }
  63. .time {
  64. position: absolute;
  65. color: #00437C;
  66. font-size: 11rpx;
  67. top: 16rpx;
  68. right: 35rpx;
  69. }