html {
  font-family: "Microsoft YaHei", 微软雅黑, "MicrosoftJhengHei", 华文细黑, STHeiti, MingLiu;
}

header,
main,
footer {
  display: block;
}

* {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  color: #FF5E00;
}

a:visited {
  color: #999;
}

img {
  border-width: 0;
}

.hover-scale-box {
  transition: transform .3s;
  transform: scale(1, 1);
}

.hover-scale-box:hover {
  transform: scale(1.1, 1.1);
}

/*图片盒子*/
.img-box {
  width: 100%;
  height: 100%;
  background-color: #F1F1F1;
  overflow: hidden;
  position: relative;
}

.img-box .img-box-center {
  width: 100%;
  height: 100%;
}

.img-box img {
  width: 100%!important;
  height: 100%!important;
  margin: 0!important;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-width: 0;
  background-size: 50% auto !important;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .img-box img {
    height: auto!important;
  }
}

.img-box .normal-error-img {
  width: auto !important;
  height: 50% !important;
}

.img-box .default-img {
  width: 50% !important;
  height: auto !important;
}

/*图片盒子*/

li {
  list-style-type: none;
}

/*button标签默认样式初始化*/
button {
  /* 清除默认边框 */
  border: 0;
  outline: none;
  /*清除默认背景 */
  background-color: transparent;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

/*input标签默认样式初始化*/
input {
  background: transparent;
  outline: none;
  border: 0;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border: 0;
  background: transparent;
  outline: none;

}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #BFBFBF;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #BFBFBF;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #BFBFBF;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #BFBFBF;
}

/*---------*/
.overflow-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.overflow-two-ellipsis {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}


.hidden {
  display: none !important;
}

/*--页眉样式--*/
header {
  height: 88px;
  background: #FFFFFF;
  box-shadow: 0px 4px 0px 0px #FF5E00;
  min-width: 1280px;
}

.header-box {
  height: 100%;
  margin: 0 auto;
  width: 1280px;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.dividing-line {
  width: 1px;
  height: 40px;
  background: #D8D8D8;
  margin: 0 32px 0 12px;
}

.header-title {
  font-size: 20px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
  line-height: 28px;
  letter-spacing: 1px;
}
.header-title a {
  font-size: 20px!important;
}

.clearfix:after {
  content: "020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  /* 触发 hasLayout */
  zoom: 1;
}


/* 模板标题样式 */
.module-title {
  position: relative;
  padding-left: 24px;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #333333;
  background-color: #F4F4F6;
}

.module-title::before {
  content: ' ';
  display: inline-block;
  position: absolute;
  top: 14px;
  left: 8px;
  width: 6px;
  height: 22px;
  background: #FF5F00;
  border-radius: 3px;
}

/* 专题图片标题样式覆盖设置 */
.zxzx_gd img {
  width: auto!important;
  height: 100%!important;
}

/* 单行文章标题添加点样式 */
.list-item-before-style {
  position: relative;
  padding-left: 20px;
}
.list-item-before-style::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #000;
}

/* 顶部飘红 */

.index-holiday-style {
  background-color: #CC252A!important;
}
.index-holiday-style a {
  color: #fff!important;
}
.index-holiday-style .now-time {
  color: #fff!important;
}

.header-holiday-style {
  background-color: #CC252A!important;
}
.header-holiday-style a {
  color: #fff!important;
}
.header-holiday-style .header-box .current-a {
  color: #fff!important;
}

.ie-video-class {
  width: 100%;
  height: 100%;
}

/* 保存空格回车格式 */
.save-space {
  white-space: pre-wrap;
  word-break: break-all!important;
  overflow: hidden;
}

.no-data-box {
  height: 200px;
  text-align: center;
  margin: auto;
}

.no-data-box img {
  height: calc(100% - 60px);
  margin: auto;
}
.no-data-box p {
  font-size: 16px;
  color: #666;
}