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: 36px;}
h2{ font-size: 30px;}
h3{ font-size: 24px;}
h4{ font-size: 18px;}
h5{ font-size: 14px; font-weight: normal;}
h6{ font-size: 12px;}


.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-start-around{
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}
.flex-start-evenly{
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
}
.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;
}
.flex-stretch-around{
  display: flex;
  align-items: stretch;
  justify-content: space-around;
}

/* 关于翻屏-动画 */
.ani-in{ opacity: 0; pointer-events: none; transition: all 0.5s;}
.ani-in.cur{ opacity: 1; pointer-events: auto; transition-delay: 0.6s;}
.ani-down{ transform: translateY(-60px); opacity: 0; pointer-events: none; transition: all 0.5s;}
.ani-down.cur{ transform: translateY(0); opacity: 1; pointer-events: auto; transition-delay: 0.6s;}
.ani-up{ transform: translateY(60px); opacity: 0; pointer-events: none; transition: all 0.5s;}
.ani-up.cur{ transform: translateY(0); opacity: 1; pointer-events: auto; transition-delay: 0.6s;}
.ani-left{ transform: translateX(60px); opacity: 0; pointer-events: none; transition: all 0.5s;}
.ani-left.cur{ transform: translateX(0); opacity: 1; pointer-events: auto; transition-delay: 0.6s;}
.ani-right{ transform: translateX(-60px); opacity: 0; pointer-events: none; transition: all 0.5s;}
.ani-right.cur{ transform: translateX(0); opacity: 1; pointer-events: auto; transition-delay: 0.6s;}
.ani-zoom{ transform: scale(0.5); opacity: 0; pointer-events: none; transition: all 0.6s;}
.ani-zoom.cur{ transform: scale(1); opacity: 1; pointer-events: auto; transition-delay: 0.6s;}

.ani-3d-left{ transform: rotateY(120deg); transform-origin: left center; opacity: 0; pointer-events: none; transition: all 0.6s ease-out;}
.ani-3d-left.cur{ transform: rotateY(0); opacity: 1; pointer-events: auto; transition-delay:  0.6s;}

.ani-3d-down{ transform: rotateX(120deg); transform-origin: center bottom; opacity: 0; pointer-events: none; transition: all 0.6s ease-out;}
.ani-3d-down.cur{ transform: rotateX(0); opacity: 1; pointer-events: auto; transition-delay:  1s;}


/* 视频按钮效果 */
.mod_video_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 5.75rem;
  height: 5.75rem;
  cursor: pointer;
}
.dw_center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.mod_video_btn i {
  color: #fff;
  font-size: 3.5rem;
  z-index: 2;
  opacity: 0.55;
  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)
  }
}



/* 手机导航图标 */
.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: #fff; position: absolute; top: 50%; left: 0; transform: translateY(-50%);transition: all 0.3s ease-out;}
.menu-link span:after{ content: ''; background: #fff; 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: #fff; 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:6px;
  }
  /* 滚动槽 */
  .h_auto::-webkit-scrollbar-track {
  background: #f9f9f9;
  }
  /* 滚动条滑块 */
  .h_auto::-webkit-scrollbar-thumb {
    background: #eeeeee;
  }
  .h_auto::-webkit-scrollbar-thumb:window-inactive {
    background: #eeeeee;
  }
  
  
  
  #videModal.cur{ opacity: 1; pointer-events: auto;}
  #videModal.cur .modal_bai{ transform: translateX(-50%) translateY(-50%) scale(1);}
  #videModal{
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    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{ max-width: 90vw; max-height: 90vh; background: rgba(255,255,255,.35); padding: 1rem; box-shadow: 0px .2rem .5rem rgba(0,0,0,0.3);  position: absolute; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%) scale(0.2); border-radius: .5rem; transition: all 0.3s; backdrop-filter: blur(5px);}
  #videModal .modal_bai .modal-header{ border: none; font-size: 1rem; font-weight: bold; position: relative; color: #333; padding-left: 0; padding-right: 0;}
  #myModalLabel{ font-size: 1rem; font-weight: bold; line-height: 1rem;}
  #videModal .modal_bai .close{ position: absolute; right: 0; top: 0; transform: translateX(50%) translateY(-50%); width: 2.5rem; height: 2.5rem; cursor: pointer; font-size: 1.125rem; color: #fff; background: rgba(0,0,0,0.5); opacity: 1; padding: 0; margin: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; backdrop-filter: blur(5px);}
  #videModal .modal_bai .modal-body{ padding: 0;}
  #videModal .modal_bai .modal-body video{width: 100%; height: 100%;}
  #videModal .modal_bai .modal-body iframe{width: 100%; height: 100%;}
  
  
  
  /* 通用css */
  /* .fanye{ text-align:center; margin: 2.5rem 0;}
  .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:#051b57;}
  .fanye a.active{ background:#051b57; 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: #051b57;}
  .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{ text-align: center; 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;}
  .mod_content table tr:first-child td{ font-weight: bold; background: #366092; color: #fff;}
  
  .my-map { margin: 0 auto; width: 100%; height: 36.25rem; }
  .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;
  }

  #videModal .modal_bai{ width: calc(100% - 30px);}
  #videModal .modal_bai .modal-body iframe{ min-height: 260px;}
}