| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- html,body{
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- margin: 0;
- padding: 0;
- }
- .container{
- width: 100%;
- height: 100%;
- overflow: hidden;
- overflow-y: auto;
- box-sizing: border-box;
- }
- .Va-document{
- width: 100%;
- height: auto;
- box-sizing: border-box;
- font-size: 12px;
- }
- .Va-document .title-head{
- width: 100%;
- background-color: #eb3f57 ;
- text-align: center;
- line-height: 2.5;
- color: #ffffff;
- }
- .Va-document .content-info{
- width: 100%;
- padding: 15px;
- box-sizing: border-box;
- }
- .Va-document .content-info .only-head{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .Va-document .content-info .only-head .divider{
- flex: 1;
- height: 1px;
- background-color: #C5C5C9;
- margin: 0 5px;
- }
- .Va-document .content-info .my-form-item-label .des{
- color: #949494;
- }
- .Va-document .content-info .avatar-uploader {
- border: 1px dashed #C4C4C4;
- margin: 10px;
- width: 150px;
- height: 80px;
- line-height: 80px;
- display: inline-block;
- overflow: hidden;
- }
- .Va-document .content-info .avatar-uploader .el-upload {
- width: 100%;
- text-align: center;
- }
- div.menu-logo {
- margin: 0 6px;
- cursor: pointer;
- user-select: none;
- }
- .menu-logo.chooseLang{
- border: 1px solid #C5C5C9;
- width: 130px;
- margin-bottom: 10px;
- text-align: center;
- }
- .s-btn{
- background-color: #eb3f57 ;
- border-color: #eb3f57 ;
- }
- .el-button--primary:active,.el-button:focus,.el-button--primary:hover{
- background-color: #eb3f57 ;
- border-color: #eb3f57 ;
- opacity: 0.8;
- }
- .el-input__inner:focus{
- border-color: #eb3f57 ;
- }
- .el-upload{
- width: 100%;
- height: 100%;
- }
|