/* CSS Document*/
/* @font-face {
  font-family: 'HWMC';
  src:url('../fonts/huiwenmincho.woff') format('woff');
  font-weight: normal;
  font-style: normal;
} */
* {
  padding: 0px;
  margin: 0px;
  outline: 0 none;
}

a {
  text-decoration: none;
  color: #333;
  transition: all 0.5s ease 0s;
}

a:focus {
  outline: none;
}

a:hover {
  color: #C41E3A;
  text-decoration: none;
}

::selection {
  background-color: #C41E3A;
  /* 选中的背景色 */
  color: #fff;
  /* 选中的文本颜色 */
}

ul {
  list-style-type: none;
  margin-bottom: 0px;
}

li {
  vertical-align: bottom;
  zoom: 1;
}

img {
  border: 0px;
}

select {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  color: #666;
  font-size: 12px;
}

textarea {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  color: #666;
  font-size: 12px;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
}

th,
td {
  padding: 0;
}

input {
  vertical-align: middle;
  outline: none;
  font-size: 12px;
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
  overflow: hidden;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  clear: both;
}

.hidden {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: inherit;
  margin: 0px;
}

p {
  margin: 0px;
}

em,
i {
  font-style: normal;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}

input::-webkit-input-placeholder {
  color: #999;
}

input::-moz-input-placeholder {
  color: #999;
}

input::-ms-input-placeholder {
  color: #999;
}

textarea::-webkit-input-placeholder {
  color: #999;
}

textarea::-moz-input-placeholder {
  color: #999;
}

textarea::-ms-input-placeholder {
  color: #999;
}

.center {
  text-align: center;
}

body {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  background: #fff;
  color: #666;
  font-size: 12px;
  min-width: 1200px;
}

.container {
  margin: 0px auto;
  width: 100%;
  max-width: 1400px;
}

#header {
  position: fixed;
  z-index: 9999;
  top: 0px;
  width: 100%;
  transition: all 0.5s ease 0s;
}

.topp {
  height: 100px;
  background: #fff;
  position: relative;
}

.topp .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.topp .logo img {
  width: 210px;
  height: auto;
}

.topp .banben {
  display: flex;
}

.topp .banben a {
  font-size: 14px;
}

.topp .banben b {
  display: block;
  width: 1px;
  height: 18px;
  margin: 0px 8px;
  background: #999;
}


.top {
  height: 50px;
  box-sizing: border-box;
  background: #00244D;
}

.top_g {
  height: 150px;
}

.top .container {
  display: flex;
  justify-content: space-between;
}

.top .logo {
  width: 180px;
}

.top .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.top .logo img {
  height: auto;
  width: 100%;
}

.nav {
  z-index: 10;
  display: flex;
  align-items: center;
  height: 50px;
  position: relative;
  width: 100%;
}

.nav .nLi {
  height: 100%;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav .nLi h3 {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.nav .nLi h3 a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: relative;
  color: #fff;
  text-transform: capitalize;
  width: 100%;
  height: 100%;
}

.nav .nLi.on h3 a {
  background: #C41E3A;
}


.nav .nLi:hover h3 a {
  background: #C41E3A;
}

.nav .nLi ul.sub {
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0px;
  background: #fff;
  display: none;
  box-sizing: border-box;
  padding: 10px 5px;
}

.nav .nLi:hover ul.sub {
  display: block;
}

.nav .nLi ul.sub li a {
  display: block;
  text-align: center;
  color: #333;
  font-size: 15px;
  padding: 8px;
}

.nav .nLi ul.sub li a:hover {
  background: #C41E3A;
  color: #fff;
}

.phone_btn {
  float: right;
  display: none;
}

.menu_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.7);
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.menu_box.into {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.menu_cot {
  width: 70%;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.menu_box.into .menu_cot {
  transform: translateX(0);
  transition: all 0.3s 0.2s ease;
}

.menu_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
}

.menu_close img {
  width: 40px;
}

.menu_close a {
  padding: 10px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.in_banner {
  height: auto;
}

.in_banner .swiper-slide {
  width: 100%;
  height: auto;
  position: relative;
}

.in_banner .swiper-slide img {
  width: 100%;
  height: auto;
}

.in_banner .swiper-slide .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  padding: 0px 40px;
}

.in_banner .swiper-slide .container b {
  font-size: 14px;
  font-weight: normal;
  padding: 3px 10px;
  background: #C41E3A;
  color: #fff;
}

.in_banner .swiper-slide .container h2 {
  font-size: 2.4vw;
  color: #fff;
  padding: 15px 0px;
}

.in_banner .swiper-slide .container h3 {
  font-size: 24px;
  color: #fff;
  padding-bottom: 20px;
}

.in_banner .swiper-slide .container span a {
  font-size: 16px;
  color: #fff;
  padding: 10px 20px;
  background: #C41E3A;
  display: inline-block;
}

.in_banner .swiper-pagination {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  left: auto;
  bottom: 20px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.in_banner .swiper-pagination span {
  width: 13px;
  height: 13px;
  background: #fff;
  opacity: 1;
}

.in_banner .swiper-pagination span.swiper-pagination-bullet-active {
  background: #AE0B2A;
}

.in_banner .swiper-button-next,
.in_banner .swiper-button-prev {
  background: rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
}

.in_banner .swiper-button-next::after,
.in_banner .swiper-button-prev::after {
  color: #fff;
  font-size: 20px;
}

.in_box {
  background: #FAFAFA;
  padding: 50px 0px;
}

.in_box .container {
  display: flex;
}

.in_box .container a {
  flex: 1;
  margin: 0px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.in_box .container a img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 8px;
}

.in_box1 {
  padding: 50px 0;
  background-color: #fff;
}

.in_box1 .container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.news_dynamic {
  flex: 1;
}

.sidebar {
  width: 350px;
}

.news_dynamic h2,
.sidebar h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  padding-left: 35px;
}

.news_dynamic h2 {
  border-bottom: 2px solid #00244D;
  padding-bottom: 15px;
  position: relative;
  color: #00244D;
  font-size: 26px;
}

.news_dynamic h2::after {
  position: absolute;
  width: 30%;
  height: 2px;
  background: #AE0B2A;
  content: '';
  bottom: -2px;
  left: 0px;
}

.news_dynamic h2:before,
.sidebar h2:before {
  content: '';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background-color: #AE0B2A;
}

.news_dynamic h2:before {
  top: 36%;
}

.news_dynamic .more {
  float: right;
  font-size: 14px;
  color: #00244D;
  text-decoration: none;
  border: 1px solid #00244D;
  padding: 10px 15px;
}

.news_dynamic .more:hover {
  background: #00244D;
  color: #fff;
}

.news_dynamic ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news_dynamic li {
  display: flex;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
  gap: 20px;
}

.news_dynamic li img {
  width: 210px;
  height: 120px;
  object-fit: cover;
}

.news_content {
  flex: 1;
}

.news_content h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.news_content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news_info {
  font-size: 14px;
  color: #666;
}

.news_info span {
  margin-right: 15px;
}

.news_info span i {
  margin-right: 5px;
  color: #AE0B2A;
}

.sidebar .notice,
.sidebar .recent_activity {
  background-color: white;
  margin-bottom: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar .notice h2,
.sidebar .recent_activity h2 {
  background: #00244D;
  color: #fff;
  padding: 10px;
  padding-left: 35px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar .notice h2 span a{
  color: #fff;
}


.sidebar ul {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.sidebar li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar a {
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar span {
  font-size: 12px;
  color: #999;
}

.in_box2 {
  padding: 50px 0;
  background-color: #F8FAFC;
}

.activity_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #00244D;
  padding-bottom: 20px;
}

.activity_header h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0;
  position: relative;
  padding-left: 30px;
}

.news_dynamic h2::after {
  position: absolute;
  width: 30%;
  height: 2px;
  background: #AE0B2A;
  content: '';
  bottom: -2px;
  left: 0px;
}

.activity_header h2:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background-color: #e63946;
}

.activity_header .more {
  font-size: 14px;
  color: #00244D;
  text-decoration: none;
  border: 1px solid #00244D;
  padding: 10px 15px;
}

.activity_header .more:hover {
  background: #00244D;
  color: #fff;
}

.activity_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.activity_card {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.activity_card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.date_box {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 20px;
}

.date_box .day {
  display: block;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}

.date_box .month {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}

.activity_content {
  padding: 20px;
}

.activity_type {
  display: inline-block;
  border: 1px solid #e63946;
  color: #e63946;
  font-size: 12px;
  padding: 4px 8px;
  margin-bottom: 15px;
}

.activity_content h3 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.activity_info {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.activity_info li {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.activity_info li i {
  margin-right: 8px;
  color: #999;
}

.view_details {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #003366;
  text-decoration: none;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.view_details:hover {
  text-decoration: underline;
}

.in_box3 {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.in_box3 .container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.lecture_content {
  flex: 1;
}

.lecture_image {
  width: 550px;
  position: relative;
  padding-bottom: 30px;
}

.lecture_image img {
  width: calc(100% - 30px);
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.lecture_image::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  background-color: #00244D;
  border-radius: 8px;
  z-index: -1px;
}

.lecture_content h2 {
  font-size: 24px;
  font-weight: bold;
  color: #00244D;
  margin-bottom: 30px;
  line-height: 1.3;
}

.lecture_content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.stats_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.stat_item {
  text-align: center;
}

.stat_number {
  display: block;
  font-size: 48px;
  font-weight: bold;
  color: #003366;
  line-height: 1;
  margin-bottom: 10px;
}

.stat_label {
  display: block;
  font-size: 14px;
  color: #666;
}

.in_box4 {
  padding: 50px 0px;
  background: #F8FAFC;
}

.in_box4 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.in_box4 .container a {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex: 1;
  font-size: 20px;
  padding: 30px 0px;
}

.in_box4 .container a img {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  width: 70px;
  height: 70px;
}

.in_box4 .container a:hover img {
  transform: rotatey(180deg);
  transition: all 0.3s ease-in-out;
}

.di {
  background-color: #003366;
  color: white;
  padding: 50px 0 30px;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  background: url(../images/di_bj.png) no-repeat center center;
}

.footer_left {
  flex: 1;
}

.footer_accordion ul {
  display: flex;
}

.footer_accordion ul li {
  display: flex;
  border-left: 1px solid #53687C;
  min-height: 140px;
}

.footer_accordion ul li h2 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
  opacity: .7;
  display: flex;
  flex-direction: column;
  padding: 0px 10px;
  cursor: pointer;
}

.footer_accordion ul li h2 i {
  transform: rotate(90deg);
}

.footer_accordion ul li h2 p {
  writing-mode: vertical-rl;
  /* 从右到左的垂直排列 */
  text-orientation: upright;
  /* 文本方向保持直立 */
}

.footer_accordion ul li h3 {
  display: none;
}

.footer_accordion ul li.on h2 {
  opacity: 1;
  align-items: center;
}

.footer_accordion ul li.on h2 i {
  transform: rotate(0deg);
  margin-bottom: 10px;
}

.footer_accordion ul li.on h3 {
  display: flex;
  flex-direction: column;
  padding-right: 20px;
  min-width: 250px;
}

.footer_accordion ul li h3 p {
  padding: 5px 0px;
}

.footer_accordion ul li h3 p i {
  margin-right: 10px;
}

.footer_accordion ul li h3 p a {
  color: #fff;
}

.footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_bottom a {
  color: #fff;
}

.back_to_top {
  color: white;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.back_to_top:hover {
  opacity: 1;
}

.back_to_top i {
  margin-right: 5px;
}

.ny_banner {
  height: 350px;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  background-size: cover;
}

.ny_banner .container {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  color: #fff;
}

.ny_banner .container h2 {
  font-size: 40px;
  display: flex;
  align-items: center;
  padding-bottom: 15px;
}

.ny_banner .container h2 p {
  font-size: 30px;
  padding-left: 10px;
}

.ny_banner .container h3 {
  font-size: 16px;
  padding-bottom: 30px;
}

.ny_big {
  background: #FAFAFA;
}

.ny_big .container {
  padding: 50px;
  background: #fff;
  box-sizing: border-box;
}

.about_box_nr {
  max-width: 1120px;
  margin: 0px auto;

}

.about_box_nr .bt{
  font-size: 32px;
  color: #00244D;
  font-weight: bold;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  border-bottom: 2px solid #00244D;
}

.about_box_nr .bt::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 30%;
  height: 2px;
  background-color: #AE0B2A;
}

.about_box_nr .nr{
  font-size: 16px;
}

.about_box_nr .nr p{
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 20px;
}

.about_box_nr .nr img{
  max-width: 100%;
  height: auto;
  width: auto;
}

.about_box_nr .xbt{
  display: flex;
  font-size: 20px;
  color: #00244D;
  font-weight: bold;
  padding-bottom: 20px;
}

.about_box_nr .xbt b{
  width: 4px;
  height: 30px;
  background: #AE0B2A;
  margin-right: 15px;
}

.about_box_nr .qiehuan{
  display: flex;
  gap: 30px;
}

.about_box_nr .qiehuan li{
background: #F8F9FA;
border-top: 1px solid #AE0B2A;
flex: 1;
height: 150px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.about_box_nr .qiehuan li h2{
  font-size: 30px;
  font-weight: bold;
  color:#003366;
}

.about_box_nr .qiehuan li h2 b{
  padding: 0px 5px;
}

.zzjg_box{
  max-width: 1160px;
  margin: 0px auto;
}

.zzjg_box .bt{
  text-align: center;
  border-bottom: 1px solid #ddd;
  font-size: 36px;
  color: #003366;
  font-weight: bold;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.zzjg_box .mbt{
  background: #003366;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  margin-bottom: 20px;
}

.zzjg_box .dbt {
  border-bottom: 2px solid #00244D;
  padding-bottom: 15px;
  position: relative;
  color: #00244D;
  font-size: 26px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.zzjg_box .dbt b{
  width: 3px;
  height: 24px;
  background: #C41E3A;
  margin-right: 15px;
}

.zzjg_box .dbt::after {
  position: absolute;
  width: 20%;
  height: 2px;
  background: #AE0B2A;
  content: '';
  bottom: -2px;
  left: 0px;
}


.zzjg_box .list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.zzjg_box .list1{
  grid-template-columns: repeat(4, 1fr);
}

.zzjg_box .list li{
  background: #F8F9FA;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
}

.zzjg_box .list li:hover{
  transform: translateY(-10px);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.zzjg_box .list li .img img{
  aspect-ratio: 186 / 220;
  max-width: 185px;
  width: 90%;
  margin: 0px auto;
  margin-bottom: 15px;
}

.zzjg_box .list li h2{
  font-size: 18px;
  font-weight: bold;
  color: #003366;
}

.zzjg_box .list li h3{
  color: #C41E3A;
  font-size: 16px;
  padding: 10px 0px;
}

.zzjg_box .list li p{
  font-size: 16px;
  color: #666;
}

.zzjg_box1 .list li .img img,.zzjg_box1 .list li h3,.zzjg_box1 .list li p{
    display: none;
}

.cgzs_box{

}

.cgzs_box .bt {
  border-bottom: 2px solid #00244D;
  padding-bottom: 15px;
  position: relative;
  color: #00244D;
  font-size: 26px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.cgzs_box .bt b{
  width: 3px;
  height: 24px;
  background: #C41E3A;
  margin-right: 15px;
}

.cgzs_box .bt::after {
  position: absolute;
  width: 20%;
  height: 2px;
  background: #AE0B2A;
  content: '';
  bottom: -2px;
  left: 0px;
}

.cgzs_box ul{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cgzs_box ul li{
  background: #F8F9FA;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
}

.cgzs_box ul li:hover{
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.cgzs_box ul li .img img{
  aspect-ratio: 266/310;
  width: 100%;
}

.cgzs_box ul li h2{
color: #002654;
font-weight: bold;
font-size: 18px;
padding: 10px 0px;
}

.cgzs_box ul li p{
  font-size: 14px;
  padding: 5px 0px;
  color: #666;
}


.fanye{
  padding-top: 20px;
  text-align: center;
}

.news_bt{
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.news_bt h2{
  font-size: 26px;
  font-weight: bold;
  color: #003366;
  padding-bottom: 20px;
}

.jqhd_nav{
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.jqhd_nav a{
  border: 1px solid #E7E8ED;
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 25px;
}

.jqhd_nav a.on{
  background: #003366;
  color: #fff;
}

.jqhd_box ul li{
  background: #fff;
  box-sizing: border-box;
  padding: 30px;
  border-radius: 15px;
  border-left: 3px solid #003366;
  margin-bottom: 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.jqhd_box ul li h2 a{
  font-size: 26px;
  color: #003366;
  font-weight: bold;
}

.jqhd_box ul li h2 a:hover{
  color: #AE0B2A;
}

.jqhd_box ul li .news_info{
  padding: 15px 0px;
}

.jqhd_box ul li p{
  font-size: 16px;
}

.jqhd_js{
max-width: 1120px;
background: #FAFAFA;
margin-top: 30px;
margin: 0px auto;
border-radius: 15px;
box-sizing: border-box;
padding: 20px;
display: flex;
align-items: center;
}

.jqhd_js .left img{
  width: 170px;
  aspect-ratio: 10/10;
  object-fit: cover;
  border-radius: 50%;
}

.jqhd_js .right{
  width: calc(100% - 170px);
  padding-left: 50px;
}

.jqhd_js .right h2{
  font-size: 26px;
  font-weight: bold;
  color: #1E3A8A;
}

.jqhd_js .right h3{
  font-size: 16px;
  color: #C41E3A;
  padding: 15px 0px;
}

.jqhd_js .right p{
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 15px;
}

.news_box ul li{
  background: #fff;
  box-sizing: border-box;
  padding: 30px;
  padding-left: 0px;
  border-left: 3px solid #AE0B2A;
  margin-bottom: 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  display: flex;
}

.news_box ul li .left{
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.news_box ul li .left h2{
  color: #C41E3A;
  font-weight: bold;
  font-size: 36px;
}

.news_box ul li .left p{
  padding: 3px 0px;
  font-size: 14px;
}

.news_box ul li .right{
  width: calc(100% - 200px);
}

.news_box ul li .right h2 a{
  color: #1E3A8A;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 15px;
  display: block;
}

.news_box ul li .right h2 a:hover{
  color: #AE0B2A;
}

.news_box ul li .right p{
  font-size: 14px;
  line-height: 1.6;
}

.news_qh{
  padding-bottom: 20px;
}

.news_qh ul{
  display: flex;
  gap: 30px;
}

.news_qh ul li{
  flex: 1;
  border-left: 0px;
  border-radius: 0px;
  background: #fff;
  box-sizing: border-box;
  padding: 30px;
}

.news_qh ul li h2{
  font-size: 20px;
  color: #1E3A8A;
}

.news_qh ul li h3 a{
  display: block;
  font-size: 18px;
  padding: 15px 0px;
}

.news_qh ul li p{
  font-size: 14px;
  line-height: 1.6;
}

.contact_box{
  max-width: 1160px;
    margin: 0px auto;
}

.contact_box .bt{
  text-align: center;
    border-bottom: 1px solid #ddd;
    font-size: 36px;
    color: #003366;
    font-weight: bold;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.contact_box .nr{
  display: flex;
  justify-content: space-between;
}

.contact_box .nr .left{
  width: calc(100% - 700px);
}

.contact_box .nr .left .xbt{
  display: flex;
  font-size: 20px;
  color: #00244D;
  font-weight: bold;
  padding-bottom: 20px;
  padding-top: 20px;
}

.contact_box .nr .left .xbt:nth-child(1){
  padding-top: 0px;
}

.contact_box .nr .left .xbt b{
  width: 4px;
  height: 30px;
  background: #AE0B2A;
  margin-right: 15px;
}

.contact_box .nr .left p{
  font-size: 14px;
  padding-bottom: 10px;
}

.contact_box .nr .right{
  width: 650px;
  height: 860px;
}
