index.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <div class="main">
  3. <div class="img-box">
  4. <img src="../../assets/logo/logo2.png" alt="广东省教师继续教育学会">
  5. </div>
  6. <div>
  7. <router-view></router-view>
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. </script>
  13. <style lang="scss">
  14. .main {
  15. text-align: left;
  16. margin: 100px auto;
  17. width: 500px;
  18. }
  19. .img-box {
  20. width: 360px;
  21. height: 80px;
  22. // background-color: brown;
  23. text-align: center;
  24. img{
  25. height: 100%;
  26. transform: scale(1.5);
  27. }
  28. }
  29. .main-title {
  30. width: 360px;
  31. text-align: center;
  32. }
  33. .label-box {
  34. display: flex;
  35. align-items: center;
  36. margin: 10px 0;
  37. }
  38. .label-title {
  39. width: 150px;
  40. line-height: 22px;
  41. flex: 0 0 auto;
  42. text-align: center;
  43. }
  44. .label-input {
  45. line-height: 30px;
  46. width: 210px;
  47. border: 1px solid #50ac55;
  48. padding-left: 10px;
  49. box-sizing: border-box;
  50. height: 45px;
  51. line-height: 45px;
  52. }
  53. .label-must {
  54. color: red;
  55. }
  56. .btn-box {
  57. text-align: right;
  58. }
  59. .btn-box button {
  60. width: 140px;
  61. height: 40px;
  62. margin: 10px;
  63. }
  64. .btn-reset {
  65. background-color: #f1f2f3;
  66. border: none;
  67. }
  68. .btn-search {
  69. background-color: rgb(176,11,17);
  70. color: white;
  71. border: none;
  72. }
  73. .captcha-img {
  74. width: 120px;
  75. background: antiquewhite;
  76. margin: auto;
  77. height: 50px;
  78. }
  79. .activeSpan{
  80. color: #50ac55;
  81. }
  82. </style>