blank.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <div style="text-align:center">
  3. <h1><b>{{names}}</b></h1>
  4. <div class="h1_span"><b>{{introduce}}</b></div>
  5. <div class="flex-center Entity_class_blank_base"></div>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. name: "Entity_class_blank",
  11. data(){
  12. return{
  13. names:`-知识图谱数据管理子系统-`,
  14. introduce: `-Knowledge Graph-`
  15. }
  16. }
  17. }
  18. </script>
  19. <style scoped>
  20. .flex-center {
  21. position: relative;
  22. }
  23. .Entity_class_blank_base {
  24. height: 100%;
  25. /* height: 660px; */
  26. width: auto;
  27. border-radius: 4px;
  28. background-size: cover;
  29. /*background-attachment:fixed;*/
  30. margin-top: auto;
  31. position: relative;
  32. /* background-image: url("../../assets/20201207/entClsBlank_base.png") ; */
  33. }
  34. .Entity_class_blank_bf {
  35. height: 100%;
  36. /* height: 660px; */
  37. width: auto;
  38. border-radius: 4px;
  39. background-size: cover;
  40. /*background-attachment:fixed;*/
  41. margin-top: auto;
  42. position: relative;
  43. /* background-image: url("../../assets/20201207/entClsBlank_bf.png") ; */
  44. }
  45. .logo_caiji {
  46. position: absolute;
  47. height: 65px;
  48. bottom: 30%;
  49. left: 10%;
  50. }
  51. .flot_box {
  52. bottom: 55%;
  53. left: 10%;
  54. position: absolute;
  55. }
  56. h1{
  57. font-size: 50px;
  58. color: #38383a;
  59. letter-spacing: 2px;
  60. margin-top: 60px;
  61. }
  62. .h1_span{
  63. color: #c6cacb;
  64. }
  65. </style>