/* 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:2px;
  }
  /* 滚动槽 */
  .h_auto::-webkit-scrollbar-track {
  background: #ebebeb;
  }
  /* 滚动条滑块 */
  .h_auto::-webkit-scrollbar-thumb {
    background: #0e3289;
  }
  .h_auto::-webkit-scrollbar-thumb:window-inactive {
    background: #0e3289;
  }
  
  
  
  #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{ 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; width: 90vw; height: 90vh;}
  #videModal .modal_bai .modal-body video{width: 100%; height: 100%;}
  #videModal .modal_bai .modal-body iframe{width: 100%; height: 100%;}
  
  
  
  /* 通用css */

  

  .mod_content{ font-size: 16px; line-height: 2; color: #474747;}
  .mod_content img{ max-width: 100%; height: auto !important;}
  .mod_content ul{ padding-left: 20px;}
  .mod_content ul li{ list-style: disc;}
  .mod_content ol{ padding-left: 30px;}
  .mod_content ol li{ list-style: decimal;}
  .mod_content table{ text-align: center; width: 100% !important; max-width: 100%; border: none !important; border-top: 1px solid #dedede !important; border-left: 1px solid #dedede !important;}
  .mod_content table tr td{ padding: 0.5rem !important; border: none !important; border-bottom: 1px solid #dedede !important; border-right: 1px solid #dedede !important; vertical-align: middle;}
  .mod_content table p{ margin: 0 !important;}
  .mod_content table img{ height: auto;}
  /* .mod_content table tr:nth-child(-n+2) td{ font-weight: bold; background: #366092; color: #fff;} */
  
  .my-map { margin: 0 auto; width: 100%; height: 100%; }
  .my-map .icon { background: url(../img/map_logo.png) no-repeat; background-size: cover;}
  .my-map .icon-cir { height: 86px; width: 236px; transform: translate(-118px, -43px);}
  .my-map .icon-cir-red { background-position: 0 0; }
  .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; }
  
  /* 网站地图 */
  
  .sitemap{
    min-height: 100vh;
    padding-top: 5rem;
    display: flex;
    align-items: center;
  }
  .sitemap h1{
    font-size: 3rem;
    font-weight: lighter;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 2.5rem;
    color: #333;
  }
  .sitemap ul{
    margin: 20px 0;
  }
  .sitemap ul li{
    margin-bottom: 10px;
  }
  .sitemap ul li:first-child{
    margin-bottom: 15px;
  }
  .sitemap ul li:first-child a{
    font-size: 18px;
    font-weight: bold;
    color: #0e3289;
  }
  .sitemap ul li:first-child a::before{
    width: 4px;
    height: 18px;
    background: #0e3289;
    border-radius: 0;
  }
  .sitemap a{
    font-size: 16px;
    color: #454545;
    display: flex;
    align-items: center;
    transition: all 0.3s;
  }
  .sitemap ul li:not(:first-child) a:hover{
    color: #0e3289;
  }
  .sitemap ul li:not(:first-child) a:hover::before{
    background: #0e3289;
    transform: scale(1.5);
  }
  .sitemap a:before{
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #666;
    margin-right: .75rem;
    transition: all 0.3s;
  }
  
  
@media (max-width:767px){

  #videModal .modal_bai{ width: calc(100% - 30px);}
  #videModal .modal_bai .modal-body{ width: 100%; height: 22.5rem;}
}