common.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. body {
  2. overflow: auto;
  3. }
  4. .page{
  5. position: fixed;
  6. height: 100vh;
  7. width: 100%;
  8. overflow: hidden;
  9. top: 0;
  10. left: 0;
  11. overflow-y: scroll;
  12. }
  13. .form{
  14. background-color: rgba(200, 200, 200, 0.1);
  15. padding: 1rem;
  16. }
  17. .bottomarc{
  18. position: absolute;
  19. width:100%;
  20. height:15%;
  21. background:#3f73b3;
  22. border-bottom-left-radius: 400rpx 70rpx;
  23. border-bottom-right-radius: 400rpx 70rpx;
  24. z-index: -999;
  25. }
  26. .mybtn{
  27. height:50rpx;
  28. background:-webkit-linear-gradient(0deg, #648EB8 1%, #47689D 99%);
  29. background:-moz-linear-gradient(90deg, #648EB8 1%, #47689D99);
  30. background:linear-gradient(90deg, #648EB8 1%, #47689D 99%);
  31. color:#FFFFFF;
  32. border-radius:15rpx;
  33. display:flex;
  34. justify-content:center;
  35. align-items:center;
  36. font-size:36rpx;
  37. }
  38. .donext_div{
  39. position: fixed;
  40. bottom: 1em;
  41. width: 100%;
  42. display: flex;
  43. align-items: center;
  44. flex-direction: column;
  45. }
  46. .bar{
  47. height: 4rem;
  48. background-color: #3f73b3;
  49. color: #fff;
  50. width: 100%;
  51. text-align: center;
  52. display: flex;
  53. align-items: center;
  54. justify-items: center;
  55. text-align: center;
  56. padding-top: 30px;
  57. }
  58. .app_content{
  59. margin-top: 7em;
  60. }
  61. span{
  62. word-wrap: break-word;
  63. word-break: break-word;
  64. }