@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
  min-width: 1300px;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

input,
button {
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.flex-1 {
  flex: 1;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  box-sizing: content-box;
}

.site-header {
  padding-top: 16px;
  background: #ffffff url("../images/header-bg.jpg") no-repeat center top;
  background-size: 100% 100%;
  height: 200px;
}
.site-header .header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-search {
  margin-right: 20px;
}
.header-search form {
  display: flex;
  font-size: 16px;
}
.header-search input {
  width: 220px;
  height: 40px;
  border: 1px solid #dddddd;
  padding: 0 12px;
  outline: none;
  border-radius: 6px;
  margin-right: 5px;
  font-size: inherit;
}
.header-search input::-moz-placeholder {
  color: #aaa;
}
.header-search input::placeholder {
  color: #aaa;
}
.header-search button {
  height: 40px;
  padding: 0 18px;
  background-color: #1a56a5;
  color: #ffffff;
  border: none;
  cursor: pointer;
  letter-spacing: 2px;
  border-radius: 6px;
  font-size: inherit;
}
.header-search button:hover {
  background-color: #2d6ec0;
}

.main-nav {
  background-color: #1a56a5;
}

.nav-menu {
  display: flex;
  font-size: 19px;
}
.nav-menu > li {
  flex: 1;
  position: relative;
}
.nav-menu > li:hover .sub-menu {
  display: block;
}
.nav-menu a {
  display: block;
  text-align: center;
  color: #ffffff;
  padding: 14px 0;
  letter-spacing: 1px;
  transition: background-color 0.25s;
}
.nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.nav-menu .active > a {
  background-color: rgba(255, 255, 255, 0.15);
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  font-size: 14px;
  background-color: #1a56a5;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.sub-menu a {
  display: block;
  color: #ffffff;
  padding: 11px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.25s;
}
.sub-menu a:hover {
  background-color: #2d6ec0;
}

.banner .banner-inner {
  height: 460px;
  overflow: hidden;
}
.banner img {
  height: 100%;
}

.swipe {
  position: relative;
  overflow: hidden;
}
.swipe .swipe-wrap {
  position: relative;
  overflow: hidden;
}
.swipe .swipe-item {
  position: relative;
  float: left;
  width: 100%;
}
.swipe .swipe-item img {
  width: 100%;
  vertical-align: top;
}
.swipe .swipe-indicator {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  line-height: 1;
  text-align: center;
}
.swipe .swipe-indicator a {
  display: inline-block;
  overflow: hidden;
  width: 8px;
  height: 0;
  margin: 0 5px;
  padding-top: 8px;
  border-radius: 50%;
  text-decoration: none;
  background-color: #ffffff;
  cursor: pointer;
}
.swipe .swipe-indicator a.active, .swipe .swipe-indicator a:hover {
  background-color: #1a56a5;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-title .title-left {
  display: flex;
  align-items: center;
}
.section-title .title-left .title-icon {
  height: 24px;
  margin-right: 8px;
}
.section-title .title-left span {
  font-size: 20px;
  font-weight: bold;
}
.section-title .more-link {
  font-size: 13px;
  color: #999999;
  letter-spacing: 1px;
}
.section-title .more-link:hover {
  color: #1a56a5;
}

.news-section {
  padding: 40px 0 50px;
}
.news-section .news-wrap {
  display: flex;
  gap: 32px;
  padding: 0 15px;
}
.news-section .news-block {
  flex: 1;
}
.news-section .notice-block {
  width: 412px;
}

.news-content {
  display: flex;
  gap: 32px;
}
.news-content .news-featured {
  flex: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.news-content .news-featured .featured-img {
  display: block;
  width: 100%;
  height: 216px;
  overflow: hidden;
}
.news-content .news-featured .featured-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #dce5ef;
  transition: transform 0.3s;
}
.news-content .news-featured .featured-img:hover img {
  transform: scale(1.05);
}
.news-content .news-featured .featured-title {
  font-size: inherit;
  line-height: 1.6;
  font-weight: normal;
  margin: 12px 18px;
}
.news-content .news-featured .featured-title a {
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-content .news-featured .featured-title a:hover {
  color: #1a56a5;
}
.news-content .news-featured .featured-desc {
  font-size: 13px;
  color: #999999;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 18px;
}
.news-content .news-list {
  flex: 1;
  min-width: 0;
}

.news-list,
.notice-list {
  line-height: 1.7;
}
.news-list li,
.notice-list li {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed #e5e5e5;
}
.news-list li:first-child,
.notice-list li:first-child {
  padding-top: 0;
}
.news-list .date,
.notice-list .date {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: #eeeff1;
  color: #1a56a5;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  padding-top: 10px;
  margin-right: 14px;
  border-radius: 3px;
}
.news-list .date em,
.notice-list .date em {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: normal;
  opacity: 0.8;
  margin-top: 2px;
}
.news-list a,
.notice-list a {
  flex: 1;
  color: #555555;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list a:hover,
.notice-list a:hover {
  color: #1a56a5;
}

.info-section .container {
  display: flex;
  flex-direction: column;
}

.platform-box {
  padding: 24px 30px 30px;
  background-color: #e8f0f8;
}
.platform-box .section-title {
  border-bottom-color: #1a56a5;
}

.platform-cards {
  display: flex;
  gap: 40px;
}
.platform-cards .platform-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px 10px;
  border-radius: 4px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.platform-cards .platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.platform-cards .platform-card.card-green {
  background-color: #27ae60;
}
.platform-cards .platform-card.card-blue {
  background-color: #6d49d8;
}
.platform-cards .platform-card.card-teal {
  background-color: #1abc9c;
}
.platform-cards .platform-card.card-red {
  background-color: #e74c3c;
}
.platform-cards .platform-card.card-orange {
  background-color: #f39c12;
}
.platform-cards .platform-card .card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.platform-cards .platform-card p {
  line-height: 1.2;
  font-weight: bold;
}

.links-box {
  padding: 24px 30px 30px;
  background-color: #e8f0f8;
}

.links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}
.links-list .link-tag {
  flex: 0 1 290px;
  color: #555555;
  border: 3px solid #dddddd;
  transition: all 0.25s;
}
.links-list .link-tag:hover {
  color: #1a56a5;
  border-color: #1a56a5;
  background-color: rgba(26, 86, 165, 0.04);
}
.links-list .link-tag img {
  width: 100%;
  vertical-align: top;
}

.site-footer .footer-main {
  color: rgba(255, 255, 255, 0.85);
  background: #0e3a6e url("../images/footer-bg.jpg") no-repeat center center;
  background-size: cover;
  border-top: 15px solid #004e82;
  padding: 20px 0 10px;
}
.site-footer .footer-main .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  padding: 0 15px;
}
.site-footer .footer-main h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.site-footer .footer-contact ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}
.site-footer .footer-contact ul li .contact-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.site-footer .footer-links {
  margin-left: auto;
}
.site-footer .footer-links select {
  border: 1px solid #c7e4f9;
  width: 250px;
  height: 34px;
  margin: 0px auto 10px;
  display: block;
  border-radius: 3px;
  text-align: center;
}
.site-footer .footer-qrcode {
  text-align: center;
}
.site-footer .footer-qrcode h3 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 12px;
  border-bottom: none;
}
.site-footer .footer-qrcode .qrcode-img {
  width: 120px;
  height: 120px;
  background-color: #ffffff;
  border-radius: 4px;
}
.site-footer .footer-copyright-text {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}
.site-footer .footer-copyright {
  background-color: #0a2f5a;
  padding: 14px 0;
  text-align: center;
}
.site-footer .footer-copyright p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.page-body {
  flex: 1;
  background-color: #ffffff;
  padding: 30px 0 60px;
}
.page-body .page-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.page-sidebar {
  position: sticky;
  top: 10px;
  width: 200px;
  flex-shrink: 0;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sidebar-menu {
  padding: 12px;
  font-size: 16px;
}
.sidebar-menu li {
  border-bottom: 1px solid #e5e5e5;
}
.sidebar-menu li:last-child {
  border-bottom: none;
}
.sidebar-menu a {
  display: block;
  padding: 14px 20px;
  color: #555555;
  position: relative;
  transition: all 0.2s;
}
.sidebar-menu a:hover {
  color: #1a56a5;
  background-color: rgba(26, 86, 165, 0.04);
  padding-left: 26px;
}
.sidebar-menu .active a {
  color: #1a56a5;
  font-weight: bold;
}

.page-content {
  flex: 1;
  min-width: 0;
}

.content-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}
.content-header h2 {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #1a56a5;
  margin-left: 30px;
  padding-bottom: 10px;
}
.content-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-color: #1a56a5;
}
.content-header .breadcrumb {
  margin-left: auto;
  font-size: 13px;
  color: #999999;
  padding-bottom: 12px;
  margin-right: 24px;
}
.content-header .breadcrumb a {
  color: #999999;
}
.content-header .breadcrumb a:hover {
  color: #1a56a5;
}
.content-header .breadcrumb span {
  margin: 0 6px;
  color: #ccc;
}
.content-header .breadcrumb em {
  font-style: normal;
  color: #1a56a5;
}

.article-detail .article-title {
  font-size: 22px;
  color: #333333;
  text-align: center;
  font-weight: bold;
  margin-bottom: 28px;
}
.article-detail .article-body p {
  color: #555555;
  line-height: 2;
  margin-bottom: 16px;
  text-indent: 2em;
}
.article-detail .article-body p:last-child {
  margin-bottom: 0;
}
.article-detail .article-body img, .article-detail .article-body iframe, .article-detail .article-body video {
  max-width: 100%;
  vertical-align: top;
}
.article-detail .article-body iframe {
  width: 100%;
}
.article-detail .article-extend {
  margin: 30px 0;
}
.article-detail .article-extend .extend-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.article-detail .article-extend .extend-table td {
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
}
.article-detail .article-extend .extend-table .extend-name {
  width: 15%;
  background-color: #f8f9fa;
  color: #555555;
  font-weight: normal;
  text-align: center;
}
.article-detail .article-extend .extend-table .extend-value {
  width: 35%;
  color: #333333;
  text-align: left;
}
.article-detail .article-attach {
  margin-top: 20px;
  padding: 10px 16px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
}
.article-detail .article-attach .attach-title {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}
.article-detail .article-attach .attach-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.article-detail .article-attach .attach-item {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed #e5e5e5;
}
.article-detail .article-attach .attach-item:last-child {
  border-bottom: none;
}
.article-detail .article-attach .attach-icon {
  margin-right: 10px;
  font-size: 16px;
}
.article-detail .article-attach .attach-link {
  color: #1a56a5;
  text-decoration: none;
  transition: color 0.2s;
}
.article-detail .article-attach .attach-link:hover {
  color: #2d6ec0;
  text-decoration: underline;
}
.article-detail .article-attach .attach-meta {
  margin-left: 10px;
  font-size: 13px;
  color: #999999;
}

.list-layout {
  display: flex;
  gap: 30px;
}
.list-layout .list-main {
  flex: 1;
  min-width: 0;
}
.list-layout .list-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.news-list-page .news-list-item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px dashed #e5e5e5;
  transition: background-color 0.2s;
}
.news-list-page .news-list-item:hover {
  background-color: #f8f9fa;
}
.news-list-page .news-list-item .item-date {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: #eeeff1;
  color: #1a56a5;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  padding-top: 12px;
  margin-right: 20px;
  border-radius: 4px;
}
.news-list-page .news-list-item .item-date .day {
  font-size: 24px;
  display: block;
}
.news-list-page .news-list-item .item-date .year-month {
  font-size: 12px;
  font-weight: normal;
  opacity: 0.8;
  margin-top: 4px;
  display: block;
}
.news-list-page .news-list-item .item-content {
  flex: 1;
  min-width: 0;
}
.news-list-page .news-list-item .item-title {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 8px;
}
.news-list-page .news-list-item .item-title a {
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list-page .news-list-item .item-title a:hover {
  color: #1a56a5;
}
.news-list-page .news-list-item .item-summary {
  font-size: 13px;
  color: #999999;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 8px;
}
.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  color: #555555;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  transition: all 0.2s;
}
.pagination a:hover {
  color: #1a56a5;
  border-color: #1a56a5;
}
.pagination .current {
  background-color: #1a56a5;
  color: #ffffff;
  border-color: #1a56a5;
}
.pagination .prev,
.pagination .next {
  padding: 8px 16px;
}

.sys-pagination {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #555555;
}
.sys-pagination .p_t {
  margin-right: 15px;
  color: #999999;
}
.sys-pagination .p_pages {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sys-pagination .p_pages > span {
  display: inline-block;
  border-radius: 4px;
  transition: all 0.2s;
}
.sys-pagination .p_pages .p_first_d,
.sys-pagination .p_pages .p_prev_d {
  padding: 6px 12px;
  color: #cccccc;
  cursor: not-allowed;
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
}
.sys-pagination .p_pages .p_no_d {
  padding: 6px 12px;
  background-color: #1a56a5;
  color: #ffffff;
  border: 1px solid #1a56a5;
  font-weight: bold;
}
.sys-pagination .p_pages .p_no {
  padding: 0;
  background: none;
  border: none;
}
.sys-pagination .p_pages .p_no a {
  display: inline-block;
  padding: 6px 12px;
  color: #555555;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}
.sys-pagination .p_pages .p_no a:hover {
  color: #1a56a5;
  border-color: #1a56a5;
}
.sys-pagination .p_pages .p_dot {
  padding: 6px 4px;
  color: #999999;
  border: none;
  background: none;
}
.sys-pagination .p_pages .p_first,
.sys-pagination .p_pages .p_prev,
.sys-pagination .p_pages .p_next,
.sys-pagination .p_pages .p_last {
  padding: 0;
  background: none;
  border: none;
}
.sys-pagination .p_pages .p_first a,
.sys-pagination .p_pages .p_prev a,
.sys-pagination .p_pages .p_next a,
.sys-pagination .p_pages .p_last a {
  display: inline-block;
  padding: 6px 12px;
  color: #555555;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}
.sys-pagination .p_pages .p_first a:hover,
.sys-pagination .p_pages .p_prev a:hover,
.sys-pagination .p_pages .p_next a:hover,
.sys-pagination .p_pages .p_last a:hover {
  color: #1a56a5;
  border-color: #1a56a5;
}
.sys-pagination .p_pages .p_next_d,
.sys-pagination .p_pages .p_last_d {
  padding: 6px 12px;
  color: #cccccc;
  cursor: not-allowed;
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
}

.latest-news-section {
  margin-top: 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 6px;
}
.latest-news-section .section-title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1a56a5;
}
.latest-news-section .section-title span {
  font-size: 16px;
  font-weight: bold;
  color: #1a56a5;
}

.latest-news-list {
  list-style: none;
}
.latest-news-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #e5e5e5;
}
.latest-news-list li:last-child {
  border-bottom: none;
}
.latest-news-list li a {
  display: flex;
  align-items: center;
  color: #555555;
  font-size: 14px;
}
.latest-news-list li a:hover {
  color: #1a56a5;
}
.latest-news-list .news-dot {
  width: 6px;
  height: 6px;
  background-color: #1a56a5;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}
.latest-news-list .news-text {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-news-list .news-date {
  font-size: 12px;
  color: #999999;
  margin-left: 10px;
  flex-shrink: 0;
}