/* #region  初始化 */
* {
  margin: 0;
  padding: 0;
}

* {
  font-family: text;
}

a {
  text-decoration: none;
  color: #000000;
  display: block;
}

div,
a {
  box-sizing: border-box;
}

input {
  border: none;
  outline: none;
}

li {
  list-style: none;
}

.clearfloat {
  zoom: 1;
}

.clearfloat:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}

.flex_row {
  display: flex;
}

.flex_col {
  display: flex;
  flex-direction: column;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.position_center-x {
  left: 50%;
  transform: translate(-50%);
}

.position_center-y {
  top: 50%;
  transform: translateY(-50%);
}

.cursor {
  cursor: pointer;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  display: block;

  /* image-rendering: -moz-crisp-edges;  
  image-rendering: -o-crisp-edges;     
  image-rendering: -webkit-optimize-contrast; 
  image-rendering: crisp-edges; 
  -ms-interpolation-mode: nearest-neighbor; */
}

.textone {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.texttwo {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* #endregion */

/* #region  首页 */
.width {
  width: 1200px;
  margin: 0 auto;
}

.header {
  display: flex;
  align-items: center;
  height: 90px;
}

.header_txt {
  margin-left: 20px;
  padding-left: 20px;
  font-size: 14px;
  color: #e71218;
  line-height: 1.429;
  position: relative;
}

.header_txt::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  border-left: 1px solid #eaeaea;
}

.header_txt span {
  color: #666666;
}

.header_phone {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-size: 24px;
  color: #e71218;
}

.header_phone img {
  margin-right: 10px;
}

.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 50px;
  position: relative;
}

.nav ul {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav li {
  height: 50px;
  margin-right: 50px;
}

.nav_link {
  height: 100%;
  font-size: 16px;
  color: #666666;
  display: flex;
  align-items: center;
  transition: .1s;
  position: relative;
}

.nav_link:hover,
.nav_active {
  color: #e71218;
}

.nav_link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: none;
  transform: translateX(-50%);
  transition: .2s;
}

.nav_link:hover::after,
.nav_active::after {
  background: #e71218;
  width: 100%;
}

.nav_select {
  position: absolute;
  left: 0;
  top: 100%;
  background: rgba(38, 38, 38, .8);
  z-index: 50;
  width: 100%;
  display: none;
}

.nav_select div {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 122px 60px 122px;
}

.nav_select a {
  width: 200px;
  height: 56px;
  margin-right: 52px;
  font-size: 16px;
  color: #ffffff;
  border-bottom: 1px solid #fff;
  line-height: 56px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 20px;
  transition: .1s;
}

.nav_select a:nth-of-type(4n+4) {
  margin-right: 0;
}

.nav_select .nav_active2,
.nav_select a:hover {
  color: #e71218;
  border-color: #e71218;
}

.search {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cacaca;
  width: 240px;
  height: 40px;
}

.search input {
  flex: 1;
  overflow: hidden;
  height: 100%;
  padding-left: 10px;
  font-size: 16px;
  color: #333;
}

.search button {
  width: 37px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  transition: .1s;
}

.search button:hover {
  opacity: .85;
}

.search input::-webkit-input-placeholder {
  color: #999999;
}

.search input::-moz-placeholder {
  color: #999999;
}

.search input:-moz-placeholder {
  color: #999999;
}

.search input:-moz-placeholder {
  color: #999999;
}

.banner {
  min-width: 1200px;
}

.banner .swiper-slide {
  position: relative;
}

.banner .swiper-slide img {
  width: 100%;
}

.banner_txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}

.banner_txt .width div {
  font-size: 60px;
  letter-spacing: 5px;
}

.banner_txt .width span {
  display: block;
  font-size: 20px;
  margin-top: 22px;
  letter-spacing: 7px;
}

.banner_txt .width a {
  width: 280px;
  height: 60px;
  border-radius: 30px;
  background: #e71218;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: .2s;
  margin-top: 82px;
}

.banner_txt .width a:hover {
  background: rgba(231, 18, 24, .8);
}

.banner_txt .width div,
.banner_txt .width span,
.banner_txt .width a {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

.banner .swiper-slide-active .width div {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}

.banner .swiper-slide-active .width span {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

.banner .swiper-slide-active .width a {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.banner_prev,
.banner_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .8);
  z-index: 10;
  transition: .2s;
  cursor: pointer;
  outline: none;
}

.banner_prev {
  left: 0;
}

.banner_next {
  right: 0;
}

.banner_prev:hover,
.banner_next:hover {
  opacity: .85;
}

.index1 .width {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 82px 0 108px 0;
}

.index_title {
  position: absolute;
  left: -140px;
  top: 90px;
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  transform: rotate(90deg);
  transform-origin: left top;
  letter-spacing: 5px;
  padding-left: 40px;
}

.index_title::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 48px;
  background: #e71218;
  transform: translateY(-50%);
}

.index1_left {
  width: 626px;
}

.index_bt {
  display: flex;
  align-items: center;
  color: #e71218;
  font-size: 24px;
  font-weight: bold;
}

.index_bt img {
  margin-left: 15px;
}

.index1_text {
  font-size: 16px;
  color: #666666;
  line-height: 2;
  margin-top: 25px;
  margin-bottom: 46px;
}

.index1_right {
  width: 510px;
}

.index1_right img {
  width: 100%;
}

.index1_left ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: 5px;
}

.index1_left ul li {
  width: 110px;
  margin-right: 19px;
  margin-top: 35px;
}

.index1_left ul li:nth-of-type(5n+5) {
  margin-right: 0;
}

.index1_left ul a {
  font-size: 16px;
  color: #262626;
}

.index1_left ul img {
  width: 62px; 
}

.index1_left ul div {
  margin-top: 9px;
}

.index1_left ul a:hover {
  text-decoration: underline;
}

.index2 {
  background: #f5f5f5;
  padding: 46px 0;
}

.index2 ul {
  display: flex;
}

.index2 li {
  width: 33.33%;
  display: flex;
  align-items: flex-start;
  padding-right: 40px;
}

.index2_num {
  font-size: 40px;
  color: #e71218;
  font-weight: bold;
  margin-right: 15px;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}

.index2_num span {
  font-size: 22px;
  font-weight: normal;
}

.index2_txt {
  flex: 1;
  overflow: hidden;
}

.index2_txt span {
  display: block;
  font-size: 20px;
  color: #262626;
  line-height: 40px;
}

.index2_txt div {
  font-size: 16px;
  color: #666666;
  line-height: 2;
  margin-top: 15px;
}

.index3 .width {
  position: relative;
  padding: 85px 0 80px 0;
}

.index3 ul {
  display: flex;
  margin-top: 34px;
}

.index3 li {
  width: 384px;
  margin-right: 24px;
  box-shadow: 0px 7px 14px 0px rgba(0, 0, 0, 0.06);
}

.index3 li:nth-of-type(3n+3) {
  margin-right: 0;
}

.index3_bottom {
  padding: 18px 30px 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.index3_left {
  flex: 1;
  overflow: hidden;
}

.index3_left span {
  display: block;
  font-size: 20px;
  color: #262626;
}

.index3_left div {
  font-size: 14px;
  color: #666666;
  margin-top: 11px;
}

.index3_right {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #e71218;
  line-height: 1;
}

.index3_right div {
  position: relative;
}

.index3_right img {
  width: 6px;
  margin-left: 10px;
  transition: .2s;
}

.index3_right img:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.index3 ul a {
  transition: .2s;
}

.index3 ul a:hover {
  background: #e71218;
}

.index3 ul a:hover .index3_right,
.index3 ul a:hover .index3_left div,
.index3 ul a:hover .index3_left span {
  color: #fff;
}

.index3 ul a:hover .index3_right img:nth-of-type(1) {
  opacity: 0;
}

.index3 ul a:hover .index3_right img:nth-of-type(2) {
  opacity: 1;
}


.index_more {
  width: 180px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid #e71218;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto 0 auto;
  font-size: 16px;
  color: #e71218;
  transition: .2S;
}

.index_more:hover {
  background: #e71218;
  color: #fff;
}

.index4 {
  background: url(../images/index4_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.index4 .width {
  position: relative;
  padding: 90px 0;
  display: flex;
  justify-content: space-between;
}

.index4 .index_bt,
.index4 .index_title {
  color: #fff;
}

.index4_col {
  width: 588px;
  background: #fff;
  padding: 14px 0 38px 0;
}

.index4_top {
  width: 560px;
  height: 80px;
  margin: 0 auto;
  background-image: url(../images/index4_top1.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.index4_col:last-of-type .index4_top {
  background-image: url(../images/index4_top2.jpg);
}

.index4_col li a {
  border-bottom: 1px solid #eaeaea;
  padding: 18px 44px;
}

.index4_col li div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #999999;
}

.index4_col li span {
  color: #e71218;
  font-weight: bold;
}

.index4_col li h3 {
  font-size: 20px;
  color: #262626;
  font-weight: normal;
  display: block;
  margin-top: 8px;
  transition: .1s;
}

.index4_col li a:hover h3 {
  color: #e71218;
}

.index4 .index_more {
  margin-top: 40px;
}

.index5 .width {
  position: relative;
  padding: 85px 0 65px 0;
}

.index5 .index_more {
  margin-top: 60px;
}

.index5 ul {
  display: flex;
  margin-top: 22px;
}

.index5 li {
  width: 384px;
  margin-right: 24px;
}

.index5 li:last-of-type {
  margin-right: 0;
}

.index5 li div {
  overflow: hidden;
}

.index5 li img {
  width: 100%;
  transition: .5s;
}

.index5 li span {
  font-size: 14px;
  color: #999999;
  display: block;
  margin-top: 25px;
}

.index5 li h3 {
  font-size: 20px;
  color: #262626;
  line-height: 30px;
  height: 60px;
  font-weight: normal;
  margin-top: 9px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: .1s;
}

.index5 li a {
  border-bottom: 1px solid #cacaca;
  padding-bottom: 24px;
  transition: .1s;
}

.index5 li a:hover {
  border-color: #e71218;
}


.index5 li a:hover img {
  transform: scale(1.05);
}

.index5 li a:hover h3 {
  color: #e71218;
}

.index6 {
  background: #f5f5f5;
  position: relative;
  min-width: 1200px;
}

.index6_bg {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/index6_bg.jpg) no-repeat;
  background-size: cover;
  background-position: right center;
  z-index: 1;
}

.index6 .width {
  padding: 85px 0 90px 0;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}

.index6 .index_title,
.index6_left .index_bt {
  color: #fff;
}

.index6 .index_title::after {
  background: #fff;
}

.index6_t1 {
  font-size: 16px;
  color: rgba(255, 255, 255, .5);
  margin-top: 45px;
}

.index6_t2 {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  margin-top: 14px;
}

.index6_hr {
  width: 20px;
  height: 6px;
  background: #fff;
  margin-top: 42px;
}

.index6_t3 {
  font-size: 20px;
  margin-top: 12px;
  color: #fff;
}

.index6_left {
  width: 50%;
  padding-right: 50px;
}

.index6_right {
  width: 50%;
  padding-left: 90px;
}

.index6_form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
}

.index6_item {
  width: 100%;
}

.index6_wd1 {
  width: 196px;
}

.index6_wd2 {
  width: 290px;
}

.index6_title {
  font-size: 14px;
  color: #262626;
  font-style: italic;
}

.index6_title span {
  color: #e71218;
  margin-right: 3px;
}

.index6_item {
  margin-top: 18px;
  position: relative;
}

.index6_item select,
.index6_item input {
  width: 100%;
  height: 48px;
  border: 1px solid #cacaca;
  border-radius: 8px;
  background: none;
  padding: 0 28px;
  font-size: 14px;
  box-sizing: border-box;
  margin-top: 8px;
  display: block;
  outline: none;
}

.index6_item textarea {
  width: 100%;
  height: 124px;
  border: 1px solid #cacaca;
  border-radius: 8px;
  background: none;
  padding: 12px 28px;
  font-size: 14px;
  box-sizing: border-box;
  margin-top: 8px;
  outline: none;
  resize: none;
  display: block;
}

.index6_select {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  z-index: 20;
  border: 1px solid #cacaca;
  border-radius: 8px;
  padding: 10px 0;
  display: none;
}

.index6_select li {
  width: 100%;
  height: 40px;
  font-size: 14px;
  color: #333;
  line-height: 40px;
  text-align: center;
  transition: .1s;
  cursor: pointer;
}


.index6_select .index6_active,
.index6_select li:hover{
  color: #e71218;
}

.index6_btn {
  width: 180px;
  height: 60px;
  background: #e71218;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: none;
  cursor: pointer;
  outline: none;
  border-radius: 8px;
  transition: .2s;
  margin-top: 40px;
}

.index6_btn:hover {
  opacity: .85;
}

.index6_form input::-webkit-input-placeholder,
.index6_form textarea::-webkit-input-placeholder {
  color: #999999;
}

.index6_form input::-moz-placeholder,
.index6_form textarea::-moz-placeholder {
  color: #999999;
}

.index6_form input:-moz-placeholder,
.index6_form textarea:-moz-placeholder {
  color: #999999;
}

.index6_form input:-moz-placeholder,
.index6_form textarea:-moz-placeholder {
  color: #999999;
}


.footer_top ul a {
  font-size: 14px;
  color: #262626;
  transition: .1s;
}

.footer_top ul a:hover {
  color: #e71218;
  text-decoration: underline;
}

.footer_top {
  padding: 30px 0;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
}

.footer_top ul {
  width: 550px;
  margin-left: 122px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 12px;
}

.footer_top li {
  margin-right: 55px;
  margin-bottom: 12px;
}

.footer_ewm {
  margin-left: auto;
  width: 120px;
  box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.13);
  padding: 5px;
}

.footer_ewm img {
  width: 100%;
}

.footer_text {
  font-size: 12px;
  color: #999999;
  text-align: center;
  padding: 16px 0;
}

.footer_text a {
  display: inline;
  color: #999999;
}

/* #endregion */

/* #region  2招贤纳士 */
.banner2 {
  position: relative;
  min-width: 1200px;
}

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

.banner2_popup {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(50%);
  z-index: 10;
}

.banner2_txt {
  width: 600px;
  height: 160px;
  background: #e71218;
  color: #fff;
  padding: 0 55px 0 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner2_txt div {
  font-size: 36px;
}

.banner2_txt span {
  font-size: 14px;
  letter-spacing: 4px;
}

.se_tab {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  color: #666666;
  position: relative;
  z-index: 20;
}

.se_tab a {
  color: #666666;
  transition: .1s;
}

.se_tab img {
  margin: 0 8px;
}

.se_tab a:hover {
  color: #e71218;
}

.recruit_text {
  font-size: 16px;
  color: #666666;
  line-height: 2;
  width: 836px;
  margin-top: 50px;
}

.recruit_card {
  background: #f8f8f8;
  padding: 30px 60px 33px 60px;
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.recruit_card img {
  margin-right: 60px;
}

.recruit_ctxt {
  font-size: 16px;
  color: #262626;
  line-height: 2;
}

.recruit_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 80px;
}

.recruit_ul li {
  width: 580px;
  margin-top: 40px;
  box-sizing: border-box;
}

.recruit_ul li span {
  font-size: 24px;
  color: #e71218;
}

.recruit_ul li div {
  font-size: 16px;
  color: #666666;
  line-height: 2;
  margin-top: 25px;
}

.recruit_ul li a {
  border: 1px solid #eaeaea;
  padding: 30px 32px 32px 35px;
  transition: .1s;
  height: 100%;
}

.recruit_ul li a:hover {
  border-color: #e71218;
}

.se_main {
  border-bottom: 1px solid #e71218;
  padding-top: 62px;
}

/* #endregion */

/* #region  3经典案例/法规  详情 */
.case_main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 0 80px 0;
}

.case_tab {
  width: 270px;
}

.case_tab li {
  margin-bottom: 1px;
}

.case_tab a {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #262626;
  padding: 0 30px;
  background: #eaeaea;
  transition: .1s;
}

.case_tab img {
  display: none;
}

.case_tab .caser_active,
.case_tab a:hover {
  background: #e71218;
  color: #fff;
}

.caser_active img {
  display: block;
}

.case_right ul {
  padding-bottom: 40px;
}

.case_right li {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.case_img img {
  width: 224px;
}

.case_right {
  flex: 1;
  overflow: hidden;
  padding-left: 40px;
}

.case_label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #e71218;
}

.case_label span {
  color: #999999;
}

.case_right h3 {
  font-size: 20px;
  color: #262626;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  margin-top: 8px;
}

.case_text {
  font-size: 16px;
  color: #666666;
  line-height: 2;
  margin-top: 16px;
  border-top: 1px solid #eaeaea;
  padding-top: 11px;
}

.case_text a {
  display: inline;
  color: #e71218;
}

.case_text a:hover {
  text-decoration: underline;
}

.page {
  display: flex;
  align-items: center;
}

.page a {
  padding: 0 15px;
  height: 42px;
  min-width: 42px;
  background: #eaeaea;
  color: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-size: 16px;
  transition: .2s;
}

.page a:hover,
.page .page_active {
  background: #e71218;
  color: #fff;
}

.case_right2 {
  flex: 1;
  overflow: hidden;
  padding-left: 40px;
  padding-top: 10px;
}

.show_title {
  font-size: 30px;
  color: #262626;
  font-weight: normal;
}

.show_time {
  font-size: 14px;
  color: #999999;
  margin-top: 12px;
}

.show_text {
  font-size: 16px;
  color: #666666;
  line-height: 2;
  border-top: 1px solid #eaeaea;
  margin-top: 25px;
  padding-top: 20px;
}

.show_text img {
  max-width: 100%;
  display: inline;
}

.show_page {
  padding-top: 26px;
}

.show_page div {
  font-size: 14px;
  color: #262626;
  margin-top: 9px;
  display: flex;
  align-items: center;
}

.show_page a {
  flex: 1;
  color: #262626;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: .1s;
}

.show_page a:hover {
  color: #e71218;
}


/* #endregion */

/* #region  5关于我们 6业务领域 */

.about_title {
  font-size: 40px;
  color: #262626;
  text-align: center;
  font-weight: bold;
}

.about1 {
  margin-top: 75px;
}

.about1_row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 48px;
}

.about1_text {
  width: 618px;
  font-size: 16px;
  color: #666666;
  line-height: 2;
}

.about1_img img {
  width: 510px;
}

.about2 {
  padding: 80px 0 74px 0;
  background: #f8f8f8;
  margin-top: 90px;
}


.about2 .swiper-container {
  margin-top: 53px;
}

.about2 .swiper-slide img {
  width: 100%;
}

.about2_dot {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.about2_dot div {
  width: 64px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e71218;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: .1s;
}

.about2_dot img {
  width: 13px;
  transition: .1s;
}

.about2_dot img:nth-of-type(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.about2_dot div:hover {
  background: #e71218;
}

.about2_dot div:hover img:nth-of-type(1) {
  opacity: 0;
}

.about2_dot div:hover img:nth-of-type(2) {
  opacity: 1;
}

.about3 {
  padding: 78px 0 77px 0;
}

.about3 .swiper-container {
  margin-top: 53px;
}

.about3 .swiper-slide img {
  width: 100%;
}

.se_bg {
  background: #f8f8f8;
}

.field_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 86px;
  padding-bottom: 30px;
}

.field_ul li {
  width: 580px;
  background: #fff;
  padding: 20px 55px 22px 60px;
  box-shadow: 0px 10px 13px 0px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  margin-bottom: 40px;
}

.field_ul img {
  width: 40px;
  height: 40px;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.field_title {
  font-size: 20px;
  color: #262626;
  margin-top: 14px;
}

.field_list {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  color: #666666;
  margin-bottom: 11px;
}


.field_title {
  font-size: 20px;
  color: #262626;
  font-weight: bold;
}

.field_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.field_list a {
  width: 33.33%;
  font-size: 16px;
  color: #666666;
  margin-bottom: 11px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 5px;
  transition: .1s;
}

.field_list a:hover {
  color: #e71218;
}

/* #endregion */

/* #region  7刑事 */
.banner3 {
  min-width: 1200px;
  position: relative;
}

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

.banner3_txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.banner_btn1 {
  width: 260px;
  height: 54px;
  border-radius: 27px;
  background: #e71218;
  color: #fff;
  margin-top: 355px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: .1s;
}

.banner_btn1:hover {
  opacity: .85;
}

.range1 {
  padding: 20px 0 90px 0;
}

.range_title {
  text-align: center;
}

.range_t1 {
  font-size: 40px;
  color: #262626;
  letter-spacing: 3px;
}

.range_t1 span {
  color: #e71218;
}

.range_t2 {
  letter-spacing: 1px;
  font-size: 16px;
  color: #999999;
  margin-top: 10px;
}

.range1 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 39px;
  margin-top: 53px;
}

.range1 li {
  width: 370px;
  margin-right: 45px;
  margin-bottom: 45px;
}

.range1 li:nth-of-type(3n+3) {
  margin-right: 0;
}

.range1 li:last-of-type {
  margin-right: 0;
}

.range1_icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #e71218;
  padding: 10px;
  margin: 0 auto;
}

.range1_icon div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #fff;
  border-radius: 50%;
}

.range1_hr {
  width: 100%;
  height: 1px;
  background: #eaeaea;
  position: relative;
  margin-top: 30px;
}

.range1_hr span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 30px;
  height: 1px;
  background: #e71218;
}

.range1_title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.range1_title span {
  font-size: 30px;
  color: #e71218;
  font-weight: bold;
}

.range1_title h3 {
  font-size: 20px;
  color: #333333;
  font-weight: normal;
  margin-left: 13px;
}

.range1_text {
  font-size: 16px;
  color: #666666;
  line-height: 1.75;
  text-align: center;
  padding: 0 50px;
  margin-top: 16px;
}

.range1_btn {
  width: 428px;
  height: 56px;
  display: flex;
  align-items: center;
  border: 1px solid #f34b1e;
  border-radius: 28px;
  margin: 0 auto;
}

.range1_btn div {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #f34b1e;
}

.range1_btn img {
  margin-right: 16px;
}

.range1_btn a {
  width: 154px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  background: #f34b1e;
  border-radius: 28px;
  transition: .1s;
}

.range1_btn a:hover {
  opacity: .85;
}

.range2 {
  padding: 82px 0 74px 0;
  background: url(../images/range2.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  min-width: 1200px;
}

.range2 .range_t1,
.range2 .range_t2 {
  color: #fff;
}

.range2 ul {
  margin-top: 54px;
  display: flex;
}

.range2 li {
  width: 266px;
  border-radius: 16px;
  background: rgba(248, 248, 248, .6);
  border-radius: 16px;
  margin-right: 45.3px;
  padding: 38px 21px 25px 21px;
  transition: .2s;
}

.range2 li:last-of-type {
  margin-right: 0;
}

.range2 li:hover {
  background: #f8f8f8;
}

.range2 li img {
  margin: 0 auto;
  width: 40px;
}

.range2_title {
  font-size: 20px;
  color: #333333;
  text-align: center;
  margin-top: 23px;
}

.range2_text {
  font-size: 16px;
  color: #666666;
  line-height: 1.5;
  margin-top: 20px;
}

/* #endregion */

/* #region  8联系我们*/
.contact_row {
  display: flex;
  justify-content: space-between;
  margin-top: 88px;
}

.contact_col {
  width: 384px;
  padding: 30px 60px 26px 60px;
  text-align: center;
  border: 1px solid #cacaca;
  transition: .2s;
}

.contact_img {
  margin: 0 auto;
  position: relative;
  width: 31px;
}

.contact_img img {
  width: 100%;
  transition: .2s;
}

.contact_img img:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.contact_t1 {
  font-size: 16px;
  color: #aaaaaa;
  margin-top: 15px;
  transition: .2s;
}

.contact_t2 {
  font-size: 20px;
  color: #262626;
  margin-top: 11px;
  line-height: 1.5;
  transition: .2s;
}

.contact_col:hover {
  background: #e71218;
  border-color: #e71218;
}

.contact_col:hover img:nth-of-type(1) {
  opacity: 0;
}

.contact_col:hover img:nth-of-type(2) {
  opacity: 1;
}

.contact_col:hover .contact_t1 {
  color: #f3a7a8;
}

.contact_col:hover .contact_t2 {
  color: #fff;
}

.contact_main {
  display: flex;
  margin-top: 50px;
  background: #f5f5f5;
  min-width: 1200px;
}

.contact_map {
  width: 50%;
}

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

.contact_right {
  width: 50%;
}

.contact_form {
  width: 600px;
  padding: 85px 0 90px 90px;
}

/* #endregion */

/* #region  9团队  团队详情  搜索结果*/
.team_ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: 24px;
}

.team_ul li {
  width: 260px;
  margin-right: 53.3px;
  margin-top: 66px;
}

.team_ul li:nth-of-type(4n+4) {
  margin-right: 0;
}

.team_ul img {
  width: 100%;
}

.team_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.team_name {
  flex: 1;
  overflow: hidden;
}

.team_name div {
  font-size: 20px;
  color: #262626;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: .1s;
}

.team_name span {
  display: block;
  font-size: 14px;
  color: #666666;
  margin-top: 5px;
}

.team_look {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #e71218;
}

.team_look img {
  width: 4px;
  margin-left: 8px;
}

.team_ul li:hover .team_name div {
  color: #e71218;
}

.team_btn {
  width: 180px;
  height: 60px;
  border-radius: 8px;
  margin: 70px auto 80px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaeaea;
  color: #262626;
  font-size: 16px;
  transition: .1s;
  border: none;
  outline: none;
  cursor: pointer;

}

.team_btn:hover {
  opacity: .85;
}

.team_showp {
  padding: 0 0 150px 0;
}


.team_showp .se_tab {
  height: 74px;
  border-bottom: 1px solid #eaeaea;
}

.team_show {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 85px;
}

.team_sleft {
  width: 750px;
}

.team_sname div {
  font-size: 40px;
  color: #262626;
}

.team_sname span {
  display: block;
  font-size: 16px;
  color: #999999;
  margin-top: 10px;
}

.team_stext {
  font-size: 16px;
  color: #666666;
  line-height: 2;
  margin-top: 40px;
}

.team_sright {
  width: 383px;
}

.team_sright img {
  width: 100%;
}

.search_main {
  padding: 0 0 60px 0;
}

.search_tab {
  background: #f5f5f5;
}

.search_tab .se_tab {
  height: 65px;
}

.search_top {
  font-size: 40px;
  color: #262626;
  margin-top: 73px;
}

.search_top div {
  font-size: 16px;
  color: #666666;
  display: inline;
  margin-left: 10px;
}

.search_top span {
  color: #e71218;
}

.search_ul {
  margin-top: 52px;
}

.search_ul a {
  padding: 25px 0 16px 0;
  border-bottom: 1px solid #eaeaea;
}

.search_label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.search_label div {
  color: #e71218;
  font-weight: bold;
  transition: .1s;
}

.search_label span {
  color: #999999;
}

.search_title {
  font-size: 20px;
  color: #262626;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 6px;
}

.search_ul a:hover .search_title {
  color: #e71218;
}

.search_main .page {
  justify-content: center;
  margin-top: 60px;
}

.search_main .page a {
  margin: 0 8px;
}

/* #endregion */

/* #region  业务内页*/
.banner_btn2 {
  display: flex;
  justify-content: center;
  margin-top: 328px;
}

.banner_btn2 a {
  width: 190px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: #e71218;
  margin: 0 10px;
  transition: .1s;
}

.banner_btn2 a:hover {
  opacity: .85;
}

.range_width .range1_text {
  padding: 0;
}

.range_col5 li {
  width: 200px;
  margin-right: 50px;
}

.range_col5 li:nth-of-type(3n+3) {
  margin-right: 50px;
}

.range_col5 li:nth-of-type(5n+5) {
  margin-right: 0;
}

.range_col5 .range1_title {
  margin-top: 28px;
}

.banner_btn3 {
  width: 240px;
  height: 54px;
  border-radius: 27px;
  background: #e71218;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 334px auto 0 auto;
  transition: .1s;
}

.banner_btn3:hover {
  opacity: .85;
}

.banner_btn3 span {
  margin: 0 12px;
}

.range_col4 li {
  width: 270px;
  margin-right: 40px;
}

.range_col4 li:nth-of-type(3n+3) {
  margin-right: 40px;
}

.range_col4 li:nth-of-type(4n+4) {
  margin-right: 0;
}

.range_col4 .range1_title {
  margin-top: 28px;
}

.banner_btn4 {
  margin-top: 354px;
  padding-left: 15px;
  display: flex;
}

.banner_btn4 a {
  width: 190px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: #e88c00;
  border-radius: 27px;
  margin-right: 20px;
  transition: .1s;
}

.banner_btn4 a:hover {
  opacity: .8;
}

.banner_btn5 {
  width: 180px;
  height: 44px;
  border-radius: 22px;
  background: #274f95;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 353px auto 0 auto;
  transition: .1s;
}

.banner_btn5:hover {
  opacity: .85;
}

.banner_btn6 {
  width: 156px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 4px solid #f4474c;
  color: #f4474c;
  margin: 270px auto 0 auto;
  transition: .1s;
}

.banner_btn6:hover {
  opacity: .85;
}

.index3_img img{
  width: 100%;
}

/* #endregion */

/* #region  */

/* #endregion */