@keyframes list {
  0% {
    left: -100%;
  }

  100% {
    left: 0;
  }
}

@keyframes toDown {
  0% {
    bottom: 80px;
  }

  50% {
    bottom: 100px;
  }

  100% {
    bottom: 80px;
  }
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url(../fonts/Montserrat-Bold.otf);
}

.pcHead {
  top: 0;
  z-index: 20;
  display: flex;
  height: 160px;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  transition: ease 0.5s;
}

.pcHead .logo img {
  height: 68px;
}

.pcHead .navBar {
  display: flex;
  /* margin: 0 -15px; */
  padding: 0 10vw;
}

.pcHead .navBar .lis {
  padding: 0 15px;
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  width: 180px;
  text-align: center;
}

.pcHead .navBar .lis .item {
  color: #fff;
  font-weight: 700;
  padding: 5px 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 16px;
}

.pcHead .navBar .lis .item i {
  font-size: 20px;
}

.pcHead .navBar .lis .item:hover {
  color: #fff !important;
}

.pcHead .navBar .lis .chr {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  top: 60px;
  left: 0;
  z-index: 20;
  padding: 5px 0;
}

.pcHead .navBar .lis .chr .chr_lis {
  display: block;
  padding: 10px 0;
  text-align: center;
}

.pcHead .navBar .lis .chr .chr_lis:hover {
  color: #0073cc;
  background-color: rgba(0, 0, 0, 0.1);
}
.pcHead .navBar .lis.on {
background-color: rgba(0, 0, 0, 0.1);
}
.pcHead .navBar .lis.on .item {
  border-bottom: 1px solid transparent;
  color: #fff !important;
}

.pcHead.on {

  position: fixed;
}

.pcHead.on,
.pcHead:hover {
  background-color: #fff;
}

.pcHead.on .logo img,
.pcHead:hover .logo img {
  display: none;
}

.pcHead.on .logo img:last-child,
.pcHead:hover .logo img:last-child {
  display: block;
}

.pcHead.on .navBar .lis .item,
.pcHead:hover .navBar .lis .item {
  color: #fff;
}

.pcHead.on .contus,
.pcHead:hover .contus {
  color: #fff;
}

.pcBanner {
  position: relative;
}

.pcBanner .npBox {
  position: absolute;
  z-index: 15;
  height: 0;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
}

.pcBanner .npBox .prev,
.pcBanner .npBox .next {
  cursor: pointer;
  height: 60px;
}

.pcBanner .npBox .prev i,
.pcBanner .npBox .next i {
  font-size: 60px;
  line-height: 60px;
  color: #6eb92b;
}

.pcBanner .ms {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  animation: toDown linear infinite 1s;
}

.pcBanner .ms i {
  color: #fff;
  font-size: 40px;
}

.pcBanner .swiper .desc {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}

.pcBanner .swiper .desc h3 {
  font-size: 44px;
  margin-bottom: 10px;
}

.pcBanner .swiper .desc h3 span {
  color: #0073cc;
}

.pcBanner .swiper .desc .p1 {
  font-size: 14px;
  margin-bottom: 20px;
}

.pcBanner .swiper .desc .p2 {
  font-size: 21px;
  padding: 0 100px;
  position: relative;
}

.pcBanner .swiper .desc .p2::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 90px;
  background-color: #fff;
  left: 0;
  top: 50%;
}

.pcBanner .swiper .desc .p2::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 90px;
  background-color: #fff;
  right: 0;
  top: 50%;
}

.pcBanner .swiper .desc .icobox {
  max-width: 785px;
}

.pcBanner .swiper .swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  border-radius: 6px;
  background-color: #fff;
  opacity: 1;
}

.pcBanner .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0073cc;
}

.neiBanner {
  position: relative;
}

.neiBanner .desc {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}

.neiBanner .desc h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.pageBar {
  border-bottom: 1px solid #f1f2f3;
}

.pageBar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pageBar .container .nav a:hover {
  color: #0073cc;
}

.pageBar .container .cur {
  height: 40px;
  line-height: 40px;
  background-color: #0073cc;
  color: #fff;
  padding: 0 20px;
}

.footer {
  background-color: #0073cc;
  padding: 60px 0;
  color: #fff;
}

.footer .ct {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .ct .le .botLogo {
  margin-bottom: 40px;
}

.footer .ct .le .botLogo img {
  height: 21px;
}

.footer .ct .le .contact {
  display: flex;
}

.footer .ct .le .contact .item {
  margin-right: 20px;
  display: flex;
}

.footer .ct .le .contact .item .icobox {
  border: 1px solid #fff;
  border-radius: 10px;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}

.footer .ct .le .contact .item .icobox i {
  font-size: 27px;
}

.footer .ct .le .contact .item .desc .p1 {
  font-size: 14px;
}

.footer .ct .le .contact .item .desc .p2 {
  font-size: 18px;
  font-weight: bold;
}

.footer .ct .ri {
  display: flex;
}

.footer .ct .ri .ewmbox {
  margin-left: 20px;
}

.footer .ct .ri .ewmbox .icobox {
  width: 90px;
}

.footer .ct .ri .ewmbox p {
  text-align: center;
  font-size: 14px;
  margin-top: 5px;
}

.index_item1 .text .head {
  margin-bottom: 30px;
}

.index_item1 .text .head h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.index_item1 .text .head h5 {
  width: 80px;
  height: 3px;
  background-color: #0073cc;
}

.index_item1 .text .desc {
  color: #545454;
  line-height: 2;
}

.index_item2 .cont .item {
  border: 1px solid #c1c2c3;
  background-color: #f1f2f3;
  height: 100%;
  transition: ease 0.5s;
}

.index_item2 .cont .item .bgnum {
  color: #808080;
  font-size: 56px;
  font-weight: bold;
  opacity: 0.1;
  line-height: 40px;
  height: 45px;
  overflow: hidden;
  margin-bottom: 10px;
}

.index_item2 .cont .item .icobox {
  margin: auto;
  height: 50px;
  color: #0073cc;
  margin-bottom: 10px;
  transition: ease 0.5s;
}

.index_item2 .cont .item .icobox i {
  font-size: 45px;
}

.index_item2 .cont .item h3 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}

.index_item2 .cont .item dl {
  padding: 10px 20px;
  color: #333;
  transition: ease 0.5s;
}

.index_item2 .cont .item dl dt {
  font-weight: bold;
  margin-bottom: 10px;
}

.index_item2 .cont .item dl dd span {
  line-height: 2;
  display: inline-block;
}

.index_item2 .cont .item dl div {
  line-height: 2;
  text-align: center;
}

.index_item2 .cont .item:hover {
  background-color: #0073cc;
  color: #fff;
}

.index_item2 .cont .item:hover .icobox {
  color: #fff;
}

.index_item2 .cont .item:hover dl {
  color: #fff;
}

.index_item3 .lis {
  display: block;
  background-color: #f1f2f3;
}

.index_item3 .lis .text {
  padding: 15px;
}

.index_item3 .lis .text .p {
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

.index_item3 .lis .text .data {
  color: #808080;
  font-size: 14px;
  display: flex;
  align-items: center;
  line-height: 1;
}

.index_item3 .lis .text .data i {
  margin-right: 5px;
  color: #0073cc;
}

.index_item3 .lis:hover {
  background-color: #0073cc;
}

.index_item3 .lis:hover .imgbox img {
  transform: scale(1.1);
}

.index_item3 .lis:hover .text .p {
  color: #fff;
}

.index_item3 .lis:hover .text .data {
  color: #fff;
}

.index_item3 .lis:hover .text .data i {
  color: #fff;
}

.index_item3 ._More {
  margin: 40px auto 0;
}

.index_item4 .swiper {
  padding-bottom: 40px;
}

.index_item4 .cont {
  position: relative;
}

.index_item4 .cont .np {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.index_item4 .cont .np .prev {
  left: -50px;
}

.index_item4 .cont .np .next {
  right: -50px;
}

.index_item4 .cont .np .next,
.index_item4 .cont .np .prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: ease 0.5s;
  color: #808080;
}

.index_item4 .cont .np .next:hover,
.index_item4 .cont .np .prev:hover {
  background-color: #0073cc;
  color: #fff;
}

.index_item4 .cont .np .next i,
.index_item4 .cont .np .prev i {
  font-size: 25px;
}

.index_item4 .lis {
  display: block;
  background-color: #f1f2f3;
  padding: 10px;
}

.index_item4 .lis .imgbox {
  margin-bottom: 10px;
}

.index_item4 .lis .desc {
  padding: 15px;
}

.index_item4 .lis .desc h3 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
}

.index_item4 .lis .desc .p {
  color: #333;
  font-size: 14px;
  line-height: 2;
}

.index_item4 .lis ._More {
  margin: 20px auto 0;
}

.about_page {
  color: #333;
}

.about_page .imgbox {
  margin-bottom: 20px;
}

.about_page .desc {
  line-height: 2;
}

.hezuo_page .lis {
  display: flex;
}

.hezuo_page .lis .imgbox {
  width: 50%;
}

.hezuo_page .lis .desc {
  width: 50%;
  background-color: #0073cc;
  color: #fff;
  padding: 40px;
}

.hezuo_page .lis .desc h3 {
  margin-bottom: 20px;
}

.hezuo_page .lis .desc p {
  line-height: 2;
}

.hezuo_page .lis .desc a {
  display: block;
  width: max-content;
  margin: 0 auto;
  margin-top: 20px;
  margin-right: 0;
}

.hezuo_page .lis .desc a:hover {
  transform: scale(1.1);
  color: #fff;
}

.hezuo_page .lis:nth-child(2n) {
  flex-direction: row-reverse;
}

.zixun_page .lis {
  display: flex;
  padding: 20px;
  background-color: #f1f2f3;
  margin-bottom: 20px;
  align-items: center;
}

.zixun_page .lis .imgbox {
  width: 300px;
}

.zixun_page .lis .desc {
  width: calc(100% - 300px);
  padding-left: 20px;
}

.zixun_page .lis .desc h3 {
  margin-bottom: 10px;
}

.zixun_page .lis .desc p {
  color: #545454;
  font-size: 14px;
  line-height: 2;
}

.zixun_page .lis .desc a {
  display: block;
  width: max-content;
  margin: 0 auto;
  margin-top: 20px;
  margin-right: 0;
  color: #0073cc;
}

.zixun_page .lis .desc a:hover {
  transform: scale(1.1);
}

.news_page .lis .desc {
  background-color: #f1f2f3;
  position: relative;
  padding: 30px 10px 20px;
  transition: ease 0.5s;
}

.news_page .lis .desc .date {
  position: absolute;
  left: 20px;
  top: -40px;
  width: 60px;
  height: 50px;
  background-color: #0073cc;
  color: #fff;
  text-align: center;
  padding: 5px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.news_page .lis .desc .date .d {
  font-size: 20px;
  margin-bottom: 5px;
}

.news_page .lis .desc .date .m {
  font-size: 12px;
}

.news_page .lis .desc h3 {
  font-size: 16px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_page .lis:hover img {
  transform: scale(1.1);
}

.news_page .lis:hover .desc {
  background-color: #0073cc;
  color: #fff;
}

.newsDetailPage_item1 .topBar {
  padding: 20px;
  background-color: #f1f1f1;
  color: #434343;
}

.newsDetailPage_item1 .topBar a {
  color: #434343;
}

.newsDetailPage_item1 .topBar a:hover {
  color: #0073cc;
}

.newsDetailPage_item1 .topBar span {
  color: #0073cc;
}

.newsDetailPage_item1 .cont .head h4 {
  color: #0073cc;
  margin-bottom: 5px;
}

.newsDetailPage_item1 .cont .head h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.newsDetailPage_item1 .cont .news-text-cont {
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  padding: 40px 0;
}

.newsDetailPage_item1 .cont .nespn {
  display: flex;
  justify-content: space-between;
}

.newsDetailPage_item1 .cont .nespn a {
  display: block;
  padding: 10px 0;
}

.newsDetailPage_item1 .cont .nespn a span {
  margin-left: 5px;
}

.newsDetailPage_item1 .cont .nespn a.back {
  color: #878787;
  font-weight: bold;
}

.newsDetailPage_item1 .cont .nespn a:hover {
  color: #0073cc;
}

.cont_page .desc .list p {
  text-align: left;
  padding-left: 33px;
  background: url(../images/lis.jpg) center center no-repeat;
  background-size: 100% 100%;
  margin-bottom: 10px;
}