:root {
  --colorZT: #457fea; /*主题色*/
  --colorHV: #d21823; /*悬浮色*/
  --colorFU: #eaf6ff; /*副色*/
  --colorMR: #333333; /*默认字体色*/
  --bili: 1; /*比例*/
  --colorMO: #2997ff; /*more*/
  --fspage: 16; /*分页字体大小*/
  --bannerH: 1000; /*首页banner高*/
  --inner_bannerH: 600; /*详情页banner高*/
  --hedaH: 70; /*head高*/
  --hedaPH: 20; /*head padding高*/
  --hedatopH: 30; /*head头部高*/
  --IHL: 60; /*首页左侧*/
  --IHH: 110; /*首页底部高*/
  --headAh: calc(
    (var(--bili) * var(--hedaH) * 1px) +
      ((var(--bili) * var(--hedaPH) * 1px) * 2)
  ); /*头高*/
  --IHCH: calc(
    100vh - (var(--bili) * var(--hedaH) * 1px) -
      (var(--bili) * var(--IHH) * 1px) -
      ((var(--bili) * var(--hedaPH) * 1px) * 2)
  ); /*内容高*/
  --IHCHNT: calc(
    100vh - (var(--bili) * var(--hedaH) * 1px) -
      ((var(--bili) * var(--hedaPH) * 1px) * 2)
  ); /*内容去头高*/
  --IHCL: calc((var(--IHL)) * 1%); /*左宽*/
  --IHCR: calc((100 - var(--IHL)) * 1%); /*右宽*/
  --IHBH: calc((var(--bili) * var(--IHH)) * 1px); /*底高*/
}

.inner {
  width: calc(var(--bili) * 1600px);
  margin: 0 auto;
  /* position: relative; */
  z-index: 2;
}

.no-padding.no-padding {
  padding: 0px;
}

@media screen and (max-width: 1680px) {
  :root {
    --bili: 0.88;
  }
}

@media screen and (max-width: 1440px) {
  :root {
    --bili: 0.82;
  }
}

@media screen and (max-width: 1360px) {
  :root {
    --bili: 0.78;
  }
}

@media screen and (max-width: 1280px) {
  :root {
    --bili: 0.73;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --bili: 0.65;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  line-height: 1.4;
  /*color: var(--colorMR);*/
  vertical-align: baseline;
  outline: none;
  font-family: "微软雅黑";
}

body,
html {
  /*min-width: 1200px;*/
  max-width: 100%;
  line-height: 1;
  overflow-x: auto;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
  color: inherit;
  background: none;
  text-decoration: none;
  outline: none;
}

ul,
li {
  list-style: none;
}

input,
textarea {
  outline: none;
  border: initial;
}

b {
  font-weight: bold;
}

.clear {
  clear: both;
}

.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}

.fwb {
  font-weight: bold;
}

.wzbs {
  color: var(--colorZT) !important;
}

.bcbs:hover {
  background-color: var(--colorZT) !important;
  color: #ffffff !important;
}

.Endx {
  text-transform: uppercase;
}

/*滚动条-s*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
  background-color: #eeeeee;
}

.Smroll {
  padding: 0 10px 0 0;
}

.Smroll::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.Noroll {
  padding: 0 0 0 0;
}

.Noroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}

@media screen and (max-width: 1200px) {
  .Smroll {
    padding: 0;
  }

  ::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  ::-webkit-scrollbar-track {
    background-color: #ffffff;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #cccccc;
  }
}

/*滚动条-e*/

.Tac {
  text-align: center;
}

.Tal {
  text-align: left;
}

.Tar {
  text-align: right;
}

.fc3 {
  color: #333333;
}

.fc5 {
  color: #555555;
}

.fcf {
  color: #ffffff;
}

.w30 {
  width: 30% !important;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100% !important;
}

.h100 {
  height: 100%;
}

.mw1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.wim {
  width: 100%;
  height: 100%;
  display: block;
}

.wim05s {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
}

.wim05s:hover {
  transform: scale(1.1);
}

.eim {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.eim05s {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.5s;
}

.eim05s:hover {
  transform: scale(1.1);
}

.aim {
  position: absolute;
  left: 0;
  top: 0;
}

/*ellipsis*/
.slh0 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 0;
  text-overflow: ellipsis;
  word-break: break-all;
}

.slh1 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  word-break: break-all;
}

.slh2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-all;
}

.slh3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  word-break: break-all;
}

.slh4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
  word-break: break-all;
}

.slh5 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  word-break: break-all;
}

.Mt0 {
  margin-top: 0 !important;
}

.Mb0 {
  margin-bottom: 0 !important;
}

.fs36 {
  font-size: calc(var(--bili) * 36px);
}

.fs34 {
  font-size: calc(var(--bili) * 34px);
}

.fs32 {
  font-size: calc(var(--bili) * 32px);
}

.fs30 {
  font-size: calc(var(--bili) * 30px);
}

.fs28 {
  font-size: calc(var(--bili) * 28px);
}

.fs26 {
  font-size: calc(var(--bili) * 26px);
}

.fs24 {
  font-size: calc(var(--bili) * 24px);
}

.fs22 {
  font-size: calc(var(--bili) * 22px);
}

.fs20 {
  font-size: calc(var(--bili) * 20px);
}

.fs18 {
  font-size: calc(var(--bili) * 18px);
}

.fs16 {
  font-size: calc(var(--bili) * 16px);
}

.fs15 {
  font-size: calc(var(--bili) * 15px);
}

.fs14 {
  font-size: calc(var(--bili) * 14px);
}

.fs13 {
  font-size: calc(var(--bili) * 13px);
}

.fs12 {
  font-size: calc(var(--bili) * 12px);
}

/*layui样式*/
.layui-form-select dl dd.layui-this {
  background-color: var(--colorZT) !important;
}

.layui-form-select dl dd.layui-this {
  background-color: var(--colorZT) !important;
}

.layui-laydate .layui-this {
  background-color: var(--colorZT) !important;
}

.layui-form-select dl dd {
  font-size: 14px;
}

.layui-layer {
  border-radius: 12px !important;
}

.layui-laydate-footer span:hover {
  color: var(--colorZT) !important;
}

.layui-laydate-footer span[lay-type="date"] {
  color: var(--colorZT) !important;
}

.layui-laydate-header i:hover {
  color: var(--colorZT) !important;
}

.laydate-set-ym span:hover {
  color: var(--colorZT) !important;
}

#mb_btn_no {
  cursor: pointer;
}

#mb_btn_ok {
  background: var(--colorZT) !important;
  cursor: pointer;
}

.layui-form-checked span,
.layui-form-checked:hover span {
  background: var(--colorZT) !important;
}

.layui-form-checked i,
.layui-form-checked:hover i {
  color: var(--colorZT) !important;
}

/*layui样式*/

/*暂无信息-s*/
.no-info {
  position: relative;
  margin: calc(var(--bili) * 20px) 0 calc(var(--bili) * 50px) 0;
}

.no-info .ni-im {
  width: calc(var(--bili) * 300px);
  height: calc(var(--bili) * 300px);
  background: url(../images/icons/noinfo.svg) no-repeat center;
  background-size: 100%;
  margin: 0 auto;
}

.no-info .ni-mc {
  font-size: calc(var(--bili) * 18px);
  color: #666;
  letter-spacing: 1px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .no-info {
    margin: 0 0 10% 0;
  }

  .no-info .ni-im {
    width: 50vw;
    height: 50vw;
    background: url(../images/icons/noinfo.svg) no-repeat center;
    background-size: 100%;
    margin: 0 auto;
  }

  .no-info .ni-mc {
    font-size: 4vw;
  }
}

/*暂无信息-e*/

/*回到顶部-s*/
.back-top {
  width: calc(var(--bili) * 50px);
  height: calc(var(--bili) * 50px);
  background-color: #8ba4b6;
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
}

.back-top .bt-arw {
  background: url(../images/icons/back_top.svg) no-repeat center;
  width: calc(var(--bili) * 16px);
  height: calc(var(--bili) * 16px);
  background-size: 100%;
  position: absolute;
  /*top: calc( var(--bili) * 12px );*/
  transition: all 0.5s;
}

.back-top .bt-tie {
  font-weight: 700;
  font-size: calc(var(--bili) * 13px);
  color: #ffffff;
  margin: calc(var(--bili) * 14px) 0 0 0;
}

.back-top:hover {
  background-color: var(--colorZT);
}

.back-top:hover .bt-arw {
  animation: bounce-inSS 1.5s infinite; /* 启动动画特效 */
  /*top: calc( var(--bili) * 8px );*/
}

@keyframes bounce-inSS {
  0% {
    -webkit-transform: translate3d(0, 0px, 0);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: translate3d(0, -4px, 0);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translate3d(0, 0px, 0);
  }
}

@media screen and (max-width: 1024px) {
  .back-top {
    display: none !important;
    opacity: 0;
  }
}

/*回到顶部-e*/

/*分页*/
.page-content {
  position: relative;
}

#page {
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: calc(var(--bili) * 50px) 0 calc(var(--bili) * 30px);
  justify-content: center;
  /*align-items: center;*/
}

.pagel #page {
  justify-content: flex-end;
}

#page .page-item {
  border: 1px solid #dddddd;
  /*margin: 5px;*/
  margin: 0 0 0 -1px;
  font-size: calc(var(--bili) * var(--fspage) * 1px);
  background: #fff;
  color: #444444;
  /*border-radius: 4px;*/
}

#page p,
#page a {
  display: block;
  text-decoration: none;
  padding: calc(var(--bili) * 12px) calc(var(--bili) * 20px);
  border: 1px solid #dddddd;
  font-size: calc(var(--bili) * var(--fspage) * 1px);
  /*background: #fff;*/
  color: #555555;
  margin: 0 0 0 -1px;
  /*margin: 5px;*/
  /*border-radius: 4px;*/
}

#page > p {
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#page a:last-child {
  margin-right: 0;
}

#page a:hover {
  color: var(--colorZT);
}

#page a.myde-page {
  background: var(--colorZT);
  color: #fff;
  border: 1px solid var(--colorZT);
}

#page a.cur {
  background: var(--colorZT);
  color: #fff;
  border: 1px solid var(--colorZT);
}

#page p.pageRemark {
  border-style: none;
  background: none;
  margin-right: 0;
  color: #555;
}

#page p.pageRemark b {
  margin: 0 6px;
  color: var(--colorZT);
}

#page p.pageEllipsis {
  background: none;
  line-height: 30px;
  color: #555;
}

/*分页*/

/*地图美化*/
.wn-container * {
  border-color: #ffffff !important;
  border: 0 !important;
}

.wn-container .BMap_pop * {
  color: #333333 !important;
  line-height: calc(30px) !important;
  font-size: calc(15px) !important;
}

.wn-container .anchorBL {
  display: none;
}

.wn-container .anchorTR div * {
  padding: 5px 10px !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.wn-container .BMap_pop .title {
  padding: 0 30px 0 0;
}

.BMap_pop .BMap_center {
  border-right: 1px solid #fff !important;
}

/*地图美化*/

/*手机*/
.wap-none {
  display: block;
}

.wap-block {
  display: none;
}

.wap-header {
  display: none;
}

.wap-head {
  width: 100%;
  background-color: var(--colorZT);
  transition: all 0.3s;
  top: 0;
  position: fixed;
  z-index: 105;
  box-shadow: none;
  height: 15vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wap-head-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.wap-head-right .english-chinese {
  margin-right: 1.5vw;
}

.wap-head-right .english-chinese a {
  font-size: 3.5vw;
}

.wap-head .wap-head-logo {
  width: 32%;
  margin: 0 0 0 4%;
}

.wap-head .wap-door {
  width: 7%;
  margin: 0 5% 0 0;
  height: 100%;
  position: relative;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.wap-head .wap-door .wds {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  display: block;
  transition: all 0.3s;
  margin: 12% 0;
}

.wap-head .wap-door .wds:nth-of-type(3) {
  width: 100%;
}

.wap-header.show .wap-head .wap-door .wds:nth-child(2n) {
  opacity: 0;
}

.wap-header.show .wap-head .wap-door .wds:nth-of-type(1) {
  transform: rotate(45deg);
  position: absolute;
}

.wap-header.show .wap-head .wap-door .wds:nth-of-type(3) {
  transform: rotate(-45deg);
  position: absolute;
  width: 100%;
}

.wap-header.show .headclose {
  width: 100%;
  display: block;
}

/*菜单-s*/
.wap-menu {
  position: fixed;
  width: 100%;
  top: -100%;
  left: 0;
  z-index: 101;
  height: 100%;
  background-color: rgb(255 255 255 / 95%);
  transition: all 0.3s;
  overflow-y: scroll;
  overflow-x: hidden;
  opacity: 1;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}

.wap-menu .wap-menu-lst {
  padding: 16vw 0;
}

.wap-menu .wap-menu-lst .CAli {
  position: relative;
  border-bottom: 1px solid #eeeeee;
}

.wap-menu .wap-menu-lst .CAli:after {
  content: "";
  position: absolute;
  background: url(../images/icons/wap_menu_arrow.svg) no-repeat right;
  width: 4vw;
  height: 4vw;
  right: 5%;
  top: calc((14vw - 4vw) / 2);
  background-size: 100%;
  opacity: 0.6;
  transition: all 0.3s;
}

.wap-menu .wap-menu-lst .CAli.on:after {
  transform: rotate(90deg);
}

.wap-menu .wap-menu-lst .CAli .CAa {
  font-size: 4.25vw;
  color: #333333;
  width: 100%;
  height: 14vw;
  line-height: 14vw;
  padding: 0 0 0 8%;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  word-break: break-all;
}

.wap-header.show .wap-menu {
  top: 0;
  opacity: 1;
}

/*菜单-e*/

@media screen and (max-width: 1024px) {
  .wap-menu .CAli.on .down-menu {
    display: block;
  }

  .wap-menu .down-menu {
    padding: 0;
    position: relative;
    width: 100%;
    left: auto;
    box-shadow: none;
    top: auto;
    animation: none;
  }

  .wap-menu .down-menu .CBa {
    font-size: 4vw;
    line-height: 12vw;
    text-align: left;
    padding: 0 10%;
    background: transparent;
    color: #555555;
  }
}

/*手机*/

.PubShare {
  position: fixed;
  right: 0;
  bottom: 10%;
  z-index: 999;
}

.PubShare .EcItem {
  position: relative;
  margin-top: 8px;
}

.PubShare .EcItem .ecMA {
  /*background-image: linear-gradient(135deg,#374667,#566689);*/
  background: var(--colorZT);
  padding: 8px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.PubShare .EcItem .ecA {
  width: 36px;
  height: 36px;
  background-size: 100% !important;
  /* margin: 0 0 5px 0; */
}

.PubShare .EcItem .ecB {
  font-size: 12px;
  color: #ffffff;
  line-height: 1.4;
  zoom: 0.9;
}

.PubShare .EcItem .ecA.ic1 {
  background: url(../images/icons/w5.png) no-repeat 20% center;
}

.PubShare .EcItem .ecA.ic2 {
  background: url(../images/icons/w6.png) no-repeat 20% center;
}

.PubShare .EcItem .ecA.ic3 {
  background: url(../images/icons/w7.png) no-repeat 20% center;
}

.PubShare .EcItem .ecA.ic4 {
  background: url(../images/icons/w8.png) no-repeat 20% center;
}

.PubShare .EcItem .ecMB {
  overflow: hidden;
  /*background-image: linear-gradient(135deg,#374667,#566689);*/
  background: #333333;
  position: absolute;
  right: -1000%;
  top: 0;
  height: 100%;
  font-size: 16px;
  color: #ffffff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  transition: all 0.5s;
  width: max-content;
}

.PubShare .EcItem .ecMB .cnEwm {
  width: 120px;
  height: 120px;
}

.PubShare .EcItem .ecMB.EwmBox {
  padding: 0;
  height: auto;
}

.PubShare .EcItem:hover .ecMB {
  right: 100%;
}

/*留言*/
.message {
  display: none;
}

.message-bg {
  width: 46vw;
  padding: 20px;
}

.message-list {
  margin-bottom: 20px;
}

.message-list .message-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.message-list input,
.message-list textarea {
  border: 1px solid #eeeeee;
  width: 100%;
  padding: 10px;
  resize: none;
  font-size: 15px;
}

.message-list textarea {
  height: 100px;
}

.wn-content .layui-layer {
  box-shadow: none !important;
  border-radius: 6px !important;
}

.wn-content .layui-layer-btn .layui-layer-btn0 {
  background-color: #00479d !important;
  border-color: #00479d !important;
}

.wn-content .layui-layer-iframe .layui-layer-btn,
.layui-layer-page .layui-layer-btn {
  margin-bottom: 30px;
}
