| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- body,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- hr,
- p,
- blockquote,
- dl,
- dt,
- dd,
- ul,
- ol,
- li,
- pre,
- form,
- fieldset,
- legend,
- button,
- input,
- textarea,
- th,
- td {
- margin: 0;
- padding: 0;
- }
- body,
- button,
- input,
- select,
- textarea {
- font: 12px/1.5 "\5FAE\8F6F\96C5\9ED1", arial;
- *line-height: 1.5;
- }
- // h1,
- // h2,
- // h3,
- // h4,
- // h5,
- // h6 {
- // font-size: 100%;
- // font-weight: normal;
- // }
- address,
- cite,
- dfn,
- em,
- var {
- font-style: normal;
- }
- code,
- kbd,
- pre,
- samp {
- font-family: courier new, courier, monospace;
- }
- ul,
- ol {
- list-style: none;
- }
- fieldset,
- img {
- border: 0;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- input,
- button,
- textarea,
- select,
- optgroup,
- option {
- font-family: inherit;
- font-size: inherit;
- font-style: inherit;
- font-weight: inherit;
- font-size: 100%;
- }
- /*div:after, ul:after, dl:after,.clearfix:after {display:block; clear:both; height:0; visibility:hidden;}*/
- /****/
- abbr,
- article,
- aside,
- audio,
- canvas,
- datalist,
- details,
- figure,
- footer,
- header,
- hgroup,
- menu,
- nav,
- output,
- progress,
- section,
- video {
- display: block;
- margin: 0;
- padding: 0;
- }
- i,
- u,
- b,
- em,
- span,
- small {
- font-weight: normal;
- font-style: normal;
- }
- html,
- body {
- height: 100%;
- }
- /****/
- html {
- font-size: 62.5%;
- }
- body {
- -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
- }
- a {
- text-decoration: none;
- }
- h2 {
- margin: 0;
- padding: 0;
- }
- ul {
- word-spacing: -4px;
- }
- input,
- div,
- div:focus,
- textarea:focus,
- button:focus {
- outline: none;
- }
- input[type="number"] {
- -moz-appearance: textfield;
- }
- input[type="number"]::-webkit-inner-spin-button,
- input[type="number"]::-webkit-outer-spin-button {
- -webkit-appearance: none;
- margin: 0;
- }
- ::-webkit-scrollbar {
- width: 5px;
- height: 9px;
- }
- /*定义滚动条轨道 内阴影+圆角*/
- ::-webkit-scrollbar-track {
- background-color: inherit;
- border: none;
- /* margin: 6px; */
- border-radius: 10px;
- /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
- background-color: #F5F5F5; */
- }
- /*定义滑块 内阴影+圆角*/
- ::-webkit-scrollbar-thumb {
- border-radius: 10px;
- position: relative;
- right: 2px;
- /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
- background-color: #c6c6cd;
- width: 6px;
- }
- //最大宽度+居中
- .center_1200 {
- max-width: 1200px;
- margin: 0 auto;
- }
- * {
- box-sizing: border-box;
- }
- .el-dialog {
- border-radius: 8px !important;
- .el-dialog__header {
- border-bottom: 1px solid #d3d3d3aa;
- & > .el-dialog__title {
- font-size: 16px;
- }
- }
- .el-dialog__footer {
- padding: 10px;
- border-top: 1px solid #d3d3d3aa;
- }
- }
- .ql-picker.ql-lineheight {
- width: 70px;
- }
- .ql-editor .ql-lineheight-1 {
- line-height: 1;
- }
- .ql-editor .ql-lineheight-1-5 {
- line-height: 1.5;
- }
- .ql-editor .ql-lineheight-1-75 {
- line-height: 1.75;
- }
- .ql-editor .ql-lineheight-2 {
- line-height: 2;
- }
- .ql-editor .ql-lineheight-3 {
- line-height: 3;
- }
- .ql-editor .ql-lineheight-4 {
- line-height: 4;
- }
- .ql-editor .ql-lineheight-5 {
- line-height: 5;
- }
|