﻿* {
	box-sizing: border-box !important;
	word-break: break-word !important;
    font-family: "Microsoft Yahei", 微软雅黑;
}
.icon{
 margin:0!important;
}
body{
   overflow-x: hidden !important;
}
/* scrollbar css */
/* width */
::-webkit-scrollbar {
  width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #d7d7d7;
  border-radius: 6px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--wy_Color);
}
/*end*/
/*文字*/
:root {
	--wy_Color: #fcc92b;
    --wy_ColorTwo: #00428b;
}
.w1680{
  width:87.5%;
  margin:0 auto;
}
.w1600{
  width:83.33%;
  margin:0 auto;
}
.w1440{
  width:75%;
  margin:0 auto;
}
.w1280{
  width:66.8%;
  margin:0 auto;
}
@media only screen and (max-width: 1440px) {
  .w1680{
    width:90%;
  }
  .w1600{
    width:90%;
  }
  .w1440{
    width:90%;
  }
  .w1280{
    width:90%;
 }
}
/*面包屑*/
.jf_bread{
 padding:20px 0;
}
.jf_bread *{
  color:#666!important;
  font-size:14px;
  line-height:15px;
}
.jf_bread > div{
 display:flex;
 align-items:center;
}
.jf_bread .p_breadcrumbItem:not(:first-child)::before{
  color:#666!important;
}
/*内页banner*/
.ny_banner .p_info{
  position:absolute;
  top:3vw;
  left:50%;
  transform:translateX(-50%);
}
.ny_banner .p_subtitle{
  line-height:1.5;
  color:#aaa!important;
  text-transform:uppercase;
  margin-top:20px;
}
.ny_banner .p_btitle{
  color:#fff;
  line-height:1;
}
.ny_banner .p_summary{
 color:#666;
}
@media only screen and (max-width: 768px) {
.ny_banner .swiper-slide{
  height:300px!important;
}
  .ny_banner .p_subtitle{
   margin-top:0;
  }
}
/*按钮选中效果*/
.btn.wy_Click{
  background-color:#00428b;
  border-color:#00428b;
  color:#fff;
}
/*页码样式*/
.page_a{
  width:40px;
  height:40px;
  line-height:40px;
  border-radius:0!important;
  border:1px solid #f0f0f0;
  background:transparent;
  font-size:14px!important;
  color:#000;
  margin:0 6px;
}
.page_prev,.page_next{
  width:80px;
}
.page_a.current{
  background:#9cc6ff;
}
.page_a:hover{
  color:#fff;
  background:#9cc6ff;
}
.page_a.current:hover{
  color:#fff;
  background:#9cc6ff;
}
.page_a.disabled{
  color:#000;
  border:1px solid #f0f0f0;
  background:#fff;
}
.page_a.disabled:hover{
  color:#000;
  border:1px solid #f0f0f0;
  background:#fff;
}
@media only screen and (max-width: 800px) {
  .page_a{
    width:30px;
    height:30px;
    line-height:30px;
    font-size:12px!important;
    margin:0 2px;
  }
  .page_prev,.page_next{
  width:45px;
}
}

/*视频展示*/
.videoBox {
	position: fixed;
	background: rgb(0 0 0 / 60%);
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: all ease .3s;
	pointer-events: none;
	opacity: 0;
	z-index: 10;
	padding: 0 18px;
}
.videoBox video{
    max-width: 540px;
    margin: 0 auto;
    width: 90%;
    height:390px;
    background:#000;
}
.videoBox.show{
	opacity: 1;
	pointer-events: auto;
}
.closeVideo{
    width: 40px;
    cursor: pointer;
    transition: all ease .3s;
    position:absolute;
    top:27%;
    left:65%;
}
.closeVideo:hover{
    opacity:0.8;
}
@media only screen and (max-width: 800px) {
.closeVideo{
    top:22%;
    left:85%;
}
  .videoBox video{
    width:340px;
    height:290px;
  }
}