.header {
  width: 100%;
  height: 80px;
  background: #FFFFFF;
  box-shadow: 2px 2px 9px 0px rgba(0, 110, 220, 0.1);

  position: fixed;
  top: 0;
  z-index: 100;
}

.header_body {
  width: 100%;
  height: 80px;
}

.header .header_con {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  width: 1200px;
  height: 100%;
  background: #FFFFFF;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .header_con .header_logo {
  display: block;
  cursor: pointer;
  width: 200px;
  height: 30px;
}

.header .header_con .header_navs_con {
  display: flex;
  align-items: center;
}

/* 按钮普通状态 */
.header_btn {
  cursor: pointer;
  padding: 0 12px;
  height: 38px;
  background: #006EDC;
  border: 1px solid #006EDC;

  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #FEFEFE;
  text-align: center;
  line-height: 38px;
  margin-left: 30px;
  margin-right: 30px;
  transition: 0.5s;
  border-radius: 3px;
}

/* 按钮鼠标悬浮 */
.header_btn:hover {
  background: #FFFFFF;
  color: #006EDC;
}

.header_nav span {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 0 12px;
}

/* 页面宽度>1200 */
@media screen and (min-width: 1200px) {
  .header_navs {
    /* height: 80px !important; */
    display: flex;
    align-items: center;
  }

  /* 导航栏普通状态 */
  .header_navs .header_nav {
    cursor: pointer;
    position: relative;

    height: 80px;
    text-align: center;
    line-height: 80px;

    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
  }

  .header_navs .header_nav .header_nav_line {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 12px;
    width: 50%;
    height: 2px;
    background: #006EDC;
  }

  .header_navs .header_nav .header_nav_more {
    display: none;
  }

  /* 导航栏鼠标悬浮 */
  .header_navs .header_nav:hover {
    color: #006EDC;
    transition: color 1s;
  }

  .header_navs .header_nav:hover .header_nav_line {
    width: 100%;
    opacity: 1;
    transition: 0.5s;
  }

  /* 导航栏选中 */
  .header_navs .header_nav_choose {
    /* color: #006EDC !important; */
    font-weight: bold;
    color: #000;
  }

  .header_navs .header_nav_choose .header_nav_line {
    width: 100% !important;
    /*opacity: 1 !important;*/
  }

  /* 子导航栏悬浮展示 */
  .header_nav_box {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);

    height: 0;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 2px 2px 9px 0px rgba(0, 110, 220, 0.1);
    display: none;
  }

  .header_listbtn {
    display: none;
  }

  /* 产品子导航栏 */
  .header_product_box {
    height: auto;
  }

  .header_product_items_box {
    display: flex;
    align-items: center;
  }

  .header_product_items {
    width: 630px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .header_product_item {
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .header_product_item_else {
    display: none;
  }

  .header_product_item:nth-last-child(2) {
    margin-bottom: 0;
  }

  .header_product_imgbox {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header_product_imgbox img {
    display: block;
    width: 38px;
    height: 38px;
  }

  .header_product_textbox {
    width: 235px;
    color: #333333 !important;
    text-align: justify;
    line-height: 25px;

    font-size: 14px !important;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666 !important;
  }

  .header_product_textbox span:first-child {
    font-size: 16px !important;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333 !important;
  }

  /* 其它产品 */
  .header_product_else {
    cursor: auto;
    width: 380px;
    height: 500px;
    border-left: 1px solid #E5F2FF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .header_product_else_item {
    padding: 16px 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header_product_else_item_textbox {
    height: 89px;
    display: flex;
    flex-direction: column;
    justify-content: space-around
  }

  .header_product_else_item_title {
    height: 16px;
    line-height: 16px;
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
    margin-bottom: 8px;
    text-align: left;
  }

  .header_product_else_item_subtitle {
    height: 14px;
    line-height: 14px;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    margin-bottom: 0px;
    text-align: left;
  }

  .header_product_else_item:hover .header_product_else_item_title,
  .header_product_else_item:hover .header_product_else_item_subtitle {
    color: #006EDC;
  }

  .header_product_else_item_btn {
    height: 14px;
    line-height: 14px;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #006EDC;
    text-align: left;
  }

  .header_product_else_item_img {
    width: 137px;
    height: 89px;
    display: block;
  }

  .header_product_else_item_new {
    background-color: rgba(0, 110, 220, 0.05);
    position: relative;
  }

  .header_product_else_item_new_icontext {
    position: absolute;
    top: 5px;
    left: 10px;
    line-height: 16px;
    color: red;
  }


  /* 资源中心鼠标悬浮 */
  .header_resource_box {
    height: auto;
  }

  .header_resource_items {
    width: 415px;
    display: flex;
    align-items: flex-start;
  }

  .header_resource_left {
    padding: 32px;
    padding-right: 20px;
  }

  .header_resource_right {
    padding: 32px;
    padding-left: 20px;
  }

  .header_resource_line {
    width: 1px;
    height: 309px;
    background: #E5F2FF;
    border-radius: 1px;
  }

  .header_resource_title {
    text-align: left;
    line-height: 25px;
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    margin-bottom: 24px;
  }

  .header_resource_item {
    width: 130px;
    display: flex;
    align-items: center;

    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;

    text-align: left;
    line-height: 25px;
    font-size: 16px !important;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333 !important;
    margin-bottom: 24px;
  }

  .header_resource_right .header_resource_item {
    width: 180px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

  /* 关于我们鼠标悬浮 */
  .header_about_box {
    height: auto;
  }

  .header_about_items {
    width: 205px;
    padding: 32px;
  }

  .header_about_item {
    width: auto;
    display: flex;
    align-items: center;

    line-height: 25px;
    font-size: 16px !important;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333 !important;
    margin-bottom: 24px;
    text-align: left;
  }

  .header_about_item img,
  .header_cooperate_item img,
  .header_resource_item img {
    width: 18px;
    height: 16px;
    display: inline-block;
    /* margin-right: 10px; */
  }

  /* 招商合作鼠标悬浮 */
  .header_cooperate_box {
    height: auto;
  }

  .header_cooperate_items {
    width: 205px;
    padding: 32px;
  }

  .header_cooperate_item {
    width: auto;
    display: flex;
    align-items: center;

    line-height: 25px;
    font-size: 16px !important;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333 !important;
    margin-bottom: 24px;
    text-align: left;
  }



  /* 子集鼠标悬浮 */
  .header_product_item:hover .header_product_textbox span,
  .header_resource_item:hover,
  .header_cooperate_item:hover,
  .header_about_item:hover {
    color: #006EDC !important;
  }
}


/* 切换语言 */
.header_nav_lan {
  display: none;
}

.header_lan {
  height: 100%;

  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_lan_icon,
.header_lan_item_icon {
  width: 30px;
  height: 20px;
  display: block;
}

.header_lan_text,
.header_lan_item_text {
  padding: 0 22px 0 16px;
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}

.header_lan_more {
  width: 17px;
  height: 9px;
  transition: 0.5s;
}

.header_lan:hover .header_lan_more {
  transform: rotate(180deg)
}

.header_lan_box {
  display: none;
  position: absolute;
  top: 80px;
  left: -22px;
  width: 186px;
  background: #FFFFFF;
  padding: 14px 0px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}

.header_lan_item {
  cursor: pointer;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_lan_item:hover span {
  color: #006EDC !important;
}

/* 页面宽度<1600 */
@media screen and (max-width: 1600px) {
  .header_lan {
    right: 1.5vw;
  }

  .header_lan_text,
  .header_lan_item_text {
    display: none;
  }

  .header_lan_icon,
  .header_lan_item_icon {
    margin-right: 10px;
  }

  .header_lan_box {
    width: auto;
    padding: 0;
  }
}

/* 页面宽度<1360 */
@media screen and (max-width: 1360px) {
  .header_lan {
    display: none;
  }
}


/* 页面宽度<1200 */
@media screen and (max-width: 1200px) {
  .header .header_con {
    padding: 0 20px;
    width: 100%;
    height: 100%;
  }

  .header .header_con .header_logo {
    width: 200px;
    min-width: 130px;
    height: 30px;
    margin-left: 10px;
  }

  .header_navs {
    display: none;
    position: absolute;
    z-index: 90;
    width: 100%;
    height: 100vh !important;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 20px;
    overflow: scroll;
  }

  .header_navs .header_nav {
    width: 100%;
    min-height: 44px;
    line-height: 44px;
    position: relative;
  }

  .header_navs .header_nav span:first-child {
    /* display: inline-block; */
    width: 100%;
    cursor: pointer;
  }

  .header_navs .header_nav_choose span {
    color: #006EDC;
  }

  .header_navs .header_nav_choose .header_product_item span,
  .header_navs .header_nav_choose .header_resource_item span,
  .header_navs .header_nav_choose .header_cooperate_item span,
  .header_navs .header_nav_choose .header_about_item span {
    color: #333333 !important;
  }

  .header_navs .header_nav .header_nav_line {
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .header_navs .header_nav .header_nav_more {
    cursor: pointer;
    width: 20%;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    position: absolute;
    top: 0;
    right: 0;
  }

  .header_navs .header_nav .header_nav_more img {
    display: block;
    width: 15px;
    transform: rotate(0deg);
    transition: 0.5s;
  }

  .header_navs .header_nav .header_nav_more_choose img {
    transform: rotate(180deg);
  }

  .header_navs .header_nav .header_nav_box {
    display: none;
  }

  /* 产品子集 */
  .header_product_else {
    /* <1200,隐藏大“法保签” */
    display: none;
  }

  .header_product_items .header_product_item_else {
    /* <1200,展示小“法保签” */
    display: block;
  }

  .header_product_items .header_product_imgbox {
    display: none;
  }

  .header_product_items .header_product_textbox {
    cursor: pointer;
    padding: 0 20px;
  }

  .header_product_items .header_product_textbox span:last-child {
    display: none;
  }

  /* 资源中心子集 */
  .header_resource_items .header_resource_left,
  .header_resource_items .header_resource_right {
    padding: 0 20px;
  }

  .header_resource_items .header_resource_title {
    color: #666666;
    height: 15px;
    line-height: 15px;
    font-size: 11px;
  }

  .header_resource_items .header_resource_title::after {
    content: "：";
  }

  .header_resource_items .header_resource_item {
    cursor: pointer;
    padding: 0 20px;
  }

  .header_resource_items .header_resource_item img {
    display: none;
  }

  /* 关于我们子集 */
  .header_about {
    margin-bottom: 80px;
  }

  .header_about_items {
    padding: 0 20px;
  }

  .header_about_items .header_about_item {
    cursor: pointer;
  }

  .header_about_items .header_about_item img {
    display: none;
  }


  /* 招商合作子集 */
  .header_cooperate {
    /*margin-bottom: 80px;*/
  }

  .header_cooperate_items {
    padding: 0 20px;
  }

  .header_cooperate_items .header_cooperate_item {
    cursor: pointer;
  }

  .header_cooperate_items .header_cooperate_item img {
    display: none;
  }

  .header_btn {
    width: 80px;
    height: 32px;
    line-height: 32px;
    padding: 0 11px;
    overflow: hidden;
  }

  .header_listbtn {
    cursor: pointer;
    display: block;
    margin-left: 20px;
    width: 30px;
    height: 20px;
    position: relative;
    margin-right: 20px;
  }

  .header_listbtn_con,
  .header_listbtn_con::before,
  .header_listbtn_con::after {
    width: 30px;
    height: 2px;
    background: #006EDC;
    display: inline-block;
    position: absolute;
    top: 0;
    transition: 0.5s;
  }

  .header_listbtn_con::before {
    content: '';
    width: 25px;
    margin-top: 10px;
    opacity: 1;
  }

  .header_listbtn_con::after {
    content: '';
    margin-top: 20px;
  }

  .header_listbtn_active {
    margin-top: 20px;
  }

  .header_listbtn_active .header_listbtn_con {
    transform: rotate(45deg) !important;
  }

  .header_listbtn_active .header_listbtn_con::before {
    opacity: 0;
    transition: 0.5s;
  }

  .header_listbtn_active .header_listbtn_con::after {
    transform: rotate(90deg) !important;
    margin-top: 0;
  }

  .header_nav_lan {
    max-width: 80px;
    cursor: pointer;
    display: block;
    text-align: center;
    border: 1px solid #006EDC;
    margin: 0 auto;
  }

  .header_nav_lan b {
    color: #006EDC;
  }

  .header_nav_lan:hover {
    background: #006EDC;
    color: #FFFFFF;
  }

  .header_nav_lan:hover b {
    color: #FFFFFF;
  }
}

/* 页面宽度<768 */
@media screen and (max-width: 768px) {
  .header_btn {
    width: 70px;
    font-size: 13px;
    padding: 0 8px;
    margin-right: 0;
  }
  .header_navs_con{
    margin-right: 20px;
  }
  .header .header_con .header_logo{
    margin-left: 0;
  }
}