/*编码*/

@charset "utf-8";

/* 样式初始化 */


/* 初始化标签在所有浏览器中的margin、padding值 */

html,
body {
  width: 100%;
  height: 100%;
  min-height: 540px;
}

html {
  font-size: 100px !important;
}

@media screen and (max-width: 1900px) {
  html {
    font-size: 100px !important;
  }
}

@media screen and (max-width: 1680px) {
  html {
    font-size: 92px !important;
  }
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 84px !important;
  }
}

@media screen and (max-width: 1280px) {
  html {
    font-size: 76px !important;
  }
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 68px !important;
  }
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
textarea,
button,
img {
  padding: 0;
  margin: 0;
}

html {
  _background: url(about:blank);
}


/* 酌情修改 */

body {
  background: #fff;
  font-family: "微软雅黑", "宋体";
  color: #333;
}

body,
th,
td,
input,
select,
textarea,
button {
  font-size: 14px;
  line-height: 1;
}


/* 重置页面文字属性 */


/* 短引用的内容可取值：''或"" */

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none
}


/* 重置嵌套引用*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}


/* 缩写，图片等无边框 */

fieldset,
img,
abbr,
acronym {
  border: 0 none;
}


/* 重置fieldset（表单分组）、图片的边框为0*/

img {
  vertical-align: top;
}

img[src=""],
img[src="undefined"],
img:not([src]) {
  opacity: 0;
}


/* 图片在当前行内的垂直位置 */

abbr,
acronym {
  font-variant: normal;
}

legend {
  color: #000;
}

blockquote,
q {
  quotes: none
}


/* 重置嵌套引用的引号类型 */


/* 清除特殊标记的字体和字号 */

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-weight: normal;
  font-style: normal;
}


/* 重置样式标签的样式 */


/* 上下标 */


/* 统一上标和下标 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}


/* 设置表格的边框被合并为一个单一的边框, 指定分隔边框模型中单元格边界之间的距离为0*/


/* 表格标题及内容居左显示 */

caption {
  display: none;
}


/* 重置表格标题为隐藏 */

caption,
th {
  text-align: left;
}


/* 清除列表样式 */

dl,
ul,
ol,
menu,
li {
  list-style: none
}


/* 重置类表前导符号为onne,menu在HTML5中有效 */

input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}


/* 输入控件字体 */

input,
select,
textarea,
button {
  vertical-align: middle;
  outline: none;
}


/* 重置表单控件垂直居中*/

textarea {
  resize: none
}

input[type="submit"] {
  cursor: pointer;
}


/* 鼠标样式 */

button {
  border: 0 none;
  background-color: transparent;
  cursor: pointer
}


/* 重置表单button按钮效果 */

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}


/* 链接样式，颜色可酌情修改 */

a:link {
}


/* 未访问的链接 */

a:visited {
}


/* 已访问的链接 */

a:hover {
}


/* 鼠标移动到链接上 */

a:active {
}


/* 选定的链接 */

del,
ins,
a {
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}


/* 取消a标签点击后的虚线框 */

a:active {
  star: expression(this.onFocus=this.blur());
}


/* 设置页面文字等在拖动鼠标选中情况下的背景色与文字颜色 */

a {
  outline: none;
  transition: color 0.2s ease 0s;
}


/*CSS3链接秒数缓冲效果2秒*/


/* flex 布局开始 */

.z-flex {
  display: flex;
}


/* 横/纵向显示 */

.z-flex-column {
  flex-direction: column;
}


/*justify-content属性定义了项目在主轴上的对齐方式。  flex-start | flex-end | center | space-between | space-around  */


/* 显示的效果1 */

.z-space-between {
  justify-content: space-between;
}


/* 显示的效果2 */

.z-space-around {
  justify-content: space-around;
}


/* 显示的效果3 */

.z-flex-end {
  justify-content: flex-end;
}


/* 显示的效果3 */

.z-flex-center {
  justify-content: center;
}

.z-flex-wrap {
  flex-wrap: wrap;
}

.z-flex-c {
  justify-content: center;
  align-items: center;
}

/* 横/纵向居中 */


/* align-items属性定义项目在交叉轴上如何对齐  flex-start | flex-end | center | baseline | stretch */

.z-align-items {
  align-items: center;
}


/* flex 布局结束 */

.m-l6 {
  margin-left: 6px;
}

.m-l10 {
  margin-left: 10px;
}

.m-l20 {
  margin-left: 20px;
}

.m-l30 {
  margin-left: 30px;
}

.m-l50 {
  margin-left: 50px;
}

.m-r6 {
  margin-right: 6px;
}

.m-r10 {
  margin-right: 10px;
}

.m-r20 {
  margin-right: 20px;
}

.m-r30 {
  margin-right: 30px;
}

.m-b6 {
  margin-bottom: 6px;
}

.m-b10 {
  margin-bottom: 10px;
}

.m-b20 {
  margin-bottom: 20px;
}

.m-b30 {
  margin-bottom: 30px;
}

.m-t6 {
  margin-top: 6px;
}

.m-t10 {
  margin-top: 10px;
}

.m-t20 {
  margin-top: 20px;
}

.m-t30 {
  margin-top: 30px;
}

.visib-hidden {
  visibility: hidden;
}

.op06 {
  opacity: 0.6;
}

.cursor-p {
  cursor: pointer;
}

.hover-blod:hover {
  font-weight: bold;
}

.el-table th {
  background-color: #01A9DB !important;
  color: #fff;
}

.dec-text-style {
  font-size: 16px;
  text-indent: 32px;
  letter-spacing: 1px;
  line-height: 1.8;
}

.el-tabs__item {
  font-size: 16px !important;
}

.page-tit {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.page-tit .son-tit {
  font-size: 16px;
  color: #999;
  margin-left: 20px;
  font-weight: normal;
}

.pagination {
  margin-top: 20px;
}

.pagination-right {
  padding-bottom: 16px;
  margin-top: 5px;
  text-align: right;
}

.company-inner {
  margin-bottom: 20px;
}

.company-inner h2 {
  font-size: 20px;
  font-weight: 700;
}

.company-inner .sub-tit {
  font-size: 16px;
  color: #999;
  margin-left: 14px;
}

.company-inner .user-info {
  font-size: 16px;
  color: #999;
  margin-left: 14px;
  font-weight: normal;
}


/* 弹性布局 */

.flex {
  display: flex;
}

.flex.a-c {
  align-items: center;
  align-content: center;
}

.flex.a-s-b {
  align-content: space-between;
}

.flex.j-c {
  justify-content: center;
  justify-items: center;
}

.flex.j-s-b {
  justify-content: space-between;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex1 {
  flex: 1;
}

.size-max {
  width: 100%;
  height: 100%;
}
