@font-face {
  font-family: 'source';
  src: url('../assets/font/SourceHanSansCN-Regular.ttf');
  src: url('../assets/font/SourceHanSansCN-Regular.ttf') format('truetype'),
    url('../assets/font/SourceHanSansCN-Regular.woff') format('woff'),
    url('../assets/font/SourceHanSansCN-Regular_1.svg') format('svg');
}


.header{
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}
.logo{
  display: inline-block;
  width: 118px;
  height: 55px;
  margin-top: 18px;
}

.menu {
  height: 90px;
}

.menu li {
  display: inline-block;
  padding: 0 18px;
  
}

.menu li a {
  display: block;
  height: 90px;
  line-height: 90px;
  padding: 0 12px;
  cursor: pointer;
  color: #333;
  position: relative;
}
.menu li a:hover{
  color: #27aede;
}
.menu li a::after{
  display: none;
  content: '';
  width: 100%;
  padding: 0 18px;
  position: absolute;
  height: 1px;
  left: 50%;
  transform: translateX(-50%); 
  bottom: 1px;
  background-color: #27aede;
}
.menu li a:hover::after{
  display: block;
}
/* .main-panel-title1{
  font-size: 66px;
  color: #5fc0e7;
  margin-bottom: 29px;
}
.main-panel-title2{
  position: absolute;
  top: 216px;
  left: 50px;
  font-size: 39px;
  color: #fff;
} */
.main-panel{
  background: url('../img/main_panel.jpg') no-repeat;
  background-size: 100% 100%;
  height: 500px;
}
/* .main-panel-content{
  width: 1200px;
  margin: 0 auto;
  padding-top: 169px;
  position: relative;
} */
.area-title{
  height: 26px;
  font-size: 26px;
  text-align: center;
  color: #333;
  margin: 60px auto 0;
  font-weight: bold;
}
.area-title img{
  width: 24px;
  height: 15px;
}
.cooperate{
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 58px;
}
.cooperate-item{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 56px;
}
.cooperate-item img{
  width: calc(20% - 22px);
  margin: 0 22px 22px 0;
}


















::-webkit-scrollbar {
  display: block !important;
  /* 滚动条整体样式 */
  width: 8px; /* 高宽分别对应横竖滚动条的尺寸 */
  height: 8px;
}
 
::-webkit-scrollbar-thumb {
  /* 滚动条里面小方块 */
  border-radius: 10px;
  /* box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2); */
  background: #d3d3d3;
}
 
::-webkit-scrollbar-track {
  /* 滚动条里面轨道 */
  border-radius: 10px;
  background: #ededed;
}