@import "common.css";
#mobile{
  display: none;
}
a,
a:active,
a:visited,
a:hover,
a:target {
  display: inline;
}
header {
  height: 265px;
  padding-bottom: 40px;
  background-color: #002DB0;
  color: #FFFFFF;
  background-image: url("/gggl/assets/images/header-bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 100%;
}
nav{
  display: flex;
  align-items: baseline;
  margin-top: 20px;
  justify-content: center;
}
nav .menu-item{
  display: flex;
  justify-content: center;

}
nav .menu-item.active {
  font-weight: bold;
  color: #ffffff;
}
nav .logo-top{
  width: 365px;
  height: auto;
}
nav .logo-top img{
  width: 365px;
  height: auto;
}
nav .menu-item .sub-menu{
  display: flex;
  align-items: center;
  position: absolute;;
  left: 50%;
  top: 100%;
  height: 46px;
  padding: 32px;
  font-size: 1rem;
  color: #8BA9F0;
  width: max-content;
  background-color: rgba(37,76,192,1);
  border-radius: 6px;
  z-index: 1;
}
nav .menu-item ul{
  display: flex;
  gap: 10px;
}
nav .menu-item ul li{
 display: inline-flex;
}
nav .menu-item ul li:first-child::before{
  width: 46px;
  height: 24px;
  content: '';
  background: url(/gggl/assets/images/sub-menu-pointer.png) no-repeat center;
  background-size: contain;
  background-position-x: 0px;
}
nav .menu-item ul li.active{
  color: #ffffff;
}
nav .menu-item ul li:hover{
  color: #FFFFFF;
}
header .l1-navigation {
  width: 1600px;
  margin: 0 auto;
  height: 56px;
}
header .l2-navigation {
  width: 1600px;
  margin: auto;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
header .l2-navigation h1 {
  font-size: 40px;
  line-height: 1;
  margin-right: 44px;
}
header .l2-navigation h1 span {
  color: #C1D1FF;
}
header .l2-navigation i {
  height: 18px;
  margin-right: 20px;
  border-left: 1px solid #2147B7;
}
header .l2-navigation .navigation-item {
  padding: 0 24px;
  font-size: 18px;
  line-height: 1;
  color: #9CBAFF;
  cursor: pointer;
}
header .l2-navigation .navigation-item.active {
  color: #FFFFFF;
  font-weight: bold;
}

.l3-navigation {
  width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.l3-navigation h2 {
  font-size: 24px;
  line-height: 1;
  color: #000000;
  padding: 28px 40px;
  padding-left: 0;
  border-bottom: 2px solid transparent;
}
.l3-navigation .navigation-item {
  font-size: 18px;
  line-height: 1;
  color: #898989;
  padding: 30px 24px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.l3-navigation .navigation-item.active {
  color: #002DB0;
  border-bottom-color: #002DB0;
}
.l3-navigation .breadcrumb {
  margin-left: auto;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9E9E9E;
}
.l3-navigation .breadcrumb img {
  width: 18px;
  height: 18px;
}
.l3-navigation .breadcrumb span {
  cursor: pointer;
}

main {
  width: 1600px;
  min-height: calc(100vh - 569px);
  margin: 0 auto;
  display: flex;
}
main .article {
  flex: 1;
  padding: 34px 0;
}
main .article.left-side {
  border-right: 1px solid #E0E0E0;
}
main .article h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 24px;
}
main .article h3.people-name {
  color: #002DB0;
}
main .article .article-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #898989;
  margin-bottom: 30px;
}
main .article .article-content{
  margin-bottom: 30px;
}
table {
  margin: 0 auto;
}
main aside {
  width: 364px;
  border-right: 1px solid #E0E0E0;
  padding: 32px 24px;
}
main aside h4 {
  width: fit-content;
  padding: 0 40px 10px 0;
  font-size: 24px;
  border-bottom: 3px solid #002DB0;
}
main aside img {
  margin-top: 40px;
  width: 100%;
  height: 480px;
  object-fit: cover;
}
main aside .page-link {
  padding: 20px 0;
  border-bottom: 1px dashed #E0E0E0;
}
main aside .page-link:last-child {
  border-color: transparent;
}