@charset "utf-8";

@keyframes a_banner_s_line {
    0% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform-origin: 50% 100%;
        -webkit-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        opacity: 1;
    }
    20% {
        transform: scale(1, 0.01);
        -webkit-transform: scale(1, 0.01);
        -ms-transform: scale(1, 0.01);
        -moz-transform: scale(1, 0.01);
        -o-transform: scale(1, 0.01);
        transform-origin: 50% 100%;
        -webkit-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        opacity: 1;
    }
    30% {
        transform: scale(1, 0.01);
        -webkit-transform: scale(1, 0.01);
        -ms-transform: scale(1, 0.01);
        -moz-transform: scale(1, 0.01);
        -o-transform: scale(1, 0.01);
        transform-origin: 50% 100%;
        -webkit-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        opacity: 0;
    }
    31% {
        transform: scale(1, 0.01);
        -webkit-transform: scale(1, 0.01);
        -ms-transform: scale(1, 0.01);
        -moz-transform: scale(1, 0.01);
        -o-transform: scale(1, 0.01);
        transform-origin: 50% 0;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        -moz-transform-origin: 50% 0;
        -o-transform-origin: 50% 0;
        opacity: 0;
    }
    50% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform-origin: 50% 0;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        -moz-transform-origin: 50% 0;
        -o-transform-origin: 50% 0;
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform-origin: 50% 100%;
        -webkit-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        opacity: 1;
    }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  /*-webkit-appearance: none;*/
}
*::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 8px;
}
*::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 4px;
  background: #dedede;
}
*::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  border-radius: 4px;
  background: #f0f2f5;
}
body {
  margin: 0px;
  padding: 0px;
}
ul,
li {
  list-style: none;
}
img {
  max-width: 100%;
}
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #909399;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #909399;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #909399;
}
:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #909399;
}
a {
  text-decoration: none!important;
  color: #606266;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
  color: #606266;
}
button {
  outline: none;
  border: none;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
multi_elli {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
multi_elli2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
multi_elli5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.postive {
  position: relative;
}
.pull_left {
  float: left;
}
/** 头部处理 */
.h_i_header {
  min-width: 1020px;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  height: 82px;
  z-index: 999999;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}
.h_i_header .header_tip {
  height: 46px;
  background: rgba(13, 166, 88, 0.3);
  line-height: 46px;
  text-align: center;
  font-size: 14px;
  color: #0da658;
}
.h_i_header .header_nav {
  text-align: center;
  font-size: 0;
}
.h_i_header .header_nav .logo {
  position: absolute;
  left: 60px;
  top: 50%;
    display: inline-block;
    width: 306px;
    height: 52px;
  margin-top: -28px;
    background: url('../../images/es/logo_ttt.png');
}
.home_page .nothover.h_i_header .header_nav .logo {
    background: url('../../images/es/logo_ttd.png');
}

.h_i_header .header_nav > ul {
  margin: 0 auto;
  display: inline-block;
}
.h_i_header .header_nav > ul > li {
  float: left;
}
.h_i_header .header_nav > ul > li > a {
  width: 160px;
  height: 82px;
  line-height: 82px;
  display: inline-block;
  font-size: 14px;
  color: #333333;
}
.h_i_header .header_nav > ul li.active,
.h_i_header .header_nav > ul li:hover {
  background: #f2f2f2;
}
.h_i_header .header_nav > ul li:hover .pro_list {
  display: block;
}
.h_i_header .header_nav .login_btn,
.h_i_header .header_nav .apply_btn {
  width: 108px;
  height: 40px;
  font-size: 14px;
  color: #333333;
  line-height: 40px;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  right: 15%;
}
.h_i_header .header_nav .apply_btn {
  right: 5%;
  background: #0DA658;
  color: #fff;
}
.h_i_header .header_nav .pro_list {
  z-index: 9999;
  display: none;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f2f5;
  position: absolute;
  top: 82px;
}
.h_i_header .header_nav .pro_list .clz {
  width: 240px;
  float: left;
  padding-top: 10px;
  padding-bottom: 32px;
  text-align: left;
}
.h_i_header .header_nav .pro_list .clz .clz_title {
  padding-left: 32px;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  color: #969696;
}
.h_i_header .header_nav .pro_list .clz li:not(.clz_title) {
  padding-left: 32px;
  height: 60px;
  line-height: 60px;
  padding-top: 11px;
}
.h_i_header .header_nav .pro_list .clz li:not(.clz_title) .clz_item {
  height: 20px;
  font-size: 14px;
  color: #333333;
  line-height: 20px;
}
.h_i_header .header_nav .pro_list .clz li:not(.clz_title) .clz_desc {
  height: 18px;
  font-size: 12px;
  color: #969696;
  line-height: 18px;
}
.h_i_header .header_nav .pro_list .clz li:not(.clz_title):hover {
  background: #F2F2F2;
  cursor: pointer;
}
.h_i_header .header_nav .pro_list .clz_a {
  width: 100%;
  float: left;
  padding-left: 32px;
  height: 60px;
  border-top: 4px solid #4C4C4C;
  display: inline-block;
  text-align: left;
  font-size: 16px;
  color: #969696;
  line-height: 60px;
  box-sizing: content-box;
  margin: 0 -4px;
}
.h_i_header .header_nav .pro .pro_list {
  width: 482px;
}
.nh_i_header .header_nav > ul {
  float: right;
  margin-right: 60px;
}
.nh_i_header .logo_title {
  font-size: 28px;
  font-weight: 400;
  color: #333;
  position: absolute;
  left: 130px;
  top: 50%;
  margin-top: -19px;
}
.home_page .nothover.nh_i_header .logo_title {
  color: #fff;
}
.nh_i_center .hmct {
  margin-bottom: 0!important;
}
.nh_i_center .new_keywords {
  width: 100%;
}
.nh_i_center .new_keywords .keyword {
  text-align: center;
  float: left;
  width: 33.3%;
  margin: 0 -1px -1px 0;
  border: 1px solid #F1F1F1;
  padding: 50px 0;
}
.nh_i_center .new_keywords .keyword .kicon {
  margin-bottom: 32px;
}
.nh_i_center .new_keywords .keyword .keyword_info {
    font-size: 22px;
    font-weight: 400;
    color: #303133;
    line-height: 30px;
}
.nh_i_center .pd:nth-child(odd) {
  background: rgba(113, 113, 113, 0.1);
}
.nh_i_center .p:nth-child(even) {
  background: #fff;
}
.nh_i_center .pd {
  text-align: center;
  padding: 50px 0;
}
.nh_i_center .pd .pd_text_info {
  width: 1000px;
  text-align: center;
  margin: 0 auto;
}
.nh_i_center .pd .pd_text_info .pd_title {
    font-size: 34px;
    font-weight: 600;
    color: #303133;
    line-height: 53px;
    margin-bottom: 20px;
}
.nh_i_center .pd .pd_text_info .pd_sub_title {
    font-size: 26px;
    font-weight: 400;
    color: #303133;
    line-height: 37px;
    margin-bottom: 30px;
}
.nh_i_center .pd .pd_text_info .pd_desc {
    font-size: 22px;
    font-weight: 400;
    color: #606266;
    line-height: 37px;
    margin-bottom: 30px;
    text-align: left;
    text-indent: 2em;
}
.nh_i_center .pd .pd_text_info .pd_btn_group {
  text-align: center;
  margin-bottom: 30px;
}
.nh_i_center .pd .pd_text_info .pd_btn_group .mbtn {
  display: inline-block;
  cursor: pointer;
  width: 160px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  background: #0da658;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 30px;
  outline: none;
  border: none;
}
.nh_i_center .pd .pd_text_info .pd_btn_group .nbtn {
  display: inline-block;
  cursor: pointer;
  width: 160px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #0da658;
  margin: 0 30px;
  outline: none;
  font-size: 22px;
  font-weight: 400;
  color: #606266;
}
.nh_i_center .pd .swiper-container {
  width: 920px;
  /*height: 650px;*/
}
.nh_i_center .pd .swiper-container .simg {
  width: 100%;
  height: 100%;
}
.h_i_center {
  margin-top: 82px;
  min-width: 1020px;
}
.h_i_center .c_center {
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 1px;
}
.h_i_center .c_center .page_title {
  height: 50px;
  font-size: 36px;
  color: #131415;
  line-height: 50px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 24px;
}
.h_i_center .c_center .title_desc {
  height: 22px;
  font-size: 16px;
  color: #909399;
  line-height: 22px;
  text-align: center;
}
.h_i_center .c_center .swiper-container {
  margin: 0 70px;
  width: calc(100% - 140px);
  padding-top: 50px;
  padding-bottom: 50px;
}
.h_i_center .c_center .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.h_i_center .c_center .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.h_i_center .c_center .swiper-slide:not(.swiper-slide-active) {
  height: 214px;
  margin-top: 46px;
  padding-left: 82px;
}
.h_i_center .c_center .swiper-slide:not(.swiper-slide-active) .slide_img {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 40px;
  height: 40px;
}
.h_i_center .c_center .swiper-slide:not(.swiper-slide-active) .slide_title {
  margin-top: 35px;
  margin-bottom: 16px;
  height: 30px;
  font-size: 22px;
  color: #ffffff;
  line-height: 30px;
}
.h_i_center .c_center .swiper-slide:not(.swiper-slide-active) .slide_content {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 20px;
  height: 60px;
}
.h_i_center .c_center .swiper-slide:not(.swiper-slide-active) .multi_elli5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.h_i_center .c_center .swiper-slide:not(.swiper-slide-active) .view_detail {
  margin-top: 30px;
}
.h_i_center .c_center .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 700px;
  height: 260px;
  box-sizing: border-box;
  position: relative;
  padding-left: 115px;
  padding-right: 62px;
}
.h_i_center .c_center .swiper-slide .slide_img {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
}
.h_i_center .c_center .swiper-slide .slide_title {
  margin-top: 50px;
  margin-bottom: 16px;
  height: 37px;
  font-size: 26px;
  color: #ffffff;
  line-height: 37px;
}
.h_i_center .c_center .swiper-slide .slide_content {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 22px;
  height: 66px;
}
.h_i_center .c_center .swiper-slide .view_detail {
  height: 20px;
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
  margin-top: 40px;
  display: inline-block;
  background: url('../../images/es/white_arrow.png') no-repeat;
  background-position: right;
  padding-right: 24px;
}
.h_i_center .c_center .es_slide {
  background: linear-gradient(318deg, #0da658 0%, #3fc862 100%);
}
.h_i_center .c_center .da_slide {
  background: #0083FF;
}
.h_i_center .c_center .px_slide {
  background: linear-gradient(318deg, #0d28a6 0%, #6b67ee 100%);
}
.h_i_center .c_center .pro_title {
  height: 45px;
  font-size: 32px;
  color: #131415;
  line-height: 45px;
  text-align: center;
}
.h_i_center .c_center .pro_items {
  width: 960px;
  margin: 0 auto;
  margin-top: 30px;
}
.h_i_center .c_center .pro_items .pro_item:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  transform: translateY(-20px);
  /**上移元素**/
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
}
.h_i_center .c_center .pro_items .pro_item {
  transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  float: left;
  width: 280px;
  height: 293px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  margin: 0 20px 40px 20px;
  padding: 24px;
}
.h_i_center .c_center .pro_items .pro_item .pro_logo {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.h_i_center .c_center .pro_items .pro_item .view_detail {
  margin-top: 16px;
  display: inline-block;
}
.h_i_center .c_center .pro_items .pro_item .pro_item_title {
  height: 25px;
  font-size: 18px;
  color: #131415;
  line-height: 25px;
  margin-bottom: 8px;
}
.h_i_center .c_center .pro_items .pro_item .pro_item_desc {
  height: 20px;
  font-size: 14px;
  font-family: PingFangTC-Regular, PingFangTC;
  color: #909399;
  line-height: 20px;
  margin-bottom: 32px;
}
.h_i_center .c_center .pro_items .pro_item .pro_item_content {
  font-size: 14px;
  color: #909399;
  line-height: 20px;
  height: 60px;
}
.h_i_center .c_center .anchor_about {
  display: inline-block;
  margin: 40px auto;
  margin-left: calc(50% - 410px);
}
.h_i_center .c_center .anchor_about .anchor_item.active .active_line {
  opacity: 1;
}
.h_i_center .c_center .anchor_about .anchor_item {
  float: left;
  width: 164px;
  height: 82px;
  text-align: center;
  cursor: pointer;
}
.h_i_center .c_center .anchor_about .anchor_item .anchor_title {
  height: 22px;
  font-size: 16px;
  color: #303133;
  line-height: 22px;
  margin-top: 30px;
}
.h_i_center .c_center .anchor_about .anchor_item .active_line {
  opacity: 0;
  width: 28px;
  height: 2px;
  background: #131415;
  margin: 0 auto;
  margin-top: 8px;
}
.h_i_center .c_center .panel_content {
  font-size: 16px;
  color: #909399;
  line-height: 22px;
}
.h_i_center .c_center .panel_content p {
  font-size: 14px;
  color: #606266;
}
.h_i_center .c_center .panel_content p:last-child {
  margin-bottom: 0;
}
.h_i_center .c_center .panel_content .end_qm {
  float: right;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}
.h_i_center .c_center .anchor_panel_ct {
  width: 1000px;
  margin-left: calc(50% - 500px);
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel {
  padding-bottom: 30px;
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_title {
  text-align: center;
  margin-bottom: 24px;
  height: 45px;
  font-size: 32px;
  color: #131415;
  line-height: 45px;
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .tu {
  height: 377px;
  width: 100%;
  margin-bottom: 20px;
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item.active {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item.active .panel_arrow {
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  /* IE 9 */
  -moz-transform: rotate(0deg);
  /* Firefox */
  -webkit-transform: rotate(0deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(0deg);
  /* Opera */
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item.active .fzlc_item_content {
  display: block;
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item.active .panel_arrow {
  position: absolute;
  width: 30px;
  right: 24px;
  top: 25px;
  cursor: pointer;
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  /* IE 9 */
  -moz-transform: rotate(0deg);
  /* Firefox */
  -webkit-transform: rotate(0deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(0deg);
  /* Opera */
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  margin-bottom: 30px;
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item .fzlc_item_title {
  height: 80px;
  line-height: 80px;
  padding-left: 24px;
  padding-right: 60px;
  color: #303133;
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item .fzlc_item_title .fzlc_item_date {
  height: 25px;
  font-size: 18px;
  color: #303133;
  line-height: 25px;
  padding-right: 14px;
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item .fzlc_item_title .panel_arrow {
  position: absolute;
  width: 30px;
  right: 24px;
  top: 25px;
  cursor: pointer;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item .fzlc_item_content {
  display: none;
  padding-left: 60px;
  padding-right: 60px;
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item .fzlc_item_content p {
  float: left;
  width: 100%;
  margin-bottom: 24px;
  font-size: 16px;
  color: #606266;
  line-height: 22px;
  padding-left: 44px;
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .hzhb_img {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  float: left;
  margin: 0 -1px -1px 0;    width: 140px
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel #gszz_swiper {
  margin: 40px 0;
  width: 100%;
  height: 300px!important;
  padding: 0;
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel #gszz_swiper .swiper-slide {
  height: 300px!important;
  margin-top: 0!important;
  margin-left: 0!important;
  padding: 0!important;
  background: #f0f2f5;
  text-align: center;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.h_i_center .c_center .anchor_panel_ct .anchor_panel #gszz_swiper .swiper-slide .zz_img {
  margin: 0 auto;
  vertical-align: center;
}
.h_i_center .c_center .anchor_panel_ct #bgdd .panel_content {
  background: url('../../images/es/company_map.png');
  height: 450px;
}
.h_i_center .c_center .anchor_panel_ct #bgdd .panel_content .company_addr_tag {
  position: absolute;
  bottom: 170px;
  right: 430px;
}
.h_i_center .c_center .anchor_panel_ct #bgdd .panel_content .addr_ct {
  position: absolute;
  top: 50px;
  left: 91px;
  width: 438px;
  height: 162px;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  padding: 24px;
}
.h_i_center .c_center .anchor_panel_ct #bgdd .panel_content .addr_ct .addr_city {
  font-size: 28px;
  color: #303133;
  line-height: 40px;
  margin-bottom: 16px;
}
.h_i_center .c_center .anchor_panel_ct #bgdd .panel_content .addr_ct p {
  font-size: 18px;
  color: #909399;
  line-height: 25px;
  margin-bottom: 8px;
}
.h_i_center .c_center .case_list {
  width: 1020px;
  padding-top: 40px;
  margin: 0 auto;
}
.h_i_center .c_center .case_list .case_item:hover {
  transform: translateY(-20px);
  /**上移元素**/
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}
.h_i_center .c_center .case_list .case_item {
  transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  cursor: pointer;
  margin: 20px;
  float: left;
  width: 300px;
  height: 300px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
}
.h_i_center .c_center .case_list .case_item .al_logo {
  height: 180px;
  width: 299px;
}
.h_i_center .c_center .case_list .case_item .al_logo .al_bg_ac {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.h_i_center .c_center .case_list .case_item .al_logo .alogo_icon {
  height: 100px;
  width: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -50px 0 0 -50px;
  z-index: 2;
}
.h_i_center .c_center .case_list .case_item .al_logo .short_title {
  font-size: 36px;
  color: #ffffff;
  line-height: 50px;
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 50%;
  margin-top: -25px;
  z-index: 2;
}
.h_i_center .c_center .case_list .case_item .case_info {
  padding: 24px;
}
.h_i_center .c_center .case_list .case_item .case_info .case_item_title {
  font-size: 16px;
  color: #131415;
  line-height: 22px;
  margin-bottom: 8px;
}
.h_i_center .c_center .case_list .case_item .case_info .case_item_desc {
  font-size: 14px;
  color: #909399;
  line-height: 17px;
  height: 34px;
}
.h_i_center .c_center .case_detail {
  width: 1000px;
  margin-left: calc(50% - 500px);
}
.h_i_center .c_center .case_detail .detail_al_logo {
  margin-left: calc(50% - 50px);
  margin-top: 40px;
  margin-bottom: -20px;
}
.h_i_center .c_center .case_detail .use_title {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  height: 33px;
  font-size: 24px;
  color: #131415;
  line-height: 33px;
}
.h_i_center .c_center .case_detail .use_content {
  width: 600px;
  height: 167px;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  margin-left: calc(50% - 300px);
  text-align: center;
  margin-bottom: 20px;
}
.h_i_center .c_center .case_detail .use_content .use_logo {
  height: 60px;
  width: 60px;
  margin-top: 24px;
  margin-bottom: 16px;
}
.h_i_center .c_center .case_detail .use_content .use1_title {
  height: 22px;
  font-size: 16px;
  color: #131415;
  line-height: 22px;
}
.h_i_center .c_center .case_detail .use_content .use1_desc {
  height: 17px;
  font-size: 12px;
  color: #909399;
  line-height: 17px;
}
.h_i_center .c_center .case_detail .use_panel {
  padding-bottom: 80px;
}
.h_i_center .c_center .case_detail .use_panel .use_panel_title {
  text-align: left;
  height: 33px;
  font-size: 24px;
  color: #131415;
  line-height: 33px;
  margin-bottom: 16px;
}
.h_i_center .c_center .case_detail .use_panel p {
  font-size: 16px;
  color: #606266;
  line-height: 22px;
  margin-bottom: 16px;
}
.h_i_center .c_center .case_detail .use_panel .jjfa {
  margin-top: 12px;
}
.h_i_center .c_center .case_detail .use_btn {
  margin: 40px 0 100px 0;
  cursor: pointer;
  margin-left: calc(50% - 105px);
  width: 210px;
  height: 40px;
  background: #131415;
  line-height: 40px;
  font-size: 14px;
  color: #ffffff;
}
.h_i_center .c_center .contact_panel {
  margin: 80px 0;
  width: 1040px;
  margin-left: calc(50% - 520px);
}
.h_i_center .c_center .contact_panel .contact_panel_title {
  height: 45px;
  font-size: 32px;
  color: #131415;
  line-height: 45px;
  text-align: center;
}
.h_i_center .c_center .contact_panel .contact_item:hover {
  transform: translateY(-20px);
  /**上移元素**/
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
}
.h_i_center .c_center .contact_panel .contact_item:hover .contact_btn {
  background: #131415;
  border: 1px solid #131415;
  font-size: 12px;
  color: #f4f4f4;
}
.h_i_center .c_center .contact_panel .contact_item {
  transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  width: 480px;
  height: 150px;
  border: 1px solid #e8e8e8;
  padding: 40px 184px 40px 80px;
  float: left;
  margin: 20px;
}
.h_i_center .c_center .contact_panel .contact_item .contact_img {
  width: 60px;
  position: absolute;
  top: 40px;
  left: 8px;
}
.h_i_center .c_center .contact_panel .contact_item .contact_item_title {
  height: 25px;
  font-size: 18px;
  color: #303133;
  line-height: 25px;
  margin-bottom: 16px;
}
.h_i_center .c_center .contact_panel .contact_item .contact_item_desc {
  height: 17px;
  font-size: 12px;
  color: #909399;
  line-height: 17px;
}
.h_i_center .c_center .contact_panel .contact_item .contact_btn {
  position: absolute;
  top: 55px;
  right: 24px;
  width: 150px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #131415;
  font-size: 12px;
  color: #131415;
  line-height: 40px;
  text-align: center;
}
.h_i_center .c_center .pro_detail {
  width: 1000px;
  margin-left: calc(50% - 500px);
  padding-top: 60px;
}
.h_i_center .c_center .pro_detail .dleft {
  text-align: center;
  width: 200px;
  float: left;
  padding-right: 40px;
}
.h_i_center .c_center .pro_detail .dleft .pro_detail_logo {
  width: 160px;
  height: 160px;
  margin-bottom: 10px;
}
.h_i_center .c_center .pro_detail .dleft .pd_use_btn {
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 152px;
  height: 40px;
  background: #131415;
  font-size: 14px;
  color: #ffffff;
  line-height: 40px;
}
.h_i_center .c_center .pro_detail .dleft .pd_book {
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 152px;
  height: 40px;
  border: 1px solid #e8e8e8;
  font-size: 14px;
  color: #131415;
  line-height: 40px;
}
.h_i_center .c_center .pro_detail .dleft .pd_info {
  padding-bottom: 30px;
  text-align: left;
}
.h_i_center .c_center .pro_detail .dleft .pd_info .pd_info_key {
  height: 17px;
  font-size: 12px;
  color: #909399;
  line-height: 17px;
}
.h_i_center .c_center .pro_detail .dleft .pd_info .pd_info_value {
  height: 17px;
  font-size: 12px;
  color: #606266;
  line-height: 17px;
}
.h_i_center .c_center .pro_detail .dright {
  width: calc(100% - 200px);
  float: left;
  padding-bottom: 100px;
}
.h_i_center .c_center .pro_detail .dright .pd_info {
  display: none;
}
.h_i_center .c_center .pro_detail .dright .pro_detail_logo {
  display: none;
}
.h_i_center .c_center .pro_detail .dright .pro_detail_title {
  text-align: left;
  height: 37px;
  font-size: 26px;
  color: #131415;
  line-height: 37px;
  margin-bottom: 12px;
}
.h_i_center .c_center .pro_detail .dright .pro_detail_sub_title {
  text-align: left;
  margin-bottom: 32px;
  font-size: 22px;
  color: #000;
  line-height: 24px;
}
.h_i_center .c_center .pro_detail .dright .pro_detail_desc {
  text-align: left;
  padding-bottom: 40px;
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 40px;
  font-size: 16px;
  color: #000;
  line-height: 22px;
}
.h_i_center .c_center .pro_detail .dright .pro_detail_version {
  text-align: left;
  margin-bottom: 40px;
  font-size: 20px;
  color: #303133;
  line-height: 22px;
}
.h_i_center .c_center .pro_detail .dright .pro_detail_panel {
  margin-bottom: 40px;
}
.h_i_center .c_center .pro_detail .dright .pro_detail_panel .pro_detail_panel_title {
  text-align: left;
  margin-bottom: 20px;
  height: 22px;
  font-size: 20px;
  color: #303133;
  line-height: 22px;
}
.h_i_center .c_center .pro_detail .dright .pro_detail_panel .pro_detail_panel_ct .info {
  font-size: 16px;
  color: #606266;
  line-height: 22px;
}
.h_i_center .c_center .pro_detail .dright .pro_detail_panel .pro_detail_panel_ct .swiper-container {
  width: 100%;
  margin: 0;
  padding: 0;
  height: 545px;
}
.h_i_center .c_center .pro_detail .dright .pro_detail_panel .pro_detail_panel_ct .swiper-container .swiper-slide {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.h_i_center .c_center .pro_detail .dright .pro_detail_panel .pro_detail_panel_ct .swiper-container .plat_img {
  width: 784px;
  height: 100%;
}
.h_i_center .c_center .pro_detail .dright .pro_detail_replay {
  display: inline-block;
  width: 220px;
  height: 40px;
  background: #131415;
  line-height: 40px;
  margin-top: 40px;
  margin-bottom: 12px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  margin-left: calc(50% - 110px);
}
/** 联系我们处理 */
.contact_us {
  position: fixed;
  bottom: 85px;
  right: 20px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  z-index: 99;
}
.contact_us .contact_us_tag {
  width: 30px;
  margin: 15px;
}
.contact_pop {
  position: fixed;
  right: 90px;
  bottom: 85px;
  display: none;
  z-index: 999999;
  width: 300px;
  min-height: 62px;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}
.contact_pop .contact_pop_line {
  height: 62px;
  padding: 12px 0 0 62px;
}
.contact_pop .contact_pop_line .cplicon {
  position: absolute;
  left: 24px;
  top: 16px;
  width: 30px;
}
.contact_pop .contact_pop_line .contact_pop_title {
  font-size: 14px;
  color: #909399;
  line-height: 17px;
  margin-bottom: 4px;
}
.contact_pop .contact_pop_line .contact_pop_desc {
  font-size: 14px;
  color: #131415;
  line-height: 17px;
}
/** 底部处理 */
.h_i_footer {
  min-width: 1020px;
  background: #fff;
  border-top: 1px solid #F2F2F2;
  padding: 0 200px;
  padding-top: 90px;
}
.h_i_footer .left_colum {
  float: left;
  padding-bottom: 50px;
  width: 30%;
}
.h_i_footer .left_colum .fren_link:hover .logo_pop {
  opacity: 1;
}
.h_i_footer .left_colum .footer_logo_ct {
  cursor: pointer;
  margin-bottom: 40px;
}
.h_i_footer .left_colum .fren_link .logo_pop {
  opacity: 0;
  position: absolute;
  z-index: 99;
  left: -10px;
  top: -112px;
  width: 140px;
  height: 182px;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}
.h_i_footer .left_colum .fren_link .logo_pop .pop_logo_title {
  background: url('../../images/es/footer_pt_bg.png') no-repeat;
  background-size: cover;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
}
.h_i_footer .left_colum .fren_link .logo_pop .pop_qrcode {
  width: 100px;
  height: 100px;
  margin-top: 12px;
  margin-left: 20px;
}
.h_i_footer .left_colum .fren_link {
  margin-bottom: 60px;
  position: relative;
}
.h_i_footer .left_colum .fren_link .fren_icon {
  width: 24px;
  height: 24px;
  margin-right: 32px;
}
.h_i_footer .left_colum .copy,
.h_i_footer .left_colum .ba {
  font-size: 12px;
  color: #909399;
  line-height: 20px;
}
.h_i_footer .left_colum .ba {
  background: url('../../images/es/footer_gov.png') no-repeat;
  background-position: left;
  padding-left: 24px;
}
.h_i_footer .left_colum .footer_logo {
  width: 50px;
}
.h_i_footer .other_colum {
  width: 15%;
  float: left;
  padding-bottom: 50px;
}
.h_i_footer .other_colum .colum_title {
  font-size: 14px;
  color: #333333;
  line-height: 20px;
  margin-bottom: 24px;
}
.h_i_footer .other_colum .colum_item {
  font-size: 12px;
  color: #909399;
  line-height: 17px;
  margin-bottom: 16px;
}

/** 首页 处理*/
.home_page .h_i_header.nothover {
  background: transparent;
    box-shadow: none;
}
.home_page .h_i_header.nothover .header_nav > ul > li > a {
  color: #fff;
}
.home_page .h_i_header.nothover .header_nav > ul li.active,
.home_page .h_i_header.nothover .header_nav > ul li:hover {
  background: transparent;
}
.home_page .h_i_header.nothover .header_nav .pro_list {
  background: transparent;
  border: none;
}
.home_page .h_i_header.nothover .header_nav .pro_list .clz .clz_title {
  color: rgba(255, 255, 255, 0.8);
}
.home_page .h_i_header.nothover .header_nav .pro_list .clz li:not(.clz_title) .clz_item {
  color: #fff;
}
.home_page .h_i_header.nothover .header_nav .pro_list .clz li:not(.clz_title) .clz_desc {
  color: rgba(255, 255, 255, 0.8);
}
.home_page .h_i_header.nothover .header_nav .pro_list .clz li:not(.clz_title):hover {
  background: transparent;
}
.home_page .h_i_center {
  margin-top: -82px;
}
.home_page .h_i_center .hmct {
    display: block;
    height: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.home_page .h_i_center .hmct video {
    width: 2560px;
    height: 900px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1280px;
    z-index: 1;
}

.home_page .h_i_center .hmct .slide_tips {
    display: block;
    width: 30px;
    height: 104px;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    bottom: 12px;
    z-index: 2;
}
.home_page .h_i_center .hmct .slide_tips .s_line {
    display: block;
    width: 2px;
    height: 32px;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    top: 0px;
    background: #fff;
    animation: a_banner_s_line 3s 0.3s linear both infinite;
    -webkit-animation: a_banner_s_line 3s 0.3s linear both infinite;
    -ms-animation: a_banner_s_line 3s 0.3s linear both infinite;
    -moz-animation: a_banner_s_line 3s 0.3s linear both infinite;
    -o-animation: a_banner_s_line 3s 0.3s linear both infinite;
}
.home_page .h_i_center .hmct .slide_tips .slide_icon {
    position: absolute;
    bottom: 0;
}

.home_page .h_i_center .hmct > img {
  width: 100%;
}
.home_page .h_i_center .hmct .banner_modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 2;
  opacity: 0.4;
}
.home_page .h_i_center .hmct .banner {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 1920px;
    left: 50%;
    margin-left: -960px;
    text-align: center;
    margin-top: -182px;
    max-width: inherit;
}

.home_page .h_i_center .hmct .banner .slogo {
    width: 100%;
}

.home_page .h_i_center .hmct .banner_title {
    width: 100%;
    height: 50px;
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
    line-height: 50px;
    text-align: center;
    margin-bottom: 60px;
}
.home_page .h_i_center .hmct .banner_sub_title {
    width: 100%;
    height: 36px;
    font-size: 36px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 36px;
    text-align: center;
}

.home_page .h_i_center .top_product_ct {
  margin-bottom: 80px;
  width: 1240px;
  height: 430px;
  margin-left: calc(50% - 620px);
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
  padding: 20px;
  margin-top: -80px;
  z-index: 1;
  position: relative;
  display: block;
}
.home_page .h_i_center .top_product_ct #topp_swiper {
  width: 750px;
  height: 390px;
  float: left;
}
.home_page .h_i_center .top_product_ct #topp_swiper .toppl {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  width: 100%;
  height: 100%;
}
.home_page .h_i_center .top_product_ct #topp_swiper .toppl .toppl_logo {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.home_page .h_i_center .top_product_ct #topp_swiper .toppl .toppl_title {
  top: 75px;
  padding-left: 48px;
  font-size: 28px;
  color: #ffffff;
  line-height: 40px;
  position: absolute;
  z-index: 1;
}
.home_page .h_i_center .top_product_ct #topp_swiper .toppl .toppl_desc {
  font-size: 16px;
  color: #ffffff;
  line-height: 22px;
  margin-bottom: 98px;
  position: absolute;
  z-index: 1;
  top: 130px;
  padding-left: 48px;
}
.home_page .h_i_center .top_product_ct #topp_swiper .toppl .toppl_btn_group {
  position: absolute;
  top: 228px;
  z-index: 1;
  padding-left: 48px;
  text-align: left;
  font-size: 0;
}
.home_page .h_i_center .top_product_ct #topp_swiper .toppl .toppl_btn_group .use_btn,
.home_page .h_i_center .top_product_ct #topp_swiper .toppl .toppl_btn_group .view_vedio {
  margin-right: 10px;
  width: 100px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
}
.home_page .h_i_center .top_product_ct #topp_swiper .toppl .toppl_btn_group .use_btn {
  background: #0DA658;
  color: #ffffff;
}
.home_page .h_i_center .top_product_ct #topp_swiper .toppl .toppl_btn_group .view_vedio {
  color: #303133;
  background: #fff;
}
.home_page .h_i_center .top_product_ct .toppr {
  float: left;
  padding-left: 40px;
  width: calc(100% - 750px);
  padding-top: 20px;
}
.home_page .h_i_center .top_product_ct .toppr li {
  cursor: pointer;
  padding-bottom: 50px;
  padding-left: 48px;
}
.home_page .h_i_center .top_product_ct .toppr li .toppr_title {
  font-size: 20px;
  color: #909399;
  line-height: 28px;
  margin-bottom: 8px;
}
.home_page .h_i_center .top_product_ct .toppr li .toppr_sub_title,
.home_page .h_i_center .top_product_ct .toppr li .toppr_desc {
  transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  margin-bottom: 10px;
  font-size: 14px;
  color: #909399;
  line-height: 20px;
  height: 0;
  overflow: hidden;
}
.home_page .h_i_center .top_product_ct .toppr li .top_logo {
  position: absolute;
  left: 0;
  top: -6px;
  width: 40px;
  display: block;
  -webkit-filter: grayscale(100%);
  /* CSS3 filter方式，webkit内核方式，firefox外的绝大部分的现代浏览器*/
  -moz-filter: grayscale(100%);
  /* 目前没有实现 */
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  /* CSS3 filter方式，标准写法*/
  filter: gray;
}
.home_page .h_i_center .top_product_ct .toppr li.active {
  color: #303133;
}
.home_page .h_i_center .top_product_ct .toppr li.active .toppr_sub_title {
  display: block;
  height: 20px;
}
.home_page .h_i_center .top_product_ct .toppr li.active .toppr_desc {
  display: -webkit-box;
  height: 40px;
}
.home_page .h_i_center .top_product_ct .toppr li.active .top_logo {
  -webkit-filter: grayscale(0);
  /* Chrome, Safari, Opera */
  filter: grayscale(0);
}
.home_page .h_i_center .news_center {
  margin-bottom: 80px;
}
.home_page .h_i_center .news_center .newsc_title {
  font-size: 36px;
  color: #131415;
  line-height: 50px;
  margin-bottom: 40px;
  text-align: center;
}
.home_page .h_i_center .news_center .newsct {
  width: 1240px;
  margin-left: calc(50% - 620px);
  min-height: 475px;
}
.home_page .h_i_center .news_center .newsct .swiper-container {
  width: 750px;
  height: 350px;
}
.home_page .h_i_center .news_center .newsct #newsct_swiper1 {
  position: absolute;
  z-index: 9;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
}
.home_page .h_i_center .news_center .newsct #newsct_swiper1 .swiper-slide {
  padding: 40px;
}
.home_page .h_i_center .news_center .newsct #newsct_swiper1 .swiper-slide .news_title {
  font-size: 32px;
  color: #131415;
  line-height: 45px;
  margin-bottom: 24px;
}
.home_page .h_i_center .news_center .newsct #newsct_swiper1 .swiper-slide .swiper_newsdesc {
  font-size: 16px;
  color: #909399;
  line-height: 22px;
  height: 66px;
  margin: 24px 0;
}
.home_page .h_i_center .news_center .newsct #newsct_swiper1 .swiper-slide .end_qm {
  float: right;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}
.home_page .h_i_center .news_center .newsct #newsct_swiper1 .swiper-slide .view_detail {
  font-size: 14px;
  color: #303133;
  line-height: 20px;
  margin-top: 40px;
  display: inline-block;
  background: url('../../images/es/black_arrow.png') no-repeat;
  background-position: right;
  padding-right: 24px;
}
.home_page .h_i_center .news_center .newsct #newsct_swiper2 {
  height: 350px;
  position: absolute;
  top: 125px;
  right: 0;
  --swiper-navigation-color: #fff;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 20px;
  /* 设置按钮大小 */
}
.home_page .h_i_center .news_center .newsct #newsct_swiper2 .swiper-button-next,
.home_page .h_i_center .news_center .newsct #newsct_swiper2 .swiper-button-prev {
  top: 326px;
}
.home_page .h_i_center .news_center .newsct #newsct_swiper2 .swiper-button-prev {
  left: auto;
  right: 36px;
}
.home_page .video_modal {
  display: none;
  position: fixed;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.home_page .video_modal .white_close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 1;
}
.home_page .video_modal video {
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .lgp_ct,
  .mh_i_header,
  .mh_i_footer,
  .mtop_product_ct {
    display: none;
  }
}
/**/
@media screen and (max-width: 768px) {
  * {
    margin: 0;
    padding: 0;
  }
  html,
  body {
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
  p {
    text-indent: 0!important;
  }
  .multi_elli5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .h_i_header,
  .h_i_footer {
    display: none;
  }
  .h_i_center {
    margin-top: 60px!important;
    width: 100%;
    min-width: auto;
  }
  .mh_i_header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 999999;
    background: #f5f5f5;
  }

    .mh_i_header .logo_title {
        font-size: 16px;
        font-weight: 500;
        color: #333;
        position: absolute;
        left: 56px;
        top: 50%;
        margin-top: -11px;
    }

  .mh_i_header .mh_logo {
      margin-left: 20px;
      margin-top: 13px;
      height: 34px;
  }
  .mh_i_header .mmenu_btn {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 30px;
    height: 30px;
    background: url('../../images/es/mmenu_btn.png') no-repeat;
    background-size: cover;
  }
  .mh_i_header .mmenu_btn.close {
    background: url('../../images/es//black_close.png') no-repeat;
    background-size: cover;
    opacity: 1;
  }
  .mh_i_header .drop_modal {
    display: none;
    height: calc(100vh - 60px);
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
  }
  .mh_i_header .drop_modal > ul {
    background: #ffffff;
    min-height: 274px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .mh_i_header .drop_modal > ul .open .drop_arrow {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  .mh_i_header .drop_modal > ul .open .sub_menu {
    height: auto;
  }
  .mh_i_header .drop_modal > ul > li {
    padding: 0 20px;
    line-height: 50px;
  }
  .mh_i_header .drop_modal > ul > li a {
    display: inline-block;
    width: 50%;
  }
  .mh_i_header .drop_modal > ul > li span {
    font-size: 14px;
    color: #333333;
  }
  .mh_i_header .drop_modal > ul > li .drop_arrow.clickable {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 50px;
    z-index: 1;
  }
  .mh_i_header .drop_modal > ul > li .drop_arrow {
    position: absolute;
    width: 20px;
    right: 24px;
    top: 15px;
    cursor: pointer;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  .mh_i_header .drop_modal > ul > li .sub_menu {
    padding-left: 10px;
    transition: height 2s;
    -moz-transition: height 2s;
    /* Firefox 4 */
    -webkit-transition: height 2s;
    /* Safari 和 Chrome */
    -o-transition: height 2s;
    /* Opera */
    overflow: hidden;
    height: 0;
  }
  .mh_i_header .drop_modal > ul > li .sub_menu .menu_type_name {
    line-height: 50px;
    font-size: 16px;
    color: #909399;
  }
  .mh_i_header .drop_modal > ul > li .sub_menu .sub_menu_item {
    height: 58px;
    padding: 10px  0;
  }
  .mh_i_header .drop_modal > ul > li .sub_menu .sub_menu_item .main_menu_title {
    font-size: 14px;
    color: #333333;
    line-height: 20px;
  }
  .mh_i_header .drop_modal > ul > li .sub_menu .sub_menu_item .sub_menu_title {
    font-size: 12px;
    color: #909399;
    line-height: 17px;
  }
  .mh_i_footer {
    border-top: 1px solid #F0F2F5;
    margin-top: 60px;
  }
  .mh_i_footer .open .drop_arrow {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  .mh_i_footer .open .sub_items {
    height: auto;
  }
  .mh_i_footer > ul > li .item_name {
    display: inline-block;
    width: calc(100% - 40px);
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
  }
  .mh_i_footer > ul > li .item_name .mhf_title {
    font-size: 14px;
    color: #333333;
  }
  .mh_i_footer > ul > li .drop_arrow.clickable {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 50px;
    z-index: 1;
  }
  .mh_i_footer > ul > li .drop_arrow {
    position: absolute;
    width: 20px;
    right: 24px;
    top: 15px;
    cursor: pointer;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  .mh_i_footer > ul > li .sub_items {
    -moz-transition: height 2s;
    /* Firefox 4 */
    -webkit-transition: height 2s;
    /* Safari 和 Chrome */
    -o-transition: height 2s;
    /* Opera */
    overflow: hidden;
    height: 0;
    padding-left: 30px;
  }
  .mh_i_footer > ul > li .sub_items > li > a {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #606266;
  }
  .mh_i_footer .freen_link {
    text-align: center;
    margin-top: 40px;
  }
  .mh_i_footer .freen_link .fren_icon {
    margin: 0 24px;
  }
  .mh_i_footer .copy,
  .mh_i_footer .ba {
    font-size: 12px;
    color: #909399;
    line-height: 20px;
    margin: 20px 0 0 0;
    width: 100%;
    text-align: center;
  }
  .mh_i_footer .ba {
    margin-top: 0;
    margin-bottom: 16px;
  }
  .cpt {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    z-index: 9999999;
  }
  .cpt .contact_pop {
    position: absolute;
    bottom: 250px;
    right: 20px;
    width: calc(100% - 40px);
    display: block;
  }
  .lgp_ct {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
  }
  .lgp_ct .mlogo_pop {
    width: 140px;
    height: 182px;
    background: #ffffff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  }
  .lgp_ct .mlogo_pop .pop_logo_title {
    background: url('../../images/es/footer_pt_bg.png') no-repeat;
    background-size: cover;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 12px;
    color: #ffffff;
  }
  .lgp_ct .mlogo_pop .pop_qrcode {
    width: 100px;
    height: 100px;
    margin-top: 12px;
    margin-left: 20px;
  }
  /** 联系我们 */
  .h_i_center .c_center {
    /** 客户案例*/
    /** 关于润安 **/
    /** 产品中心 */
  }
  .h_i_center .c_center .page_title {
    height: auto;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 24px;
    color: #131415;
    line-height: 33px;
  }
  .h_i_center .c_center .title_desc {
    padding: 0 38px;
    height: auto;
    font-size: 14px;
    color: #909399;
    line-height: 17px;
  }
  .h_i_center .c_center .contact_panel {
    margin-left: 0;
    padding: 0 20px;
    width: 100%;
  }
  .h_i_center .c_center .contact_panel .contact_panel_title {
    height: 25px;
    font-size: 18px;
    color: #131415;
    line-height: 25px;
  }
  .h_i_center .c_center .contact_panel .contact_item {
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    height: 100px;
  }
  .h_i_center .c_center .contact_panel .contact_item .contact_img {
    display: none;
  }
  .h_i_center .c_center .contact_panel .contact_item .contact_btn {
    width: 140px;
    height: 30px;
    background: #ffffff;
    border: 1px solid #131415;
    right: 10px;
    top: 50%;
    margin-top: -15px;
    line-height: 30px;
    box-sizing: border-box;
  }
  .h_i_center .c_center .contact_panel .contact_item .contact_item_title {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .h_i_center .c_center .contact_panel .contact_item .contact_item_desc {
    font-size: 12px;
    color: #909399;
    line-height: 14px;
    width: calc(100% - 140px);
  }
  .h_i_center .c_center .case_list {
    width: 100%;
  }
  .h_i_center .c_center .case_list .case_item {
    width: calc(100% - 40px);
    height: 257px;
  }
  .h_i_center .c_center .case_list .case_item .al_logo {
    width: 100%;
    height: 180px;
  }
  .h_i_center .c_center .case_list .case_item .case_info {
    padding: 20px;
  }
  .h_i_center .c_center .case_list .case_item .case_info .case_item_desc {
    font-size: 14px;
    height: 17px;
  }
  .h_i_center .c_center .case_detail {
    width: 100%;
    margin: 0;
  }
  .h_i_center .c_center .case_detail .panel_content {
    font-size: 12px;
    color: #606266;
    line-height: 17px;
    padding: 0 20px;
  }
  .h_i_center .c_center .case_detail .panel_content .start_qm,
  .h_i_center .c_center .case_detail .panel_content .end_qm {
    width: 20px;
  }
  .h_i_center .c_center .case_detail .panel_content p {
    margin-bottom: 0;
  }
  .h_i_center .c_center .case_detail .use_title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #131415;
    line-height: 22px;
  }
  .h_i_center .c_center .case_detail .use_content {
    width: calc(100% - 40px);
    height: 132px;
    margin-left: 20px;
    margin-bottom: 40px;
  }
  .h_i_center .c_center .case_detail .use_content .use_logo {
    height: 40px;
    width: 40px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .h_i_center .c_center .case_detail .use_panel {
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .h_i_center .c_center .case_detail .use_panel .use_panel_title {
    text-align: center;
    font-size: 18px;
    color: #131415;
    line-height: 25px;
    height: 25px;
  }
  .h_i_center .c_center .case_detail .use_panel > p {
    font-size: 12px;
    color: #606266;
    line-height: 17px;
  }
  .h_i_center .c_center .case_detail .use_panel .jjfa {
    margin-top: 10px;
    width: 100%;
  }
  .h_i_center .c_center .anchor_about_ct {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    height: 48px;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    z-index: 9999;
  }
  .h_i_center .c_center .anchor_about_ct .anchor_about {
    margin: 0;
    width: 350px;
  }
  .h_i_center .c_center .anchor_about_ct .anchor_about .anchor_item {
    width: 70px;
    height: 40px;
    line-height: 40px;
  }
  .h_i_center .c_center .anchor_about_ct .anchor_about .anchor_item .anchor_title {
    font-size: 14px;
    color: #909399;
    line-height: 17px;
    margin-top: 12px;
  }
  .h_i_center .c_center .anchor_about_ct .anchor_about .anchor_item .active_line {
    margin-top: 6px;
  }
  .h_i_center .c_center .anchor_panel_ct {
    width: 100%;
    margin: 0;
    margin-top: 60px;
    padding: 0  20px;
  }
  .h_i_center .c_center .anchor_panel_ct #bgdd .panel_content {
    background: url('../../images/es/mcompany_map.png');
    height: 216px;
    margin: 0 -20px;
    margin-top: 84px;
    background-size: contain;
  }
  .h_i_center .c_center .anchor_panel_ct #bgdd .panel_content .company_addr_tag {
    width: 70px;
    bottom: 98px;
    right: 103px;
  }
  .h_i_center .c_center .anchor_panel_ct #bgdd .panel_content .addr_ct {
    padding: 20px;
    left: 20px;
    top: -64px;
    width: calc(100% - 40px);
    height: 129px;
    background: #ffffff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
  }
  .h_i_center .c_center .anchor_panel_ct #bgdd .panel_content .addr_ct .addr_city {
    margin-bottom: 19px;
    font-size: 18px;
    color: #303133;
    line-height: 25px;
  }
  .h_i_center .c_center .anchor_panel_ct #bgdd .panel_content .addr_ct > p {
    font-size: 14px;
    color: #909399;
    line-height: 17px;
    margin-bottom: 10px;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel {
    padding-bottom: 30px;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content {
    font-size: 12px;
    color: #606266;
    line-height: 17px;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .tu {
    height: 140px;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .start_qm,
  .h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .end_qm {
    width: 20px;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item {
    margin-bottom: 20px;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item .fzlc_item_title {
    height: 45px;
    line-height: 45px;
    padding-left: 20px;
    padding-right: 40px;
    font-size: 14px;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item .fzlc_item_title .panel_arrow {
    width: 20px;
    right: 10px;
    top: 12.5px;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item .fzlc_item_content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .fzlc_item .fzlc_item_content > p {
    width: 100%;
    font-size: 14px;
    color: #909399;
    line-height: 14px;
    margin-bottom: 18px;
    padding-left: 78px;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_content .hzhb_img {
    width: 32%;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    float: left;
    margin: 0 -1px -1px 0;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel .panel_title {
    height: 25px;
    font-size: 20px;
    color: #131415;
    line-height: 25px;
    margin-bottom: 10px;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel #gszz_swiper {
    margin: 0;
    width: 100%;
    height: 180px!important;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel #gszz_swiper .swiper-slide {
    height: 180px!important;
    width: 80%;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel #gszz_swiper .swiper-slide .zz_img {
    height: 100%;
    width: 100%;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel #gszz_swiper .swiper-slide:nth-child(2n) {
    width: 60%;
  }
  .h_i_center .c_center .anchor_panel_ct .anchor_panel #gszz_swiper .swiper-slide:nth-child(3n) {
    width: 40%;
  }
  .h_i_center .c_center .swiper-container {
    margin: 0 20px;
    width: calc(100% - 40px);
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    height: 190px;
  }
  .h_i_center .c_center .swiper-container .swiper-slide {
    height: 100%;
    box-sizing: border-box;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
  }
  .h_i_center .c_center .swiper-container .swiper-slide .slide_img {
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
  }
  .h_i_center .c_center .swiper-container .swiper-slide .slide_title {
    margin-top: 70px;
    margin-bottom: 10px;
    height: 22px;
    font-size: 16px;
    color: #ffffff;
    line-height: 22px;
  }
  .h_i_center .c_center .swiper-container .swiper-slide .slide_content {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 16px;
    height: 48px;
  }
  .h_i_center .c_center .swiper-container .swiper-slide .view_detail {
    display: none;
    height: 14px;
    font-size: 10px;
    color: #ffffff;
    line-height: 14px;
    margin-top: 30px;
  }
  .h_i_center .c_center .pro_title {
    height: 30px;
    font-size: 22px;
    color: #131415;
    line-height: 30px;
  }
  .h_i_center .c_center .pro_items {
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
  }
  .h_i_center .c_center .pro_items .pro_item {
    width: calc(100% - 40px);
    height: 286px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    margin: 0 20px;
    margin-bottom: 40px;
    padding: 30px;
  }
  .h_i_center .c_center .pro_items .pro_item .pro_logo {
    margin-bottom: 20px;
  }
  .h_i_center .c_center .pro_items .pro_item .pro_item_title {
    margin-bottom: 10px;
    height: 22px;
    font-size: 20px;
    color: #131415;
    line-height: 22px;
  }
  .h_i_center .c_center .pro_items .pro_item .pro_item_desc {
    margin-bottom: 30px;
    height: 20px;
    font-size: 14px;
    color: #909399;
    line-height: 20px;
  }
  .h_i_center .c_center .pro_items .pro_item .pro_item_content {
    font-size: 14px;
    color: #909399;
    line-height: 20px;
    height: 60px;
  }
  .h_i_center .c_center .pro_detail {
    width: 100%;
    margin-left: 0;
    padding-top: 34px;
  }
  .h_i_center .c_center .pro_detail .dleft {
    display: none;
    text-align: left;
    width: 100%;
    float: left;
    padding-right: 20px;
    padding-left: 20px;
  }
  .h_i_center .c_center .pro_detail .dleft .pro_detail_logo {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .h_i_center .c_center .pro_detail .dleft .pd_use_btn,
  .h_i_center .c_center .pro_detail .dleft .pd_book {
    display: none;
  }
  .h_i_center .c_center .pro_detail .dleft .pd_info {
    padding-bottom: 20px;
  }
  .h_i_center .c_center .pro_detail .dright {
    width: 100%;
    float: left;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 60px;
    position: relative;
  }
  .h_i_center .c_center .pro_detail .dright .pd_info {
    display: block;
    padding-bottom: 20px;
    text-align: left;
  }
  .h_i_center .c_center .pro_detail .dright .pd_info .pd_info_key {
    height: 17px;
    font-size: 12px;
    color: #909399;
    line-height: 17px;
    margin-bottom: 4px;
  }
  .h_i_center .c_center .pro_detail .dright .pd_info .pd_info_value {
    height: 17px;
    font-size: 12px;
    color: #606266;
    line-height: 17px;
  }
  .h_i_center .c_center .pro_detail .dright .pro_detail_logo {
    display: inline-block;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    position: absolute;
    top: 0;
    left: 20px;
  }
  .h_i_center .c_center .pro_detail .dright .pro_detail_title {
    margin-left: 90px;
    text-align: left;
    margin-bottom: 0;
    height: 25px;
    font-size: 20px;
    color: #000;
    line-height: 25px;
    width: calc(100% - 90px);
  }
  .h_i_center .c_center .pro_detail .dright .pro_detail_sub_title {
    text-align: left;
    margin-bottom: 50px;
    margin-left: 90px;
    height: 14px;
    font-size: 14px;
    color: #000;
    line-height: 14px;
    width: calc(100% - 90px);
  }
  .h_i_center .c_center .pro_detail .dright .pro_detail_desc {
    text-align: left;
    margin-bottom: 30px;
    font-size: 14px;
    color: #000;
    line-height: 17px;
  }
  .h_i_center .c_center .pro_detail .dright .pro_detail_version {
    text-align: left;
    margin-bottom: 30px;
    font-size: 16px;
    color: #131415;
    line-height: 22px;
    border-top: 1px solid #f2f2f2;
    margin-top: 10px;
    padding-top: 30px;
  }
  .h_i_center .c_center .pro_detail .dright .pro_detail_panel {
    margin-bottom: 30px;
  }
  .h_i_center .c_center .pro_detail .dright .pro_detail_panel .pro_detail_panel_title {
    margin-bottom: 10px;
    height: 22px;
    font-size: 16px;
    color: #131415;
    line-height: 22px;
  }
  .h_i_center .c_center .pro_detail .dright .pro_detail_panel .pro_detail_panel_ct .swiper-container {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 170px;
  }
  .h_i_center .c_center .pro_detail .dright .pro_detail_panel .pro_detail_panel_ct .info {
    font-size: 12px;
    color: #303133;
    line-height: 17px;
  }
  .h_i_center .c_center .pro_detail .dright .pro_detail_panel .pro_detail_panel_ct video {
    height: 180px!important;
  }
  /** 首页 **/
  .home_page .h_i_center .hmct {
    width: 100%;
      height: 480px;
  }
  .home_page .h_i_center .hmct > video {
    height: 100%!important;
  }
  .home_page .h_i_center .hmct > img {
    width: 100%;
  }
    .home_page .h_i_center .hmct .banner {
        position: absolute;
        top: 50%;
        z-index: 8;
        width: 740px;
        left: 50%;
        margin-left: -370px;
        margin-top: -70px;
        max-width: inherit;
    }
    .home_page .h_i_center .hmct .banner_title {
        width: 100%;
        height: 33px;
        font-size: 24px;
        color: #ffffff;
        line-height: 33px;
        text-align: center;
        margin-bottom: 20px;
    }
    .home_page .h_i_center .hmct .banner_sub_title {
        width: 100%;
        font-size: 18px;
        height: auto;
        color: #ffffff;
        line-height: 20px;
        text-align: center;
    }
  .home_page .h_i_center .top_product_ct {
    display: none;
  }
  .home_page .h_i_center .mtop_product_ct {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 50px;
  }
  .home_page .h_i_center .mtop_product_ct .newsc_title {
    margin-bottom: 30px;
    text-align: center;
    font-size: 22px;
    color: #131415;
    line-height: 30px;
  }
  .home_page .h_i_center .mtop_product_ct #mtopp_swiper1 {
    height: 240px;
    width: 100%;
  }
  .home_page .h_i_center .mtop_product_ct #mtopp_swiper1 .mtop_logo {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  .home_page .h_i_center .mtop_product_ct #mtopp_swiper1 .mtopp_short_title {
    display: inline-block;
    font-size: 16px;
    color: #606266;
    line-height: 20px;
    position: absolute;
    top: 10px;
    left: 50px;
  }
  .home_page .h_i_center .mtop_product_ct #mtopp_swiper1 .mtopp_title {
    font-size: 20px;
    color: #303133;
    line-height: 30px;
    margin-bottom: 10px;
    height: 60px;
  }
  .home_page .h_i_center .mtop_product_ct #mtopp_swiper1 .mtoppl_desc {
    font-size: 16px;
    color: #606266;
    line-height: 20px;
    margin-bottom: 20px;
    height: 40px;
  }
  .home_page .h_i_center .mtop_product_ct #mtopp_swiper1 .mtopp_btn_group {
    text-align: left;
    font-size: 0;
  }
  .home_page .h_i_center .mtop_product_ct #mtopp_swiper1 .mtopp_btn_group .muse_btn,
  .home_page .h_i_center .mtop_product_ct #mtopp_swiper1 .mtopp_btn_group .mview_vedio {
    width: 100px;
    height: 36px;
    margin-right: 10px;
    text-align: center;
    line-height: 36px;
    outline: none;
    font-size: 14px;
    display: inline-block;
  }
  .home_page .h_i_center .mtop_product_ct #mtopp_swiper1 .mtopp_btn_group .muse_btn {
    background: #0da658;
    color: #ffffff;
    border: none;
  }
  .home_page .h_i_center .mtop_product_ct #mtopp_swiper1 .mtopp_btn_group .mview_vedio {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    color: #303133;
  }
  .home_page .h_i_center .mtop_product_ct #mtopp_swiper2 {
    height: 160px;
  }
  .home_page .h_i_center .mtop_product_ct #mtopp_swiper2 .mtopp_logo {
    width: 100%;
    height: 100%;
  }
  .home_page .h_i_center .mtop_product_ct .mtoop_swiper2_indexs {
    width: 70px;
    height: 30px;
    line-height: 30px;
    background: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.14);
    position: absolute;
    bottom: -15px;
    left: 10px;
    font-size: 16px;
    color: #909399;
    text-align: center;
    z-index: 1;
  }
  .home_page .h_i_center .mtop_product_ct .mtoop_swiper2_indexs .index {
    color: #131415;
  }
  .home_page .h_i_center .news_center {
    margin-bottom: 60px;
  }
  .home_page .h_i_center .news_center .newsc_title {
    margin-bottom: 30px;
    text-align: center;
    font-size: 22px;
    color: #131415;
    line-height: 30px;
  }
  .home_page .h_i_center .news_center .newsct {
    width: 100%;
    margin-left: 0;
    min-height: 330px;
  }
  .home_page .h_i_center .news_center .newsct .swiper-container {
    width: 100%;
    height: 150px;
  }
  .home_page .h_i_center .news_center .newsct #newsct_swiper1 {
    position: absolute;
    z-index: 9;
    left: 20px;
    width: calc(100% - 40px);
    height: 182px;
    background: #ffffff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  }
  .home_page .h_i_center .news_center .newsct #newsct_swiper1 .swiper-slide {
    padding: 20px;
  }
  .home_page .h_i_center .news_center .newsct #newsct_swiper1 .swiper-slide .news_title {
    margin-bottom: 10px;
    font-size: 18px;
    color: #131415;
    line-height: 22px;
  }
  .home_page .h_i_center .news_center .newsct #newsct_swiper1 .swiper-slide > img {
    width: 16px;
  }
  .home_page .h_i_center .news_center .newsct #newsct_swiper1 .swiper-slide .swiper_newsdesc {
    font-size: 14px;
    color: #909399;
    line-height: 20px;
    height: 42px;
    margin: 12px 0;
  }
  .home_page .h_i_center .news_center .newsct #newsct_swiper1 .swiper-slide .view_detail {
    display: none;
    margin-top: 20px;
  }
  .home_page .h_i_center .news_center .newsct #newsct_swiper2 {
    height: 200px;
  }
  .home_page .nh_i_center .new_keywords .keyword {
    height: 120px;
    width: 50%;
    padding: 16px 0;
    box-sizing: border-box;
  }
  .home_page .nh_i_center .new_keywords .keyword .kicon {
    margin-bottom: 8px;
    width: 34px;
  }
  .home_page .nh_i_center .new_keywords .keyword .keyword_info {
    font-size: 14px;
      line-height: 22px;
  }
  .home_page .nh_i_center .pd {
    padding: 25px 0;
  }
  .home_page .nh_i_center .pd .pd_text_info {
    width: 100%;
  }
  .home_page .nh_i_center .pd .pd_text_info .pd_title {
    line-height: 22px;
    font-size: 22px;
    margin-bottom: 10px;
  }
  .home_page .nh_i_center .pd .pd_text_info .pd_sub_title {
    line-height: 20px;
    font-size: 14px;
    margin-bottom: 14px;

  }
  .home_page .nh_i_center .pd .pd_text_info .pd_desc {
    font-size: 12px;
    margin-bottom: 15px;
    text-indent: 2em;
    padding: 0 8px;
      line-height: 20px;
  }
  .home_page .nh_i_center .pd .pd_text_info .pd_btn_group {
    margin-bottom: 15px;
  }
  .home_page .nh_i_center .pd .pd_text_info .pd_btn_group .mbtn,
  .home_page .nh_i_center .pd .pd_text_info .pd_btn_group .nbtn {
    width: 80px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    margin: 0 15px;
  }
  .home_page .nh_i_center .pd .swiper-container {
    width: 98%;
    height: 200px;
  }
}
#zyhz > div.panel_content.clearfix.postive > p {
  font-size: 16px;
  color: #303133;
}
