index.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. body {
  2. font-family: Microsoft YaHei, Helvitica, Verdana, Arial, san-serif;
  3. font-size: 12px;
  4. }
  5. /*刷新*/
  6. .el-refresh{
  7. position:absolute;
  8. width:30px;
  9. height:30px;
  10. right:5px;
  11. top:20px;
  12. z-index:100;
  13. }
  14. .el-icon-refresh{
  15. width: 32px;
  16. height: 32px;
  17. cursor: pointer;
  18. }
  19. /*搜索*/
  20. .seachClass{
  21. display: flex;
  22. flex-wrap: wrap;
  23. padding-top: 25px;
  24. }
  25. /*==================表单页面的样式=================*/
  26. .el-steps {
  27. margin: 20px;
  28. }
  29. .el-form {
  30. /*margin-right: 10px;*/
  31. background-color: #fbfbfb;
  32. border-radius: 4px;
  33. padding: 8px;
  34. /*padding-right: 20px;*/
  35. /*box-shadow: 0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04)*/
  36. }
  37. .buttonSpan {
  38. z-index: 100;
  39. line-height: 25px;
  40. position: fixed;
  41. left: 30%;
  42. bottom: 0px;
  43. }
  44. .el-backtop {
  45. position: fixed;
  46. background-color: #fff;
  47. width: 40px;
  48. height: 40px;
  49. border-radius: 50%;
  50. color: #409eff;
  51. display: flex;
  52. align-items: center;
  53. justify-content: center;
  54. font-size: 20px;
  55. box-shadow: 0 0 6px rgba(0, 0, 0, .12);
  56. cursor: pointer;
  57. z-index: 5;
  58. }
  59. /*================上传图片相关=====================*/
  60. /*图片box*/
  61. .imgBox {
  62. display: flex;
  63. flex-wrap: wrap;
  64. padding-bottom: 60px;
  65. }
  66. /*图片*/
  67. .imgItem {
  68. width: 145px;
  69. height: 145px;
  70. display: flex;
  71. flex-direction: column;
  72. justify-content: center;
  73. text-align: center;
  74. cursor: pointer;
  75. border-style: solid;
  76. border-color: #c6e2ff;
  77. border-width: 1px;
  78. border-radius: 6px;
  79. margin: 15px 15px 0px 15px;
  80. padding: 2px;
  81. }
  82. /*图片显示(背景)*/
  83. .imageShow{
  84. height:145px;
  85. position: relative;
  86. background-repeat: no-repeat;
  87. background-size: cover;
  88. background-position: center center;
  89. border-radius: 6px;
  90. }
  91. .showHide {
  92. position: relative;
  93. left: 50px;
  94. color: #000000;
  95. }
  96. /*图片名称效果*/
  97. .nameSpan{
  98. width: 100%;
  99. height: 20px;
  100. line-height: 20px;
  101. font-size: 12px;
  102. text-align: center;
  103. background-color: #ffffff;
  104. color: #000000;
  105. margin-top: 106px;
  106. opacity:0.7;
  107. }
  108. /*选中遮住效果*/
  109. .selectCheck {
  110. position: relative;
  111. width: 100%;
  112. height: 100%;
  113. top: 0;
  114. bottom: 0;
  115. left: 0;
  116. right: 0;
  117. background: rgba(0, 0, 0, 0.45);
  118. text-align: center;
  119. border-radius: 6px;
  120. }