index.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. html,body{
  2. width: 100%;
  3. height: 100%;
  4. box-sizing: border-box;
  5. margin: 0;
  6. padding: 0;
  7. }
  8. .container{
  9. width: 100%;
  10. height: 100%;
  11. overflow: hidden;
  12. overflow-y: auto;
  13. box-sizing: border-box;
  14. }
  15. .Va-document{
  16. width: 100%;
  17. height: auto;
  18. box-sizing: border-box;
  19. font-size: 12px;
  20. }
  21. .Va-document .title-head{
  22. width: 100%;
  23. background-color: #eb3f57 ;
  24. text-align: center;
  25. line-height: 2.5;
  26. color: #ffffff;
  27. }
  28. .Va-document .content-info{
  29. width: 100%;
  30. padding: 15px;
  31. box-sizing: border-box;
  32. }
  33. .Va-document .content-info .only-head{
  34. display: flex;
  35. justify-content: space-between;
  36. align-items: center;
  37. }
  38. .Va-document .content-info .only-head .divider{
  39. flex: 1;
  40. height: 1px;
  41. background-color: #C5C5C9;
  42. margin: 0 5px;
  43. }
  44. .Va-document .content-info .my-form-item-label .des{
  45. color: #949494;
  46. }
  47. .Va-document .content-info .avatar-uploader {
  48. border: 1px dashed #C4C4C4;
  49. margin: 10px;
  50. width: 150px;
  51. height: 80px;
  52. line-height: 80px;
  53. display: inline-block;
  54. overflow: hidden;
  55. }
  56. .Va-document .content-info .avatar-uploader .el-upload {
  57. width: 100%;
  58. text-align: center;
  59. }
  60. div.menu-logo {
  61. margin: 0 6px;
  62. cursor: pointer;
  63. user-select: none;
  64. }
  65. .menu-logo.chooseLang{
  66. border: 1px solid #C5C5C9;
  67. width: 130px;
  68. margin-bottom: 10px;
  69. text-align: center;
  70. }
  71. .s-btn{
  72. background-color: #eb3f57 ;
  73. border-color: #eb3f57 ;
  74. }
  75. .el-button--primary:active,.el-button:focus,.el-button--primary:hover{
  76. background-color: #eb3f57 ;
  77. border-color: #eb3f57 ;
  78. opacity: 0.8;
  79. }
  80. .el-input__inner:focus{
  81. border-color: #eb3f57 ;
  82. }
  83. .el-upload{
  84. width: 100%;
  85. height: 100%;
  86. }