@charset "utf-8";
/* CSS Document */
/***********通用基本类************/

/*格式化样式*/

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
}

/* 滚动条 */
/*::-webkit-scrollbar {width:0px;}*/

/*css定义超链接四个状态也有顺序的。*/

a:link,
a:visited {
  text-decoration: none;
  color: #666666;
}

a:hover,
a:active {
  text-decoration: none;
  color: #125cb1;
  border: none;
}
/*以上语句分别定义了"链接、已访问过的链接、鼠标停在上方时、点下鼠标时"的样式。
注意，必须按以上顺序写，否则显示可能和你预想的不一样。记住它们的顺序是“LVHA”。*/
ul {
  clear: both;
  width: 100%;
}

ul,
li {
  list-style: none;
}

/***********通用基本类2************/

/* Copyright 2008 TSXMLOVE. All Rights Reserved. */
* {
  padding: 0px;
  margin: 0px;
  text-align: left;
  font-family: Arial, Verdana, Tahoma, "微软雅黑", Helvetica, sans-serif;
  line-height: 150%;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 10px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}

::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #535353;
}

::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #ededed;
}

body {
  font-family: 微软雅黑;
  background-color: #fefefe;
  max-width: 1920px;
  margin: 0px auto;
  overflow-x: hidden;
}

table {
  border-collapse: collapse;
}

/*长度高度*/
.w1920 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.w1200 {
  margin: 0 auto;
  padding: 0px 15px;
  width: 100%;
  max-width: 1230px;
}

.w100 {
  width: 100%;
  text-align: center;
}

.w50 {
  width: 50%;
}

/*清除浮动*/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
  /* IE <8 */
}

.fl {
  float: left;
}

.fr {
  float: right;
}

/* banner开始 */
.cont1 {
  position: relative;
}

.cont1,
.cont1 .swiper-container,
.cont1 .swiper-slide {
  overflow: hidden;
  width: 100%;
}

.cont1 .swiper-slide {
  position: relative;
  text-align: center;
}

.cont1 .swiper-slide img {
  width: 100%;
  margin: 0 auto;
  max-width: 1920px;
  display: block;
  display: block;
  transition: all 1s ease 2.5s;
  transform: perspective(1000px) translate3d(0, 0, 0px);
}

.cont1 .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

.cont1 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  border-radius: 100%;
  background-color: #fff;
}

.cont1 .swiper-slide-active img {
  transition: all 5s ease 0s;
  transform: perspective(1000px) translate3d(0, 0, 100px);
}

.cont1 .swiper-pagination-bullet-active {
  background-color: #a37bad;
  width: 30px;
  height: 10px;
  border-radius: 20px;
}

.cont1 .swiper-container-horizontal > .swiper-pagination-bullets,
.cont1 .swiper-pagination-custom,
.cont1 .swiper-pagination-fraction {
  bottom: 20px;
}


.cont1_fc {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cont1_fc_div {
  text-align: center;
}

/*
.cont1_fc_div > img {
  width: 200px;
}
*/

.cont1_fc_div > h4 {
  font-weight: bold;
  color: #fff;
  text-shadow: 3px 3px 3px rgb(0 57 131 / 45%);
  text-align: center;
  font-size: 40px;
  letter-spacing: 2px;
}

.cont1_fc_div > h3 {
  font-weight: bold;
  color: #fff;
  text-shadow: 3px 3px 3px rgb(0 57 131 / 45%);
  text-align: center;
  letter-spacing: 1px;
  line-height: 15px;
}

.cont1_fc_div_fc {
  background-color: white;
  width: 720px;
  height: 50px;
  border-radius: 25px;
  padding: 8px 10px;
  overflow: hidden;
  margin: 20px auto 0px;
}

.cont1_fc_div_fc form {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.cont1_fc_div_fc input {
  font-size: 18px;
  border: none;
  background-color: black;
  padding-left: 15px;
  background: url(../images/home/ssk.png) no-repeat center right;
  background-size: 27px;
  width: calc(100% - 122px);
  outline: none;
}

.cont1_fc_div_fc button {
  background-color: #b20606;
  color: white;
  border: 0px;
  padding: 0px 20px;
  border-radius: 15px;
  font-size: 18px;
  position: relative;
  cursor: pointer;
}

.cont1_fc_div_fc button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -15px;
  background-color: #c4c5c6;
  height: 30px;
  width: 2px;
}

.cont2 {
  background: linear-gradient(180deg, rgba(18, 93, 178, 0.4) 0%, rgba(18, 93, 178, 0) 100%);
}

.cont2_d1 {
}

.cont2_d1_list {
  background: url(../images/home/nav.png) no-repeat center top;
  background-size: cover;
  min-height: 60px;
  display: flex;
  /* flex-wrap: wrap; */
}

.cont2_d1_list .iteam {
  flex: 1;
}

.cont2_d1_list .iteam > a {
  display: block;
  position: relative;
  white-space: nowrap;
  color: #fbfbfb;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  height: 60px;
}

.cont2_d1_list .iteam > a::after {
  display: block;
  width: 0;
  height: 2px;
  content: "";
  background-color: #fff;
  margin: -10px auto 0;
  transition: all 0.3s linear;
}

.cont2_d1_list .iteam .sub-list {
  display: none;
}

.cont2_d1_list .iteam:hover .sub-list {
  z-index: 9;
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: rgba(242, 242, 242, 0.85);
}

.cont2_d1_list .iteam .sub-list a {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  padding: 0 15px;
}

.cont2_d1_list .iteam .sub-list a:hover {
  color: #125cb1;
}

.cont2_d1_list .iteam:hover > a::after,
.cont2_d1_list .on > a::after {
  width: 2em;
}

.cont2_d2 {
  margin-top: 30px;
  padding-bottom: 30px;
}

.cont2_d2 .swiper-slide {
  background-color: white;
  padding: 20px;
}

.cont2_d2 .swiper-slide .iteam {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cont2_d2 .swiper-slide .iteam .iteam_l {
  background: url(../images/home/9.png);
  background-size: 100% 100%;
  width: 130PX;
  height: 75px;
  text-align: center;
  color: white;
}

.cont2_d2 .swiper-slide .iteam .iteam_l p {
  margin-top: 5px;
  padding-left: 30px;
  font-weight: bold;
  font-size: 17px;
  cursor: pointer;
}

.cont2_d2 .swiper-slide .iteam .iteam_l hr {
  background-color: white;
  border: 1px;
  height: 1px;
  width: 68px;
  margin-left: 29px;
  margin-top: 2px;
}

.cont2_d2 .swiper-slide .iteam .iteam_l h3 {
  padding-left: 33px;
  font-size: 30px;
  font-weight: bold;
  margin-top: -2px;
}

.cont2_d2 .swiper-slide .iteam .iteam_r {
  width: calc(100% - 140px);
  cursor: pointer;
}

.cont2_d2 .swiper-slide .iteam .iteam_r h3 {
  font-size: 30px;
  font-weight: bold;
  color: #125cb1;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cont2_d2 .swiper-slide .iteam .iteam_r p {
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #585858;
}

.cont3 {
  margin-top: 30px;
}

.cont3 .w1200 {
}

.cont3 .w1200 h3 {
  color: white;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  padding: 25px 20px;
  line-height: 1.2;
}

.cont4 {
  margin-top: 30px;
}

.cont4 .w1200 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cont4 .w1200 .cont4_l {
  position: relative;
  width: 50%;
  height: 396px;
}

.cont4_l .swiper-slide {
}

.cont4_l .swiper-slide img {
  height: 100%;
  width: 100%;
  display: block;
}


.cont4_l .swiper-pagination {
  width: auto;
  right: 20px;
  left: auto;
  bottom: 15px;
}

.cont4_l .swiper-pagination .swiper-pagination-bullet {
  background-color: #9e9e9e;
  opacity: 1;
  width: 20px;
  height: 5px;
  border-radius: 7px;
  transition: all 0.3s ease;
}

.cont4_l .swiper-pagination .swiper-pagination-active {
  background-color: white;
  width: 30px;
}

.cont4 .w1200 .cont4_r {
  width: 50%;
  overflow: hidden;
  padding: 10px 20px 20px 20px;
}

.cont4_r_t {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cont4_r_t a {
  width: 30%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 36px;
  transition: all 0.3s ease;
}

.cont4_r_t a.on {
  background-color: #125cb1;
  color: white;
}

.cont4_r_b {
  margin-top: 10px;
}

.cont4_r_b .cont4_r_b_iteam {
  display: none;
}

.cont4_r_b_iteam ul {
}

.cont4_r_b_iteam ul a {
  position: relative;
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  align-items: center;
  color: #000;
  line-height: 42px;
  padding-left: 15px;
}

.cont4_r_b_iteam ul a::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  background-color: #699ac5;
}

.cont4_r_b_iteam ul a .txt {
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: calc(100% - 100px);
  line-height: 42px;
}

.cont4_r_b_iteam ul a:hover * {
  color: #125cb1;
}

.cont4_r_b_iteam ul a .time {
  width: 85px;
}

.cont5 {
  margin-top: 30px;
}

.cont5 .w1200 {
  background: url(../images/home/2.jpg) no-repeat;
  background-size: 100% auto;
}

.cont5 .w1200 h3 {
  color: white;
  font-size: 43px;
  font-weight: bold;
  text-align: center;
  padding: 25px 0px;
  text-shadow: 3px 3px 3px rgb(0 57 131 / 99%);
}

.cont6 {
  margin-top: 30px;
}

.cont6 .w1200 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cont6_iteam {
  width: 31%;
}

.cont6_iteam_t {
}

.cont6_iteam_t_z {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  border-bottom: 2px solid #125cb1;
  width: auto;
  float: left;
}

.cont6_iteam_t_e {
  float: left;
  margin-left: 3px;
  text-transform: uppercase;
  margin-top: 5px;
  font-size: 15px;
  color: #585858;
  font-weight: bold;
}

.cont6_iteam_img {
  margin-top: 15px;
  width: calc(100% - 10px);
  height: 320px;
  overflow: hidden;
  margin-left: 10px;
}

.cont6_iteam_img a {
}

.cont6_iteam_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.36s ease;
}

.cont6_iteam_img:hover img {
  transform: scale(1.1);
}

.cont6_iteam_ul {
  margin-top: 15px;
  width: calc(100% - 10px);
  margin-left: 10px;
}

.cont6_iteam_ul ul {
}

.cont6_iteam_ul ul li {
}

.cont6_iteam_ul ul li a {
  position: relative;
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  align-items: center;
  color: #000;
  line-height: 42px;
  padding-left: 15px;
}

.cont6_iteam_ul ul li a::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  background-color: #699ac5;
}

.cont6_iteam_ul ul li a:hover * {
  color: #125cb1;
}

.cont6_iteam_ul ul li a .txt {
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: calc(100% - 100px);
  line-height: 42px;
  cursor: pointer;
}

.cont6_iteam_ul ul li a .time {
  cursor: pointer;
}

.cont7 {
  margin-top: 30px;
}

.cont7 .w1200 {
}

.cont7_title {
}

.cont7_title h3 {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.cont7_title hr {
  width: 85px;
  background-color: #125cb1;
  height: 2px;
  margin: 0 auto;
  border: 0px;
  margin-top: 2px;
}

.cont7_title p {
  text-align: center;
  margin-top: 2px;
  text-transform: uppercase;
  font-size: 15px;
  color: #585858;
}

.cont7_ct {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cont7_ct_iteam {
  width: 50%;
  text-align: center;
  padding: 25px 0px;
}

.cont7_ct_iteam:first-child {
  background-color: #e5e5e5;
}

.cont7_ct_iteam:hover {
  box-shadow: 5px 5px 5px #5c5c5c87;
}

.cont7_ct_iteam a p {
  text-align: center;
}

.cont7_ct_iteam a p i {
  color: #686868;
  font-size: 45px;
}

.cont7_ct_iteam a h4 {
  text-align: center;
  color: #686868;
}

.cont7_ct_iteam:last-child {
  background-color: #bfbfbf;
}

.cont7_ct_iteam a * {
  cursor: pointer;
}

.cont8 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.cont8_ct {
  margin-top: 15px;
}

.cont8_ct_iteam {
  /* width: 32%; */
}


.cont8_ct_iteam a {
}

.cont8_ct_iteam h4 {
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  text-shadow: 3px 3px 3px rgb(2 112 255 / 99%);
  padding: 20px 10px;
}

.footer {
  background: url(../images/home/5.jpg) no-repeat;
  background-size: cover;
}

.footer_nav {
  border-bottom: 1px solid white;
}

.footer_nav .w1200 {
  display: flex;justify-content: space-between;
}

.footer_nav .w1200 a {
  color: white;
  cursor: pointer;
  display: inline-block;
  padding: 15px;
  position: relative;
  flex: 1;text-align: center;
}

.footer_nav .w1200 a:hover {
  color: #125cb1;
}

.footer_nav .w1200 a::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  right: 0px;
}

.footer_nav .w1200 a:last-child::before {
  display: none;
}

.footer_cont1 {
  margin: 30px auto 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer_cont1_l {
  padding-top: 10px;
}

.footer_cont1_l p {
  color: white;
  line-height: 28px;
}

.footer_cont1_l p i {
  margin-right: 5px;
}

.footer_cont1_r img {
  width: 120px;
}

.footer_cont1_r p {
  font-size: 15px;
  color: white;
  text-align: center;
}

.footer_cont2 {
  color: white;
  padding-bottom: 40px;
}

.footer_cont2 a {
  color: white;
}

.footer_cont3 {
  padding: 10px;
  color: white;
  background-color: #135db2;
  text-align: center;
  line-height: 1.6;
}

.nr_header {
  position: relative;
}

.nr_header > img {
  width: 100%;
  display: block;
}

.nr_header_fc {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nr_header_fc_div {
  display: flex;
  justify-content: center;  /* 修改 */
  flex-wrap: wrap;
}

.nr_header_fc_div a {
}

.nr_header_fc_div a img {
  height: 88px;
  display: block;
}

.nr_header_fc_div form {
  background-color: rgba(255, 255, 255, 0.95);
  height: 50px;
  border-radius: 25px;
  padding: 8px 10px;
  overflow: hidden;
  font-size: 14px;
  width: 450px;
  margin: 17px auto 0px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  display: none;
}

.nr_header_fc_div form input {
  height: 34px;
  outline: none;
  width: 345px;
  background-color: #f6fafd;
  border: 0px;
  padding-left: 15px;
  font-size: 15px;
}

.nr_header_fc_div form button {
  background: url(../images/home/sskb.png) no-repeat center left;
  height: 34px;
  cursor: pointer;
  background-color: #125db2;
  width: 80px;
  border: 0px;
  border-radius: 16px;
  color: white;
  line-height: 32px;
  font-size: 14px;
  background-size: 20px 20px;
  background-position: 15px center;
  text-align: center;
  padding-left: 25px;
}

.nr_nav {
  background-color: #125cb1;
}

/* 新闻列表 */
.nr_box {
  background-color: #f7f7f7;
  padding-bottom: 50px;
}

.nr_mbx {
  font-size: 14px;
  padding: 10px 0px;
}

.nr_mbx span {
  color: #707070;
}

.nr_mbx a {
  color: #707070;
  cursor: pointer;
}

.nr_mbx a:hover {
  color: #125cb1;
}

.news_list {
  background-color: white;
  padding: 15px 20px;
}

.news_list ul {
}

.news_list ul li {
  margin: 10px 0px;
}

.news_list ul li a {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news_list ul li a::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  background-color: #699ac5;
}

.news_list ul li a .txt {
  color: #333333;
  font-size: 18px;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: calc(100% - 100px);
  padding-left: 15px;
  line-height: 40px;
  cursor: pointer;
}

.news_list ul li a .time {
  color: #999999;
  line-height: 40px;
  cursor: pointer;
}

.news_list ul li a:hover * {
  color: #125cb1;
}

.news_cont {
  background-color: white;
  padding: 50px;
}

.news_cont > h3 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 20px;
}

.news_cont > p {
  text-align: center;
  line-height: 1.6;
  font-size: 16px;
  color: #999999;
}

.news_cont_d {
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news_cont_d_l {
  padding: 5px;
  text-align: center;
  width: 140px;
  border: 1px solid #b0b0ae;
  border-radius: 20px;
}

.news_cont_d_l i {
  width: 28px;
  height: 28px;
  background-color: #125cb1;
  color: white;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
}

.news_cont_d_l span {
  display: inline-block;
  margin-left: 5px;
  cursor: pointer;
}

.news_cont_d_l span.on {
  color: #125cb1;
}

.news_cont_d_r {
}

.news_cont_d_r span {
  color: #707070;
  font-size: 14px;
  line-height: 40px;
  display: inline-block;
}

.social-share {
  display: inline-block;
}

.news_cont_d_r i {
}

.pro_list {
  background-color: white;
  padding: 15px 20px;
}

.pro_list ul {
}

.pro_list ul li {
  width: 24%;
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

.pro_list ul li:nth-child(4n + 4) {
  margin-right: 0px;
}

.pro_list ul li a {
}

.pro_list ul li a div {
  width: 100%;
  height: 246px;
  overflow: hidden;
}

.pro_list ul li a div img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.36s ease;
}

.pro_list ul li a p {
  text-align: center;
  line-height: 37px;
  background-color: aliceblue;
}

.pro_list ul li:hover img {
  transform: scale(1.1);
}

.pro_list ul li:hover p {
}

.pro_list ul li * {
  cursor: pointer;
}

.content_us {
  background-color: white;
  padding: 20px 20px;
}

.cont-onepage {
}

.cont-onepage-title {
  font-size: 32px;
  margin: 20px 0;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.cont-lx-box {
}

.cont-lx-box-l {
  width: 34%;
  height: 480px;
  overflow: hidden;
  float: left;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: aliceblue;
}

.cont-lx-box-l-d1 {
}

.cont-lx-box-r {
  width: 66%;
  float: left;
  height: 480px;
}

.contproly {
  padding-bottom: 50px;
}

.contproly .mx1400 {
  background: #f8f8f8;
  padding: 50px 0px 50px;
}

.contproly-box {
  margin-top: 30px;
}

.contproly-box-title {
  text-align: center;
  font-size: 32px;
}

.contproly-box-entitle {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.contproly-box-hx {
  background-color: #125cb1;
  height: 3px;
  width: 50px;
  margin: 0 auto;
  margin-top: 10px;
}

.contproly-form {
  margin-top: 20px;
  padding: 0px 100px;
}

.contproly-form textarea {
  width: 100%;
  resize: none;
  height: 160px;
  padding: 10px;
  font-size: 15px;
  outline: none;
}

.contproly-form input {
  font-size: 15px;
  width: 48%;
  padding: 10px;
  margin-top: 20px;
  outline: none;
}

.contproly-form input:last-child {
  width: 100%;
  background-color: #125cb1;
  text-align: center;
  color: white;
  margin-top: 30px;
  border: 0px;
}

.page {
  background-color: white;
  padding-bottom: 35px;
  padding-top: 15px;
}

.page > div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.duanbox {
  margin-top: 20px;
}

.duanbox img {
  max-width: 100% !important;
  height: auto;
}

/* 分页 */
/*列表翻页*/
.in_news + .list_page {
  border-top: none;
}

.list_page {
  text-align: center;
  padding: 20px 0;
}

.list_page a,
.list_page span {
  padding: 6px 12px;
  display: inline-block;
  font-size: 14px;
  margin: 0 4px;
  border-radius: 3px;
}

.list_page a {
  background: #f5f3ed;
  color: #125cb1;
}

.list_page span,
.list_page a:hover {
  background: #125cb1;
  color: #fff;
}


/* 新增导航样式 */
.cont2_d1_list .iteam > a{position: relative;height: 100%;padding: 0 10px;color: #fbfbfb;font-size: 20px;font-weight: bold;display: flex;justify-content: center;align-items: center;text-align: center;white-space: nowrap;}
.cont2_d1_list .iteam > a::after,
.cont2_d1_list .on > a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s linear;
}
.cont2_d1_list .iteam:hover > a::after, .cont2_d1_list .on > a::after{width: 40px;}
.cont2_d1_list .iteam:hover .sub-list {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1920px;
  width: 100%;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: rgba(242, 242, 242, 0.85);
  transition: all 0.3s ease;
  z-index: 9;
}
.cont2_d1_list .iteam .sub-list a {
  padding: 15px;
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
.cont2_d2 .swiper-slide .iteam .iteam_r {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 140px);
  cursor: pointer;
}

.footer_cont1_l{width: calc(100% - 150px);}
.footer_cont1_r{max-width: 120px;}

@media (max-width:1024px) {
  .cont2_d1_list{padding: 0;}
  .cont2_d1_list .iteam > a{font-size: 18px;padding: 0;}
}
@media (max-width: 768px) {
  .nr_header_fc_div a img{height: 65px;}

  .cont2_d1_list{min-height: 50px;}
  .cont2_d1_list .iteam > a{font-size: 16px;}
  .cont2_d1_list .iteam .sub-list a{font-size: 16px;}

  .footer_cont1 {margin: 20px auto;align-items: center;}
  .footer_cont1_l {padding-top: 0;}
  .footer_nav .w1200 a {padding: 10px;}
  .footer_cont2 {padding-bottom: 20px;}
}
@media (max-width:640px) {
  .cont2_d1_list .iteam > a{font-size: 15px;}
  .cont2_d1_list .iteam .sub-list a{font-size: 15px;padding: 10px;}
  .cont2_d1_list .iteam:hover > a::after, .cont2_d1_list .on > a::after{width: 30px;}

  .footer{font-size: 15px;}
  .footer_nav .w1200{flex-wrap: wrap;padding: 5px 0;}
  .footer_nav .w1200 a{flex: auto;width: 30%;padding: 5px 10px;}
  .footer_nav .w1200 a:nth-child(3):before{display: none;}
}
@media (max-width: 500px) {
  .nr_header_fc_div a img{height: 45px;}

  .cont2_d1_list{flex-wrap: wrap;}
  .cont2_d1_list .iteam{min-height: 40px;flex: auto;width: 33%;}
  .cont2_d1_list .iteam > a::after{bottom: 4px;}

  .cont2_d1_list .iteam .sub-list a{padding: 10px;}
  
  .footer_cont1_l{width: 100%;}
  .footer_cont1_r{margin-top: 15px;}
  .footer_cont3{font-size: 15px;}
}

/* 新增分页样式 */
.common-page{padding: 10px 0 20px;background: #fff;display:flex;flex-wrap:wrap;justify-content:center}
.common-page a,.common-page span{padding:6px 12px;color: #125cb1;font-size: 14px;display:inline-flex;align-items:center;justify-content:center;background:#f5f3ed;border-radius: 3px;margin:0 4px;transition:all .1s linear}
.common-page a.ctxt,.common-page span.ctxt{background:#125cb1;border-color:#125cb1;color:#FFFFFF}
.common-page a:hover{color:#fff;background: #125cb1;}