:root {
  --theme: #005DB6;
  --title: #333;
  --text: #666;
  --white: #fff;
  --border: #D2DFE8;
  --color-blue-700: lab(36.9089% 35.0961 -85.6872) ;
}

body {
  color: var(--title);
  background: url(../imgs/footer_bg_1.png) no-repeat center bottom/100% auto, url(../imgs/footer_bg.png) no-repeat bottom -200px center/100% auto;
}

a {
  color: var(--title);
}

.main {
  width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.main-container {
  width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.img-hover {
  overflow: hidden;
}
.img-hover:hover img {
  transform: scale(1.1);
}
.img-hover img {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
 object-fit:cover
}

.title {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.title .title-text {
  width: 409px;
  height: 90px;
  display: flex;
  align-items: center;
  padding-left: 237px;
  box-sizing: border-box;
  background: url(../imgs/title.png) no-repeat left center;
  font-size: 32px;
  color: var(--color-blue-700);
  position: relative;
}
.title .title-text:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--theme);
}

.link-more {
  margin-left: auto;
  width: 77px;
  height: 88px;
  line-height: 88px;
  background: url(../imgs/link_more.png) no-repeat left center;
  text-align: right;
  color: var(--color-blue-700);
  font-size: 24px;
  transition: all 0.3s;
}
.link-more:hover {
  transform: scale(1.05);
  font-weight: bold;
}

.header .header-bg {
  background: url(../imgs/header_bg.png) no-repeat center center/cover;
  padding: 32px 0;
}
.header .header-info {
  padding: 80px 0;
  color: #ffffff;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.3);
  background: linear-gradient(120deg, rgb(37, 99, 235), rgb(59, 130, 246), rgb(29, 78, 216));
}
.header .header-info .header-title {
  font-weight: bold;
  font-size: 48px;
}
.header .header-info div + div {
  margin-top: 8px;
}
.header .header-info .header-tips {
  font-size: 14px;
  color: rgba(219, 234, 254, 0.8);
  letter-spacing: 0.4em;
}
.header .header-info .header-time {
  font-size: 18px;
}
.header .search {
  display: flex;
  justify-content: flex-end;
}
.header .search form {
  width: 260px;
  height: 40px;
  background: url(../imgs/search_bg.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
}
.header .search form input[type=submit] {
  width: 68px;
  height: 100%;
  background: url(../imgs/search.png) no-repeat center center/20px 20px;
  flex-shrink: 0;
  cursor: pointer;
}
.header .nav {
  display: flex;
  justify-content: space-between;
  margin-bottom:32px;
}
.header .nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .nav .logo .logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1019607843), 0 1px 2px -1px rgba(0, 0, 0, 0.1019607843);
  background: #ffffff;
}
.header .nav .logo .logo-img img {
  width: 48px;
}
.header .nav .logo .logo-text {
  height: 40px;
}
.header .nav .logo .logo-name {
  font-size: 18px;
  color: var(--theme);
  font-weight: bold;
}
.header .nav .menu {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-top: 11px;
  font-size: 12px;
}
.header .nav .menu .menu-item {
  width: 28px;
  box-sizing: border-box;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform ease 0.3s;
}
.header .nav .menu .menu-item:not(.active):hover {
  transform: translateY(-4px);
}
.header .nav .menu .menu-item.active {
  background: url(../imgs/menu_big.png) no-repeat center center/cover;
}
.header .nav .menu .menu-item.active a {
  color: var(--white);
}
.header .nav .menu .menu-item-sm {
  height: 71px;
}
.header .nav .menu .menu-item-sm.active {
  background: url(../imgs/menu_sm.png) no-repeat center center/cover;
}
.header .nav .menu .menu-item a {
  writing-mode: vertical-lr;
  letter-spacing: 8px;
  color: var(--color-blue-700);
  transition: color ease 0.3s;
  font-weight: bold;
}
.header .header-swiper {
  height: 497px;
}
.header .header-swiper .swiper-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 11;
}
.header .header-swiper img {
  width: 100%;
  height: 100%;
}

.bg1 {
  background: url(../imgs/bg_1.png) no-repeat top center/100% auto;
}

.container-card {
  padding: 64px 0;
}

.card {
  padding: 64px 0;
}
.card .card-content {
  display: flex;
  justify-content: space-between;
}
.card .card-item {
  width: 680px;
}
.card .card-item .card-list .card-item {
  padding: 16px 0;
  transition: all 0.3s;
}
.card .card-item .card-list .card-item:hover {
  transform: translateY(-4px);
  background: #f9fafb;
}
.card .card-item .card-list .card-item:hover .card-title {
  color: var(--theme);
}
.card .card-item .card-list .card-item .card-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  transition: all 0.3s;
}
.card .card-item .card-list .card-item .card-title .single-line {
  font-weight: bold;
}
.card .card-item .card-list .card-item .card-title .card-time {
  flex-shrink: 0;
  margin-left: 48px;
  color: var(--text);
  font-size: 14px;
}
.card .card-item .card-list .card-item .card-text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
}
.card .card-swiper {
  height: 377px;
  border-radius: 10px;
}
.card .card-swiper img {
  width: 100%;
  height: 100%;
}

.notice {
  margin-top: 196px;
  padding-bottom: 202px;
}
.notice .notice-content {
  gap: 94px;
  margin-top: 72px;
  display: flex;
}
.notice .notice-content .notice-left {
  width: 650px;
  flex-shrink: 0;
}
.notice .notice-content .notice-left .notice-swiper {
  height: 452px;
  border-radius: 8px;
}
.notice .notice-content .notice-left .notice-swiper img {
  width: 100%;
  height: 100%;
}
.notice .notice-content .notice-list {
  flex: 1;
  overflow: hidden;
}
.notice .notice-content .notice-list .notice-item {
  padding-bottom: 24px;
  transition: all 0.3s;
}
.notice .notice-content .notice-list .notice-item:hover {
  transform: translateY(-4px);
}
.notice .notice-content .notice-list .notice-item:hover .notice-item-left {
  color: var(--theme) !important;
}
.notice .notice-content .notice-list .notice-item:hover .notice-item-title {
  color: var(--theme);
}
.notice .notice-content .notice-list .notice-item + .notice-item {
  margin-top: 40px;
}
.notice .notice-content .notice-list .notice-item .notice-link {
  display: flex;
  gap: 44px;
}
.notice .notice-content .notice-list .notice-item .notice-link .notice-item-left {
  min-width: 74px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #3D3D3D;
  transition: all 0.3s;
}
.notice .notice-content .notice-list .notice-item .notice-link .notice-item-left .notice-item-day {
  font-weight: bold;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 4px;
}
.notice .notice-content .notice-list .notice-item .notice-link .notice-item-left .notice-time {
  font-size: 20px;
  line-height: 28px;
}
.notice .notice-content .notice-list .notice-item .notice-link .notice-item-right {
  flex: 1;
  overflow: hidden;
}
.notice .notice-content .notice-list .notice-item .notice-link .notice-item-right .notice-item-title {
  line-height: 26px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.notice .notice-content .notice-list .notice-item .notice-link .notice-item-right .notice-item-text {
  color: var(--text);
  line-height: 30px;
}

.bg2 {
  background: url(../imgs/bg_3.png) no-repeat right center/100% auto;
}

.research {
  background: url(../imgs/bg_5.png) no-repeat left -40px center/auto 100%, url(../imgs/bg_4.png) no-repeat right -450px center/auto 100%;
  padding: 64px 0;
}
.research .research-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.research .research-content .banner {
  width: 680px;
  flex-shrink: 0;
}
.research .research-content .banner .swiper-container {
  height: 214px;
  border-radius: 8px;
}
.research .research-content .research-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.research .research-content .research-list .research-item {
  width: 680px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../imgs/card.png) no-repeat center center/96% 80%, url(../imgs/card_1.png) no-repeat center center/100% 100%;
  color: var(--theme);
  font-weight: bold;
  font-size: 28px;
  box-sizing: border-box;
  transition: all 0.3s;
}
.research .research-content .research-list .research-item:hover {
  transform: translateY(-8px);
}

.footer {
  padding: 296px 0 133px;
}
.footer .main {
  display: flex;
  justify-content: space-between;
  color: var(--white);
  align-items: center;
}
.footer .main .footer-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 32px;
  font-weight: bold;
  color: var(--white);
}
.footer .main .footer-left .footer-left-img {
  margin: 0 32px 0 24px;
}
.footer .main .footer-right {
  width: 680px;
}
.footer .main .footer-right .footer-title {
  font-size: 18px;
  margin-bottom: 24px;
}
.footer .main .footer-right .footer-text {
  font-size: 14px;
}
.footer .main .footer-right .footer-text + .footer-text {
  margin-top: 24px;
}

.transition-line {
  position: relative;
}
.transition-line:hover:after {
  width: 100%;
}
.transition-line:before, .transition-line:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px dashed var(--border);
}
.transition-line:after {
  width: 0%;
  border-bottom: 1px solid var(--border);
  transition: width 1s;
}

.transition-y {
  transition: all 0.3s;
}
.transition-y:hover {
  transform: translateY(-8px);
}

.tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-top: 48px;
}
.tabs .tabs-item {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
.tabs .tabs-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 0%;
  background-color: var(--theme);
}
.tabs .tabs-item.active:after {
  width: 100%;
}
.tabs .tabs-item.active a {
  color: var(--theme);
}
.tabs .tabs-item a {
  color: #666;
}
.tabs .tabs-item a:hover {
  color: var(--theme);
}
.common-list.column-2{
  margin-top:32px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  grid-gap:32px;
}

.common-list.column-2  .common-item{
  margin-top:0px;
}
.common-list .common-item {
  margin-top: 32px;
  padding: 20px;
  border: 1px solid var(--border);
  display: block;
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1019607843), 0 1px 2px -1px rgba(0, 0, 0, 0.1019607843);
  transition: all 0.3s;
}
.common-list .common-item > div + div {
  margin-top: 10px;
}
.common-list .common-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1019607843), 0 4px 6px -4px rgba(0, 0, 0, 0.1019607843);
  transform: translateY(-4px);
}
.common-list .common-item .common-title {
  font-size: 20px;
  font-weight: bold;
}
.common-list .common-item .common-content {
  font-size: 14px;
  color: var(--text);
}
.common-list .common-item .common-icon{
 flex-shrink:0
}
.common-list .common-item .common-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--theme);
  align-items:center
}
.common-list .common-item .common-header .common-name {
  font-weight: bold;
  font-size: 20px;
  color: var(--title);
}

.container {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1019607843), 0 1px 2px -1px rgba(0, 0, 0, 0.1019607843);
  background: #ffffff;
}
.container .container-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.container .container-header .container-time {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--theme);
}
.container .container-header .container-name {
  font-size: 30px;
  font-weight: bold;
}

.link-btn {
  padding: 0 12px;
  height: 32px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.link-btn:not(.link-btn-disabled):hover {
  border-color: var(--theme);
  color: var(--theme);
}
.link-btn-disabled {
  color: #dddddd;
  pointer-events: none;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 56px;
  gap: 16px;
}

/*# sourceMappingURL=index.css.map */