/*
*这里的值严格按照UI设计图标注值来进行设置
*/
/*
*颜色
*/
/*
*页面的边距
*/
/*
*字体
*/
/*
*头像
*/
/*
 * 按钮
 */
/*
*对常见的多行样式进行了方法封装，方便调用，加快开发效率
*/
html,
body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  font-weight: initial !important;
  font-size: 14px !important;
  color: #333 !important;
}
html *,
body * {
  outline: none;
  text-decoration: none !important;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  font-style: normal;
}
ul,
p {
  margin: 0;
  padding: 0;
}
.e {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.f {
  display: flex;
}
.f-c {
  display: flex;
  flex-direction: column;
}
.a-c {
  display: flex;
  align-items: center;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-weight: initial;
  font-size: 12px;
  color: #999;
  resize: none;
}
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
/*定义滚动条轨道 内阴影+圆角*/
*::-webkit-scrollbar-track {
  border-radius: 10px;
  /*滚动条的背景区域的圆角*/
  background-color: transparent;
  /*滚动条的背景颜色*/
}
/*定义滑块 内阴影+圆角*/
*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  /*滚动条的圆角*/
  background-color: #ddd;
  /*滚动条的背景颜色*/
}
.h {
  cursor: pointer;
}
.h:hover {
  color: #DD1111;
  border-color: #DD1111;
}
input {
  -webkit-user-select: auto;
}
.base-banner {
  position: relative;
}
.base-banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: flex;
}
.base-banner div {
  position: absolute;
  top: 56px;
  width: 100%;
  left: 0;
  right: 0;
  width: 1200px;
  margin: 0 auto;
}
.base-banner div h1 {
  font-weight: 800;
  font-weight: initial;
  font-size: 34px;
  color: #fff;
  line-height: 28px;
}
.base-banner div em {
  margin: 21px 0 24px 0;
  display: block;
  width: 61px;
  height: 3px;
  background: #fff;
}
.base-banner div span {
  height: 14px;
  font-size: 14px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #ffffff;
  line-height: 14px;
}
.base-nav {
  width: 1200px;
  margin: 0 auto;
  padding: 22px 0;
  font-weight: initial;
  font-size: 14px;
  color: #999;
}
.base-nav a {
  color: #999;
  cursor: pointer;
}
.base-nav a:hover {
  color: #DD1111;
  border-color: #DD1111;
}
.base-nav .active {
  color: #DD1111;
}
.base-nav em {
  margin: 0 10px;
}
.base-content {
  width: 1200px;
  margin: 0 auto;
}
.base-content .menu {
  vertical-align: top;
  display: inline-block !important;
  width: 280px;
  min-width: 280px;
  border: 1px solid #e6e6e6;
}
.base-content .menu h2 {
  width: 100%;
  background: #DD1111;
  padding: 12px 16px;
  font-weight: bold;
  font-weight: initial;
  font-size: 16px;
  color: #fff;
}
.base-content .menu a {
  display: block !important;
  cursor: pointer;
  font-weight: initial;
  font-size: 14px;
  color: #666;
  font-weight: 400;
  margin: 0 26px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.base-content .menu a:last-child {
  border-bottom: none;
}
.base-content .menu a:hover {
  color: #DD1111;
}
.base-content .menu a:hover i {
  color: #DD1111;
  width: auto;
}
.base-content .menu a i {
  width: 0;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}
.base-content .menu .active {
  color: #DD1111;
}
.base-content .menu .active i {
  vertical-align: text-top;
  color: #DD1111;
  width: initial;
}
.base-page {
  width: 100%;
  display: block !important;
  margin-bottom: 40px;
  padding: 0 320px;
}
.base-page a {
  font-weight: initial;
  font-size: 14px;
  color: #999;
  margin: 0;
  padding: 10px;
  line-height: 1;
  border: 1px solid #ccc;
  cursor: pointer;
}
.base-page a:hover {
  background: #DD1111;
  color: #fff;
  border-color: #DD1111;
}
.base-page a:first-child {
  border-radius: 6px 0 0 6px;
}
.base-page a:last-child {
  border-right: 1px solid #ccc;
  border-radius: 0 6px 6px 0;
}
.fr {
  float: right !important;
}
.center {
  width: 1200px;
  margin: 0 auto;
}
.swiper-pagination {
  position: absolute;
  z-index: 20;
  bottom: 10px;
  width: 100%;
  text-align: center;
}
.swiper-pagination-switch {
  display: inline-block;
  width: 20px;
  height: 4px;
  background: #fff;
  opacity: 1;
  border-radius: 0px;
  cursor: pointer;
  margin: 0 5px;
}
.swiper-active-switch {
  background: #DD1111;
}
.d-h {
  cursor: pointer;
  transition: all 0.3s linear;
}
.d-h:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.el-dropdown-menu__item:focus,
.el-dropdown-menu__item:not(.is-disabled):hover {
  background-color: #ffecec !important;
  color: #DD1111 !important;
}
@media screen and (max-width:1024px) {
  .base-banner img {
    height: 190px !important;
  }
  .base-banner div {
    width: 100% !important;
    top: 20px;
    left: 20px;
  }
  .base-banner div em {
    margin: 20px 0;
  }
  .base-nav {
    padding: 20px;
    width: 100% !important;
  }
  .base-content {
    width: 100% !important;
    flex-direction: column;
  }
  .base-content .menu {
    width: 100%;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .base-content .menu a {
    height: 60px;
    display: inline-block !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    width: 33.3%;
    margin: 0;
    padding: 20px;
    border: 1px solid #eee;
    border-bottom: 1px solid #eee !important;
    border-top: none;
    border-left: none;
    float: left;
    text-align: center;
  }
  .base-page {
    padding: 0 !important;
    text-align: center;
    display: inline-block;
  }
}
.ie8-ico {
  display: none !important;
}
.news-show {
  width: 913px;
  display: inline-block;
  padding-left: 30px;
}
.news-show h1 {
  font-weight: initial;
  font-size: 20px;
  color: #000;
  font-weight: 400;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.news-show > em {
  width: 100%;
  margin: 14px 0;
}
.news-show em {
  display: inline-block;
  text-align: center;
  font-weight: initial;
  font-size: 14px;
  color: #999;
}
.news-show .banner {
  width: 100%;
  height: 300px;
}
.news-show .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-show > span {
  display: block;
  padding: 20px 0;
  font-size: 14px;
  line-height: 1.8;
}
.news-show .map {
  display: block;
  padding: 0;
  padding-bottom: 60px;
  width: 100%;
}
.news-show .map > h5 {
  display: inline-block;
  width: 600px !important;
  max-width: calc(100% - 278px);
  width: 100%;
}
.news-show .map > h5 .text {
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
}
.news-show .map > h5 .text em {
  cursor: pointer;
  margin-left: 10px;
  text-decoration: underline !important;
}
.news-show .map > h5 .text em:hover {
  color: #DD1111;
  border-color: #DD1111;
}
.news-show .map > h5 iframe {
  width: 100%;
}
.news-show .map > div {
  vertical-align: top;
  display: inline-block;
  overflow: auto;
  width: 278px;
  padding: 0 20px;
}
.news-show .map > div .tab {
  width: 100%;
  display: block;
  border-bottom: 1px solid #ddd;
}
.news-show .map > div .tab span {
  display: inline-block;
  line-height: 50px;
  margin-right: 8px;
  border-bottom: 3px solid transparent;
  color: #999;
  min-width: max-content;
  cursor: pointer;
}
.news-show .map > div .tab span:hover {
  color: #DD1111;
  border-color: #DD1111;
}
.news-show .map > div .tab .active {
  border-color: #DD1111;
  color: #DD1111;
}
.news-show .map > div > div {
  margin: 0 auto;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px dashed #9F9F9F;
  font-size: 16px;
}
.news-show .map > div > div:first-child {
  margin: 0;
}
.news-show .map > div > div i {
  display: inline-block;
  padding: 6px;
  background: #DD1111;
  color: #fff;
  border-radius: 50px;
  width: 29px;
  height: 29px;
  vertical-align: top;
  margin-top: 9px;
}
.news-show .map > div > div div {
  width: 189px;
  display: inline-block;
  padding-left: 10px;
}
.news-show .map > div > div div .title {
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  margin-bottom: 5px;
}
.news-show .map > div > div div .title:hover {
  color: #DD1111;
  border-color: #DD1111;
}
.news-show .map > div > div div .content {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: initial;
  font-size: 14px;
  color: #999;
  max-height: 37px;
}
.news-show .map > div .active .title {
  color: #DD1111 !important;
}
.bsBox {
  box-sizing: content-box !important;
}
.bsBox * {
  box-sizing: content-box !important;
}
@media screen and (max-width:1024px) {
  .show {
    padding-top: 60px;
  }
  .news-show {
    width: 100%;
    padding: 20px;
  }
  .news-show .banner {
    height: 150px;
  }
  .news-show ul li {
    width: calc((100% - 20px)/2);
    height: initial;
    padding-bottom: 10px;
  }
  .news-show ul li span {
    padding-top: 10px;
  }
  .news-show ul li p {
    padding: 10px 10px 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .news-show .map {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    height: initial;
  }
  .news-show .map h5 {
    width: 100%;
    max-width: 100%;
    height: 350px !important;
  }
  .news-show .map h5 iframe {
    height: 300px;
  }
  .news-show .map .list {
    padding: 0;
    width: 100%;
  }
  .news-show .map .list > div {
    justify-content: flex-start;
  }
}
