project.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /* 主框架 */
  2. .main {
  3. width: 100%;
  4. box-sizing: border-box;
  5. padding: 20rpx 20rpx;
  6. display: flex;
  7. flex-direction: column;
  8. justify-content: center;
  9. align-items: center;
  10. }
  11. /*表单*/
  12. .main form {
  13. width: 100%;
  14. display: flex;
  15. flex-direction: column;
  16. }
  17. .form-group .title {
  18. font-weight: bold;
  19. }
  20. .form-box {
  21. background-color: #fff;
  22. border-radius: 20rpx;
  23. margin-bottom: 24rpx;
  24. box-sizing: border-box;
  25. width: 100%;
  26. }
  27. /* 固定按钮 */
  28. .btn-fixed {
  29. position: fixed;
  30. bottom: 130rpx;
  31. right: 12rpx;
  32. color: #fff;
  33. font-size: 40rpx;
  34. font-weight: bold;
  35. border-radius: 50%;
  36. background-color: #ccc;
  37. width: 60rpx;
  38. height: 60rpx;
  39. display: flex;
  40. align-items: center;
  41. justify-content: center;
  42. }
  43. /*单行大按钮*/
  44. .btn-main {
  45. width: 600rpx;
  46. font-size: 32rpx;
  47. height: 80rpx;
  48. line-height: 80rpx;
  49. background-color: #0E9489;
  50. color: #fff;
  51. font-weight: bold;
  52. }
  53. /**校友底图**/
  54. .school-cover{
  55. position:absolute;
  56. top:0;
  57. left:0;
  58. width:100%;
  59. height:100%;
  60. opacity: .1;
  61. background-size:750rpx 280rpx;
  62. }
  63. .site-footer{
  64. width:100%;
  65. display: flex;
  66. flex-direction: column;
  67. justify-content: center;
  68. align-items: center;
  69. font-size: 28rpx;
  70. color:#666;
  71. margin-top:20rpx;
  72. }
  73. .site-footer .link{
  74. display: flex;
  75. justify-content: center;
  76. align-items: center;
  77. }
  78. .site-footer .link view, .site-footer .link button{
  79. margin-left:5rpx;
  80. margin-right:5rpx;
  81. }
  82. .site-footer .link .line{
  83. color:#ccc;
  84. }
  85. .site-footer .info{
  86. margin-top:10rpx;
  87. color:#aaa;
  88. font-size:24rpx;
  89. }
  90. .clearbtn {
  91. margin:0;
  92. padding:0;
  93. background-color: transparent;
  94. text-align: center;
  95. font-size:inherit;
  96. color: inherit;
  97. }
  98. .clearbtn::after {
  99. border: none !important;
  100. }