apply.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* pages/apply/apply.wxss */
  2. page{
  3. background: #F4F7F9;
  4. }
  5. .nope{
  6. text-align: center;
  7. color: #999;
  8. font-size: 36rpx;
  9. padding: 20px 0;
  10. }
  11. .content{
  12. padding: 12px;
  13. padding-bottom: 60px;
  14. }
  15. .list{
  16. background: #fff;
  17. padding: 12px;
  18. box-shadow:0px 2px 12px 0px rgba(0,0,0,0.08);
  19. border-radius:4px;
  20. margin-bottom: 12px;
  21. position: relative;
  22. }
  23. .title{
  24. color: #222;
  25. font-weight: 600;
  26. font-size: 32rpx;
  27. margin-bottom: 12px;
  28. }
  29. .title text{
  30. display: block;
  31. color: #358BFF;
  32. font-size: 28rpx;
  33. font-weight: 400;
  34. }
  35. .info text{
  36. display: block;
  37. color: #222;
  38. line-height: 25px;
  39. }
  40. .status{
  41. float: right;
  42. }
  43. .status text{
  44. display: block;
  45. color: #E85546;
  46. text-align: right;
  47. }
  48. .study{
  49. width:88px;
  50. height:32px;
  51. background:rgba(53,139,255,1);
  52. border-radius:16px;
  53. color: #fff;
  54. text-align: center;
  55. line-height: 32px;
  56. position: absolute;
  57. bottom: 12px;
  58. right: 12px;
  59. }
  60. .post{
  61. display: block;
  62. height:48px;
  63. background:rgba(53,139,255,1);
  64. border-radius:4px;
  65. color: #fff;
  66. text-align: center;
  67. line-height: 48px;
  68. margin-top: 50px;
  69. position: fixed;
  70. bottom: 5px;
  71. width: calc(100% - 24px);
  72. }