/* 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: #666;
  transition: all 0.5s ease 0s;
}

a:focus {
  outline: none;
}

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

::selection {
  background-color: #1748AC;
  /* 选中的背景色 */
  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: 999;
  top: 0px;
  width: 100%;
  transition: all 0.5s ease 0s;
}

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

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

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

.top_g {
  height: 100px;
}

.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: 100px;
  position: relative;
  width: calc(100% - 450px);
}

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

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

.nav .nLi h3 a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 2px);
  line-height: 38px;
  font-size:20px;
  position: relative;
  color: #fff;
  text-transform: capitalize;
  border-bottom: 2px solid #1748AC;
}

.nav .nLi.on h3 a {
  font-weight: bold;
  border-bottom: 2px solid #fff;
}

.nav .nLi ul{
  position: absolute;
  top: 100%;
  background: #1748AC;
  width: 100%;
  left: 0px;
  display: none;
  padding: 5px 0px;
}

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

.nav .nLi ul li{
  width: 100%;
}

.nav .nLi ul li a{
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  padding: 6px 0px;
  display: block;
}


.nav .nLi:hover h3 a {
  font-weight: bold;
}

.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: calc(100vh - 100px);
}

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

.in_banner .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.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: #1748AC;
}

.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_bt {
  position: relative;
  text-align: center;
  padding-bottom: 20px;
}

.in_bt h2 {
  font-size: 40px;
  color: rgba(38, 96, 211, 0.1);
  font-weight: bold;
  text-transform: uppercase;
}

.in_bt h3 {
  font-size: 34px;
  color: rgba(38, 96, 211, 1);
  position: relative;
  top: -30px;
  font-weight: bold;
}

.in_bt p{
  font-size: 16px;
}

.in_bt span a {
  font-size: 16px;
  color: #1748AC;
}

.in_bt1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.in_bt2 {
  text-align: right;
  flex-direction: row-reverse;
}

.in_box {
  padding: 80px 0px;
}

.in_box ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -20px;
}

.in_box ul li {
  width: calc(25% - 40px);
  aspect-ratio: 32/32;
  margin: 0px 20px;
  margin-bottom: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.in_box ul li a {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(18, 71, 175, 0.4);
}

.in_box ul li:nth-child(2) a,
.in_box ul li:nth-child(6) a {
  background: rgba(238, 137, 137, 0.4);
}

.in_box ul li:nth-child(3) a,
.in_box ul li:nth-child(7) a {
  background: rgba(139, 104, 221, 0.4);
}

.in_box ul li:nth-child(4) a,
.in_box ul li:nth-child(8) a {
  background: rgba(202, 195, 114, 0.4);
}

.in_box ul li a:hover {
  background: rgba(18, 71, 175, 1);
}

.in_box ul li:nth-child(2) a:hover,
.in_box ul li:nth-child(6) a:hover {
  background: rgba(238, 137, 137, 1);
}

.in_box ul li:nth-child(3) a:hover,
.in_box ul li:nth-child(7) a:hover {
  background: rgba(139, 104, 221, 1);
}

.in_box ul li:nth-child(4) a:hover,
.in_box ul li:nth-child(8) a:hover {
  background: rgba(202, 195, 114, 1);
}

.in_box ul li a i img {
  width: 56px;
  height: auto;
  filter: brightness(0) invert(1);
}

.in_box ul li a h2 {
  color: #Fff;
  font-size: 24px;
  text-align: center;
  padding: 10px;
}

.in_box ul li a span {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.in_box1 {
  padding-bottom: 80px;
  overflow: hidden;
}

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

.in_box1 .nr .left {
  width: calc(50% - 25px);
}

.in_box1 .nr .left .swiper-slide .img img {
  width: 100%;
  aspect-ratio: 67/46;
  object-fit: cover;
  border-radius: 10px;
}

.in_box1 .nr .left .jj {
  display: flex;
  padding-right: 130px;
  padding-left: 10px;
}

.in_box1 .nr .left .jj h3 {
  width: 120px;
  height: 120px;
  background: #2660D3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  top: -60px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.in_box1 .nr .left .jj h3 b {
  font-size: 16px;
  font-weight: normal;
}

.in_box1 .nr .left .jj h2 {
  box-sizing: border-box;
  padding: 10px;
  width: calc(100% - 100px);
}

.in_box1 .nr .left .jj h2 a {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 限制行数为3 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.in_box1 .nr .left .swiper-button-next,
.in_box1 .nr .left .swiper-button-prev {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #2660D3;
  top: auto;
  bottom: 60px;
  right: 0px;
}

.in_box1 .nr .left .swiper-button-prev {
  left: auto;
  right: 50px;
}

.in_box1 .nr .left .swiper-button-next::after,
.in_box1 .nr .left .swiper-button-prev::after {
  color: #2660D3;
  font-size: 18px;
}


.in_box1 .nr .right {
  width: calc(50% - 25px);
  position: relative;
  z-index: 2;
}

.in_box1 .nr .right ul li a {
  display: flex;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.in_box1 .nr .right ul li a::after {
  width: 70px;
  height: 4px;
  background: #EEE28A;
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.in_box1 .nr .right ul li a .right_l {
  display: flex;
  flex-direction: row-reverse;
}

.in_box1 .nr .right ul li a .right_l h2 {
  font-size: 16px;
  color: #333;
  width: calc(100% - 60px);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* 限制行数为3 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.in_box1 .nr .right ul li a .right_l h3 {
  color: #2660D3;
  font-size: 16px;
  width: 60px;
}

.in_box1 .nr .right ul li a .right_l h3 img {
  display: none;
}

.in_box1 .nr .right ul li a .right_r {
  display: none;
}

.in_box1 .nr .right ul li.on a::after {
  height: 0px;
}

.in_box1 .nr .right ul li.on a {
  background: #fff;
  box-sizing: border-box;
  padding: 15px;
  justify-content: space-between;
  width: calc(100% + 80px);
  padding-left: 80px;
  margin-left: -80px;
  border-radius: 15px;
  box-shadow: 0px 4px 21.299999237060547px 0px rgba(161, 158, 158, 0.25);
}

.in_box1 .nr .right ul li.on a .right_l {
  flex-direction: column;
  width: calc(100% - 280px);
}

.in_box1 .nr .right ul li.on a .right_l h2 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* 限制行数为3 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  color: #2660D3;
  font-size: 18px;
}

.in_box1 .nr .right ul li.on a .right_l h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  width: 100%;
}

.in_box1 .nr .right ul li.on a .right_l h3 img {
  display: block;
  width: 16px;
  height: 6px;
}

.in_box1 .nr .right ul li.on a .right_r {
  display: block;
}

.in_box1 .nr .right ul li.on a .right_r img {
  width: 240px;
  height: auto;
  border-radius: 15px;
}

.in_box2 {
  padding-bottom: 80px;
}

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

.in_box2 .nr .left {
  width: calc(50% - 25px);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.in_box2 .nr .left img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: 0.3s all 0s ease;
}

.in_box2 .nr .left:hover img {
  transform: scale(1.05);
  transition: 0.3s all 0s ease;
}

.in_box2 .nr .right {
  width: calc(50% - 25px);
  position: relative;
  z-index: 2;
}

.in_box2 .nr .right ul li {
  display: flex;
  margin-bottom: 30px;
}

.in_box2 .nr .right ul li .time {
  width: 100px;
  height: 100px;
  border-radius: 5px;
  background: #2660D3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.in_box2 .nr .right ul li .time p {
  font-size: 14px;
}

.in_box2 .nr .right ul li .jj {
  width: calc(100% - 120px);
  margin-left: 20px;
}

.in_box2 .nr .right ul li .jj h2 a {
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* 限制行数为3 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  color: #333;
}

.in_box2 .nr .right ul li .jj h2 a:hover {
  color: #2660D3;
}

.in_box2 .nr .right ul li .jj p {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 限制行数为3 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.in_box3 {
  padding-bottom: 80px;
}

.in_box3 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -20px;
}

.in_box3 ul li {
  width: calc(25% - 40px);
  margin: 0px 20px;
}

.in_box3 ul li a img {
  width: 100%;
  aspect-ratio: 32/20;
}

.in_box3 ul li a h2 {
  text-align: center;
  font-size: 18px;
  padding-top: 10px;
}

.di {
  background: #2660D3;
  padding: 30px 0px;
}

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

.di .di_logo {
  margin-bottom: 20px;
  width: 320px;
  height: auto;
}

.di .left {
  width: 50%;
  padding-right: 5%;
  box-sizing: border-box;
  border-right: 1px solid #fff;
}

.di .left .yqlj h2 {
  color: #fff;
  font-size: 18px;
  padding-bottom: 20px;
  font-weight: bold;
}

.di .left .yqlj h3 {
  display: flex;
  flex-wrap: wrap;
}

.di .left .yqlj h3 a {
  color: #fff;
  font-size: 16px;
  width: 33.3%;
  box-sizing: border-box;
  padding: 8px 10px;

}

.di .right {
  width: 45%;
  height: auto;
}

.di .right .lxwm {
  display: flex;
  position: relative;
}

.di .right .lxwm div:nth-child(1) {
  margin-right: 80px;
}

.di .right .lxwm h2 {
  color: #fff;
  font-size: 18px;
  padding-bottom: 20px;
  font-weight: bold;
}

.di .right .lxwm h3 {
  display: flex;
  flex-direction: column;
}

.di .right .lxwm h3 p {
  color: #fff;
  font-size: 16px;
  flex: auto;
  padding: 10px 0px;
}

.di .right .lxwm h3 p i {
  margin-right: 5px;
}

.di .right .lxwm h3 .ewm {
  position: absolute;
  right: 0px;
  top: 0px;
}

.di1 {
  background: #0D3D9C;
  padding: 10px 0px;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

.di1 a {
  color: #fff;
}


.right_float {
  position: fixed;
  right: 2%;
  top: 30%;
  z-index: 100;
  border-radius: 4px;
  box-shadow: 0px 0px 5px #f1f1f1;
  display: none;
}

.right_float.scope {
  display: block;
}

.right_float ul li {
  background: #2b57ab;
  color: #fff;
  cursor: pointer;
  position: relative;
  margin-bottom: 5px;
  border-radius: 5px;
}

.right_float ul li h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-sizing: border-box;
  width: 70px;
  aspect-ratio: 10/10;
}

.right_float ul li h2 i {
  font-size: 18px;
  margin-bottom: 6px;
}


.right_float ul li h3 {
  position: absolute;
  right: 80px;
  top: 0px;
  background: #2b57ab;
  color: #fff;
  border-radius: 5px;
  white-space: nowrap;
  min-height: 82px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 0px;
  overflow: hidden;
}

.right_float ul li:hover h3 {
  width: auto;
  padding: 15px;
}

.right_float ul li h3.rx {
  font-size: 14px;
}

.right_float ul li h3.rx p {
  font-weight: bold;
  font-style: italic;
  font-size: 18px;
}

.right_float ul li h3.gz {
  top: auto;
  bottom: 0px;
}

.right_float ul li h3.gz img {
  width: 85px;
  height: 85px;
  margin-bottom: 5px;
}

.ny_banner{
  height: 450px;
}

.ny_banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about_box{
  padding-bottom: 40px;
  max-width: 1000px;
  margin: 0px auto;
}

.about_box:nth-child(1){
  padding-top: 40px;
}

.about_box .nr .nrimg{
  float: right;
  max-width: 500px;
  padding-bottom: 40px;
  position: relative;
  margin-left: 40px;
}

.about_box .nr .nrimg img{
  width: calc(100% - 40px);
  height: auto;
  position: relative;
  z-index: 2;
   border-radius: 15px;
}

.about_box .nr .nrimg::after{
  content: '';
  width: 40%;
  height: 40%;
  background: #1748AC;
  position: absolute;
  right: 0px;
  bottom: 0px;
  border-radius: 15px;
}

.about_box .nr p{
  font-size: 16px;
  line-height: 1.8;
  text-indent: 30px;
  display: block;
  padding-bottom: 10px;
}

.about_box .nr p img{
  max-width: 100%;
  width: auto;
  height: auto;
  margin-left: -30px;
}

.fanye{
  text-align: center;
}

.news_list{
  padding: 60px 0px;
  max-width: 1000px;
  margin: 0px auto;
}

.news_list .bt{
  text-align: center;
  font-size: 50px;
  color: #1748AC;
  font-weight: bold;
  padding-bottom: 40px;
}

.news_list ul li{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.news_list ul li .img{
  overflow: hidden;
}

.news_list ul li .img img{
  width: 340px;
  height: auto;
  transition: 0.3s all 0s ease;
}

.news_list ul li .img:hover img{
  transform: scale(1.05);
  transition: 0.3s all 0s ease;
}

.news_list ul li .nr{
  width: calc(100% - 380px);
}

.news_list ul li .nr h2 a{
  font-size: 22px;
  color: #333;
  font-weight: bold;
}

.news_list ul li .nr h2 a:hover{
  color: #1748AC;
}

.news_list ul li .nr p{
  font-size: 14px;
  line-height: 1.6;
    display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 限制行数为3 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 15px 0px;
}

.news_detail{
  display: flex;
  justify-content: space-between;
  padding: 80px 0px;
  max-width: 1100px;
  margin: 0px auto;
}

.news_d_l{
  width: calc(100% - 300px);
}

.news_d_l .bt{
  padding-bottom: 50px;
}

.news_d_l .bt h2{
  text-align: center;
  font-size: 30px;
  color: #333;
}

.news_d_l .bt p{
  text-align: center;
  font-size: 16px;
  padding-top: 10px;
}

.news_d_l .nr{
  line-height: 1.8;
  font-size: 16px;
}

.news_d_l .nr h2{
  font-size: 18px;
  padding-bottom: 15px;
  color: #333;
}

.news_d_l .nr p{
  display: block;
  padding-bottom: 15px;
  text-indent: 30px;
}

.news_d_l .nr .xbt{
  text-align: center;
}

.news_d_l .nr .xbt h2{
  color: #1748AC;
  font-weight: bold;
  position: relative;
  font-size: 30px;
  display: inline-block;
  padding-bottom: 0px;
  margin-bottom: 20px;
}

.news_d_l .nr .xbt h2::after{
background: #DCDFE5;
width: 100%;
height: 10px;
z-index: -1;
content: '';
position: absolute;
left: 0px;
bottom: 5px;
}

.news_d_l .nr img{
  max-width: 100%;
  width: auto;
  height: auto;
  margin-left: -30px;
}

.news_d_l .more{
  padding-top: 20px;
}

.news_d_l .more a{
  background: #0D3D9C;
  color: #fff;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 16px;
}

.news_d_r{
  width: 250px;
}

.news_d_r .bt{
  border-bottom: 1px solid #ddd;
  text-align: center;
  font-size: 24px;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

.news_d_r .bt img{
  margin-right: 5px;
}

.news_d_r ul li{
  border-bottom: 1px dotted #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.news_d_r ul li h2 a{
  font-size: 14px;
  color: #333;
  padding-bottom: 10px;
  display: block;
}

.news_d_r ul li span img{
  margin-right: 5px;
}

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

.news_d_r .more a{
  background: #0D3D9C;
  color: #fff;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 16px;
}

.pxxm_box{
  padding: 60px 0px;
}

.pxxm_box .container{
  display: flex;
}

.pxxm_box_l{
  width: 45%;
}

.pxxm_box_l .nr{
  margin-top: -20px;
}

.pxxm_box_l .nr h2{
  font-size: 24px;
  font-weight: bold;
  color: #333;
  padding-bottom: 20px;
}

.pxxm_box_l .nr p{
  font-size: 18px;
  display: flex;
  align-items: center;
  padding: 8px 0px;
}

.pxxm_box_l .nr p i{
  width: 16px;
  height: 16px;
  background: #0D3D9C;
  border-radius: 50%;
  display: block;
  margin-right: 5px;
}

.pxxm_box_r{
  width: 50%;
}

.pxxm_box_r img{
  width: 100%;
  height: auto;
  max-width: 640px;
}

.pxxm_box1{
  padding-bottom: 60px;
}

.pxxm_box1 ul{
  margin: 0px -20px;
  display: flex;
  flex-wrap: wrap;
}

.pxxm_box1 ul li{
  width: calc(25% - 40px);
  margin: 20px 20px;
  height: 480px;
  border-radius: 20px;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  box-shadow: 0px 4px 25px 0px rgba(186, 186, 186, 0.38);
}

.pxxm_box1 ul li .nr{
background: rgba(255, 255, 255, 1);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pxxm_box1 ul li .nr .bt{
  color: #333;
}

.pxxm_box1 ul li .nr .bt h2{
  font-size: 20px;
}

.pxxm_box1 ul li .nr .bt h3{
  font-size: 14px;
}

.pxxm_box1 ul li .nr .jj h2{
  height: 260px;
  display: none;
}

.pxxm_box1 ul li .nr .jj h2 a{
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 5px;
  display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pxxm_box1 ul li .nr .jj h3{
    width: 100%;
    height: 260px;
}

.pxxm_box1 ul li .nr .jj h3 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.pxxm_box1 ul li .nr .jj i img{
  width: 30%;
  max-width: 64px;
  display: none;
}

.pxxm_box1 ul li:hover .nr{
  background: rgba(255, 255, 255, 0);
}

.pxxm_box1 ul li:hover .nr .bt{
  color: #fff;
}

.pxxm_box1 ul li:hover .nr .jj h2{
    display: flex;
    flex-direction: column;
}

.pxxm_box1 ul li .nr:hover .jj h3{
    display: none;
}

.pxxm_box1 ul li:hover .nr .jj a{
  color: #fff;
}

.pxxm_box1 ul li:hover .nr i{
  display: none;
}

.pxxm_box2{
  position: relative;
  padding: 60px 0px;
}

.pxxm_box2::after{
  content: '';
  width: 100%;
  height: 60%;
  background: url(../images/pxxm_bj.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0px;
}

.pxxm_box2 .container{
  position: relative;
  z-index: 2;
}

.pxxm_box2 .bt{
  color: #fff;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  padding-bottom: 40px;
}

.pxxm_box2 ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -20px;
}

.pxxm_box2 ul li{
  width: calc(33.3% - 40px);
  margin: 0px 20px;
  background: #fff;
  box-sizing: border-box;
  padding: 5%;
   box-shadow: 0px 4px 25px 0px rgba(186, 186, 186, 0.38);
}

.pxxm_box2 ul li:hover{
  background: #0D3D9C;
}

.pxxm_box2 ul li h2{
  font-size: 20px;
  color: #333;
  padding-bottom: 20px;
}

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

.pxxm_box2 ul li:hover h2{
  color: #fff;
}

.pxxm_box2 ul li:hover p{
  color: #fff;
}

.pxxm_box3::after{
  background: none;
}

.pxxm_box3 .bt{
  color: #1748AC;
}

.ppxm_box{
  padding: 60px 0px;
}

.ppxm_box ul li{
padding: 40px 0px;
}

.ppxm_box ul li .container{
display: flex;
  align-items: center;
}

.ppxm_box ul li:nth-child(even){
background: #f6f6f6;
}

.ppxm_box ul li:nth-child(even) .container{
  flex-direction: row-reverse;
}

.ppxm_box ul li:nth-child(even) .container .ppxm_box_l{
  padding-left: 50px;
  padding-right: 0px;
}


.ppxm_box ul li:nth-child(even) .in_bt1 .left{
  width: 100%;
}


.ppxm_box_l{
  width: 55%;
  box-sizing: border-box;
  padding-right: 50px;
}

.ppxm_box_r{
  width: 45%;
}

.ppxm_box_r img{
  width: 100%;
  height: auto;
}

.ppxm_jj .nr{
  margin-top: -20px;
}

.ppxm_jj .nr .nr1{
padding-bottom: 30px;
}

.ppxm_jj .nr .nr1 .xbt{
  color: #1748AC;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 8px;
}

.ppxm_jj .nr .nr1 p{
  font-size: 16px;
  line-height: 1.8;
}

.ppxm_jj .nr .more a{
  padding: 10px 30px;
  background: #0D3D9C;
  color: #fff;
  font-size: 16px;
  border-radius: 25px;
  display: inline-block;
}


.ppxm_box1{
  background: url(../images/ppxm_bj.png) no-repeat center right;
  background-size: cover;
  padding: 80px 0px;
}

.ppxm_box1 .container{
  display: flex;
  justify-content: flex-end;
}

.ppxm_box1_l{
  width: 50%;
}

.ppxm_box1_l .nr .more{
text-align: right;
}

.ppxm_box2{
  padding: 80px 0px;
}

.ppxm_box2 .container{
position: relative;
display: flex;
justify-content: flex-end;
}

.ppxm_box2_l{
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translate(0px , -50%);
  width: 60%;
  background: rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  padding: 2%;
}

.ppxm_box2_r{
  width: 70%;
}

.ppxm_box2_r img{
  width: 100%;
  height: auto;
}

.ppxm_box3{
  padding: 80px 0px;
  background: #1748AC;
}

.ppxm_box3 .container{
  flex-direction: row-reverse;
}

.ppxm_box3 .ppxm_box_l{
  padding-left: 50px;
  padding-right: 0px;
}

.ppxm_box3 .in_bt .left h2{
  color: #2A5AB7;
}

.ppxm_box3 .in_bt .left h3{
  color: #fff;
}

.ppxm_box3 .ppxm_jj .nr .nr1 .xbt{
  color: #fff;
}

.ppxm_box3 .ppxm_jj .nr .nr1 p{
  color: #fff;
}

.ppxm_box3 .ppxm_jj .nr .more{
  text-align: right;
}

.ppxm_box3 .ppxm_jj .nr .more a{
  color: #1748AC;
  background: #fff;
}

.ppxm_box4{
  padding: 80px 0px;
}

.ppxm_box4 .container{
  flex-direction: row-reverse;
}

.ppxm_box4 .ppxm_box_l{
  padding-left: 50px;
  padding-right: 0px;
}

.ppxm_box4 .ppxm_jj .nr .more{
  text-align: right;
}

.ppxm_d{
  width: 100%;
  padding: 60px 0px;
  max-width: 1000px;
  margin: 0px auto;
}

.szll_box{
  padding: 60px 0px;
}

.szll_box ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -20px;
}

.szll_box ul li{
  width: calc(33.3% - 42px);
  border: 2px solid #1748AC;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
  padding: 2%;
  margin: 0px 20px;
  margin-bottom: 30px;
}

.szll_box ul li a{
    display: block;
}

.szll_box ul li i img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.szll_box ul li h2{
  font-size: 34px;
  font-weight: bold;
  padding: 10px 0px;
  color: #333;
}

.szll_box ul li p{
  font-size: 16px;
  padding: 5px 0px;
  line-height: 1.6;
}

.szll_box .more{
    text-align: center;
}

.szll_box .more a{
    background: rgba(38, 96, 211, 1);
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
    padding: 10px 30px;
}

.wybm_box{
  padding: 60px 0px;
  max-width: 1000px;
  margin: 0px auto;
}

.baoming{
  background: #F8F8F8;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 3%;
}

.baoming ul li{
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.baoming ul li h3{
  width: 31.3%;
}

.baoming ul li h2{
  width: 100%;
}

.baoming ul li p{
  font-size: 18px;
  color: #1748AC;
  padding-bottom: 5px;
}

.baoming ul li p img{
  margin-right: 5px;
}

.baoming ul li .text{
  width: 100%;
  height: 50px;
  border: 0px;
  border-bottom: 1px solid #ddd;
  background: none;
  font-size: 16px;
}

.baoming ul li .text1{
  width: 100%;
  height: 150px;
  border: 1px solid #ddd;
  background: none;
  font-size: 16px;
  box-sizing: border-box;
  padding: 10px;
}

.baoming ul li .btn{
  display: inline-block;
  margin: 0px auto;
  background: #1748AC;
  color: #fff;
  padding: 15px 50px;
  font-size: 16px;
  border-radius: 30px;
  border: 0px;
  cursor: pointer;
}

.layui-laydate .layui-this, .layui-laydate .layui-this>div{
  background-color: #1748AC !important;
}

.xxhd_box{
  padding: 60px 0px;
  background: #E8F2FB;
}

.xxhd_box .bt{
  text-align: center;
  color: #1748AC;
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 40px;
}

.xxhd_box ul{
  margin: 0px -20px;
  display: flex;
  flex-wrap: wrap;
}

.xxhd_box ul li{
  width: calc(50% - 40px);
  margin: 0px 20px;
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0px 10px 10px #eee;
  box-sizing: border-box;
  padding:20px 40px;
}

.xxhd_box ul li .img a img{
  width: 100%;
  aspect-ratio: 60/33;
}

.xxhd_box ul li .nr h3{
  font-size: 16px;
  padding: 10px 0px;
}


.xxhd_box ul li .nr h2 a{
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.xxhd_box ul li .nr h2 a em{
  color: #1748AC;
}

.xxhd_box ul li .nr p{
  font-size: 14px;
  line-height: 1.4;
  margin: 10px 0px;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xxhd_box ul li .nr span{
  text-align: right;
  display: block;
}

.xxhd_box ul li .nr span a{
  display: inline-block;
  color: #fff;
  background: #1748AC;
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 25px;
}

.xyfg{
  padding: 60px 0px;
}

.xyfg ul li{
  margin-bottom: 30px;
}


.szll_nav{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: -30px;
    margin-bottom: 30px;
}

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

.szll_nav a.on{
    background: #1748AC;
    color: #fff;
}


.ny_nav{
  width: 250px;
  background: #f6f6f6;
  box-sizing: border-box;
  padding: 0px 10px;
}

.ny_nav .bt{
  font-size: 24px;
  font-weight: bold;
  padding:10px;
  color: #333;
  margin-bottom: 10px;
  border-bottom: 4px solid #1748AC;
}

.ny_nav h2 a{
  font-size: 16px;
  padding: 6px 0px;
  line-height: 1.6;
  display: block;
}
  
.ny_nav h2 a.on{
  color: #2660D3;
}
