@charset "UTF-8";
.main-layout {
		display: flex;
		min-height: 100vh;
		position: relative
	}

	.main-layout>:first-child {
		position: fixed;
		top: 0;
		left: 0;
		width: 260px;
		height: 100vh; 
		background: #fff;
		z-index: 1000;
		box-shadow: 0 0 10px rgba(0,0,0,.1);
		padding: 90px 15px 0
	}

	.main-content {
		flex: 1;
		margin-left: 290px;
		min-height: 100vh;
		position: relative
	}
	.side-menu {
		width: 260px;
		height: 100%;
		background: #fff;
		border-right: 1px solid #e6e6e6;
		overflow-y: auto
	}
	
	.menu-item {
		height: 56px;
		line-height: 56px;
		padding: 0 20px;
		cursor: pointer;
		display: flex;
		align-items: center;
		color: #333
	}

	.menu-item:hover {
		background-color: #f5f7fa
	}

	.menu-item.menu-active {
		background-color: #004098;
		border-radius: 8px;
		color: #fff
	}

	.submenu-item {
		margin: 4px 0
	}

	.submenu-title {
		height: 56px;
		line-height: 56px;
		padding: 0 20px;
		cursor: pointer;
		display: flex;
		align-items: center;
		color: #333
	}

  .submenu-title > a {
		text-decoration: none;
    color: black;
	}

	.submenu-title:hover {
		background-color: #f5f7fa
	}

	.submenu-item.submenu-active .submenu-title {
		background-color: #004098;
		border-radius: 8px;
		color: #fff
	}

  .submenu-item.submenu-active > div > a {
		text-decoration: none;
    color: white;
	}

	.submenu-arrow {
		margin-left: auto;
		transition: transform .3s;
		border: solid #333;
		border-width: 0 2px 2px 0;
		display: inline-block;
		padding: 3px;
		transform: rotate(45deg)
	}

	.submenu-item.submenu-active .submenu-arrow {
		border-color: #fff
	}

	.submenu-arrow.is-open {
		transform: rotate(-135deg)
	}

	.submenu-child {
		position: relative;
		padding: 0 20px 0 40px;
		height: 40px;
		line-height: 40px;
		cursor: pointer;
		color: #999
	}

  .submenu-child > a {
		text-decoration: none;
    color: #686565;
	}

	.submenu-child:hover {
		background-color: #f5f7fa
	}

	.submenu-child.menu-active {
		color: #333
	}

  .submenu-child.menu-active > a {
		text-decoration: none;
    color: black;
	}

	.submenu-child:after,.submenu-child:before {
		content: "";
		position: absolute;
		left: 19px;
		width: 3px;
		background-color: #e5e5e5
	}

	.submenu-content .submenu-child:first-child:before {
		height: calc(50% - 10px);
		top: 0
	}

	.submenu-content .submenu-child:first-child:after {
		height: calc(50% - 10px);
		top: calc(50% + 10px)
	}

	.submenu-child:not(:first-child):not(:last-child):before {
		height: calc(50% - 10px);
		top: 0
	}

	.submenu-child:not(:first-child):not(:last-child):after {
		height: calc(50% - 10px);
		bottom: 0
	}

	.submenu-content .submenu-child[data-v-8e35cf3e]:last-child:before {
		height: calc(50% - 10px);
		top: 0
	}

	.submenu-content .submenu-child:last-child:after {
		height: calc(50% - 10px);
		top: calc(50% + 10px);
		display: none
	}

	.submenu-child .dot {
		position: absolute;
		left: 18px;
		top: 50%;
		transform: translateY(-50%);
		width: 5px;
		height: 5px;
		border-radius: 50%;
		background-color: #999;
		z-index: 1
	}

	.submenu-child.menu-active .dot {
		background-color: #004098;
		width: 6px;
		height: 6px;
		left: 17.5px
	}

	.submenu-content {
		padding: 4px 0;
		display: flex;
		flex-direction: column
	}
	
	.fixed-btn {
		position: fixed;
		bottom: 0;
		left: -20px;
		z-index: 1000
	}




 .news-list {
		padding: 20px 120px;
		position: relative
	}

	.news-container {
		display: flex;
		flex-wrap: wrap;
		gap: 120px;
		justify-content: space-between
	}

	.news-item {
		background: #fff;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 0 2px 12px rgba(0,0,0,.1);
		width: calc(50% - 60px);
		display: flex;
		flex-direction: column
	}

	.news-image {
		width: 100%;
		height: 260px;
		overflow: hidden
	}

	.news-image img {
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover
	}

	.news-content {
		padding: 15px;
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: space-between
	}

	.news-date {
		color: #666;
		font-size: 14px;
		margin-bottom: 8px
	}

	.news-title {
		font-size: 18px;
		font-weight: 700;
		margin-bottom: 15px;
		color: #004098
	}

	.learn-more {
		display: flex;
		align-items: center;
		gap: 8px;
		cursor: pointer;
		color: #409eff;
		font-size: 14px
	}

.learn-more > span > a {
  text-decoration: none;
  color: #004098;
  display: flex; 
  align-items: center;
}

	.learn-more img {
		width: 16px;
		height: 16px
	}

	.load-more {
		text-align: center;
		margin-top: 20px;
		padding: 10px 0;
		cursor: pointer;
		color: #409eff;
		font-size: 16px
	}

.breadcrumb-container {
    position: absolute;
    top: 6;
    left: 0;
    right: 0;
    padding: 10px 20px;
    z-index: 1000;
}
 .white-link > a {
    text-decoration: none;
    color: white;
}
.el-breadcrumb__separator {
    margin: 0 9px;
    font-weight: 700;
    color: #c0c4cc;
}

.footer {
    width: 100%;
    background: #fff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, .1);
    margin-top: 60px;
}

.container > p{
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center;
}

.footer-wrapper {
    max-width: 1432px;
    margin: 0 auto;
    padding: 40px 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px
}

.footer-content {
    width: 100%;
    display: flex;
    gap: 60px;
    align-items: flex-end;
    justify-content: center
}

.contact-info {
    flex: 0 0 auto;
    margin-bottom: 12px
}

.title {
    font-size: 24px;
    font-weight: 700;
    color: #004098;
    margin-bottom: 20px;
    text-align: left
}

.contact-persons {
    display: flex;
    gap: 60px
}

.contact-person {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px
}

.person-name {
    font-size: 16px;
    font-weight: 500;
    color: #333
}

.person-email,.person-tel {
    font-size: 14px;
    color: #666
}

.icp {
    font-size: 12px;
    color: #999;
    text-align: center;
    width: 100%
}

.qr-code {
    width: 200px;
    height: 200px;
    background: #f5f5f5;
    border-radius: 4px;
    margin: 0 60px
}

.qr-code-img {
    width: 200px;
    height: 200px
}



.page-header {
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 60px;
    height: 360px;
    background-color: #f5f7fa;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat
}

.page-header,.title-container {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.title-container {
    max-width: 1200px;
    padding: 0 20px
}

.title-top {
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 80px;
    line-height: 73px;
    margin: 0 60px;
    word-break: break-word
}

.line {
    width: 100px;
    height: 16px;
    background: #fff;
    margin-bottom: 0
}


.pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: .25rem;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
}