body,
html {
  padding: 0;
  margin: 0;
  background-color: #fff;
  font-size: 16px;
  font-family: "PingFang SC", "黑体", serif;
  color: #262626;
  width: 100vw;
  overflow-x: hidden;
}
body.modelShow {
  overflow-y: hidden;
}
body{
  background-image: url(../images/bodyBg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  min-height: 100vh;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 16px;
}
a,
a:hover {
  color: inherit;
  text-decoration: inherit;
}
button,
input,
textarea {
  -webkit-appearance: none;
  appearance: none;
}
li,
ul {
  list-style: none;
}
img{
  vertical-align: bottom;
}
@font-face {
  font-family: "impact";
  src: url("../fonts/impact.ttf");
}
button{
  cursor: pointer;
}
:root {
  --main-color: #0a6fd7;
  --main-color2: #2c6aba;
  --main-active-color:#2c63b8;
  font-size: 15px; 
}
.hauto{
  height: auto;
  overflow: hidden;
}
.wrap{
  margin-left: 5%;
  margin-right: 5%;
}
.ell2{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; 
}
.header_menu {
  position: fixed;
  height: 50px;
  background-color: #fff;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
}
.header_menu .menu_box {
  display: flex;
  align-items: center;
}
.header_menu .wrap {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_menu .wrap .logo {
  display: flex;
}
.header_menu .wrap .logo img {
  height: 35px;
}
.header_menu .wrap .menu_box img {
  width: 30px;
}
.rightNav {
  left: 100vw;
  top: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #ffff;
  z-index: 9999;
  transition: all 0.4s ease;
  padding: 0 15px;
  box-sizing: border-box;
}
.rightNav .top {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0px 30px 0;
}
.rightNav .close img {
  width: 35px;
}
.rightNav ul li {
  border-bottom: 1px solid #eee;
}
.rightNav ul li a {
  display: block;
  height: 46px;
  line-height: 46px;
  font-size: 16px;
  text-align: center;
  color: #333;
  position: relative;
}
.rightNav ul li a .arrow {
  display: block;
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.rightNav ul li a .arrow img {
  width: 20px;
  transition: 0.3s;
}
.rightNav ul li .sub {
  display: none;
}
.rightNav ul li .sub a {
  display: block;
  width: 100%;
  text-align: center;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}
.rightNav ul li.active .arrow img {
  transform: rotate(90deg);
}
.header ._oa{
  padding: 30px 0 22px 0;
  display: flex;
  justify-content: flex-end;
}
.header ._oa a{
  margin-left: 20px;
  position: relative;
  display: inline-block;
}
.header ._oa a.oa::after{
  display: block;
  content: "";
  width: 1px;
  height: 12px;
  background-color: #555;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.header ._oa a:hover{
  color:#0a6fd7
}
.top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
}
.top .logo img{
  width: auto;
}
.top .search{
  display: flex;
  height: 38px;
  align-items: center;
}
.top .search img{
  width: 25px;
  height: auto;
}
.top .search .input{
  height: 38px;
  width: 270px;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding-left: 10px;
}
.top .search form{
  display: flex;
}
.top .search input{
  background-color: transparent;
  border: none;
  outline: none;
  height: 38px;
  line-height: 38px;
  width: calc(100% - 25px);
}
.top .search button{
  background-color: var(--main-color);
  color: #fff;
  width: 90px;
  height:38px;
  text-align: center;
  line-height: 38px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  outline: none;
  border: none;
}
.top .search .input input::-webkit-input-placeholder{
  color: #cdcdcd;
  font-size: 15px;
}
.menu{
  background-color: var(--main-color);
  height: 60px;
  border-radius: 5px;
}
.menu ul{
  display: flex;
}
.menu ul li{
  height: 60px;
  width: calc(100% / 9);
  position: relative;
}
.menu ul li > a{
  display: block;
  line-height: 60px;
  height: 100%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  position: relative;
}
.menu ul li.active > a{
  font-weight: bold;
}
.menu ul li > a::after{
  display: block;
  content: "";
  height: 100%;
  width: 2px;
  background-color: #0449c3;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 1px 1px 1px rgba(255,255,255,.5);
}
.menu ul li:last-child > a::after{
  display: none;
}
.menu ul li.active{
  background-color: var(--main-active-color);
}
.menu ul li:hover{
  background-color: var(--main-active-color);
}
.menu ul li .subBox{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  background-color: var(--main-active-color);
  padding-bottom: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 3;
}
.menu ul li .subBox .item a{
  display: block;
  padding: 9px 8px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.3);
  color: #fff;
}
.menu ul li .subBox .item:last-child a{
  border-bottom: none;
}
.menu ul li .subBox .item.active{
  background-color: var(--main-color);
}
.menu ul li .subBox .item:hover{
  background-color: var(--main-color);
}
._notic{
  padding: 40px 30px 20px 30px;
  background-color: #fff;
  margin-top: 22px;
}
._notic_t{
  display: block;
  font-size: 22px;
  color: var(--main-color);
  text-align: center;
  font-weight: bold;
}
._notic_t:hover{
  color: var(--main-color);
}
._notic .con{
  margin-top: 25px;
  display: block;
  padding-left: 127px;
  position: relative;
}
._notic .con .label img{
  width: 25px;
  margin-right: 5px;
}
._notic .con .label{
  position: absolute;
  left: 0;
  top: -5px;
  width: 110px;
  display: flex;
  align-items: center;
}
._notic .con .label .text{
  font-weight: bold;
  font-size: 16px;
}
._notic .con .list{
  height: auto;
  display: flex;
}
._notic .con .list li{
  float: left;
  margin-left: 3%;
  width: calc(97% / 2);
  font-size: 15px;
  margin-bottom: 10px;
}
._notic .con .list li:nth-child(2N+1){
  margin-left: 0;
}
._notic .con .list li a{
  position: relative;
  display: flex;
  justify-content: space-between;
}
._notic .con .list li a .date{
  flex-shrink: 0;
  width: 127px;
  color: #999;
}
._notic .con .list li a .txt{
  width: calc(100% - 130px);
}
.ell{
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
._notic .con .list li a::after{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-left: 6px solid #88beff;
  border-bottom: 3px solid transparent;
  border-right: none;
}
.image{
  overflow: hidden;
  flex-shrink: 0;
}
.image .rect{
  padding-bottom: 67%;
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  height: 0;
}
.image .rect img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: .45s;
}
.image:hover img{
  transform: scale(1.1);
}
._sec1{
  background-color: #fff;
  height: auto;
  overflow: hidden;
  padding: 0 30px 35px 30px;
}
._sec1 .l{
  float: left;
  width: 50%;
  padding-right: 15px;
  position: relative;
}
._swiper1{
  overflow: hidden;
}
._swiper1 .swiper-slide{
  position: relative;
}
._swiper1 .swiper-slide .image{
  position: relative;
  z-index: 1;
}
._swiper1 .swiper-slide  .txt{
  position: absolute;
  left:0;
  right: 0;
  bottom: 0;
  height: 58px;
  background-color: rgba(0,0,0,.7);
  z-index: 2;
  display: flex
}
._swiper1 .swiper-slide  .txt .date{
  width: 67px;
  height: 100%;
  background-color: #2c6aba;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
}
._swiper1 .swiper-slide  .txt .date h3{
  font-weight: normal;
  font-size: 14px;
}
._swiper1 .swiper-slide  .txt .date h2{
  font-size: 18px;
  line-height: 1;
}
._swiper1 .swiper-slide  .txt .p{
  line-height: 58px;
  color: #fff;
  font-size: 15px;
  padding: 0 150px 0 15px;
}
._pag1Box{
  position: absolute;
  right: 36px;
  bottom: 22px;
  z-index: 3;
}
._pag1Box .swiper-pagination-bullet{
  width: 15px;
  height: 5px;
  background-color: #91928a;
  opacity: 1;
  border-radius: 0;
  margin: 0 3px;
  outline: none;
}
._pag1Box .swiper-pagination-bullet-active{
  background-color: #fff;
}
._sec1 .r{
  float: right;
  width: 50%;
  position: relative;
  padding-left: 25px;
}
._sec1 .r .tab{
  height: auto;
  overflow: hidden;
  height: 48px;
  margin-bottom: 20px;
}
._sec1 .r .tab li{
  width: 25%;
  float: left;
  position: relative;
  height: 48px;
  text-align: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}
._sec1 .r .tab li.active{
  color: var(--main-color2);
}
._sec1 .r .tab li.active::after{
  display: block;
}
._sec1 .r .tab li::after{
  display: none;
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--main-color2);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
._sec1 .r .tab{
  border-bottom: 1px solid #ededed;
}
._sec1 .r ._sub {
  display: none;
}
._sec1 .r ._sub.active{
  display: block;
}
._sec1 .r ._sub .rec:hover{
  background-color: #f2f2f2;
}
._sec1 .r ._sub .rec{
  padding: 10px 10px;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  margin-bottom: 17px;
}
._sec1 .r ._sub .rec .date{
  float: left;
  padding-right: 18px;
  width: 90px;
  border-right: 1px solid #B8B8B8;
  flex-shrink: 0;
}
._sec1 .r ._sub .rec .date h2{
  font-size: 50px;
  color: #B8B8B8;
  font-weight: normal;
}
._sec1 .r ._sub .rec .date  h3{
  color: #B8B8B8;
  font-size: 16px;
  font-weight: normal;
}
._sec1 .r ._sub .rec .rt{
  width: calc(100% - 140px);
  margin-left: 30px;
  float: left;
}
._sec1 .r ._sub .rec .rt h2{
  font-weight: normal;
  font-size: 20px;
  color: var(--main-color2);
  margin-bottom: 10px;
}
._sec1 .r ._sub .rec .rt p{
  color: #aaa;
  font-size: 14px;
  line-height: 25px;
}
._sec1 .r ._sub li a{
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-left: 14px;
  margin-bottom: 15px;
}
._sec1 .r ._sub li a::after{
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 9px;
}
._sec1 .r ._sub li a ._r{
  color: #C5C5C6;
}
._sec1 .r ._sub li a ._l{
  width: calc(100% - 80px);
}
._sec1 .r ._sub li:hover{
  color: var(--main-color2);
}
._sec1 .r ._sub li:hover ._r{
  color: var(--main-color2);
}
._sec1 .r ._sub li:hover a::after{
  background-color: var(--main-color2);
}
._swiper2{
  overflow: hidden;
}
._sec2{
  padding: 5px 30px 35px 30px;
  position: relative;
  background-color: #fff;
}
._sec2 .swiper-slide{
  border-radius: 5px;
  overflow: hidden;
}
._sec2 .swiper-slide img{
  width: 100%;
}
._sec2 ._pag2{
  position: absolute;
  right: 64px;
  bottom: 50px;
  z-index: 3;
}
._pag2 .swiper-pagination-bullet{
  margin: 0 3px;
  outline: none;
  background-color: #000;
}
._pag2 .swiper-pagination-bullet-active{
  background-color: #fff;
}
._sec{
  padding: 5px 30px 35px 30px;
 background-color: #fff;
}
._sec3 ul{
  height: auto;
  overflow: hidden;
}
._sec3 ul li{
  float: left;
  margin-left: 2%;
  width: calc(94% / 4);
}
._sec3 ul li:first-child{
  margin-left: 0;
}
._sec3 ul li a{
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/bg1.png) no-repeat left top #E9F0F8;
  background-size: 110px;
}
._sec3 ul li a div{
  display: flex;
  align-items: center;
  justify-content: center;
}
._sec3 ul li a div img{
  margin-right: 8px;
  transition: all .3s;
}
._sec3 ul li:hover a div img{
  transform: scale(.9);
}
._sec3 ul li .arr{
  color: #2A6EA4;
  font-size: 16px;
  margin-left: 8px;
}
._sec4{
  height: auto;
  overflow: hidden;
  padding: 0 30px 35px 30px;
}
._sec4 .r{
  float: right;
  width: calc(94% / 4);
}
._sec4 .l{
  width:72%;
  float: left;
}
._sec4 ._tabs{
  border-bottom: 1px solid #ededed;
  margin-bottom: 22px;
}
._sec4 ._tabs ._tab{
  font-size: 17px;
  font-weight: bold;
 padding: 10px 15px;
 display: inline-block;
 cursor: pointer;
 position: relative;
}
._sec4 ._tabs ._tab.active{
  color: var(--main-color2);
}
._sec4 ._tabs ._tab::after{
  display: none;
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--main-color2);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
._sec4 ._tabs ._tab.active::after{
  display: block;
}
._sec4  ul li a{
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-left: 14px;
  margin-bottom: 15px;
}
._sec4 li a ._l {
  width: calc(100% - 80px);
}
._sec4 li a ._r {
  color: #C5C5C6;
}
._sec4 li a::after {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 9px;
}
._sec4  .listBox .item{
  float: left;
  margin-left: 4%;
  width: calc(96% / 2);
}
._sec4  .listBox .item ul{
  display: none;
}
._sec4  .listBox .item ul.active{
  display: block;
}
._sec4  .listBox .item:first-child{
  margin-left: 0;
}
._sec4 li:hover{
  color: var(--main-color2);
}
._sec4 li:hover ._r{
  color: var(--main-color2);
}
._sec4 li:hover a::after{
  background-color: var(--main-color2);
}
._sec4 .r > a{
  display: flex;
  background: #ecf2f8;
  height: 45px;
  transition: all .3s;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 20px;
}
._sec4 .r  >  a .img{
  margin-right: 15px;
}
._sec4 .r  >  a:hover{
  background-color: #dae8f7;
}
._sec4 .r  >  a:hover img{
  transform: scale(.9);
}
._sec4 .r  >  a img{
  transition: all .3s;
}
._sec4 .r .ks a{
  display: flex;
  align-items: center;
  position: relative;
}
._sec4 .r .ks a  img{
  position: relative;
  z-index: 1;
  width: 100%;
}
._sec4 .r .ks a span{
  color: #fff;
  font-size: 27px;
  font-weight: bold;
  text-shadow: 2px 2px 2px #000;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 45%;
  transform: translateY(-50%);
}
.listBox{
  height: auto;
  overflow: hidden;
}
._swiperBox{
  padding-top: 35px;
  position: relative;
}
._swiperBox .tab{
  border-bottom: 1px solid #ededed;
  margin-bottom: 22px;
}
._swiperBox .tab div{
  display: inline-block;
  font-size: 17px;
  font-weight: bold;
  padding: 10px 15px;
  position: relative;
  color: var(--main-color2);
}
._swiperBox .tab div::after{
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--main-color2);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
._swiperBox ._swiper3{
  overflow: hidden;
  margin-left: 20px;
  margin-right: 20px;
}
._swiperBox ._swiper3 .swiper-slide{
  background-color: #f9f9f9;
  height: 100px;
}
._swiperBox ._swiper3 .swiper-slide a{
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
._swiperBox ._swiper3 .swiper-slide a img{
  height: 38px;
  width: auto;
}
._swiperBox ._swiper3 .swiper-slide h2{
  padding-top: 8px;
  font-weight: normal;
}
._swiperBox .arr_l{
  width: 20px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color2);
  background-image: url(../images/arr_l.png);
  background-size: 23px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 100px;
  cursor: pointer;
  outline: none;
  z-index: 2;
}
._swiperBox .arr_r{
  width: 20px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color2);
  background-image: url(../images/arr_r.png);
  background-size: 23px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 0;
  top: 100px;
  cursor: pointer;
  outline: none;
  z-index: 2;
}
.zhuanti{
  background-color: #f5f5f5;
  padding-bottom: 80px;
}
.zhuanti .wrap{
  padding: 0 30px;
}
.zhuanti .title{
  padding: 45px 0;
  text-align: center;
  position: relative;
}
.zhuanti .title .line{
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(50%);
  z-index: 1;
  background-color: var(--main-color2);
  transform: scaleY(.7);
}
.zhuanti .title  span{
  display: inline-block;
  position: relative;
  z-index: 2;
  padding:0px 50px;
  background-color: #f8f8f8;
  color: #0078e7;
  font-size: 28px;
  font-weight: bold;
}
.zhuanti .title  span .l{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}
.zhuanti .title  span .l::before{
  display: block;
  content: "";
  width: 3px;
  height: 12px;
  background-color: #0078e7;
  opacity: .3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.zhuanti .title  span .l::after{
  display: block;
  content: "";
  width: 3px;
  height: 18px;
  background-color: #0078e7;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.zhuanti .title  span .r::before{
  display: block;
  content: "";
  width: 3px;
  height: 12px;
  background-color: #0078e7;
  opacity: .3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.zhuanti .title  span .r::after{
  display: block;
  content: "";
  width: 3px;
  height: 18px;
  background-color: #0078e7;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.zhuanti ul{
  padding-top: 15px;
  height: auto;
  overflow: hidden;
}
.zhuanti ul li{
  float: left;
  margin-left: 3%;
  width: calc(91% / 4);
}
.zhuanti ul li:first-child{
  margin-left: 0;
}
.zhuanti ul li  .txt{
  background-color: #fff;
  text-align: center;
  padding: 15px 15px;
}
.linkBox{
  border-bottom: 1px solid #ddd;
  padding: 35px 0;
  display: flex;
}
.footer{
  border-top: 2px solid #2c63b8;
  background-color: #f5f5f5;
}
.linkBox .item{
  cursor: pointer;
  height: 38px;
  background-color: #fff;
  float: left;
  margin-left: 2%;
  width: calc(92% / 5);
  position: relative;
}
.linkBox .item:first-child{
  margin-left: 0;
}
.linkBox .item .con{
  border: 1px solid #eee;
  padding: 0 7px;
  display: flex;
  height: 38px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-color: #fff;
}
.linkBox .item .con::after{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-top: 8px solid #000;
  border-right: 4px solid transparent;
  border-bottom: none;
}
.linkBox .item  ._sub{
  width: 100%;
  height: auto;
  max-height: 400px;
  border: 1px solid #eee;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 37px;
  padding: 15px 8px 5px 8px;
  display: none;
}
.linkBox .item  ._sub a{
  display: block;
  margin-bottom: 10px;
}
.linkBox .item  ._sub a:hover{
  color: var(--main-color2);
}
.linkBox .item:hover  ._sub{
  display: block;
}
.footer_b{
  height: auto;
  overflow: hidden;
  padding-top: 40px;
}
.footer_b .r{
  float: right;
  width: 120px;
  text-align: center;
  padding-bottom: 35px;
  margin-top: -7px;
}
.footer_b .r img{
  width: 100%;
  padding-bottom: 5px;
}
.footer_b .l{
  float: left;
  width: calc(100% - 200px);
}

.footer_b .amenu a{
  display: inline-block;
  margin-right: 30px;
  position: relative;
}
.footer .wrap{
  padding: 0 30px;
}
.footer_b .amenu a::after{
  display: block;
  content: "";
  height: 14px;
  width: 2px;
  background-color: #000;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%) scaleX(.6);
}
.footer_b .amenu a:last-child::after{
  display: none;
}
.footer .copy{
  padding-top: 20px;
  color: #777;
}
.footer .copy p{
  margin-bottom: 10px;
}
.footer .copy p a{
  margin-left: 20px;
}
.footer .copy  span{
  margin-right: 18px;
}
.footer .copy  span img{
  margin-right: 3px;
}
.footer .copy  span a{
  margin-left: 0;
}
.mainBody{
  background-color: #fff;
  margin-top: 22px;
  padding: 0 30px 30px 30px;
}
.homeBanner{
  position: relative;
}
.homeBanner .homep{
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 10px;
  z-index: 5;
}
.homeBanner .homep .swiper-pagination-bullet{
  outline: none;
  margin: 0 3px;
}
.homeBanner .homep  .swiper-pagination-bullet-active{
  background-color: var(--main-color);
}
.notin_p .l{
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 76px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.notin_p .r{
  padding: 5px 0;
  height: 76px;
  width: calc(100% - 70px);
  float: right;
}
.noticSwiper{
  overflow: hidden;
  height: 70px;
}

.noticSwiper .label{
  width: calc(100% - 50px);
}
.noticSwiper .date{
  font-size: 14px;
  color: #999;
}
.noticSwiper .item{
  height: 30px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.notin_p{
  margin-top: 12px;
  height: auto;
  overflow: hidden;
  margin-bottom: 15px;
}
._sec2 .image .rect{
  padding-bottom: 10%;
}
/* 新闻 */
.sNav{
  border-bottom: 1px solid #ddd;
}
.newSec .wrap{
  margin-left: 0;
  margin-right: 0;
}
.sNav .wrap{
  margin-left: 0;
  margin-right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sNav .wrap .l{
  display: flex;
}
.sNav .wrap .l a{
  height: 72px;
  line-height: 72px;
  margin: 0 15px;
  position: relative;
}
.sNav .wrap .l a.active{
  color: var(--main-color);
  font-weight: bold;
}
.sNav1 .wrap .l a{
  margin: 0 80px;
}
.sNav1 .wrap .l a:first-child{
  margin-left: 0;
}
.sNav .wrap .l a::after{
  display: none;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  bottom: 0;
}
.sNav .wrap .l a.active::after{
  display: block;
}
.sNav .wrap .r{
  display: flex;
  height: 72px;
  align-items: center;
}
.sNav .wrap .r a{
  font-size: 14px;
  margin: 0 5px;
}
.sNav .wrap .r  img{
  width: 20px;
  margin-right: 15px;
}
.inside_nav{
  background-color: var(--main-color);
  position: relative;
}

.inside_nav .wrap .h5{
  height: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255, 0.2);
}
.inside_nav .wrap .l{
  color: #fff;
}
.inside_nav .wrap .r{
  width: 20px;
  height: 20px;
  border-radius:100%;
  background-color: rgba(255,255,255, 0.2);
  position: relative;
} 
.inside_nav .wrap .r::after{
  display: block;
  content:"";
  width: 9px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.inside_nav .wrap .r::before{
  display: block;
  content:"";
  width: 2px;
  height: 9px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.inside_nav.active .wrap .r::before{
  display: none;
}
.inside_nav .subN{
  padding-bottom: 10px;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background-color: var(--main-color);
  z-index: 4;
}
.inside_nav .subN a{
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 35px;
  border-bottom: 1px solid rgba(255,255,255, 0.2);
}
.dqSec3 {
  padding:  80px 0 60px 0;
}
.dqSec3 li{
  margin-bottom: 60px;
}
.dqSec3 li a{
  display: flex;
  height: auto;
  overflow: hidden;
  box-shadow: 2px 2px 20px 3px #e1e1e1;
}
.dqSec3 li a .image{
  overflow: hidden;
  width: 30%;
  flex-shrink: 0;
}
.dqSec3 li a .image .rect{
  padding-bottom: 67%;
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  height: 0;
}
.dqSec3 li a .image img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: .45s;
}
.dqSec3 li a .image:hover img{
  transform: scale(1.1);
}
.dqSec3 li a .txt{
  padding-top: 4%;
  margin-left: 5%;
  padding-right: 40px;
}
.dqSec3 li a  h2{
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 3%;
}
.dqSec3 li a  p{
  font-size: 16px;
  line-height: 27px;
  color: #999;
}
.dqSec3 li a .date{
  padding-top: 12px;
  color: #999;
}
.dqSec3 li a:hover .date{
  color: #fff;
}
.dqSec3 li a:hover{
  background-color: var(--main-color);
}
.dqSec3 li a:hover h2{
  color: #fff;
}
.dqSec3 li a:hover p{
  color: #fff;
}
.pageNation{
  margin-top: 50px;
  height: 50px;
  display:flex;
  justify-content: center;
  overflow: hidden;
}
.pageNation .num{
  margin: 0 5px;
}
.pageNation a{
  display: inline-block;
  width: 58px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #f1f1f1;
  color: #777;
  font-size: 16px;
}
.pageNation a:hover{
  background-color: var(--main-color);
  color: #fff;
}
.pageNation a.active{
  background-color: var(--main-color);
  color: #fff;
}
.newSec{
  padding: 80px 0;
}
.newSec li{
  margin-bottom: 50px;
}
.newSec li a{
  background-color: #f2f2f2;
  padding: 5% 6%;
  display: flex;
  justify-content: space-between;
}
.newSec li  .l h2{
  font-size: 28px;
  margin-bottom: 3%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.newSec li  .l  p{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  line-height: 30px;
}
.newSec li  .l{
  width: 70%;
}
.newSec li .r{
  padding-top: 10px;
  width: 200px;
  text-align: center;
}
.newSec li .r h3{
  font-family: 'impact';
  font-weight: normal;
  font-size: 45px;
  padding-bottom: 5px;
}
.newSec li .r h4{
  font-weight: 100;
  font-size: 20px;
}
.newSec li a:hover{
  background-color: var(--main-color);
}
.newSec li a:hover h2{
  color: #fff;
}
.newSec li a:hover p{
  color: #fff;
}
.newSec li a:hover h4{
  color: #fff;
}
.newSec li a:hover h3{
  color: #fff;
}
.newSec li .date{
  margin-top: 10px;
}
.newSec li a:hover .date{
  color: #fff;
}
.mbanner img{
  width: 100%;
}
.pageNation span{
  display: inline-block;
}
.newsNysec{
  padding: 80px 0;
}
.newsNysec .nt{
  padding:0 0 35px 0;
  border-bottom: 1px solid #ededed;
}
.newsNysec .wrap{
  height: auto;
  display: flex;
  justify-content: space-between;
}
.newsNysec .wrap .l{
  width: 100%;
}
.newsNysec .wrap > .r{
  display: none;
  width: 23%;
  background-color: #fff;
}
.newsNysec .wrap .r.fix{
  position: fixed;
  top: 100px;
  right: 5%;
}
.newsNysec .nt h2{
  text-align: center;
  font-size: 30px;
  padding-bottom: 5%;
}
.newsNysec .nt h3{
  text-align: center;
  font-size: 14px;
  color: #999;
  font-weight: normal;
}
.newsNysec .bd{
  padding: 35px 10px 50px 10px;
  line-height: 32px;
  border-bottom: 1px solid #ededed;
  font-size: 16px;
}
.newsNysec .bd  video{
  max-width: 100%;
}
.newsNysec .bd span{
  text-wrap: normal !important;
  white-space: normal !important;
}
.newsNysec .bd p{
  text-wrap: normal !important;
  white-space: normal !important;
}
.newsNysec .bd img{
  max-width: 100%;
}
.newsNysec .bd.nbd{
  padding: 35px 3% 50px 3%;
}
.newsNysec .bd table{
  max-width: 100%;
  width: 100%;
}
.pian{
  padding: 30px 0 0 0 ;
  position: relative;
  height: auto;
  overflow: hidden;
}
.pian .l{
  float: left;
  width: 30% !important;
  text-align: left;
}
.pian .r{
  float: right;
  width: 30%;
  text-align: right;
}
.pian .back1{
  position: absolute;
  left: 50%;
  top:60%;
  transform: translate(-50%,-50%);
  display: block;
  width: 160px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  background-color: var(--main-color);
  font-size: 16px;
  text-align: center;
  padding: 0;
  border-radius: 5px;
}
.pian h2{
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  font-weight: normal;
}
.pian p{
  font-size: 16px;
}
.pian h2 img{
  width: 20px;
}
.pian .l h2{
  justify-content: flex-start;
}
.pian .r h2{
  justify-content: flex-end;
}
.el{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pian .p:hover{
  color: var(--main-color);
}
.newsNysec .r .t{
  padding: 10px 20px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 16px;
}
.newsNysec .r ul{
  border: 1px solid #ededed;
  padding: 0 20px 20px 20px;
}
.newsNysec .r ul li{
  padding: 15px 0 0 0;
}
.newsNysec .r ul li h2{
  font-weight: normal;
  font-size: 15px;
  color: #999;
  padding-bottom: 3px;
}
.newsNysec .r ul li p{
  font-size: 16px;
}
.honorBox {
  padding: 80px 0;
}
.honorBox .image{
  height: 190px;
  background-color: #ededed;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.honorBox .image > img{
  position: relative;
  z-index: 1;
  transition: all .45s;
  max-height: 100%;
}
.honorBox .image .cover{
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  top: -100%;
  z-index: 2;
  transition: all .45s;
  background-color: rgba(22, 102, 173, 0.5);
}
.honorBox .image .cover img{
  width: 35px;
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%,-50%);
  z-index: 3;
}
.honorBox .image:hover > img{
  transform: scale(1.1);
}
.honorBox .txt{
  padding: 0 15px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #aaaaaa;
  color: #fff;
}
.honorBox ul{
  height: auto;
  overflow: hidden;
}
.honorBox li{
  cursor: pointer;
  float: left;
  margin-left: 3%;
  width: calc(91% / 4);
  margin-bottom: 20px;
}
.honorBox li:nth-child(4N+1){
  margin-left: 0;
}
.honorBox li:hover .txt{
  background-color: var(--main-color);
  color: #fff;
}
.honorBox li:hover .cover{
  top: 0;
}
.mpic{
  display: none;
}
.aspan{
  display: inline-block;
  width: 58px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #f1f1f1;
  color: #777;
  font-size: 16px;
}
/* ------新增-------- */
.mapBox{
  padding-top: 45px;
  height: auto;
  overflow: hidden;
}
.mapBox .l{
  float: left;
  width: 40%;
  background-color: #f7f7f7;
  padding: 3% 3.5%;
  height: 588px;
}
.mapBox .r{
  height: 588px;
  float: right;
  width: 57%;
  background-color: #f7f7f7;
  background: url(../images/map.jpg);
  background-size: cover!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
}
.mapBox .r img{
  display: none;
}
.mapBox .l .top1{
  padding-top: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #ddd;
}
.mapBox .l .top1 h2{
  font-size: 30px;
  font-weight: normal;
  padding-bottom: 16px;
}
.mapBox .l .top1 p{
  line-height: 30px;
}
.mapBox .l li{
  display: flex;
  padding: 35px 0;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.mapBox .l li img{
  margin-right: 15px;
  width: 38px;
}
.mapBox .l li span{
  margin-left: 8px;
}
.message{
  padding: 80px 0;
}
.title{
  text-align: center;
  padding-bottom: 35px;
}
.title h2{
  font-weight: normal;
  color: var(--main-color);
  font-size: 30px;
  padding-bottom: 8px;
}
.title p{
  font-size: 16px;
}
.lingdao{
  padding-top: 25px;
  padding-bottom: 50px;
}
.lingdao ul li{
  padding: 25px 0 30px 0;
  border-bottom: 1px dashed #555;
  margin-left: 10px;
}
.lingdao ul li h2{
  padding-bottom: 12px;
  font-size: 20px;
}
.lingdao ul li h2 span{
  margin-left: 20px;
  font-size: 20px;
  color: var(--main-color);
}
.jigou{
  padding-top: 25px;
  padding-bottom: 50px;
}
.jigou li{
  border-bottom: 1px dashed #555;
}
.jigou li .tit{
  cursor: pointer;
  position: relative;
  padding: 30px 0 30px 25px;
  font-size: 16px;
}
.jigou li .tit::after{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-left: 6px solid #f39700;
  border-bottom: 3px solid transparent;
  border-right: none;
}
.jigou li.active .tit::after{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-top: 6px solid #f39700;
  border-right: 3px solid transparent;
  border-bottom: none;
}
.jigou li  .scon{
  display: none;
  padding-left: 30px;
  padding-bottom: 35px;
}
.jigou li h3{
  padding-bottom: 20px;
  font-size: 18px;
}
.jigou li h3 span{
  margin-left: 20px;
  font-size: 20px;
  color: var(--main-color);
}
.diaocha{
  padding: 50px 0;
}
._form{
  padding: 80px 8%;
}
#fb7-ajax{
  width: 100vw;
  height: 100vh;
}

#fb7 .fb7-menu ul {
	list-style: none; 
	margin: 15px 0; padding: 0;	
}

#fb7 .fb7-menu li {
	float: left ;
	position: relative;
	width: 38px;
	height: 65px;
	margin: 0;
	padding:0px 2px 0 2px;
	list-style: none;		
	/*background: url(../img/icons.png) no-repeat/*/
	background-position: -39px 0px ;
	
	border: 0px solid #F00;
}

#fb7 .fb7-menu li:last-child {
	background-position:-76px 0px ;
	padding:0;
	width: 48px;
	
}

#fb7 .fb7-menu li:first-child {
	background-position:0px 0px ;
	padding:0;

	
}

#fb7 .fb7-menu li a {
	display: block;
	background:inherit;
	width: 38px;
	height: 65px;
	margin:-37px 0px;
	
	
}

#fb7 .fb7-menu li a.fb7-download				{ background-position: 0 -65px; }
#fb7 .fb7-menu li a.fb7-download:hover			{ background-position: 0 -130px; }

#fb7 .fb7-menu li a.fb7-home					{ background-position: -228px -65px; }
#fb7 .fb7-menu li a.fb7-home:hover				{ background-position: -228px -130px; }

#fb7 .fb7-menu li a.contact				        { background-position: -226px -5px; }
#fb7 .fb7-menu li a.contact:hover			    { background-position: -226px -5px; }

#fb7 .fb7-menu li a.fb7-fullscreen				{ background-position: -266px -65px; }
#fb7 .fb7-menu li a.fb7-fullscreen:hover		{ background-position: -266px -130px; }


#fb7 .fb7-menu li a.fb7-show-all				{ background-position: -190px -65px; }
#fb7 .fb7-menu li a.fb7-show-all:hover			{ background-position: -190px -130px; }

#fb7 .fb7-menu li a.fb7-zoom-auto				{ background-position: -114px -65px; }
#fb7 .fb7-menu li a.fb7-zoom-auto:hover		    { background-position: -114px -130px; }
	
#fb7 .fb7-menu li a.fb7-zoom-in				    { background-position: -76px -65px; }
#fb7 .fb7-menu li a.fb7-zoom-in:hover			{ background-position: -76px -130px; }
	
#fb7 .fb7-menu li a.fb7-zoom-original			{ background-position: -152px -65px; }
#fb7 .fb7-menu li a.fb7-zoom-original:hover	    { background-position: -152px -130px; }

#fb7 .fb7-menu li a.fb7-zoom-out				{ background-position: -37px -65px; }
#fb7 .fb7-menu li a.fb7-zoom-out:hover			{ background-position: -37px -130px; }


#fb7 .fb7-menu#fb7-center {
	width: auto;
	margin-top: 14px;
	margin-down: 0;
	position:absolute;
	
	/*
	margin-left: auto;
	margin-right: auto;
    /*/
}

#fb7 .fb7-menu#fb7-right {
	float: right;
	width: auto;
	margin: 15px 6px 0 0;
}

#fb7 .fb7-menu#fb7-right li {
	background:none;
}


#fb7 .fb7-menu li.fb7-goto {
	position: relative;
	width: auto;
	margin: -6px 4px 0px 0;
	padding: 6px 0 0 10px;
}

#fb7 .fb7-menu li.fb7-goto #fb7-label-page-number {
	font-family:Arial,sans-serif;
	display:inline;
	float: left;
	margin: 6px 5px 0 0;
	line-height: 12px;
	font-size: 10px; font-weight: bold;
	color: #5f6f7b;
	-webkit-font-smoothing: antialiased;
	width:auto;
}


#fb7 .fb7-menu li.fb7-goto input[type='text'] {
	background: #141f28;
	width: 28px;
	height: 29px;		
	padding: 0 25px 0 7px;
	text-align: center;
	font-size: 14px;
	font-family:Nunito;
	font-weight:bold;
	color: #616465;
	display:inline;
	border-radius:25px;
	box-shadow:inset 1px 2px 3px #CCCCCC;
}

#fb7 .fb7-menu li.fb7-goto input[type='text'].focus_input  {

	box-shadow:0 0 7px 2px #97dcea;
}
	
#fb7 .fb7-menu li.fb7-goto button {
	text-shadow:none;
	font-family:Nunito,sans-serif;
	position: absolute; 
	right: 1px; 
	top: 7px;
	height:29px;
	width:40px;
	border:3px solid;
    border-top-right-radius:3em;
	border-bottom-right-radius:3em;

	/*border:1px solid #EBEEF0;/*/
	display:inline;
	font-size: 11px;
	text-align:center;
	font-weight: bold;
	padding: 0 1px;
	background:#FF0000;
	color: #5f6f7b;
	cursor:pointer;
}

#fb7 .ui-btn-text { display: none; }


/* = Tooltip
-------------------------------------------------------------- */

#fb7 .fb7-tooltip {
	font-family:Nunito,sans-serif;
	position: absolute; left: 0; top: -25px; z-index: 5;
	display: none;
	padding: 2px 10px;
	background: #64c8d3;
	white-space: nowrap;
	font-size: 10px;
	font-weight: bold;
	/*text-transform: uppercase/*/
	color: #616465;
	
	background: -webkit-linear-gradient(#FFFFFF,#EAEAEA); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(#FFFFFF,#EAEAEA); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(#FFFFFF,#EAEAEA); /* For Firefox 3.6 to 15 */
	background: linear-gradient(#FFFFFF,#EAEAEA); /* Standard syntax */
	
	
	border-radius: 1px;
	border:1px solid #D4D4D4;
	box-shadow: 0 0 1px 1px #DBDBDB;
	font-size:12px;
}
	
	/*
	#fb7 .fb7-tooltip b {
		
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid #64c8d3;
    bottom: -7px;
    display: block;
    height: 0;
    left: 6px;
    position: absolute;
    width: 0;
	}
	/*/


/* = Footer
-------------------------------------------------------------- */

#fb7 #fb7-footer {
   opacity:0;	
}

#fb7 #fb7-footer {
	position: absolute; bottom: 0px; z-index: 15;
	left:0px;
	/*background: url(../img/bg-footer.png);/*/
	/*background-color: rgba(0, 0, 0, .55);/*/
	/*border-top: 3px solid #0A334A;/*/
	width: 100%; height: 60px;
	margin: 0; padding: 0;

}

#fb7 #fb7-footer #fb7-logo {
		position: absolute; left: 10px; top: 18px; z-index: 5;
}

#fb7 #fb7-footer .fb7-bcg-tools {
    background-color: #000000;
    height: 100%;
    left: 0;
    opacity: 0.55;
    position: absolute;
    top: 0;
    width: 100%;
	
}
.bookback{
  background-color: var(--main-color);
  padding: 5px 30px;
  font-size: 15px;
}
/* 下载 */
.caigouSec{
  padding: 20px 10px 50px 10px;
}
.caigouSec li a{
  padding: 0 0 22px 22px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.caigouSec li a .txt{
 width: calc(100% - 200px);
}
.caigouSec li a::after{
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  opacity: .5;
  top: 7px;
}
.caigouSec li:nth-child(5N+5){
  border-bottom: 1px dashed #777;
}
.caigouSec li:nth-child(5N+1){
  padding-top: 25px;
}
.caigouSec li a:hover{
  color: var(--main-color);
}
.caigouSec li a .date{
  color: #999;
}
.homePop{
  position: relative;
  margin-bottom: 30px;
}
.homePop .link{
  display: block;
  position: relative;
  z-index: 1;
}
.homePop img{
  position: relative;
  z-index: 1;
  width: 100%;
}
.homePop .tips{
  display: flex;
  align-items: center;
  position: absolute;
  right: 12px;
  top: 8px;
  z-index: 2;
}
.homePop .tips span{
  color: #fff;
  font-size: 14px;
}
.homePop .tips .popClose{
  margin-left: 20px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  background-color: var(--main-color);
  background-image: url(../images/close3.png);
  background-size: 22px!important;
  background-repeat: no-repeat!important;
  background-position: center center !important;
}
.homePop .tips .jsnum{
  margin-left: 5px;
}
.rightBar{
  background-color: #fff;
  width: 110px;
  position: fixed;
  right: 0;
  bottom: 40px;
  z-index: 9990;
  box-shadow: 0px 0px 38px 0px rgba(0,0,0,.06);
  transition: .45s;
}
.rightBar.hide{
  width: 90px;
}
.rightBar.hide li p{
  display: none;
}
.rightBar li{
  position: relative;
  text-align: center;
  padding: 18px 0 18px 0;
}
.rightBar li .img{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #f7f7f7;
}
.rightBar li .img img{
  width: 36px;
}
.rightBar li a{
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.rightBar li p{
  margin-top: 6px;
}
.rightBar li:hover{
  background-color: #DBECFF;
}
.rightBar .sq{
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  color: #fff;
  background-color: #4E6EA8;
  font-size: 15px;
}
.rightBar .sq:hover{
  background-color: #21468C;
}
.rightBar .sq img{
  margin-left: 6px;
  width: 10px;
  transition: .45s;
}
.rightBar.hide .sq img{
  transform: scaleX(-1);
}
.rightBar.hide span{
  display: none;
}
.rightBar li.ewmBox:hover .ewmCon{
  display: block;
}
.rightBar .ewmCon{
  display: none;
  position: absolute;
  right: 110px;
  top: -10px;
  width: 140px;
  height: auto;
  z-index: 3;
}
.rightBar .eimg{
  width: 120px;
}
.rightBar .ewmCon img{
  width: 100%;
}
.rightBar .ewmCon:after{
  position: absolute;
    top: 20px;
    right: 5px;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 16px solid #fff;
    border-bottom: 8px solid transparent;
    border-right: none;
}
.rightBar.hide .ewmCon{
  right: 90px;
}