@charset "UTF-8";
@font-face {
  font-family: 'impact';
  src: url("/public/static/web/fonts/impact.ttf");
}

.pc {
  display: block;
}

.mobile {
  display: none !important;
}

.container {
  width: 100%;
  min-width: 320px;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.header_box {
  width: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 99;
}

.header_box .top {
  width: 100%;
  height: 164px;
  background: url("/public/static/web/images/header_bg.png") no-repeat;
  background-size: cover;
}

.header_box .top .header {
  width: 100%;
  max-width: 1250px;
  height: 164px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_box .top .header .left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header_box .top .header .left .logo {
  width: 518px;
  margin-right: 5px;
}

.header_box .top .header .left .logo img {
  width: 100%;
}

.header_box .top .header .left .tags span {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  padding: 0 10px;
  box-sizing: border-box;
  line-height: 30px;
  display: inline-block;
  border-radius: 0 15px 0 15px;
  margin: 0 2px;
}

.header_box .top .header .left .tags span:nth-child(1) {
  background: #ff6666;
}

.header_box .top .header .left .tags span:nth-child(2) {
  background: #ff9900;
}

.header_box .top .header .right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header_box .top .header .right .search {
  width: 300px;
  position: relative;
}

.header_box .top .header .right .search input {
  width: 100%;
  height: 45px;
  background: #fff;
  border-radius: 50px;
  font-size: 14px;
  color: #333;
  padding: 0 50px 0 20px;
  box-sizing: border-box;
  outline: none;
  border: none;
}

.header_box .top .header .right .search input::placeholder {
  color: #999;
}

.header_box .top .header .right .search .icon {
  width: 30px;
  height: 30px;
  background: #eff6fc;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.header_box .top .header .right .tel_item {
    margin-left: 20px;
}

.header_box .top .header .right .tel_item .tel {
  margin-bottom: 10px;
}

.header_box .top .header .right .tel_item .tel .icon {
  width: 19px;
  vertical-align: middle;
}

.header_box .top .header .right .tel_item .tel a {
  font-size: 24px;
  color: #fff;
  vertical-align: middle;
}

.header_box .nav_bg {
  width: 100%;
  height: 60px;
  background: #00499e;
}

.header_box .nav_bg .nav {
  width: 100%;
  max-width: 1250px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header_box .nav_bg .nav li {
  flex: 1;
  height: 60px;
  position: relative;
  text-align: center;
}

.header_box .nav_bg .nav li:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header_box .nav_bg .nav li a {
  font-size: 16px;
  color: #fff;
  line-height: 60px;
  display: inline-block;
  padding: 0 30px;
  box-sizing: border-box;
}

.header_box .nav_bg .nav li.active a {
  background: #2bb7ef;
}

.m_header {
  width: 100%;
  height: 64px;
  background: #00499e;
  display: none;
  padding: 0 20px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.m_header .m_box {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m_header .m_box .logo {
  width: 180px;
}

.m_header .m_box .logo img {
  width: 100%;
}

.m_header .m_box .menus {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.m_header .m_box .menus .tags {
  margin-right: 8px;
}

.m_header .m_box .menus .tags span {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  padding: 0 5px;
  box-sizing: border-box;
  line-height: 20px;
  display: inline-block;
  border-radius: 0 15px 0 15px;
  margin: 0 2px;
}

.m_header .m_box .menus .tags span:nth-child(1) {
  background: #ff6666;
}

.m_header .m_box .menus .tags span:nth-child(2) {
  background: #ff9900;
}

.m_header .m_box .menus .menubtn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: relative;
}

.m_header .m_box .menus .menubtn i {
  width: 21px;
  height: 3px;
  background: #fff;
  position: absolute;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  border-radius: 2px;
  display: block;
}

.m_header .m_box .menus .menubtn i:nth-child(1) {
  top: 4px;
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  -o-transform-origin: left bottom;
  transform-origin: left bottom;
}

.m_header .m_box .menus .menubtn i:nth-child(2) {
  top: 11px;
}

.m_header .m_box .menus .menubtn i:nth-child(3) {
  top: 18px;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}

.m_header .m_box .menus .menubtn.on i:nth-child(1) {
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(45d40degeg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
}

.m_header .m_box .menus .menubtn.on i:nth-child(2) {
  opacity: 0;
}

.m_header .m_box .menus .menubtn.on i:nth-child(3) {
  -webkit-transform: rotate(-40deg);
  -moz-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  -o-transform: rotate(-40deg);
  transform: rotate(-40deg);
}

.m_header .m_nav {
  width: 400px;
  max-width: 60%;
  height: 100vh;
  background: rgba(0, 73, 158, 0.9);
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 99;
  overflow-y: auto;
  padding: 20px 0;
}

.m_header .m_nav .nav_list {
  width: 100%;
}

.m_header .m_nav .nav_list > li {
  line-height: 40px;
  border-bottom: 1px solid #fff;
}

.m_header .m_nav .nav_list > li a {
  display: block;
  text-align: left;
  font-size: 14px;
  color: #fff;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
}

.m_header .m_nav .nav_list > li a .arrow {
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 6px;
}

.m_header .m_nav .nav_list > li a .arrow::after {
  content: '▶';
}

.m_header .m_nav .nav_list > li.active a {
  background: #2bb7ef;
}

.m_header .m_nav .search {
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 0 10px;
  box-sizing: border-box;
  margin-top: 20px;
  position: relative;
}

.m_header .m_nav .search input {
  padding-right: 40px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: none;
  font-size: 12px;
  color: #333;
  outline: none;
}

.m_header .m_nav .search input::placeholder {
  color: #999;
}

.m_header .m_nav .search .icon {
  width: 30px;
  height: 30px;
  background: #eff6fc;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.m_header .m_nav .tel {
  margin-top: 20px;
  text-align: center;
}

.m_header .m_nav .tel .icon {
  width: 19px;
  vertical-align: middle;
}

.m_header .m_nav .tel a {
  font-size: 18px;
  color: #fff;
  vertical-align: middle;
}

.banner {
  width: 100%;
}

.banner img {
  width: 100%;
}

.index_title {
  width: 100%;
  height: 55px;
  background: #f6fafd;
  border-top: 3px solid #00499e;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
}

.index_title .title_box {
  width: 50px;
  height: 55px;
  background: #00499e;
  margin-top: -15px;
  margin-left: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.index_title .title_box::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 10px solid #f6fafd;
  position: absolute;
  left: 0;
  bottom: 0;
}

.index_title .title_box img {
  margin-top: -10px;
}

.index_title::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-right: 12px solid rgba(0, 73, 158, 0.27);
  position: absolute;
  left: 0;
  top: -15px;
}

.index_title::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-left: 12px solid rgba(0, 73, 158, 0.27);
  position: absolute;
  left: 60px;
  top: -15px;
}

.index_title .title {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.index_title .title h2 {
  font-size: 24px;
  color: #00499e;
  font-weight: bold;
  line-height: 55px;
}

.index_title .title a {
  font-size: 14px;
  color: #666;
}

.index_title2 {
  width: 100%;
  height: 55px;
  background: #e1ebf5;
  border-top: 3px solid #00499e;
  padding: 0 20px;
  box-sizing: border-box;
}

.index_title2 h2 {
  font-size: 24px;
  color: #00499e;
  font-weight: bold;
  line-height: 55px;
}

.crumbs {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}

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

.crumbs p a {
  color: #666;
}

.crumbs .icon {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.accordion {
  width: 220px;
  margin-right: 30px;
  background: #fff;
  box-shadow: 0 0 12px rgba(233, 233, 233, 0.75);
  border-radius: 0 15px 0 15px;
}

.accordion .tit {
  width: 100%;
  height: 66px;
  background: #00499e;
  border-radius: 0 15px 0 0;
  text-align: center;
}

.accordion .tit span {
  font-size: 26px;
  color: #fff;
  line-height: 66px;
}

.accordion .list {
  padding: 20px 15px;
  box-sizing: border-box;
}

.accordion .list li {
  height: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
  position: relative;
}

.accordion .list li a {
  line-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion .list li span {
  font-size: 18px;
  color: #333;
}

.accordion .list li.active span {
  color: #00499e;
}

.accordion .list li.active::before {
  content: '';
  width: 3px;
  height: 18px;
  background: #00499e;
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.index_list {
  margin-top: 20px;
}

.index_list .list {
  width: 100%;
}

.index_list .list li {
  margin-bottom: 20px;
}

.index_list .list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.index_list .list li .text {
  width: 80%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.index_list .list li .text p {
  font-size: 16px;
  color: #333;
  padding-left: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  position: relative;
}

.index_list .list li .text p::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #61686d;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.index_list .list li .text .icon {
  width: 22px;
  height: 16px;
  margin-left: 5px;
}

.index_list .list li span {
  font-size: 12px;
  color: #999;
}

.news_content {
  padding: 40px 0;
  background: linear-gradient(to bottom, #ddecf8, #fff);
}

.news_content .news_box {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.news_content .news_box .carousel {
  width: 100%;
  max-width: 750px;
}

.news_content .news_box .carousel li {
  width: 100%;
  position: relative;
}

.news_content .news_box .carousel li .pic {
  width: 100%;
}

.news_content .news_box .carousel li .pic img {
  width: 100%;
}

.news_content .news_box .carousel li .text {
  width: 100%;
  height: 55px;
  background: rgba(1, 3, 5, 0.7);
  padding: 0 20px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
}

.news_content .news_box .carousel li .text p {
  width: 78%;
  font-size: 20px;
  color: #fff;
  line-height: 55px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news_content .news_box .carousel .slick-dots {
  width: 100%;
  position: absolute;
  bottom: 20px;
  text-align: right;
  padding: 0 20px;
  box-sizing: border-box;
}

.news_content .news_box .carousel .slick-dots li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  display: inline-block;
  margin: 0 3px;
  transition: width .5s ease;
  cursor: pointer;
}

.news_content .news_box .carousel .slick-dots li button {
  display: none;
}

.news_content .news_box .carousel .slick-dots li.slick-active {
  background: #fff;
}

.news_content .news_box .news {
  width: 100%;
  max-width: 445px;
}

.news_content .news_box .news .news_tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccd8e2;
}

.news_content .news_box .news .news_tab .tab_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.news_content .news_box .news .news_tab .tab_list .icon {
  width: 37px;
}

.news_content .news_box .news .news_tab .tab_list .icon img {
  width: 100%;
}

.news_content .news_box .news .news_tab .tab_list .list li {
  display: inline-block;
  margin: 0 10px;
}

.news_content .news_box .news .news_tab .tab_list .list li span {
  font-size: 22px;
  color: #333;
  cursor: pointer;
  position: relative;
}

.news_content .news_box .news .news_tab .tab_list .list li.active span {
  color: #00499e;
  border-bottom: 3px solid #00499e;
  padding-bottom: 17px;
}

.news_content .news_box .news .news_tab .tab_list .list li.active span:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #00499e;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.news_content .news_box .news .news_tab .more a {
  font-size: 14px;
  color: #999;
}

.news_content .news_box .news .news_list {
  margin-top: 20px;
}

.news_content .news_box .news .news_list .list {
  width: 100%;
  display: none;
}

.news_content .news_box .news .news_list .list li {
  margin-bottom: 20px;
}

/* .news_content .news_box .news .news_list .list li:first-child {
  padding-bottom: 20px;
  border-bottom: 1px solid #d4dce2;
}

.news_content .news_box .news .news_list .list li:first-child h2 {
  font-size: 22px;
  color: #00499e;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.news_content .news_box .news .news_list .list li:first-child p {
  font-size: 14px;
  color: #666;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 10px;
}

.news_content .news_box .news .news_list .list li:first-child .time {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news_content .news_box .news .news_list .list li:first-child .time span {
  font-size: 14px;
  color: #999;
}

.news_content .news_box .news .news_list .list li:first-child .time span .icon {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

.news_content .news_box .news .news_list .list li:first-child .time i {
  font-size: 12px;
  color: #00499e;
  line-height: 22px;
  border: 1px solid #00499e;
  border-radius: 4px;
  padding: 0 10px;
  display: inline-block;
} */

.news_content .news_box .news .news_list .list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news_content .news_box .news .news_list .list li .text {
  width: 80%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.news_content .news_box .news .news_list .list li .text p {
  font-size: 16px;
  color: #333;
  padding-left: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  position: relative;
}

.news_content .news_box .news .news_list .list li .text p::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #61686d;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.news_content .news_box .news .news_list .list li .text .icon {
  width: 22px;
  height: 16px;
  margin-left: 5px;
}

.news_content .news_box .news .news_list .list li span {
  font-size: 12px;
  color: #999;
}

.index_product {
  width: 100%;
  max-width: 1250px;
  margin: 10px auto 0;
}

.index_product .product_list {
  margin-top: 20px;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
}

.index_product .product_list li {
  width: 295px;
  display: inline-block;
  margin: 0 10px;
  position: relative;
}

.index_product .product_list li .pic {
  width: 100%;
  height: 100%;
}

.index_product .product_list li .pic img {
  width: 100%;
}

.index_product .product_list li .text {
  width: 100%;
  height: 42px;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
}

.index_product .product_list li .text span {
  font-size: 18px;
  color: #fff;
  line-height: 42px;
  display: inline-block;
}

.index_product .product_list .slick-prev {
  width: 28px;
  height: 52px;
  background: url("/public/static/web/images/icon_prev.png") no-repeat center center;
  display: inline-block;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  text-indent: 1000px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}

.index_product .product_list .slick-next {
  width: 28px;
  height: 52px;
  background: url("/public/static/web/images/icon_next.png") no-repeat center center;
  display: inline-block;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  text-indent: 1000px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}

.index_file {
  width: 100%;
  max-width: 1250px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.index_file .file_box {
  width: 100%;
  max-width: 860px;
}

.index_file .link {
  width: 100%;
  max-width: 365px;
}

.index_file .link .item {
  margin-bottom: 20px;
}

.index_file .link .item img {
  width: 100%;
}

.index_box {
  width: 100%;
  max-width: 1250px;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.index_box .item {
  width: 100%;
  max-width: 610px;
}

.index_content {
  padding: 20px 0;
  background: linear-gradient(to bottom, #e8f2fa 0%, #fff 50%, #fff 100%);
}

.unit_content {
  width: 100%;
  padding-top: 20px;
}

.interact_content {
  padding: 20px 0;
  background: linear-gradient(to bottom, #e8f2fa 0%, #fff 50%, #fff 100%);
}

.content {
  width: 100%;
  max-width: 1250px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.content .box_content {
  width: 100%;
  max-width: 1000px;
}

.content .box_content .tit {
  width: 100%;
  margin-top: 20px;
  position: relative;
}
.content .box_content .tit::before {
  content: '';
  width: 10px;
  height: 30px;
  background: #00499e;
  position: absolute;
}
.content .box_content .tit span {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  line-height: 30px;
  padding-left: 25px;
  display: block;
}

.content .box_content .pic {
  width: 100%;
  margin-top: 20px;
}

.content .box_content .pic img {
  width: 100%;
}

.content .box_content .list {
  width: 100%;
  margin-top: 20px;
  overflow-x: auto;
  position: relative;
}

.content .box_content .list .table {
  width: 100%;
  display: table;
  border-collapse: collapse;
  overflow: hidden;
}

.content .box_content .list .table .row {
  display: table-row;
}

.content .box_content .list .table .row.header {
  background: transparent !important;
}

.content .box_content .list .table .row.header .cell {
  font-size: 14px;
  color: #999;
  text-align: center;
  text-wrap: nowrap;
}

.content .box_content .list .table .row .cell {
  line-height: 48px;
  display: table-cell;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 16px;
  color: #333;
  text-align: center;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

.content .box_content .list .table .row .cell a {
  width: 100%;
  max-width: 150px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #00499e;
  display: block;
  margin: 0 auto;
}

.content .box_content .list .table .row .cell span {
  line-height: 30px;
  color: #fff;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 5px;
  display: inline-block;
  text-wrap: nowrap;
}

.content .box_content .list .table .row:nth-child(odd) {
  background: #fff;
}

.content .box_content .list .table .row:nth-child(even) {
  background: #f7f9fc;
}

.content .detail_content {
  width: 100%;
  max-width: 1000px;
  background: #fff;
  padding: 30px 30px;
  box-sizing: border-box;
}

.content .detail_content .detail_title {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.content .detail_content .detail_title h2 {
  font-size: 28px;
  color: #00499e;
  line-height: 2;
  margin-bottom: 10px;
}

.content .detail_content .detail_title span {
  font-size: 12px;
  color: #999;
}

.content .detail_content .detail_title .icon {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

.content .detail_content .text {
  margin-top: 30px;
}

.content .detail_content .text p {
  font-size: 16px;
  color: #333;
  line-height: 2;
}

.content .detail_content .text img {
  width: 100%;
}

.content .work_content {
  width: calc(100% - 220px);
}

.content .work_content .list {
  width: 100%;
  margin-top: 20px;
}

.content .work_content .list li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px dashed #e6e6e6;
  margin-bottom: 20px;
}

.content .work_content .list li .text {
  width: 85%;
}

.content .work_content .list li .text h2 {
  font-size: 18px;
  color: #333;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  overflow: hidden;
  margin-bottom: 10px;
}

.content .work_content .list li .text p {
  font-size: 14px;
  color: #666;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  overflow: hidden;
}

.content .work_content .list li .time {
  width: 55px;
  border: 1px solid #4c7fbb;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.content .work_content .list li .time p {
  width: 100%;
  font-size: 18px;
  color: #fff;
  background: #4c7fbb;
  line-height: 28px;
  border-radius: 5px 5px 0 0;
}

.content .work_content .list li .time span {
  width: 100%;
  font-size: 12px;
  color: #00499e;
  background: #fff;
  line-height: 24px;
  display: block;
  border-radius: 0 0 5px 5px;
}

.publicity_list {
  width: 100%;
  padding: 20px 20px;
  box-sizing: border-box;
  background: #fff;
}
.publicity_list li {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px dashed #e6e6e6;
  margin-bottom: 20px;
}

.publicity_list li .text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.publicity_list li .text .icon {
  width: 24px;
  height: 30px;
  margin-right: 10px;
}

.publicity_list li .text .icon img {
  width: 100%;
}

.publicity_list li .text .txt {
  width: calc(100% - 34px);
}

.publicity_list li .text .txt h2 {
  font-size: 18px;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  text-wrap: nowrap;
}

.publicity_list li .text .txt p {
  font-size: 14px;
  color: #666;
  text-overflow: ellipsis;
  overflow: hidden;
  text-wrap: nowrap;
  margin-top: 10px;
}

.publicity_list li .time {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.publicity_list li .time span {
  font-size: 12px;
  color: #999;
}

.publicity_list li .time span .icon {
  width: 12px;
  height: 12px;
  margin-right: 10px;
}

.publicity_list li .time em {
  font-size: 14px;
  color: #00499e;
  line-height: 26px;
  border: 1px solid #00499e;
  border-radius: 20px;
  padding: 0 20px;
  box-sizing: border-box;
  display: inline-block;
}

.content .work_content .system_list {
  width: 100%;
  padding: 20px 20px;
  box-sizing: border-box;
  background: #fff;
}

.content .work_content .system_list li {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  padding-bottom: 20px;
  border-bottom: 1px dashed #e6e6e6;
  margin-bottom: 20px;
}

.content .work_content .system_list li .pic {
  width: 160px;
  /* height: 160px; */
  margin-right: 10px;
}

.content .work_content .system_list li .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content .work_content .system_list li .text {
  width: calc(100% - 170px);
}

.content .work_content .system_list li .text h2 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

.content .work_content .system_list li .text p {
  font-size: 14px;
  color: #666;
  line-height: 2;
  margin-top: 10px;
}

.content .work_content .system_list li .text .standard {
  margin-top: 10px;
  background: #f5f8fb;
  border: 1px solid #dbe5f1;
  border-radius: 5px;
  padding: 5px 10px;
  box-sizing: border-box;
}

.content .work_content .system_list li .text .standard p {
  font-size: 14px;
  color: #00499e;
  margin-top: 0;
}

.content .work_content .system_list li .text .standard p span {
  color: #333;
  padding: 0 10px;
  position: relative;
}

.content .work_content .system_list li .text .standard p span:not(:last-child):after {
  content: '';
  width: 1px;
  height: 10px;
  background: #e3e5e6;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.form_box {
  width: 100%;
  padding: 30px 20px;
  box-sizing: border-box;
  background: #fff;
}

.form_box .form {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.form_box .form .form_item {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.form_box .form .form_item span {
  width: 70px;
  font-size: 16px;
  color: #333;
  text-wrap: nowrap;
  margin-top: 10px;
  margin-right: 10px;
}

.form_box .form .form_item label {
  font-size: 16px;
  color: #333;
  margin-top: 5px;
  margin-right: 10px;
  vertical-align: middle;
}

.form_box .form .form_item input {
  width: 100%;
  height: 40px;
  border: 1px solid #e6e6e6;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 14px;
  color: #333;
  border-radius: 5px;
  outline: none;
}

.form_box .form .form_item input::placeholder {
  color: #999;
}

.form_box .form .form_item input[type="radio"] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.form_box .form .form_item textarea {
  width: 100%;
  height: 120px;
  border: 1px solid #e6e6e6;
  padding: 10px 10px;
  box-sizing: border-box;
  font-size: 14px;
  color: #333;
  line-height: 2;
  border-radius: 5px;
  outline: none;
}

.form_box .form .form_item textarea::placeholder {
  color: #999;
}

.form_box .form .btn {
  margin-top: 20px;
  text-align: center;
}

.form_box .form .btn button {
  width: 188px;
  height: 50px;
  border-radius: 30px;
  background: #00499e;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
}

.unit_box {
  margin: 20px 0;
}

.unit_box .info_box {
  padding: 30px 0;
  background: url("/public/static/web/images/unit_bg.png");
}

.unit_box .info_box .info {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.unit_box .info_box .info .pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 10px;
}

.unit_box .info_box .info .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unit_box .info_box .info .text {
  width: calc(100% - 110px);
}

.unit_box .info_box .info .text h2 {
  font-size: 28px;
  color: #333;
}

.unit_box .info_box .info .text p {
  margin-top: 20px;
}

.unit_box .info_box .info .text p span {
  font-size: 14px;
  color: #666;
  display: inline-block;
  margin: 5px 10px;
}

.unit_box .info_box .info .text p span .icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}

.unit_box .introduce_box {
  width: 100%;
  max-width: 1250px;
  margin: 40px auto 0;
}

.unit_box .introduce_box .introduce {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.unit_box .introduce_box .introduce .text {
  width: 100%;
  max-width: 660px;
}

.unit_box .introduce_box .introduce .text p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  margin-bottom: 20px;
}

.unit_box .introduce_box .introduce .pic {
  width: 100%;
  max-width: 540px;
  margin-left: 20px;
}

.unit_box .introduce_box .introduce .pic img {
  width: 100%;
}

.unit_box .index_product {
  margin: 30px auto 0;
}

.interact {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
}

.pagering {
  text-align: center;
  padding: 10px 0 50px;
  margin-top: 30px;
}

.pagering li {
  display: inline-block;
  margin: 0 3px;
}

.pagering a,
.pagering span {
  display: block;
  line-height: 32px;
  color: #333;
  width: 32px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  text-align: center;
  box-sizing: border-box;
  font-size: 16px;
}

.pagering a:hover {
  background: #00499e;
  color: #fff;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.pagering .disabled a,
.pagering .disabled span {
  color: #aaa;
}

.pagering .active a,
.pagering .active span {
  background: #00499e;
  color: #fff;
}

.pages {
  margin-top: 30px;
}

.pages .item {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.pages .item span {
  font-size: 14px;
  color: #333;
  line-height: 30px;
  background: #ededed;
  border-radius: 5px;
  display: inline-block;
  padding: 0 10px;
  margin-right: 10px;
  text-wrap: nowrap;
  position: relative;
}

.pages .item span::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #ededed;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.pages .item a {
  font-size: 14px;
  color: #333;
  line-height: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.footer_box {
  width: 100%;
  background: #00499e;
}

.footer_box .footer {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 30px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer_box .footer .title {
  padding-bottom: 20px;
  border-bottom: 1px solid #1a5ca8;
}

.footer_box .footer .title span {
  font-size: 18px;
  color: #fff;
  padding-bottom: 16px;
  border-bottom: 1px solid #0096d7;
}

.footer_box .footer .info {
  width: 100%;
  max-width: 480px;
}

.footer_box .footer .info .text {
  margin-top: 20px;
}

.footer_box .footer .info .text p {
  font-size: 14px;
  color: #fff;
  line-height: 2;
}

.footer_box .footer .info .text .icon {
  width: 13px;
  height: 13px;
}

.footer_box .footer .link {
  width: 100%;
  max-width: 480px;
}

.footer_box .footer .link .list {
  margin-top: 20px;
}

.footer_box .footer .link .list li {
  width: 100%;
  max-width: 200px;
  display: inline-block;
  margin: 10px 10px;
}

.footer_box .footer .link .list li a {
  font-size: 14px;
  color: #fff;
}

.footer_box .copyright {
  padding: 20px 20px;
  box-sizing: border-box;
  text-align: center;
  margin: 0 20px;
}

.footer_box .copyright p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 2;
}

@media screen and (max-width: 1250px) {
  .index_file {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .index_file .file_box {
    margin-right: 10px;
  }
  .index_file .link {
    margin-left: 10px;
  }
  .crumbs {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .content {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .index_box {
    padding: 0 20px;
    box-sizing: border-box;
    flex-wrap: wrap;
  }
  .index_box .item {
    max-width: 100%;
    margin-top: 20px;
  }
  .unit_box .introduce_box .introduce {
    margin: 0 20px;
  }
}

@media screen and (max-width: 1199px) {
  .pc {
    display: none !important;
  }
  .header_box {
    display: none;
  }
  .m_header {
    display: block;
  }
  .banner {
    margin-top: 64px;
  }
  .unit_content {
    margin-top: 64px;
  }
  .interact_content {
    margin-top: 64px;
  }
  .news_content {
    margin-top: 24px;
  }
  .news_content .news_box .carousel {
    max-width: 100%;
  }
  .news_content .news_box .news {
    max-width: 100%;
    margin-top: 20px;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 1120px) {
  .unit_box .introduce_box .introduce {
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .unit_box .introduce_box .introduce .text {
    max-width: 100%;
  }
  .unit_box .introduce_box .introduce .text p {
    font-size: 16px;
    color: #333;
    line-height: 2;
    margin-bottom: 20px;
  }
  .unit_box .introduce_box .introduce .pic {
    margin: 0 auto;
  }
}

@media screen and (max-width: 1060px) {
  .index_file {
    flex-wrap: wrap;
  }
  .index_file .file_box {
    max-width: 100%;
    margin-right: 0;
  }
  .index_file .link {
    margin-top: 20px;
    max-width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 929px) {
  .footer_box .footer {
    flex-wrap: wrap;
  }
  .footer_box .footer .title span {
    font-size: 16px;
  }
  .footer_box .footer .info {
    max-width: 100%;
  }
  .footer_box .footer .link {
    max-width: 100%;
  }
}

@media screen and (max-width: 850px) {
  .accordion {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .accordion .tit span {
    font-size: 20px;
  }
  .accordion .list li span {
    font-size: 14px;
  }
  .content {
    flex-wrap: wrap;
  }
  .content .box_content {
    max-width: 100%;
  }
  .content .box_content .list .table .row .cell {
    font-size: 14px;
  }
  .content .box_content .list .table .row .cell a {
    max-width: 90px;
  }
  .content .detail_content {
    max-width: 100%;
    padding: 30px 20px;
  }
  .content .detail_content .detail_title h2 {
    font-size: 18px;
  }
  .content .detail_content .text p {
    font-size: 14px;
  }
  .content .work_content {
    width: 100%;
  }
  .content .work_content .list li .text h2 {
    font-size: 16px;
  }
  .content .work_content .list li .time p {
    font-size: 16px;
  }
  .publicity_list li .text .txt h2 {
    font-size: 16px;
  }
  .content .work_content .system_list li {
    display: block;
  }
  .content .work_content .system_list li .pic {
    margin: 0 auto;
  }
  .content .work_content .system_list li .text {
    width: 100%;
    margin-top: 20px;
  }
  .content .work_content .system_list li .text h2 {
    font-size: 16px;
  }
  .form_box .form {
    max-width: 100%;
  }
  .form_box .form .form_item span {
    font-size: 14px;
  }
  .form_box .form .form_item label {
    font-size: 14px;
  }
  .form_box .form .btn button {
    font-size: 16px;
  }
  .unit_box .info_box {
    padding: 10px 0;
  }
  .unit_box .info_box .info .text h2 {
    font-size: 16px;
  }
  .unit_box .info_box .info .text p {
    margin-top: 5px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  .index_title .title h2 {
    font-size: 18px;
  }
  .index_title2 h2 {
    font-size: 18px;
  }
  .news_content .news_box .carousel li .text p {
    font-size: 14px;
  }
  .news_content .news_box .news .news_tab .tab_list .list li span {
    font-size: 18px;
  }
  /* .news_content .news_box .news .news_list .list li:first-child h2 {
    font-size: 18px;
  } */
  .news_content .news_box .news .news_list .list li .text p {
    font-size: 14px;
  }
}
