html {
  position: relative;
  overflow-x: hidden !important;
  width: 100vw;
  height: 100vh;
}
body{
  margin:0;
  overflow: auto;
  font-family: sans-serif;
}

.body1 {
  /* background: url(../images/bg/11.png) no-repeat left top, url(../images/bg/22.png) no-repeat right top; */
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}

.body3 {
  /* background: #fff; */
  text-align: center;
  height: 70vh;
  z-index: 19;
}
.center-vertical {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.center-horizontal {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.main {
  margin: 0 auto;
  width: 1200px;

}

.main1 {
  margin-top:120px;
  height: calc(100% - 120px);
  padding: 30px;
}
.main1 .center{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main1 .center p{
    padding-left:20px;
    text-align: left;
    flex: 1;
}
header {
  background: url(../images/bg/22.png) no-repeat right top;
  padding-top: 10px;
  height: 110px;
  display: flex;
  /* justify-content: space-around; */
}

.wrapper {
  width: 100%;
  position: relative;
  margin-top:122px;
}

/* ============================= footer ====================== */
footer {
  background: #000;
  padding: 34px 0 38px 0;
  font-style: normal;
  color: #696969;
  text-align: center
}

footer a {
  color: #fff
}

a, a:hover {
  text-decoration: none;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.background {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url('../images/bg/bg.jpg');
  background-size: auto 100% ;
  z-index: -1;
}
.background:after {
  content: '';
  position: absolute;
  top: 200;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(30deg, rgba(255, 255, 255, 0.6) 0%, #0E5DC4 100%);
  opacity: 0.9;
}  
.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.item-bg {
  width: 100px;
  height: 500px;
  position: absolute;
  top: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: all .3s;
  left: -30px;
}
.item-bg.active {
  left: 0;
  /* top: 0; */
  opacity: 1;
}

.news-slider {
  z-index: 2;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
@media screen and (max-width: 1300px) {
  .news-slider {
    max-width: 1000px;
  }
}
@media screen and (max-width: 576px) {
  .news-slider {
    margin-top: 45px;
  }
}
.news-slider__wrp {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.news-slider__item {
  width: 400px;
  flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  .news-slider__item {
    width: 340px;
  }
}
.news-slider__item.swiper-slide {
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}
.news-slider__item.swiper-slide-active, .news-slider__item.swiper-slide-prev, .news-slider__item.swiper-slide-next {
  opacity: 1;
  pointer-events: auto;
}
.news-slider__ctr {
  position: relative;
  z-index: 12;
}
.news-slider__arrow {
  background: #fff;
  border: none;
  display: inline-flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 12;
  cursor: pointer;
  outline: none !important;
}
.news-slider__arrow:focus {
  outline: none !important;
}
.news-slider__arrow .icon-font {
  display: inline-flex;
}
.news-slider__arrow.news-slider-prev {
  left: 15px;
  transform: translateY(-50%);
}
.news-slider__arrow.news-slider-next {
  right: 15px;
  transform: translateY(-50%);
}
.news-slider__pagination {
  text-align: center;
  margin-top: 50px;
}
.news-slider__pagination .swiper-pagination-bullet {
  width: 13px;
  height: 10px;
  display: inline-block;
  background: #fff;
  opacity: .2;
  margin: 0 5px;
  border-radius: 20px;
  transition: opacity .5s, background-color .5s, width .5s;
  transition-delay: .5s, .5s, 0s;
}
.news-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffffff;
  width: 100px;
  transition-delay: 0s;
}
@media screen and (max-width: 576px) {
  .news-slider__pagination .swiper-pagination-bullet-active {
    width: 70px;
  }
}
.news__item {
  padding: 40px;
  color: #fff;
  border-radius: 10px;
  display: block;
  transition: all .3s;
}
@media screen and (min-width: 800px) {
  .news__item:hover {
    color: #f7ae47;
    transition-delay: .1s;
  }
  .news__item:hover .news-date, .news__item:hover .news__title, .news__item:hover .news__txt {
    opacity: 1;
    transition-delay: .1s;
  }
  .news__item:hover .news__img {
    box-shadow: none;
  }
}
.news__item.active {
  color: #f7ae47;
}
.news__item.active .news-date, .news__item.active .news__title, .news__item.active .news__txt {
  opacity: 1;
}
.news__item.active .news__img {
  box-shadow: none;
}
@media screen and (max-width: 992px) {
  .news__item {
    padding: 30px;
  }
}
@media screen and (max-width: 576px) {
  .news__item {
    padding: 20px;
  }
}
.news-date {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid;
  display: inline-block;
  opacity: .7;
  transition: opacity .3s;
}
@media screen and (max-width: 576px) {
  .news-date {
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    padding-bottom: 0;
  }
}
.news-date__title {
  display: block;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (max-width: 576px) {
  .news-date__title {
    margin-right: 10px;
  }
}
.news-date__txt {
  font-size: 16px;
}
.news__title {
  font-size: 25px;
  font-weight: 500;
  opacity: .7;
  margin-top: 10px;
  margin-bottom: 15px;
  transition: opacity .3s;
}
@media screen and (max-width: 576px) {
  .news__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.news__txt {
  margin: 10px 0;
  line-height: 1.6em;
  font-size: 15px;
  opacity: .7;
  transition: opacity .3s;
}
.news__img {
  border-radius: 10px;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  height: 200px;
  margin-top: 30px;
  width: 100%;
  transition: all .3s;
  transform-origin: 0% 0%;
}
@media screen and (max-width: 576px) {
  .news__img {
    height: 180px;
    margin-top: 20px;
  }
}
.news__img img {
  max-width: 100%;
  border-radius: 10px;
  height: 100%;
  width: 100%;
}
#icon{
	display:none;
}

/*-------------------------------------------------------------------------------------*/

.div-inline-left {
  float: left;
  width: 450px;
  position:absolute;
  left:50px;
  margin-top: 30px; 
}

.div-inline-right {
  float: right;
   width: 600px;
  margin-right: 20px; 
  position:absolute;
  right:100px;
}

#aprvResults {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 10px;
  right: 50%;
}

/* 背景图片 */
.aprv_yes {
  background: url("../images/avartar/liuxilang.jpeg") no-repeat;
  background-size:cover;
  margin-bottom: 20px;
 
}

.aprv_yes2 {
  margin-top: 20px;
  margin-bottom: 20px;
  background: url('../images/avartar/qinyaji.jpg') no-repeat;
  background-size: cover;
}

.aprv_yes3 {
  margin-top: 20px;
  margin-bottom: 20px;
  background: url('../images/avartar/zhaoronghui.jpg') no-repeat;
  background-size: cover;
}

.aprv_yes4 {
  margin-top: 20px;
  margin-bottom: 20px;
  background: url('../images/avartar/sunyan.jpg') no-repeat;
  background-size: cover;
}

/*背景图片div的宽度*/
.bg-img {
  width: 320px;
  height: 180px;
}

/*表格*/
.myTab {
  width: 900px;
  margin-top: 160px;
  margin-bottom: 30px;
}

/*表格的底边颜色*/
.myTab tr td {
  border-bottom: 1px solid #ddd;
}

.myTab tr td h3 {
    margin: 0;
    padding: 0 0 0 200px;
    color: #4caed7;
    font-weight:normal;

}

.myTab tr td p {
  margin: 10;
  padding: 0 0 0 20px;
}



#menu {
  padding-top: 5px
}

#menu li {
  float: left;
  padding-left: 50px
}

#menu li a {
  display: block;
  font: 20px  Arial, Helvetica, sans-serif;
  line-height: 1.2em;
  color: #bbb;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  letter-spacing: -1px;
  height: 70px;
  font-style: normal;
  font-weight: 700
}

#menu li a span {
  font-size: 13px;
  line-height: 1.2em;
  color: #666666;
  display: block;
  letter-spacing: -1px;
  margin-top: -3px;
  font-weight: normal
}

#menu li a:hover,
#menu .active a {
  color: #ec4646
}

#menu li a:hover span,
#menu .active a span {
  color: #fff
}

#menu #nav1 a {
  background: url(../images/menu_icon1.gif) bottom center no-repeat
}

#menu #nav1 a:hover,
#menu #nav1.active a {
  background: url(../images/menu_icon1_active.gif) bottom center no-repeat
}

#menu #nav2 a {
  background: url(../images/menu_icon2.png) bottom center no-repeat
}

#menu #nav2 a:hover,
#menu #nav2.active a {
  background: url(../images/menu_icon2_active.png) bottom center no-repeat
}

#menu #nav3 a {
  background: url(../images/menu_icon3.gif) bottom center no-repeat
}

#menu #nav3 a:hover,
#menu #nav3.active a {
  background: url(../images/menu_icon3_active.gif) bottom center no-repeat
}

#menu #nav4 a {
  background: url(../images/menu_icon4.png) bottom center no-repeat
}

#menu #nav4 a:hover,
#menu #nav4.active a {
  background: url(../images/menu_icon4_active.png) bottom center no-repeat
}

#menu #nav5 a {
  background: url(../images/menu_icon3.gif) bottom center no-repeat
}

#menu #nav5 a:hover,
#menu #nav5.active a {
  background: url(../images/menu_icon3_active.gif) bottom center no-repeat
}

li::marker{
  display: none;
}


.left {
  float: left
}

.right {
  float: right
}

figure {
  margin-block-start: 1px;
  margin-block-end: 1px;
  margin-inline-start: 20px;
  margin-inline-end: 20px;
  display: block;
}


#container {
  width: 400px;
  height: 300px;
  border: 1px solid #999;
  position: fixed !important;
  bottom: 150px;
  right: 5px;
}

/*地图标题*/
.BMap_bubble_title {
  color: #4eb3ea;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  padding-top: 15px;
  background: #fff;
}

.BMap_bubble_title,
.BMap_bubble_content {
  padding-left: 20px;
}

/* 消息内容 */
.BMap_bubble_content {
  background-color: white;
  padding-top: 5px;
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 25px;
}

/* 内容 */
.BMap_pop div:nth-child(9) {
  top: 15px !important;
  /* border-radius: 7px; */
}

/* 左上角删除按键 */
.BMap_pop img {
  top: 25px !important;
  left: 270px !important;
}

.BMap_top,
.BMap_bottom,
.BMap_center {
  display: none;
}

/* 隐藏边角 */
.BMap_pop div:nth-child(1) div {
  display: none;
}

.BMap_pop div:nth-child(3),
.BMap_pop div:nth-child(5),
.BMap_pop div:nth-child(7),
.BMap_pop div:nth-child(8) {
  display: none;
}

/* 阴影 */
.BMap_shadow {
  display: none;
}


.menu_video {
  display: block
}


