/* 版心设置 */
.wrapper {
  margin: 0 auto;
  width: 640px;
}

/* 头部区域导航栏 */
.header {
  /* 固定定位新用法 sticky*/
  /* -webkit 兼容浏览器 */
  /* position:-webkit-sticky; */
  /* position:sticky; */
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 48px;
  /* 固定定位的盒子，宽度高度靠内容撑开，希望宽度100%，高度根据内容撑开 */
  /* width: 100%; */
  background: rgba(255, 255, 255, 1);
  z-index: 100;
  transition: all 0.5s;
}

.header .wrapper {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
}

/* logo图片 */
.logo a {
  display: block;
  width: 98px;
  height: 28px;
  background-image: url(../images/logo.png);
  background-size: cover;
  font-size: 0;
}

/* 导航 */
.header .nav ul {
  display: flex;
  /* width: 456px; */
  height: 48px;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.header .nav ul .li-dis .a-dis {
  font-size: 14px;
  color: #222;
}

/* active 类选择器，表示默认选中的a */
.header .nav ul .li-dis .active,
.header .nav ul .li-dis .a-dis:hover {
  font-size: 14px;
  color: #165DFF;
  border-bottom: 3px solid #165DFF;
  padding-bottom: 11px;
}

/* 下拉菜单 */
.header .pull-down {
  position: absolute;
  top: 64px;
  left: 1%;
  width: 750px;
  height: 300px;
  background: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0px 10px 25px 0px rgba(141, 141, 141, 0.20);
  transition: all 0.5s;
  height: 0;
  overflow: hidden;

}

.header .nav .li-dis:hover .pull-down {
  height: 290px;
}

.header .nav .li-dis .pull-down h5 {
  margin-top: 34px;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #737373;
  font-weight: 400;
  line-height: 14px;
}

.header .nav .li-dis .pull-down .line {
  margin-left: 25px;
  margin-bottom: 30px;
  width: 706px;
  height: 1px;
  background: #DCDFE5;
}

.header .nav .li-dis .pull-down .ul-box {
  margin-left: 25px;
  width: 713px;
}

.header .nav .li-dis .pull-down .ul-box ol {
  display: flex;
  height: 180px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header .nav .li-dis .pull-down .ul-box ol .drop a {
  display: flex;
  align-items: center;
  width: 324px;
}

.header .nav .li-dis .pull-down .ul-box ol .drop a img {
  width: 60px;
  vertical-align: middle;
}

.header .nav .li-dis .pull-down .ul-box ol .drop .li-box {
  margin-left: 15px;
}

.header .nav .li-dis .pull-down .ul-box ol .drop .li-box h3 {
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 16px;
}

.header .nav .li-dis .pull-down .ul-box ol .drop .li-box p {
  margin-top: 8px;
  font-size: 14px;
  color: #666666;
}

.header .nav .li-dis .pull-down .ul-box ol .drop a:hover .li-box h3,
.header .nav .li-dis .pull-down .ul-box ol .drop a:hover .li-box p {
  color: #165DFF;
}

/* 底部版权 */
.footer {
  height: 400px;
  background: #111111;

}

.footer .footer-nav {
  display: flex;
}

.footer .footer-nav .left img {
  display: none;
  width: 60%;
  object-fit: cover;
  margin-left: 36px;
  margin-top: 93px;
}

.footer .footer-nav .right {
  margin-left: 45px;
  margin-top: 62px;
  display: flex;
  color: #fff;
}

.footer .footer-nav .right dl {
  margin-left: 40px;
  margin-bottom: 75px;

}

.footer .footer-nav .right dt {
  font-weight: bold;
  font-size: 16px;
}

.footer .footer-nav .right dl a,
.footer .footer-nav .right dl dd {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: #828B98;
}

.footer .footer-nav .right dl a:hover {
  color: #c8cdd4;
}

.footer .line {
  margin: 0 auto;
  width: 640px;
  border: 1px solid #393C40;
}

.footer p {
  margin-top: 30px;
  font-size: 14px;
  color: #828B98;
  text-align: center;
  line-height: 16px;
}

/* 媒体查询 */
/* banner 区域 */
.banner {
  padding-top: 40px;
  height: 260px;
  background-image: url(../uploads/new/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.banner .wrapper h1 {
  margin-left: 100px;
  padding-top: 58px;
  width: 463px;
  font-weight: 700;
  font-size: 26px;
  color: #232A65;
  line-height: 36px;
}

.banner .wrapper p {
  margin-left: 100px;
  padding-top: 13px;
  width: 497px;
  font-size: 12px;
  color: #4B5B76;
  line-height: 24px;
}

/* 新闻资讯 */
.new .nav-bj {
  height: 30px;
  background-color: #f7f7f7;
}

.new .nav-bj .nav {
  line-height: 30px;
  font-size: 12px;
}

.new .nav-bj .nav a:hover {
  color: #007DFF;
}

.new .content ul {
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 5px;
  justify-content: space-between;
}

.new .content ul li {
  width: 208px;
  margin-top: 42px;
  border: 1px solid #DFDFDF;
  transition: all 0.5s;
}

.new .content ul li .pto {
  overflow: hidden;
}

.new .content ul li .pto img {
  /* width: 100%; */
  vertical-align: middle;
  transition: all 0.5s;
}

.new .content ul li span {
  display: block;
  margin: 20px 0px 20px 20px;
  font-size: 14px;
  color: #999999;
  line-height: 16px;
}

.new .content ul li h4 {
  margin: 0 20px;
  height: 55px;
  overflow: hidden;
  font-size: 16px;
  color: #000000;
  line-height: 28px;
}

.new .content ul li p {
  margin: 20px 20px 0px 20px;
  font-size: 14px;
  height: 54px;
  color: #999999;
  line-height: 26px;
  overflow: hidden;
}

.new .content ul li .iconfont {
  display: block;
  margin: 10px 0px 10px 30px;
  font-size: 30px;
  color: #007DFF;
  transition: all 0.5s;
}

.new .content ul li a:hover .iconfont {
  transform: translate(20px);
}

.new .content ul li a:hover img {
  transform: scale(1.1);
}

.new .content ul li a:hover h4 {
  color: #007DFF;
}

.new .content ul li:hover {
  box-shadow: 0px 10px 25px 0px rgba(141, 141, 141, 0.20);
  transform: translateY(-10px);
}