/* html{ scroll-behavior:smooth;} */
body{ margin: 0; padding: 0;}
ul{ margin: 0; padding: 0;}
li{ list-style: none;}
.fl{ float:left;}
.fr{ float:right;}
.clear{ clear:both;}
.cl:after{ content: ''; clear: both; display: table;}
a{ text-decoration: none !important;}

h1{ font-size: 2.25rem;}
h2{ font-size: 1.875rem;}
h3{ font-size: 1.5rem;}
h4{ font-size: 1.125rem;}
h5{ font-size: 1rem;}
h6{ font-size: 1rem;}
:root{
  
--color: #0484D2;
}
.dw{position: relative;}

.relative{
  position: relative;
}
.absolute{
  position: absolute;
}
.absolute_img{
  position: relative;
  overflow: hidden;
}
.absolute_img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 100%;
  max-height: 100%;
}

/* 关于flex */
.flex{
  display: flex;
}
.flex-wrap{
  display: flex;
  flex-wrap: wrap;
}

.flex-start-center{
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.flex-start-end{
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.flex-start-between{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.flex-center-start{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.flex-center-center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-center-end{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.flex-center-between{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-end-start{
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.flex-end-center{
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.flex-end-end{
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.flex-end-between{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.flex-stretch-start{
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.flex-stretch-center{
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.flex-stretch-end{
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.flex-stretch-between{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}


/* 手机导航图标 */
.menu-link{ cursor: pointer;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  display: none;
}
.menu-link span{ width: 2.25rem; height: 1.875rem; display: inline-block; position: relative;}
.menu-link span i{ width: 100%; height: 3px; display: block; background: var(--color); position: absolute; top: 50%; left: 0; transform: translateY(-50%);transition: all 0.3s ease-out;}
.menu-link span:after{ content: ''; background: var(--color); width: 100%; height: 3px; position: absolute; top: 0; left: 0;transition: all 0.3s ease-out; transform-origin: right top;}
.menu-link span:before{ content: ''; background: var(--color); width: 100%; height: 3px; position: absolute; bottom: 0; left: 0;transition: all 0.3s ease-out; transform-origin: right bottom;}
.menu-link.active span:after{ transform: rotate(-45deg);}
.menu-link.active span:before{transform: rotate(45deg);}
.menu-link.active span i{ background: transparent;}




/*里面的代码可以根据自己需求去进行更改*/
/* 设置滚动条的样式 */
.h_auto::-webkit-scrollbar {
  width:2px;
  }
  /* 滚动槽 */
  .h_auto::-webkit-scrollbar-track {
  background: #ebebeb;
  }
  /* 滚动条滑块 */
  .h_auto::-webkit-scrollbar-thumb {
    background: var(--color);
  }
  .h_auto::-webkit-scrollbar-thumb:window-inactive {
    background: var(--color);
  }
  
  #videModal.cur{ opacity: 1; pointer-events: auto;}
  #videModal.cur .modal_bai{ top: 50%;}
  #videModal{ background: rgba(0,0,0,0.3); width: 100%; height: 100%; position: fixed; left: 0; top: 0; z-index: 9999; opacity: 0; pointer-events: none; transition: all 0.5s;}
  #videModal .modal_bai{ width: 40.5rem; background: #fff; padding: 0 5px; box-shadow: 0px 2px 4px rgba(0,0,0,0.3);  position: absolute; top: 60%; left: 50%; transform: translateX(-50%) translateY(-50%); border: 1px solid #fff; border-radius: 2px; transition: all 0.3s;}
  #videModal .modal_bai .modal-header{ border: none; font-size: 1rem; font-weight: bold; position: relative; color: #333; padding-left: 1rem; padding-right: 0;}
  #myModalLabel{ font-size: 1rem; font-weight: bold; line-height: 1rem;}
  #videModal .modal_bai .modal-header .close{ position: absolute; right: 5px; top: 50%; transform: translateY(-50%); width: 2.5rem; height: 2.5rem; line-height: 2.5rem; cursor: pointer; text-align: center; font-size: 1.125rem; color: #333; opacity: 1; padding: 0; margin: 0;}
  #videModal .modal_bai .modal-body{ padding: 0;}
  #videModal .modal_bai .modal-body video{width: 100%; min-height: 23rem;}
  #videModal .modal_bai .modal-body iframe{width: 100%; min-height: 23rem;}
  
/* 视频按钮效果 */
  .mod_video_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 5.75rem;
    height: 5.75rem;
    cursor: pointer;
  }
  .mod_video_btn i {
    color: #fff;
    font-size: 2.875rem;
    z-index: 2;
    opacity: 0.75;
    filter: drop-shadow(0 0 .3rem rgba(0,0,0,0.3));
    transition: opacity .2s ease-in-out;
  }
  .mod_video_btn:hover i{
    opacity: 0.65;
  }
  .mvb_ani{
    -webkit-filter: blur(1px) contrast(20) blur(10px);
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    overflow: hidden;
    border-radius: 100%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    box-shadow: 0 0 1.5rem -.875rem #fa0;
  }
  .mvb_ani::before,
  .mvb_ani::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    width: 6.25rem;
    height: 6.25rem;
    z-index: 10;
    box-shadow: 0 0 1.2rem -0.6rem #fa0;
  }

  .mvb_ani::before {
    -webkit-filter: blur(8px);
    opacity: .8;
    transform: translate(-50%, -50%);
    -webkit-animation: mvbPlay 6s linear infinite;
    animation: mvbPlay 6s linear infinite;
    background-color: #fa0;
    background-image: linear-gradient(transparent 29.29%, #06f 0, #09f 70.71%, transparent 0), linear-gradient(90deg, transparent 29.29%, #06f 0, #09f 70.71%, transparent 0);
  }

  .mvb_ani::after {
    -webkit-filter: blur(5px);
    opacity: .5;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-animation: mvbPlay2 10s linear infinite;
    animation: mvbPlay2 10s linear infinite;
    background: linear-gradient(transparent 29.29%, #06f 0, #09f 70.71%, transparent 0), linear-gradient(90deg, transparent 29.29%, #06f 0, #09f 70.71%, transparent 0);
  }

  .mvb_bg {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    transform: translate(-50%, -50%) rotate(30deg);
    width: 6.25rem;
    height: 6.25rem;
    box-shadow: 1px .3rem 1.5rem -0.625rem, inset -1px .875rem 1.5rem -.3rem #fff, inset -1px -0.875rem 1.5rem -0.3rem #036, inset 0 3.625rem 0.2rem -1.875rem rgb(255 255 240 / 20%);
  }

  @keyframes mvbPlay2 {
    0% {
      transform: translate(-50%, -50%) rotate(45deg)
    }

    to {
      transform: translate(-50%, -50%) rotate(405deg)
    }
  }
  @keyframes mvbPlay {
    0% {
      transform: translate(-50%, -50%) rotate(1turn)
    }

    to {
      transform: translate(-50%, -50%) rotate(0deg)
    }
  }

  
  /* 通用css */
  .fanye{ text-align:center; margin-top: 1.875rem;}
  .fanye a{ display:inline-block; margin: 0 .3rem; padding:6px 12px;background: #EEEEEE; color: #666666; border-radius: 3px; text-decoration:none; text-transform: uppercase; font-size: .875rem;}
  .fanye a:hover{ color:var(--color);}
  .fanye a.active{ background:var(--color); color:#fff;}
  .fanye a.active:hover{ color:#fff;}
  .fanye a.cur{ color:#999; pointer-events: none}
  .fanye a.disabled{ border: none; pointer-events: none;}
  
  .fanye02{ margin-top: 3.75rem; border-top: 1px solid #ccc; padding-top: 2.5rem; display: flex; justify-content: space-between;}
  .fanye02 a{ font-size: 1rem; width: 48%; color: #666; transition: all 0.3s;}
  .fanye02 a:hover{ color: var(--color);}
  .fanye02 a:last-child{ text-align: right;}

  .mod_content{ font-size: 1rem; line-height: 1.8; color: #474747;}
  .mod_content img{ max-width: 100%; height: auto !important;}
  .mod_content table{ width: 100%; max-width: 100%; border-top: 1px solid #dedede; border-left: 1px solid #dedede;}
  .mod_content table tr td{ padding: 0.4rem 0.8rem; border-bottom: 1px solid #dedede; border-right: 1px solid #dedede; vertical-align: middle; text-align: center;}
  .mod_content table p{ margin: 0;}
  .mod_content table tr:first-child td{ font-weight: bold; background: #f5f5f5; color: #454545;}
  .mod_content table tr.highlight td{ background: var(--color); color: #fff;}


  .my-map{ margin: 0 auto; width: 100%; height: 100%; border: 1px solid #dedede;}
  .my-map .icon { background: url(//a.amap.com/lbs-dev-yuntu/static/web/image/tools/creater/marker.png) no-repeat; } .my-map .icon-cir { height: 31px; width: 28px; }
  .my-map .icon-cir-red { background-position: -11px -5px; }
  .amap-container{height: 100%;}
  .myinfowindow{width: 240px;min-height: 50px;}
  .myinfowindow h5{ height: 20px; line-height: 20px; overflow: hidden; font-size: 14px; font-weight: bold; width: 220px; text-overflow: ellipsis; word-break: break-all; white-space: nowrap; }
  .myinfowindow div{ margin-top: 10px; min-height: 40px; line-height: 20px; font-size: 13px; color: #6f6f6f; }
  
  
@media (max-width:767px){
  /* body,
  h5,
  h6,
  .mod_content{
    font-size: 1.125rem;
  } */
}
@media (max-width:991px){
  body,
  h5,
  h6,
  .mod_content{
    font-size: 1.125rem;
  }
  .menu-link{display: block;}

  #videModal .modal_bai{ width: calc(100% - 30px);}
  #videModal .modal_bai .modal-body iframe{ min-height: 260px;}

  .my-map{ height: 26rem;}
}



/* sitemap */
.site-page {
  overflow: hidden;
  padding: 5% 0;
}
.site-page .content h2 {
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .site-page .content h2 {
    text-align: center;
  }
}
.site-page .content .site-map1>li {
  margin-bottom: 20px;
}
.site-page .content .site-map1>li>a {
  overflow: hidden;
  position: relative;
  display: block;
  max-width: 240px;
  padding: 10px 30px;
  font-size: 18px;
  line-height: 1.66666667;
  color: #222222;
  border: 1px solid #dcdcdc;
  font-family: 'Helvetica Bold';
  text-transform: capitalize;
  background-color: transparent;
  transition: all 0.35s;
  -webkit-transition: all 0.35s;
}
@media screen and (max-width: 767px) {
  .site-page .content .site-map1>li>a {
    width: 100%;
    max-width: 100%;
    padding: 5px 10px;
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .site-page .content .site-map1>li>a:hover {
    color: #fff;
  }
  .site-page .content .site-map1>li>a:hover::before {
    transform: translateX(0);
  }
}
.site-page .content .site-map1>li>a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  width: 100%;
  height: 100%;
  background-color: var(--color);
  z-index: -1;
  transition: all 0.45s;
  -webkit-transition: all 0.45s;
}
.site-page .content .site-map1>li:last-child {
  margin-bottom: 0;
}
.site-page .content .site-map1 .site-map2 {
  margin-top: 20px;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .site-page .content .site-map1 .site-map2 {
    padding: 0;
  }
}
.site-page .content .site-map1 .site-map2>li {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .site-page .content .site-map1 .site-map2>li {
    text-align: center;
  }
}
.site-page .content .site-map1 .site-map2>li>a {
  font-size: 16px;
  line-height: 1.875;
  color: #222222;
  white-space: nowrap;
  font-family: 'Helvetica Bold';
}
@media screen and (min-width: 1200px) {
  .site-page .content .site-map1 .site-map2>li a:hover {
    color: var(--color);
    text-decoration: underline;
  }
}
.site-page .content .site-map1 .site-map2>li:last-child {
  margin-bottom: 0;
}
.site-page .content .site-map1 .site-map2 .site-map3>li {
  display: inline-block;
  margin-top: 5px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .site-page .content .site-map1 .site-map2 .site-map3>li {
    padding: 0 5px;
  }
}
.site-page .content .site-map1 .site-map2 .site-map3>li>a {
  display: block;
  white-space: nowrap;
  font-size: 13px;
  line-height: 2.14285714;
  color: #666666;
}
@media screen and (min-width: 1200px) {
  .site-page .content .site-map1 .site-map2 .site-map3>li a:hover {
    color: var(--color);
    text-decoration: underline;
  }
}