* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  padding-top: 170px;
  overflow-x: hidden;
}
p {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
a:hover {
  text-decoration: none;
}
a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
img {
  display: inline-block;
}
.over1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.over2 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.over3 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0 10px;
}
.container::before {
  display: none;
}
.container::after {
  display: none;
}
.bg {
  background: #004098;
}
.color {
  background: #efc000;
}
.font_weight500 {
  font-weight: 500;
}
.text_indent {
  text-indent: 2em;
}
.navbar-form {
  padding: 0;
  margin: 0;
  border-radius: 45px;
  overflow: hidden;
  display: flex;
}
.navbar-form .form-group {
  margin: 0;
}
.navbar-form .form-group .form-control {
  border-radius: 0;
  border: 0;
  height: 100%;
  min-width: 260px;
}
.navbar-form .btn_submit {
  outline: none;
  border: 0;
  height: 42px;
  padding: 0 10px;
  color: #Fff;
}
.navbar-form .btn_submit .glyphicon {
  padding-right: 3px;
}
.navbar-form .btn_submit:hover {
  color: #333;
}
.link_search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 45px;
  overflow: hidden;
  line-height: 40px;
}
.link_search .text {
  width: 200px;
  height: 40px;
  background: #FFf;
  padding: 0 16px;
  font-size: 12px;
  color: #cdcdcd;
}
.link_search .search_btn {
  width: 78px;
  height: 40px;
  background: #efc000;
  color: #fff;
  text-align: center;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  transition: 0.3s ease;
}
.header .logo_box .logo_link {
  width: auto;
}
.header .logo_box .menu {
  display: none;
  width: 38px;
  height: 60px;
  position: relative;
  cursor: pointer;
}
.header .logo_box .menu i {
  position: absolute;
  background: #004098;
  width: 100%;
  left: 0;
  top: 50%;
  height: 3px;
}
.header .logo_box .menu i::before {
  content: '';
  transition: 0.3s;
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #004098;
}
.header .logo_box .menu i::after {
  content: '';
  transition: 0.3s;
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #004098;
  transform: translateX();
}
.header .logo_box .menu_open i {
  background: none;
}
.header .logo_box .menu_open i::before {
  top: 0;
  transform: rotate(45deg);
}
.header .logo_box .menu_open i::after {
  top: 0;
  transform: rotate(-45deg);
}
.header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .content .nav_bar {
  flex: 1;
  height: 68px;
  line-height: 68px;
  display: flex;
}
.header .content .nav_bar .link {
  height: 100%;
  flex: 1;
  text-align: center;
}
.header .content .nav_bar .link a {
  color: #Fff;
  font-size: 16px;
  position: relative;
}
.header .content .nav_bar .link a::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: #efc000;
  transition: 0.3s ease;
}
.header .content .nav_bar .link a:hover::before {
  width: 100%;
  left: 0;
}
.header .content .nav_bar .active {
  background: #efc000;
}
.header .content .search_i {
  display: none;
}
.header_open {
  transform: translateX(-120px);
}
.phone_wrap {
  position: fixed;
  top: 0;
  right: -120px;
  width: 120px;
  height: 100%;
  z-index: 10;
  transition: 0.4s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.phone_wrap .nav_bar .link {
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.phone_wrap .nav_bar .link a {
  color: #333;
  font-size: 14px;
}
.phone_wrap .nav_bar .link a .glyphicon {
  padding-right: 3px;
}
.phone_wrap .nav_bar .active {
  background: #004098;
}
.phone_wrap .nav_bar .active a {
  color: #fff;
}
.open_phone_bar {
  right: 0;
}
.common_title {
  position: relative;
  height: 35px;
  margin-bottom: 20px;
}
.common_title .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  border-bottom: 1px solid #004098;
}
.common_title .content .left {
  display: flex;
  align-items: center;
}
.common_title .content .left i {
  color: #efc000;
}
.common_title .content .left .title {
  padding-left: 10px;
  margin: 0;
  color: #fff;
  font-size: 18px;
}
.common_title .content .more {
  flex: none;
}
.common_title .content .more a {
  color: #999;
  font-size: 14px;
}
.common_title .content .more a:hover {
  color: #004098;
}
.common_title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 35px;
  border-right: 35px solid rgba(0, 0, 0, 0);
  border-bottom: 35px solid #004098;
}
._line {
  width: 64px;
  height: 2px;
  background: #fff;
  overflow: hidden;
  margin: 20px 0;
}
._line .fill {
  width: 20%;
  height: 2px;
  background: #efc000;
  position: relative;
  left: 0;
  animation: move 5s linear infinite;
}
@keyframes move {
  0% {
    left: 0;
  }
  100% {
    left: 64px;
  }
}
.footer {
  position: relative;
}
.footer .content {
  padding: 40px 0;
  border-bottom: 1px solid #999;
}
.footer .content .list .item h3 {
  color: #fff;
  font-size: 16px;
}
.footer .content .list .item .f_nav_list {
  display: flex;
  flex-wrap: wrap;
}
.footer .content .list .item .f_nav_list a {
  width: 40%;
  padding: 6px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
}
.footer .content .list .item .f_nav_list a:hover {
  color: #efc000;
}
.footer .content .list .item .contact_us_list li {
  padding: 6px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
}
.footer .content .list .item .contact_us_list li .left_i {
  display: inline-block;
  width: 20px;
  color: #efc000;
}
.footer .content .list .item .contact_us_list li .right_i {
  display: inline-block;
  padding-left: 15px;
  color: #efc000;
  visibility: hidden;
  transition: 0.3s;
}
.footer .content .list .item .contact_us_list li:hover {
  color: #efc000;
}
.footer .content .list .item .contact_us_list li:hover .right_i {
  visibility: initial;
}
.footer .content .list .item .code_box {
  width: 205px;
  height: 104px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-repeat: no-repeat;
}
.footer .content .list .item .code_box img {
  width: 40%;
}
.footer .content .list .item .code_box .c_text {
  flex: 1;
}
.footer .content .list .item .code_box .c_text .lead {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  text-align: center;
  color: #fff;
}
.footer .copyright a {
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
.footer .copyright a:hover {
  color: #efc000;
}
.common_banner .swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.common_banner .swiper-slide .shadow_box {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 730px;
  height: 190px;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 0;
  border-radius: 8px;
  transition: 0.6s ease-out;
}
.common_banner .swiper-slide .shadow_box .h2_title {
  color: #c3c2ae;
  font-weight: 700;
}
.common_banner .swiper-slide .shadow_box .h3_title {
  color: #fff;
  letter-spacing: 4px;
  font-weight: 700;
}
.common_banner .swiper-slide .shadow_box_active {
  top: 50%;
}
.common_banner .swiper-pagination-bullet {
  width: 24px;
  height: 5px;
  border-radius: 0;
  background: #004098;
  opacity: 1;
}
.common_banner .swiper-pagination-bullet-active {
  background: #efc000;
}
.path {
  margin: 0;
  padding: 0;
  background: none;
}
.path a {
  width: auto;
}
.nav_page {
  text-align: center;
}
.pagination {
  padding: 30px 0;
}
.pagination li a {
  width: auto;
}
.download {
  text-align: center;
  padding: 30px 0;
}
.download a {
  width: auto;
  padding: 6px 12px;
  color: #fff;
  background: #004098;
  border-radius: 4px;
}
.map_lead {
  font-size: 16px;
  line-height: 26px;
  color: #000;
  padding: 6px 0;
}
.blogroll {
  position: relative;
  z-index: 2;
}
.blogroll h3 {
  color: #004098;
  margin: 0;
  padding: 0;
  padding-right: 20px;
}
.blogroll .wrap {
  padding: 30px 0;
  display: flex;
  align-items: center;
}
.blogroll .wrap .dropdown {
  margin-right: 30px;
}
.blogroll .wrap .dropdown .dropdown-menu {
  padding: 6px 0;
}
.blogroll .wrap .dropdown .dropdown-menu li a {
  padding: 5px 8px;
}
.blogroll .wrap .dropdown .dropdown-menu li:hover a {
  background: #004098;
  color: #fff;
}
.pages .container {
  border-top: 1px solid #e7e7e7;
  padding: 35px 0;
}
.pages .container li a {
  color: #000;
  font-size: 14px;
  padding: 8px 0;
  font-weight: 500;
}
.pages .container .active a {
  color: #004098;
}
.index .list {
  padding: 40px 0;
}
.index .list .box {
  margin-bottom: 30px;
}
.index .list .work_trend .item {
  position: relative;
}
.index .list .work_trend .item img {
  width: 100%;
  height: 292px;
  object-fit: cover;
}
.index .list .work_trend .item .bottom_text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  bottom: -36px;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.6s ease-out;
}
.index .list .work_trend .item .bottom_text .time {
  flex: none;
}
.index .list .work_trend .item .bottom_text_active {
  bottom: 0;
}
.index .list .work_trend .comm_btn {
  background: none;
  width: 38px;
  height: 38px;
}
.index .list .work_trend .comm_btn i {
  font-size: 38px;
  color: #fff;
}
.index .list .work_trend .comm_btn:hover i {
  color: #004098;
}
.index .list .announcement_list li {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
}
.index .list .announcement_list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  color: #111111;
  font-size: 16px;
}
.index .list .announcement_list li a i {
  flex: none;
  font-size: 6px;
  transform: scale(0.3);
  color: #666;
}
.index .list .announcement_list li a .text {
  flex: 1;
  padding: 0 8px;
}
.index .list .announcement_list li a .time {
  flex: none;
}
.index .list .announcement_list li a:hover {
  color: #004098;
}
.index .list .about_us {
  display: flex;
  justify-content: space-between;
}
.index .list .about_us .cover {
  width: 270px;
  margin-right: 22px;
  overflow: hidden;
  flex: none;
}
.index .list .about_us .cover img {
  width: 100%;
  transition: 0.4s ease-out;
}
.index .list .about_us .cover img:hover {
  transform: scale(1.1);
}
.index .list .about_us .r_content {
  flex: 1;
}
.index .list .about_us p {
  font-size: 14px;
  color: #000;
  line-height: 28px;
  text-indent: 2em;
  margin-bottom: 5px;
  /*overflow: hidden;*/
  /*text-overflow: ellipsis;*/
  /*display: -webkit-box;*/
  /*-webkit-line-clamp: 5;*/
  /*-webkit-box-orient: vertical;*/
  font-weight: 500;
}
.index .case_show .button_arrow {
  background: none;
  width: 35px;
  height: 35px;
}
.index .case_show .button_arrow i {
  font-size: 40px;
  color: #fff;
}
.index .case_show .button_arrow:hover i {
  color: #004098;
}
.index .case_show .link {
  position: relative;
}
.index .case_show .link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #004098;
  border-radius: 8px;
  transition: 1.5s ease;
}
.index .case_show .link .cover {
  overflow: hidden;
}
.index .case_show .link .cover img {
  transition: 0.5s ease-out;
  width: 265px;
    height: 198px;
    object-fit: cover;
}
.index .case_show .link .text {
  font-size: 14px;
  text-align: center;
  color: #4c4c4c;
}
.index .case_show .link:hover::before {
  width: 100%;
}
.index .case_show .link:hover .cover img {
  transform: scale(1.1);
}
.index .case_show .link:hover .text {
  color: #004098;
}
.index .swiper .swiper-button-next:after,
.index .swiper .swiper-button-prev:after {
  display: none;
}
.case_show_details .common_content {
  padding: 60px 0;
}
.case_show_details .common_content h2 {
  margin-top: 40px;
  text-align: center;
}
.case_show_details .common_content h2 strong {
  line-height: 40px;
}
.case_show_details .common_content .time_box {
  text-align: center;
  font-size: 16px;
  color: #a3a2a2;
  padding: 16px 0;
  border-bottom: 1px solid #e7e7e7;
}
.case_show_details .common_content .time_box span {
  padding: 0 30px;
}
.case_show_details .common_content .cover {
  text-align: center;
  margin: 30px auto;
}
.case_show_details .common_content .cover img {
  margin: auto;
}
.case_show_details .common_content .lead {
  font-size: 16px;
  color: #616161;
  line-height: 36px;
  font-weight: 500;
}
.about_us_details .common_content h2 {
  padding-bottom: 30px;
}
.about_us_details .common_content .cover_list {
  padding: 30px 0;
}
.about_us_details .common_content .cover_list img {
  margin-bottom: 20px;
}
.work_trend_list .common_content {
  padding: 25px 0;
}
.work_trend_list .common_content .list .li {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.work_trend_list .common_content .list .li .left {
  width: 215px;
  overflow: hidden;
}
.work_trend_list .common_content .list .li .left img {
  transition: 0.3s;
  width: 100%;
}
.work_trend_list .common_content .list .li .left img:hover {
  transform: scale(1.1);
}
.work_trend_list .common_content .list .li .item_body {
  /*padding-left: 24px;*/
  
  flex: 1;
}
.work_trend_list .common_content .list .li .item_body .item_head {
  display: flex;
  justify-content: space-between;
}
.work_trend_list .common_content .list .li .item_body .item_head .title a {
  font-size: 18px;
  line-height: 28px;
  color: #000;
  flex: 1;
}
.work_trend_list .common_content .list .li .item_body .item_head .title:hover a {
  color: #004098;
}
.work_trend_list .common_content .list .li .item_body .item_head .download {
  flex: none;
  padding: 0;
}
.work_trend_list .common_content .list .li .item_body .item_head .download a {
  height: auto;
}
.work_trend_list .common_content .list .li .item_body .item_content .lead {
  font-size: 14px;
  line-height: 24px;
  color: #9c9b9b;
  margin-bottom: 6px;
}
.contact_us .common_content {
  padding: 30px 0;
}
.contact_us .common_content .contact_us_list li {
  padding: 6px;
  margin-bottom: 8px;
  color: #000;
  font-size: 18px;
}
.contact_us .common_content .contact_us_list li .left_i {
  display: inline-block;
  width: 30px;
  color: #efc000;
}
.contact_us .common_content .contact_us_list li a {
  width: auto;
}
.contact_us .common_content .contact_us_list li:hover {
  color: #efc000;
}
.human_resource .common_content {
  padding: 30px 0;
}
.human_resource .common_content .table thead {
  background: #004098;
}
.human_resource .common_content .table thead th {
  text-align: center;
  font-size: 14px;
  color: #fff;
  padding: 12px 0;
}
.human_resource .common_content .table tbody tr:nth-of-type(odd) {
  background: none;
}
.human_resource .common_content .table tbody tr:nth-of-type(even) {
  background: rgba(239, 246, 255, 0.7);
}
.human_resource .common_content .table tbody td {
  text-align: center;
  padding: 25px 5px;
  white-space: pre-line;
  font-size: 14px;
  line-height: 26px;
  color: #525252;
}
.human_resource .common_content .table tbody th {
  text-align: center;
  padding: 25px 5px;
  color: #004098;
}
.human_resource .common_content .table tbody td:nth-child(3) {
  width: 420px;
  text-align: left;
  padding: 0;
  padding-bottom: 20px;
}
@-moz-document url-prefix() {
  fieldset {
    display: table-cell;
  }
}
.search_box {
  display: flex;
  justify-content: flex-end;
  padding-top: 30px;
}
.empty_box {
  text-align: center;
  padding: 30px 0;
}
.empty_box img {
  max-width: 350px;
  width: 50%;
  border-radius: 8px;
}
.empty_box .lead {
  margin: 16px 0;
  font-size: 14px;
  line-height: 24px;
}
.search_details .common_content {
  padding: 30px 0;
}
.search_details .list-group .list-group-item {
  padding: 16px 15px;
}
.case_list .common_content {
  padding: 30px 0;
}
.case_list .list .cover {
  overflow: hidden;
  height: 260px;
}
.case_list .list .cover img {
  transition: 0.4s ease-out;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.case_list .list .lead {
  color: #000;
  margin-top: 10px;
  text-align: center;
}
.case_list .list a:hover img {
  transform: scale(1.1);
}
.case_list .list a:hover .lead {
  color: #004098;
}
