common.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. }
  12. .form{
  13. background-color: rgba(200, 200, 200, 0.1);
  14. padding: 1rem;
  15. }
  16. .bottomarc{
  17. position: absolute;
  18. width:100%;
  19. height:15%;
  20. background:#648EB8;
  21. border-bottom-left-radius: 400rpx 70rpx;
  22. border-bottom-right-radius: 400rpx 70rpx;
  23. z-index: -999;
  24. }
  25. .mybtn{
  26. height:50rpx;
  27. background:-webkit-linear-gradient(0deg, #648EB8 1%, #47689D 99%);
  28. background:-moz-linear-gradient(90deg, #648EB8 1%, #47689D99%);
  29. background:linear-gradient(90deg, #648EB8 1%, #47689D 99%);
  30. color:#FFF;
  31. border-radius:15rpx;
  32. display:flex;
  33. justify-content:center;
  34. align-items:center;
  35. font-size:36rpx;
  36. }
  37. .donext_div{
  38. position: fixed;
  39. bottom: 1em;
  40. width: 100%;
  41. display: flex;
  42. align-items: center;
  43. flex-direction: column;
  44. }
  45. .bar{
  46. height: 4rem;
  47. background-color: #648EB8;
  48. color: #fff;
  49. width: 100%;
  50. text-align: center;
  51. display: flex;
  52. align-items: center;
  53. justify-items: center;
  54. text-align: center;
  55. padding-top: 30px;
  56. }