/* 全局样式 */
* {
  margin: 0;
  padding: 0;

}

/* 页面样式 */
.page-ygjc {
  width: 100vw;
  height: 100vh;
  background-color: #EEF1F6;
}

/* 头部 */
.whole-head {
  width: 100%;
  height: 276px;
  background: linear-gradient(180deg, rgba(38, 112, 226, 0.70) 0%, #2670E2 100%);
}
.whole-head .wrapper {
  width: 1400px;
  height: 100%;
  margin: 0 auto;
  background-image: url('../images/background_head.png');
  background-repeat: no-repeat;
  background-position: top right;
}
.whole-head .logo {
  padding-top: 93px;
  display: flex;
  align-items: center;
  /* // justify-content: center; */

}
.whole-head .logo span {
  font-family: "SimSun", "宋体", Serif;
  margin-left: 20px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

/* 内容区域 */
/* 内容部分 */
.page-ygjc .content {
  width: 1400px;
  margin: 0 auto;
  padding-top: 94px;
  display: flex;
  justify-content: space-between;
}
.page-ygjc .content .content-left {
  width: 1000px;
}
.page-ygjc .content .content-left .title {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: normal;
  line-height: 32px;
  color: #444;
}
.page-ygjc .content .content-left .title span {
  width: 6px;
  height: 26px;
  margin-right: 10px;
  border-radius: 1.5px;
  background: #2670E2;
}
.page-ygjc .content .content-left .new-item {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  border-bottom: 1px solid #DEDEDE;
  font-size: 20px;
  line-height: 32px;
  color: #666;
}
.page-ygjc .content .content-left .new-item div:nth-child(1) {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.page-ygjc .content .content-left .new-item div:nth-child(2) {
  margin-left: 10px;
  color: #9E9E9E;
}
.page-ygjc .content .content-right {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}
.page-ygjc .content .content-right .function-item {
  cursor: pointer;
  width: 300px;
  height: 250px;
  margin-right: 50px;
  box-sizing: border-box;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 32px;
  font-size: 18px;
  color: #666;
  border-radius: 16px;
  background: #FAFBFD;
}
.page-ygjc .content .content-right .function-item:nth-child(3) {
  margin-bottom: 0;
}
.page-ygjc .content .content-right .function-item:nth-child(1) img{
  width: 96px!important;
}
.page-ygjc .content .content-right .function-item img {
  width: 108px!important;
  height: 108px;
  margin-bottom: 10px;
}

/* 底部 */
.foot {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 48px;
  font-size: 12px;
  color: #9E9E9E;
  text-align: center;
}
.foot .jszc {
  background: #fff;
}
.foot .babh a:link {
  color: #296DD8;
}

/* 已访问的链接 */
.foot .babh a:visited {
  color: #296DD8;
}

/* 鼠标悬停时的链接 */
.foot .babh a:hover {
  color: #296DD8;
}