/********
样式 2025-02-07 09:01
上次版本 2025-02-05 09:01
********/


/******** 重置样式 ********/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  font-size: 12px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-appearance: none;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  /*height: 100%;*/
  /*scroll-behavior: smooth;*/
}
img {
  border: 0;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: #999;
}
hr {
  border: 0;
  border-bottom: 1px solid #585858;
  margin: 10px 0;
}

/**
https://github.com/google/material-design-icons
感谢Google
**/

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/materialicons/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: url(../fonts/materialicons/MaterialIcons-Regular.eot?#iefix) format('embedded-opentype'),
       url(../fonts/materialicons/MaterialIcons-Regular.woff2) format('woff2'),
       url(../fonts/materialicons/MaterialIcons-Regular.woff) format('woff'),
       url(../fonts/materialicons/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  /*cursor: default;*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}
/******** 通用 ********/
body {
  /* font-family: Microsoft Yahei, sans-serif; */
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  color: #08070b;
  background-color: #f3f7fa;
  height: auto;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
/*  -webkit-transition: all 0.3s;
  transition: all 0.3s;*/
}
body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

body ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: rgba(0,0,0,0.1);
  /*background-color: #1d1d1d;*/
  border-radius: 100px;
}
body ::-webkit-scrollbar-thumb:window-inactive {
  /*background-color: rgba(0,0,0,0.1);*/
  background-color: #08070b;
}
body ::-webkit-scrollbar-thumb:vertical:hover,
body ::-webkit-scrollbar-thumb:horizontal:hover {
  /*background-color: rgba(0,0,0,0.3);*/
}
body ::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: rgba(0,0,0,0.2);
  /*background-color: #08070b;
  border: 2px solid #1d1d1d;*/
  border: 2px solid rgba(0,0,0,0.2);
}

/******** 清除浮动 ********/
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  clear: both;
}

/******** 按钮 ********/
.btn {
  display: inline-block;
  border: 0;
  border-radius: 3px;
  outline: none;
  /*box-shadow: 0 1px 2.5px rgba(0,0,0,.6);*/
  font-family: inherit;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  -webkit-appearance: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}


/* 按钮初始色，蓝 */
.btn_color_1 {
  background-color: #0081e6;
  color: #fff;
}
.btn_color_1.btn_text {
  background-color: #f4f4f4;
  color: #0081e6;
}
.btn_color_1.btn_outline {
  box-shadow: inset 0 0 0 1px #0081e6;
}
.btn_color_1:hover {
  background-color: #0072CC;
  color: #fff;
}
/* 按钮初始色，红 */
.btn_color_2 {
  background-color: #ef3a3a;/*f4330d*/
  color: #fff;
}
.btn_color_2.btn_text {
  background-color: #f4f4f4;
  color: #ef3a3a;
}
.btn_color_2.btn_outline {
  box-shadow: inset 0 0 0 1px #ef3a3a;
}
.btn_color_2:hover {
  background-color: #d63131;
  color: #fff;
}
/* 按钮初始色，绿 */
.btn_color_3 {
  background-color: #00c800;
  color: #fff;
}
.btn_color_3.btn_text {
  background-color: #f4f4f4;
  color: #00c800;
}
.btn_color_3.btn_outline {
  box-shadow: inset 0 0 0 1px #00c800;
}
.btn_color_3:hover {
  background-color: #00B100;
  color: #fff;
}
/* 按钮初始色，白 */
.btn_color_4 {
  background-color: #f6f6f6;
  color: #08070b;
}
.btn_color_4.btn_text {
  background-color: #f4f4f4;
}
.btn_color_4.btn_outline {
  box-shadow: inset 0 0 0 1px #999;
}
.btn_color_4:hover {
  background-color: #eee;
}
/* 按钮初始色，黄 */
.btn_color_5 {
  background-color: #ef832c;
  color: #fff;
}
.btn_color_5.btn_text {
  background-color: #f4f4f4;
  color: #ef832c;
}
.btn_color_5.btn_outline {
  box-shadow: inset 0 0 0 1px #ef832c;
}
.btn_color_5:hover {
  background-color: #F77200;
  color: #fff;
}

.btn_shadow {
  box-shadow: 0 1px 5px rgba(0,0,0,.5);
}
.btn.disabled,
.btn.disabled:hover {
  background-color: #e5e5e5;
  color: #aaa;
  box-shadow: none;
  cursor: default;
}
.btn_round {
  border-radius: 100px;
}
.btn .material-icons {
  position: relative;
  vertical-align: middle;
}
.btn.btn_hasicon .material-icons {
  vertical-align: top;
  line-height: inherit;
}
.btn.btn_hasicon span {
  padding: 0 5px;
  line-height: inherit;
}

/******** 小徽章 标签 ********/
.badge {
  display: inline-block;
  font-style: normal;
  background-color: #0081e6;/* 蓝 */
  color: #fff;
  border-radius: 3px;
  padding: 0 4px;
  font-size: 12px;
  line-height: 24px;
  height: 24px;
}
.badge_color_1 {
  background-color: #ef3a3a;/* 红 */
}
.badge_color_2 {
  background-color: #00c800;/* 绿 */
}
.badge_color_3 {
  background-color: #ff7e00;/* 黄 */
}
.badge_color_4 {
  background-color: #e5e5e5;/* 灰 */
  color: #aaa;
}


/******** 子页面 ********/
.subpage {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #e9e9e9;
  z-index: 100;
  overflow-y: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: none;
  transform: none;/* translate(0, 0) */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.subpage.hide {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

/******** 卡片 ********/
.card {
  display: block;
  background-color: #08070b;
  box-shadow: 0 1px 10px rgba(0,0,0,.5);
  border-radius: 4px;
  position: relative;
  /*overflow: hidden;*/
}

.card_title {
  color: #858585;
}

.card_more {
  /*position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;*/
  display: block;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  color: #6d6d6d;
  font-size: 12px;
  background-color: #f4f4f4;
}

/******** 通用黑色遮罩 ********/
.mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .8;
  z-index: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#shadow {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .8;
  z-index: 5;
  display: none;
}
.shadow_show {
  overflow: hidden;
  position: fixed;
  /*position: absolute;*/
  width: 100%;
  height: 100%;
}

/** 通用空结果 **/
.nothing {
  font-size: 20px;
  text-align: center;
  color: #aaa;
  padding: 60px 0;
}
.nothing a {
  color: #0081e7;
}
.nothing small {
  font-size: 14px;
}
.nothing .btn {
  font-size: 12px;
  padding: 5px 10px;
  margin: 10px 0 0;
}
.nothing .material-icons.big {
  font-size: 60px;
}

/******** 通用头像 ********/
.avatar,
.image {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-image: url(../img/img_blank.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.image {
  border-radius: 0;
}
.avatar {
  box-shadow: inset 0 0 5px rgba(0,0,0,.2);
  background-image: url(../img/u_avatar.png);
}
.iconimg {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/img_blank.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/******** 通用弹出 ********/
/** 通用弹出
UPDATE: 2017/06/06
 **/
#poptips {
  display: none;
  z-index:10001;
}
.poptips_show {
  overflow: hidden;
  /*position: fixed;*/
  position: absolute;
  width: 100%;
  height: 100%;
}
.poptips_show #poptips {
  display: block;
  /*cursor: pointer;*/
}
@-webkit-keyframes poptips_ani {
  0% {
    -webkit-transform: translate(-50%, -150%);
  }
  85% {
    -webkit-transform: translate(-50%, 5%);
  }
  100% {
    -webkit-transform: translate(-50%, 0);
  }
}
@keyframes poptips_ani {
  0% {
    transform: translate(-50%, -150%)/* perspective( 100px ) rotateX(-10deg)*/;
  }
  85% {
    transform: translate(-50%, 5%)/* perspective( 100px ) rotateX(.5deg)*/;
  }
  100% {
    transform: translate(-50%, 0)/* perspective( 100px ) rotateX(0deg)*/;
  }
}
#poptips:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  z-index: 899;
}
#poptips .poptips_box {
  display: inline-block;
  position: fixed;
  top: 30%;
  left: 50%;
  min-width: 300px;
  max-width: 600px;
  margin: 0 auto;
/*  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);*/
  background-color: #fff;
  padding: 20px;
  border-radius: 3px;
  box-shadow: 0 3px 7px rgba(0,0,0,.6);
  z-index: 900;
  -webkit-animation: poptips_ani .7s 1 both;
  animation: poptips_ani .7s 1 both;
}
#poptips .title {
  font-weight: bold;
  text-align: center;
  padding-bottom: 10px;
  color: #08070b;
  font-size: 14px;
}
#poptips .con {
  color: #757575;
  font-size: 14px;
  overflow: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
#poptips .con.center {
  text-align: center;
}
#poptips .con strong {
  color: #ef3a3a;
}
#poptips .con hr {
  margin: 10px 0;
}
#poptips .btn_group {
  padding-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
}
#poptips .btn_group .btn {
  display: inline-block;
  font-size: 12px;
  line-height: 40px;
  background-color: #0081e6;
  color: #fff;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 1px 5px rgba(0,0,0,.3);
}
#poptips .btn_group .cancel {
  background-color: #e5e5e5;
  color: #424242;
  margin-right: 10px;
  box-shadow: none;
}

.ie8 #poptips .poptips_box {
  left: 40px;
  right: 40px;
  border: 1px solid #c8c8c8;
}
@media (min-width: 320px) {
  #poptips .poptips_box {
    max-width: 310px;
  }
}
@media (min-width: 350px) {
  #poptips .poptips_box {
    max-width: 340px;
  }
}

@media (min-width: 480px) {
  #poptips .poptips_box {
    max-width: 400px;
  }
}

/** 快速闪现提示
UPDATE: 2018/09/06
上次版本: 2017/11/30
 **/
#winktips {
  position: fixed;
  bottom: 70px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 999999;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
#winktips .item {
  display: block;
  margin-bottom: 5px;
  display: none;
}
#winktips .item.pointer {
  pointer-events: initial;
}
#winktips .item span {
  display: inline-block;
  background-color: #000;
  background-color: rgba(0,0,0,.8);
  color: #fff;
  padding: 10px;
  border-radius: 3px;
}
#winktips .item a {
  cursor: pointer;
}

/******** 载入指示器 ********/

#loader {
  background-color: #fff;
  opacity: 1;
  position: fixed;
  bottom: 90px;
  left: 50%;
  margin-left: -25px;
  z-index: 100;
  padding: 10px;
  border-radius: 100px;
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: loader_show .3s 1 both;
  animation: loader_show .3s 1 both;
}
#loader.hide {
  display: none;
  /*-webkit-animation: loader_hide .5s 1 both;
  animation: loader_hide .5s 1 both;*/
}

@-webkit-keyframes loader_show {
  0%{ -webkit-transform: translate(0, 190px); opacity:0 }
  1%{ -webkit-transform: translate(0, 190px); opacity:1 }
  100%{ -webkit-transform: translate(0, 0); opacity:1 }
}
@keyframes loader_show {
  0%{ transform: translate(0, 190px); opacity:0 }
  1%{ transform: translate(0, 190px); opacity:1 }
  100%{ transform: translate(0, 0); opacity:1 }
}
@-webkit-keyframes loader_hide {
  0%{ -webkit-transform: translate(0, 0); opacity:1 }
  30%{ -webkit-transform: translate(0, 0); opacity:1 }
  100%{ -webkit-transform: translate(0, 190px); opacity:0 }
}
@keyframes loader_hide {
  0%{ transform: translate(0, 0); opacity:1 }
  30%{ transform: translate(0, 0); opacity:1 }
  100%{ transform: translate(0, 190px); opacity:0 }
}


#loader:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border: 5px solid #1e88e5;
  border-top-color: transparent;
  border-radius: 100px;
  -webkit-animation: loader_ani 1s infinite;
  animation: loader_ani 1s infinite;
  /*display: none;*/
}


@-webkit-keyframes loader_ani {
  0%{ -webkit-transform: rotate(30deg); opacity:1 }
  50%{ opacity:0.5 }
  100%{ -webkit-transform: rotate(390deg); opacity:1 }
}
@keyframes loader_ani {
  0%{ transform: rotate(30deg); opacity:1 }
  50%{ opacity:0.5 }
  100%{ transform: rotate(390deg); opacity:1 }
}


/** 表单 通用 **/

.card_form {
  padding: 15px;
  margin-bottom: 5px;
}
@media (min-width: 480px) {
  .card_form {
    padding: 15px 30px;
  }
}
/*.card_form .form_item:last-of-type,
.card_form .form_item:last-child {
  border-bottom: none;
}*/

/*select.form_input*/
.form_check input[type="checkbox"],
.form_check input[type="radio"]
.form_input[type="text"],
textarea.form_input,
.appearance_none {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  outline: none;
  margin: 0;
}



.form_item {
  display: block;
  position: relative;
  font-size: 0;
  padding: 0;
  font-size: 14px;
  border-bottom: 1px solid #5d5d5d;
  /*display: -webkit-box;
  display: -webkit-flex;
  display: flex;*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_item.focus {
  border-color: #ccc;
}
.form_item.noborder {
  border-bottom: none;
}
.form_label {
  /*float: left;*/
  color: #8c8c8c;
  display: block;
  /*width: 20%;*/
  line-height: 40px;
  /*position: absolute;
  top: 0;
  left: 0;*/
  font-size: 14px;
  /*z-index: 1;*/
  /*min-width: 80px;*/
  width: 80px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 5px;
  position: absolute;
  top: 0;
  left: 0;
}
.form_item_con {
  position: relative;
  padding-left: 80px;
  width: 100%;
  min-height: 40px;
  /*-webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;*/
}
.form_static {
  /*border: 1px solid transparent;*/
  line-height: 1;
  min-height: 40px;
  padding: 13px 0;
  font-size: 14px;
}
.form_input {
  background-color: transparent;
  border: 0;
  /*line-height: 40px;*/
  height: 40px;
  padding: 0 15px;
  font-size: 14px;
  font-family: inherit;
  max-width: 100%;
  display: inline-block;
  outline: none;
  /*border: 1px solid #ddd;*/
  color: #08070b;
}
.form_input.hasborder {
  border-bottom: 1px solid #5d5d5d;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_input.hasborder.focus {
  border-color: #ccc;
}
.form_check {
  display: inline-block;
  line-height: 40px;
  height: 40px;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  padding-right: 5px;
}
.form_check input[type="checkbox"],
.form_check input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  margin: 0 0px 0 0;
  vertical-align: middle;
  display: inline-block;
  width: 24px;
  height: 22px;
}
.form_check input[type="checkbox"]:before,
.form_check input[type="checkbox"]:after,
.form_check input[type="radio"]:before,
.form_check input[type="radio"]:after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  position: relative;
  top: 6px;
  left: 0;
  line-height: 10px;
  padding-bottom: 12px;
  color: #999;
}
.form_check input[type="radio"]:before {
  content: "";
}
.form_check input[type="radio"]:checked:before {
  content: "";
  color: #068bf0;/*#0081e6*/
  -webkit-animation: check_radio 0.2s ease-out 0s 1 normal both;
  animation: check_radio 0.2s ease-out 0s 1 normal both;/**/
}

.form_check input[type="checkbox"]:before {
  content: "\e835";
}
.form_check input[type="checkbox"]:checked:before {
  content: "\e834";
  color: #068bf0;/*#0081e6*/
  -webkit-animation: check_radio 0.2s ease-out 0s 1 normal both;
  animation: check_radio 0.2s ease-out 0s 1 normal both;
}
.form_check input[type="checkbox"] + span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_check input[type="radio"]:checked + span,
.form_check input[type="checkbox"]:checked + span {
  color: #068bf0;
}
.form_check > .material-icons {
  vertical-align: middle;
  color: #999;
  opacity: .7;
}
.form_check span {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
}
.form_check [type=checkbox]:checked ~ span,
.form_check [type=checkbox]:checked ~ .material-icons {
  color: #068bf0;
}
.form_check [type=checkbox]:disabled ~ span {
  opacity: .5;
}
@-webkit-keyframes check_radio {
  0%{-webkit-transform:scale(0); opacity:0}
  100%{-webkit-transform:scale(1); opacity:1}
}
@keyframes check_radio {
  0%{transform:scale(0); opacity:0}
  100%{transform:scale(1); opacity:1}
}
/*
.form_imgupload {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 2px solid #fff;
}*/
.form_item .cover {
  background-color: #f4f4f4;
  background-image: url(../img/img_blank.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/*
.form_item .cover,
.form_item .avatar {
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 2px solid #fff;
  margin: 0 0 0 auto;
}
*/
.form_imgupload_box {
  font-size: 0;
}



.form_item_plane .form_item_con {
  /*text-align: right;*/
}
.form_item_plane .form_item_con .form_input {
  width: 100%;
  background-color: transparent;
  /*text-align: right;*/
  padding: 0;
}
.form_item_plane .form_item_con .form_input:focus {
  outline: none;
}
.form_item_plane .form_item_con textarea.form_input {
  line-height: 1.2;
  padding-top: 10px;
  min-height: 80px;
  text-align: left;
}

.form_item_tips {
  padding: 5px 0;
}
.form_item_tips .form_item_con {
  min-height: initial;
}
.form_item_tips .form_static {
  text-align: left;
  background-color: #FEFFD9;
  border: 1px dotted #c8c8c8;
  padding: 5px 10px;
  line-height: 1.2;
  font-size: 14px;
  min-height: initial;
}
.form_item_tips .form_static small {
  color: #ef3a3a;
}
.form_item_tips.form_item_plane .form_label {
  display: none;
}
.form_item_tips.form_item_plane .form_item_con {
  padding-left: 0;
}
.form_item_tips .form_static hr {
  margin: 5px 0;
  border: 0;
  border-bottom: 1px dotted #c8c8c8;
}
.form_item_con select.form_input {
  background-color: transparent;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAACV0lEQVR4Xu2YPUvDQBiA700xXfwXbi4WBCfB0b+jW0wpHpQm2XTtT3EUnAShLm7+hG4uDSQnBw2IJLmP3HuXj+uapHd5+jy5S4FM/AMTv3/iAXgDJk7AJzBxAfxD0CfgE5g4AZ/AxAXwq4BPoCmBzWZzGwRBNIZEyrLMlsvlS929NBpAKQ3m8/krIeR64BDeDofDDaW0VALAT16v12ez2WwHAKdDhMAY+ymKYrFarb6b5i98BiRJcgcATwMFcB/H8XPb3IUABpxCq/oVFCGAIaYgo74SAH7ykFJgjAnVVwYwoBSk1FcG8CeFLwAI+/hQVFFfC8AxhQgA0p4CkFZfG0CPU1BSXxtAH1NgjOVFUZy3bXi0N0JNFyZJ0psUGGMPcRxnOllK7QPqvrhHKWip3ymB6uLju4KzVaGL+kYAuF4VuqhvDIDDFDqpbwyAi1XBhPpGAdhOwYT6xgHwFMIw/ACAhc5ypHCNEfWNA+BfmGXZRVmW71jvCibVRwGAnYJJ9dEAIKZgVH00ABgpYKiPCsB0ChjqowMwlQJjbJfn+WXT//oKq0ftqdovQzIDd10VuPpBEFxFUfQpM57OOagAuqaAqT56AtUAuilgq28NgM6qYEN9qwD4YGmaUkLIo0ynNtS3DmC73Z7s93u+TW59V7ClvnUAMinYVN8JAFEKNtV3BqApBdvqOwNQl4IL9Z0C+J+CC/WdA6hS4BPB3OuLll30rXDbBPi7Aj+OudfvNQDR5Gwcd2qAjRsUjeEBiAiN/bg3YOy/sOj+vAEiQmM/7g0Y+y8sur9fwQmLULMwzdsAAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-size: auto 12px;
  background-position: calc(100% - 7px) 50%;
  cursor: pointer;
}
.form_item_plane select.form_input {
  /*direction: rtl;*/
  background-color: transparent;
}
select.form_input option {
  /*direction: ltr;*/
  color: #08070b;
}

.form_textarea {
  display: block;
}
.form_textarea .form_label {
  position: relative;
  width: 100%;
}
.form_textarea .form_item_con {
  padding-left: 0;
  clear: both;
}
.form_textarea .form_item_con textarea.form_input {
  padding-top: 0;
}

.form_help {
  text-align: left;
  /*background-color: #FEFFD9;
  border: 1px dotted #c8c8c8;*/
  padding: 5px 0;
  margin-bottom: 5px;
  line-height: 1.2;
  font-size: 12px;
  color: #858585;
}
.form_item_plane .form_help {
  text-align: right;
}
.haserror .form_help {
  padding: 5px;
  border-color: #FFC6C6;
  color: #ef3a3a;
  background-color: #FEFFD9;
}

.form_unit {
  position: absolute;
  top: 0;
  right: 0;
  color: #8c8c8c;
  line-height: 40px;
  height: 40px;
}
.form_item_con .form_input.has_unit {
  padding-right: 40px;
}

.form_icon {
  position: absolute;
  top: 0;
  left: 0;
  color: #8c8c8c;
  line-height: 40px;
  height: 40px;
  width: 40px;
  text-align: center;
}
.form_item_con .form_input.has_icon {
  padding-left: 40px;
}


.form_item.form_item_btn {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 0;
  color: #6d6d6d;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  /*padding-top: 10px;*/
  border: none;
}
.form_item.form_item_btn .form_btn_part {
  position: relative;
  padding: 0 2.5px;
  font-size: 12px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.form_item.form_item_btn .form_btn_part.half {
  -webkit-box-flex: .5;
  -webkit-flex: .5;
  flex: .5;
}
.form_item.form_item_btn .form_btn_part .form_btn {
  display: block;
  width: 100%;
  line-height: 40px;
}
.form_item.form_item_btn .form_btn_part:first-of-type {
  padding-left: 0;
}
.form_item.form_item_btn .form_btn_part:last-of-type {
  padding-right: 0;
}
.form_item.form_item_btn .form_btn_part .form_btn i,
.form_item.form_item_btn .form_btn_part .form_btn span {
  vertical-align: top;
  line-height: inherit;
}
/** 时间段 **/
.dateregion_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.dateregion_wrap .form_input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  background-color: transparent;
  border-color: #e8e8e8;
  cursor: pointer;
  color: #08070b;
  text-align: center;
  padding: 0;
  width: 100%;
}
.dateregion_wrap span {
  display: block;
  padding: 0 10px;
}

.main_top_box .dateregion_wrap {
  width: 100%;
}
.main_top_box .dateregion_wrap .form_input {
  display: block;
}

/** 切换Switch **/
.form_switchbox {
  margin: 0;
  display: block;
  padding: 3px 0;
}
.form_switchbox .switchbox {
  background-color: #7d7d7d;/*#d9534f*/
  border-radius: 3px;
  min-width: 34px;
  height: 34px;
  line-height: 34px;
  padding: 0 8px 0 18px;
  font-weight: normal;
  font-size: 12px;
  position: relative;
  cursor: pointer;
  color: #fff;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_switchbox .switchbox span {
  line-height: inherit;
  vertical-align: top;
}
.form_switchbox [type=checkbox]:checked + .switchbox .sorry,
.form_switchbox .switchbox .ok {
  display: none;
}
.form_switchbox [type=checkbox]:checked + .switchbox .ok {
  display: block;
}
.form_switchbox .switchbox:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  left: 2px;
  top: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_switchbox [type=checkbox]:checked + .switchbox {
  background-color: #0081e6;/*#5cb85c*/
  color: #fff;
  padding: 0 18px 0 8px;
}
.form_switchbox [type=checkbox]:checked + .switchbox:before {
  left: auto;
  right: 2px;
  background-color: #fff;
}

/** 通用地址选择 **/
.select_zone .dropdown {
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
}
.select_zone .dropdown_menu {
  position: absolute;
  background-color: #fff;
  border: 1px solid #c8c8c8;
  z-index: 1;
  padding: 10px;
  width: 100%;
  top: auto;
}
.select_zone .dropdown_menu .form_select {
  margin-bottom: 10px;
  width: 100%;
}
.select_zone .dropdown_menu .form_select:last-of-type {
  margin-bottom: 0;
}
.select_zone .input_address {
  margin-top: 10px;
}

.form_item_plane .form_item_con.select_zone {
  font-size: 0;
}
.form_item_plane .form_item_con.select_zone .dropdown:after {
  content: "";
}
.form_item_plane .form_item_con.select_zone .dropdown_menu {
  margin-left: -80px;
  border: 0;
  background-color: transparent;
  position: relative;
  width: auto;
  padding: 0;
  margin-top: -10px;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select {
  border-bottom: 1px solid #e8e8e8;
/*  line-height: 40px;
  height: 40px;*/
  margin-bottom: 0;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select:first-of-type {
  margin-top: 10px;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select:last-of-type {
  border-bottom: 0;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select:after {
  right: 0;
}
.form_item_plane .form_item_con.select_zone .dropdown_menu .form_select select {
  direction: ltr;
}

/** 范围 滑杆 数字拉杆 **/
.form_range {
  position: relative;
  width: 100%;
  height: 40px;
  border-radius: 100px;
  overflow: hidden;
}
.form_range .form_range_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;/*#e8e8e8*/
  border-radius: 100px;
}
.form_range .form_range_bar {
  position: absolute;
  top: 0;
  left: 0;
  /*right: 0;*/
  bottom: 0;
  background-color: #0ca7ff;
  width: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100px;
}
.form_range.warning .form_range_bar {
  background-color: #ffa82b;
}
.form_range.danger .form_range_bar {
  background-color: #ff442b;
}
.form_range input[type=range] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  cursor: col-resize;
}

/** 目录树 **/
.ul_tree {
  padding-left: 0;
  list-style-type: none;
  margin-top: 4px;
}
.ul_tree label {
  margin: 0;
  width: 100%;
}
.ul_tree ul {
  /*border: 1px solid #DEDEDE;*/
  padding: 5px;
  padding-left: 20px;
  margin: 5px 0;
  list-style-type: none;
  position: relative;
}
.ul_tree ul:before {
  content: "";
  position: absolute;
  top: 0;
  left: 11px;
  width: 0;
  bottom: 17px;
  border-left: 1px dotted #bbb;
}
/*
.ul_tree ul:after {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;
  width: 11px;
  height: 0;
  border-top: 1px dotted #bbb;
}
*/
.ul_tree li {
  position: relative;
}
.ul_tree li:before {
  content: "";
  position: absolute;
  top: 13px;
  left: -8px;
  width: 5px;
  height: 0;
  border-top: 1px dotted #bbb;
}
.ul_tree > li:before {
  display: none;
}
.ul_pool {
  background-color: #f4f4f4;
  background-color: rgba(0,0,0,.03);
}
.ul_pool li {
  display: inline-block;
  padding-right: 20px;
}
.ul_pool li:before {
  display: none;
}

.ul_tree .placeholder_fold i,
.ul_tree .btn_fold i {
  vertical-align: middle;
  color: #ccc;
  font-size: 16px;
  width: 24px;
  text-align: center;
}
.ul_tree .flod .btn_fold i.off,
.ul_tree .btn_fold i.on {
  display: none;
}
.ul_tree .flod .btn_fold i.on {
  display: inline-block;
  color: #999;
}
.ul_tree .placeholder_fold {
  /*cursor: default;*/
}
.ul_tree .placeholder_fold i {
  opacity: 0;
}
.ul_tree .flod ul {
  display: none;
}

.ul_tree.has_foldbtn .ul_pool {
  padding-left: 40px;
}
.ul_tree .form_check {
  line-height: 30px;
  height: 30px;
}









/******** 滑出面板 ********/
.subplate_wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 12;
}
.subplate_wrap .mask {
  cursor: pointer;
}
.subplate {
  position: fixed;
  top: 80px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #08070b;
  box-shadow: 0 -1px 10px rgba(0,0,0,.5), 0 0 5px rgba(0,0,0,.5);
  z-index: 6;
  overflow: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.subplate_box {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.subplate_wrap.hide {
  visibility: hidden;
}
.subplate_wrap.hide .subplate {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.subplate_wrap.hide .mask {
  opacity: 0;
}
/*
.subplate_wrap .btn_cancel {
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 100px;
  width: 40px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
}
*/
.subplate_wrap .subplate_title {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  font-size: 14px;
  color: #858585;
  margin-bottom: 10px;
}

.subplate_wrap .bottombar {
  z-index: 7;
  box-shadow: none;
}



/** 通用页签导航 **/
.tab_nav {
  font-size: 0;
  /*background-color: #e5e5e5;
  box-shadow: inset 0 -1px 3px rgba(0,0,0,.2);*/
  white-space: nowrap;
  overflow: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.tab_nav a {
  position: relative;
  font-size: 12px;
  line-height: 35px;
  display: inline-block;
  padding: 0 5px;
  text-align: center;
  cursor: pointer;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  z-index: 1;
}
.tab_nav a:hover {
  color: #0081e6;
}
.tab_nav a.active {
  color: #0081e6;
  background-color: #fff;
  border-bottom: 3px solid #0081e6;
  font-weight: bold;
}
.tab_nav a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-right: 1px solid #f4f4f4;
}
.tab_nav a:first-of-type:after {
  border-right: 0;
}
.tab_nav a span,
.tab_nav a .material-icons {
  vertical-align: middle;
}

.tab_plate {
  display: none;
}

.tab_plate.active {
  display: block;
}
.tab_nav.noflex {
  display: block;
}
.tab_nav.noflex a {
  padding: 0 15px;
}

.subtab_nav {
  background-color: #f4f4f4;
  box-shadow: inset 0 2px 2px rgba(0,0,0,.1);
}
.subtab_nav .item {
  margin: 5px;
  border: none;
  border-radius: 4px;
}
.subtab_nav .item.active {
  color: #fff;
  background-color: #0081e6;
  border: none;
}
.subtab_nav a:after {
  display: none;
}

/******** 通用富文本内容 ********/
.richtext {
  /*font-size: 16px;
  line-height: 1.5;*/
  font-size: 13px;
  line-height: 1.5;
  overflow-y: hidden;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.richtext img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.richtext p {
  max-width: 100%;
  /*text-indent: 2em;*/
  margin: 0;
}
.richtext .table {
  overflow-y: hidden;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.richtext table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;  
  border-spacing: 0;
  text-align: left;
  margin-bottom: 60px;
  overflow: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.richtext table caption {
  text-align: left;
  padding: 10px 0;
  font-weight: bold;
}
.richtext table caption small {
  font-size: 12px;
}
.richtext th,
.richtext td {
  border: 1px solid #ddd;
  font-size: 14px;
  padding: 5px 10px;
  background-color: #fff;
}
.richtext th {
  font-size: 14px;
  padding: 10px;
  background-color: #F3F3F3;
}
.richtext .face {
  display: inline-block;
}

/** 动画 心跳 **/
@-webkit-keyframes popheart {
  0 {
    -webkit-transform: scale( 1 );
  }
  100% {
    -webkit-transform: scale( 3 );
    opacity: 0;
  }
}
@keyframes popheart {
  0 {
    transform: scale( 1 );
  }
  100% {
    transform: scale( 3 );
    opacity: 0;
  }
}
/** 动画 摇动 **/
@-webkit-keyframes shake {
  from{-webkit-transform:rotate(0deg)}
  25%{-webkit-transform:rotate(3deg)}
  50%{-webkit-transform:rotate(0deg)}
  75%{-webkit-transform:rotate(-3deg)}
  to{-webkit-transform:rotate(0deg)}
}
@keyframes shake {
  from{transform:rotate(0deg)}
  25%{transform:rotate(3deg)}
  50%{transform:rotate(0deg)}
  75%{transform:rotate(-3deg)}
  to{transform:rotate(0deg)}
}

/** 搜索框 通用母版 **/
.search_box {
  position: relative;
  padding: 5px 0;
}
.search_box .form_search {
  width: 100%;
  padding: 0;
  margin: 0;
}
.search_box .input_search {
  line-height: 40px;
  height: 40px;
  border: 0;
  width: 100%;
  padding: 0 0 0 35px;
  outline: none;
  font-size: 14px;
  border-radius: 3px;
  -webkit-appearance: none;
  appearance: none;
}
.search_box .material-icons {
  position: absolute;
  top: 5px;
  left: 5px;
  line-height: 40px;
  height: 40px;
}
.search_box .btn_search {
  position: absolute;
  top: 5px;
  right: 0;
  line-height: 40px;
  height: 40px;
  padding: 0 10px;
  margin: 0;
}
.search_box .icon {
  color: #08070b;
}



/** 顶栏 **/
#index_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2d3450;/*#0081e7*/
  background-image: linear-gradient(to right, #fff, #dfe9f3);
  z-index: 15;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#index_header .header_firstbox_wrap {
  background-color: #f3f7fa;
}
#index_header .header_firstbox {
  /*max-width: 1500px;*/
  padding: 0 50px;
  margin: 0 auto;
  text-align: right;
  height: 60px;
}
#index_header .header_firstbox .btn {
  display: inline-block;
  height: 60px;
  line-height: 60px;
}
#index_header .header_firstbox .btn i {
  
}
#index_header .header_firstbox .btn span {
  padding-left: 10px;
}

#index_header .header_box {
  /*max-width: 1500px;*/
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  padding: 0 50px;
  margin: 0 auto;
}
#index_header .header_box .header_logo {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
#index_header .header_box .header_logo_img {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-image: url(../img/header_logo.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#index_header .header_box .header_logo_title_warp {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding-left: 10px;
}
#index_header .header_box .header_logo_title {
  font-weight: bold;
  font-size: 40px;
  color: #08070b;
  
}
#index_header .header_box .header_logo_subtitle {
  font-size: 20px;
}

#index_header .header_box .header_menu_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  font-size: 0;
  text-align: right;
}
#index_header .header_box .header_menu_wrap .header_menu {
  display: inline-block;
  font-size: 24px;
  cursor: pointer;
  position: relative;
}
#index_header .header_box .header_menu_wrap .header_menu .header_menu_a {
  display: block;
  line-height: 100px;
  color: #08070b;
  padding-left: 30px;
  cursor: pointer;
}
#index_header .header_box .header_menu_wrap .header_menu.active .header_menu_a,
#index_header .header_box .header_menu_wrap .header_menu:hover .header_menu_a {
  color: #068bf0;
  position: relative;
}
#index_header .header_box .header_menu_wrap .header_menu.active .header_menu_a:after,
#index_header .header_box .header_menu_wrap .header_menu:hover .header_menu_a:after {
  content: "";
  display: block;
  height: 2px;
  background-color: #068bf0;
  position: absolute;
  bottom: 20px;
  left: 30px;
  right: 0;
}
/*
#index_header .header_box .header_menu_wrap .header_menu:hover .header_menu_a {
  color: #ff7200;
}
#index_header .header_box .header_menu_wrap .header_menu_hassubmenu:hover .header_menu_a {
  background-color: #fff;
  color: #ff7200;
  opacity: 1;
  z-index: 1;
  position: relative;
}
*/
#index_header .header_box .header_menu_wrap .header_menu .header_menu_submenu {
  position: absolute;
  top: 100px;
  left: 0;
  background-color: #fff;
  box-shadow: 0 0 100px rgba(0,0,0,.5), 0 0 50px rgba(0,0,0,.5);
  border-radius: 0 0 20px 20px;
  padding: 0 0 20px;
  display: none;
  width: 180px;
}
#index_header .header_box .header_menu_wrap .header_menu .header_menu_submenu .header_submenu_a {
  display: block;
  padding: 20px 30px;
  display: block;
  border-left: solid 4px #fff;
  color: #08070b;
  text-wrap: nowrap;
}
#index_header .header_box .header_menu_wrap .header_menu .header_menu_submenu .header_submenu_a:hover {
  background-color: #f4f4f4;
  border-left-color: #ff7200;
  color: #444;
}
#index_header .header_box .header_menu_wrap .header_menu:hover .header_menu_submenu {
  display: block;
}

/*
#index_header .btn_header_language,
#index_header .btn_header_contactus,
#index_header .btn_header_search,
#index_header .btn_header_menu {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  color: #fff;
  display: block;
  width: 50px;
  text-align: center;
  cursor: pointer;
}
#index_header .btn_header_language .material-icons,
#index_header .btn_header_contactus .material-icons,
#index_header .btn_header_search .material-icons,
#index_header .btn_header_menu .material-icons {
  line-height: 100px;
  vertical-align: top;
  font-size: 30px;
}
#index_header .btn_header_language,
#index_header .btn_header_contactus {
  width: auto;
  padding-right: 13px;
}
#index_header .btn_header_language span,
#index_header .btn_header_contactus span {
  display: inline-block;
  line-height: 100px;
  vertical-align: top;
  padding-right: 10px;
  font-size: 16px;
}
#index_header .btn_header_language:hover,
#index_header .btn_header_contactus:hover,
#index_header .btn_header_search:hover,
#index_header .btn_header_menu:hover {
  color: #ff7200;
}
*/
#index_header .btn_header_menu {
  display: none;
}
/*
#index_header .btn_header_language .flag {
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 100%;
  margin-right: 5px;
}
*/

@media only screen and (max-width: 1024px) {
  #index_header .header_firstbox {
    padding: 0 30px;
  }
  #index_header .header_box {
    padding: 0 30px;
  }
  #index_header .header_box .header_logo_img {
    width: 60px;
    height: 60px;
  }
  #index_header .header_box .header_logo_title {
    font-size: 30px;
  }
  #index_header .header_box .header_logo_subtitle {
    font-size: 12px;
  }
  #index_header .header_box .header_menu_wrap .header_menu {
    font-size: 20px;
  }
}



@media only screen and (max-width: 800px) {
  #index_header .header_firstbox {
    height: 40px;
    padding: 0 15px;
  }
  #index_header .header_firstbox .btn {
    height: 40px;
    line-height: 40px;
  }
  #index_header .btn_header_contactus .material-icons {
    line-height: 40px;
  }
  #index_header .btn_header_contactus span {
    line-height: 40px;
  }
  #index_header .header_box {
    padding-right: 15px;
  }
  #index_header .header_box .header_logo_img {
    width: 50px;
  }
  #index_header .header_box .header_logo_title {
    font-size: 20px;
  }
  #index_header .header_box .header_menu_wrap .header_menu {
    display: none;
  }
  #index_header .btn_header_menu {
    display: block;
    color: #08070b;
    cursor: pointer;
  }
  #index_header .btn_header_language .material-icons,
  #index_header .btn_header_search .material-icons,
  #index_header .btn_header_menu .material-icons {
    line-height: 60px;
  }
  #index_header .btn_header_language span {
    line-height: 60px;
  }
}

@media only screen and (max-width: 440px) {
  #index_header .header_logo {
    
  }
}
@media only screen and (max-width: 380px) {
  #index_header .btn_header_language span,
  #index_header .btn_header_contactus span {
    display: none;
  }
}



#subplate_header_mobilemenu {

}

#subplate_header_mobilemenu .subplate {
  display: none;
  background-color: #f3f7fa;
  padding-top: 100px;
  top: 0;
  bottom: 0;
  box-shadow: 0 0 100px rgba(0,0,0,.5), 0 0 50px rgba(0,0,0,.5);
}
#subplate_header_mobilemenu.hide .subplate {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
#subplate_header_mobilemenu .header_menu_wrap {
  padding-bottom: 20px;
}
#subplate_header_mobilemenu .header_menu_wrap .header_menu {

}
#subplate_header_mobilemenu .header_menu_wrap .header_menu_a {
  display: block;
  line-height: 60px;
  padding: 0 30px;
  font-size: 20px;
  color: #08070b;
}
#subplate_header_mobilemenu .header_menu_wrap .header_menu_a:hover {
  color: #068bf0;
  background-color: #fff;
}

#index_header .btn_header_menu .icon_close,
#index_header.show_subplate_header_mobilemenu .btn_header_menu .icon_open {
  display: none;
}
#index_header.show_subplate_header_mobilemenu .btn_header_menu .icon_close {
  display: inline-block;
}




@media only screen and (max-width: 800px) {
  #subplate_header_mobilemenu .subplate {
    display: block;
    padding-top: 100px;
  }
}






#subplate_header_language {

}

#subplate_header_language .subplate {
  background-color: #fff;
  padding-top: 100px;
  top: 0;
  bottom: auto;
  box-shadow: 0 0 100px rgba(0,0,0,.5), 0 0 50px rgba(0,0,0,.5);
  border-radius: 0 0 20px 20px;
}
#subplate_header_language.hide .subplate {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
#subplate_header_language .subplate_box {
  max-width: 1500px;
}
#subplate_header_language .btnbox {
  text-align: right;
  padding: 10px 40px;
}
#subplate_header_language .btnbox .btn {
  display: inline-block;
  line-height: 50px;
  padding: 0 30px;
  font-size: 16px;
  color: #08070b;
  border-bottom: 2px solid #fff;
  border-radius: 0;
}
#subplate_header_language .btnbox .btn:hover,
#subplate_header_language .btnbox .btn.active {
  color: #ff7200;
  border-bottom: 2px solid #ff7200;
}

@media only screen and (max-width: 850px) {
  #subplate_header_language .subplate {
    padding-top: 60px;
  }
}




/** 页脚 **/
#footer {
  width: 100%;
  font-size: 20px;
  border-top: solid 20px #068bf0;
  background-color: #edf2f8;
  /* background-image: linear-gradient(to right, #dfe9f3, #dce8f5); */
  background-image: url(../img/footer_01.jpg);
  position: relative;
  margin-top: 80px;
  background-position: right;
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: relative;
  margin-top: 80px;
}

#footer a {
  color: #08070b;
}

#footer .footer_box {
  max-width: 1500px;
  margin: 0 auto;
  padding: 50px 100px 50px;
}

#footer .footer_con {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
#footer .footer_con .list_planemenu {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  text-align: right;
}
#footer .footer_con .item_planemenu {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  margin-right: 20px;
}
#footer .footer_con .item_planemenu .title {
  font-size: 30px;
  margin-bottom: 20px;
}
#footer .footer_con .item_planemenu .item_planemenu_a {
  margin: 0;
  padding: 0;
}
#footer .footer_con .item_planemenu .item_planemenu_a a {
  display: block;
  margin-bottom: 20px;
  color: #08070b;
}
#footer .footer_con .item_planemenu .item_planemenu_a a:hover {
  color: #068bf0;
}


#footer .footer_con .footer_contact {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

#footer .footer_con .footer_contact .footer_contact_part {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
#footer .footer_con .footer_contact .footer_contact_part.footer_contact_part_inline {
  display: inline-flex;
}
#footer .footer_con .footer_contact .footer_contact_part > .material-icons {
  margin-right: 10px;
  line-height: 40px;
}
#footer .footer_con .footer_contact .footer_contact_part .title {

}
#footer .footer_con .footer_contact .footer_contact_part .title * {
  line-height: 40px;
  vertical-align: bottom;
}
#footer .footer_con .footer_contact .footer_contact_part .title span {
  font-weight: bold;
}

#footer .footer_con .footer_contact .item_contact_businesscard {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
#footer .footer_con .footer_contact .item_contact_businesscard_box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
#footer .footer_con .footer_contact .item_contact_businesscard_box b {
  margin-bottom: 10px;
  display: block;
}
#footer .footer_con .footer_contact .footer_contact_part .text {
  display: block;
  margin-bottom: 10px;
  color: #08070b;
}

#footer .footer_con .footer_contact a {

}
#footer .footer_con .footer_contact a:hover {
  color: #068bf0;
}




#footer .copyright {
  margin-top: 50px;
}
#footer .copyright a {
  color: #666;
}



@media only screen and (max-width: 1900px) {
  #footer .footer_box {
    padding-right: 150px;
  }
}
@media only screen and (max-width: 1700px) {
  #footer .footer_box {
    padding-right: 250px;
  }
}

@media only screen and (max-width: 1000px) {
  #footer .footer_con {
    display: block;
  }
  #footer .footer_con .footer_contact {

  }
  #footer .footer_con .footer_contact_businesscard {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
  }
  #footer .footer_con .footer_contact .item_contact_businesscard {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    margin-right: 20px;
  }
  #footer .footer_con .list_planemenu {
    display: none;
  }
  #footer .copyright {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 800px) {
  #footer .footer_con .footer_contact_businesscard {
    display: block;
  }
}

@media only screen and (max-width: 700px) {
  #footer {
    background-size: 100% auto;
    background-position: bottom;
    margin-top: 30px;
  }
  #footer .footer_box {
    font-size: 16px;
    padding: 50px 30px 150px;
    background-color: rgba(237, 242, 248, .9);
  }
  #footer .footer_logo {
    margin-bottom: 20px;
    background-size: contain;
  }
}






/** 通用底栏 **/
.bottombar {
  position: fixed;
  padding-bottom: 10px;
  bottom: -10px;
  left: 0;
  width: 100%;
  background-color: #08070b;
  box-shadow: 0 -1px 3px rgba(0,0,0,.4);
  z-index: 3;
}
.bottombar_box {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  height: 50px;
  text-align: center;
  font-size: 0;
  color: #6d6d6d;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  padding-left: 2.5px;
  padding-right: 2.5px;
}
.bottombar .bottombar_btn {
  margin: 0;
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 50px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.bottombar .bottombar_part {
  position: relative;
  padding: 0 2.5px;
  font-size: 12px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.bottombar .bottombar_part .btn_inner {
  display: block;
  width: 100%;
  line-height: 40px;
  height: 40px;
}
.bottombar .bottombar_part.half {
  -webkit-box-flex: .5;
  -webkit-flex: .5;
  flex: .5;
}

.bottombar_part .bottombar_text {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.bottombar_text .bottombar_text_box {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}


.bottombar .bottombar_part .btn_hascountdown {
  line-height: 22px;
  font-size: 14px;
  height: 40px;
}
.bottombar .bottombar_part .btn_hascountdown .countdown {
  line-height: 15px;
  font-size: 12px;
  opacity: .8;
}

/** 通用底栏 **/
.bottombar_part .btn_hasicon {
  display: block;
  cursor: pointer;
  position: relative;
}
.bottombar_part .btn_hasicon .icon {
  font-size: 25px;
  line-height: 1;
}
.bottombar_part .btn_hasicon span {
  display: block;
  vertical-align: top;
}
.bottombar_part.hasnew:after {
  content: "";
  position: absolute;
  right: 50%;
  top: 0;
  margin-right: -20px;
  display: block;
  width: 10px;
  height: 10px;
  text-align: center;
  background-color: #ef3a3a;
  color: #fff;
  border-radius: 100px;
  padding: 2px;
  font-size: 0;
}

.bottombar_part.active .btn_hasicon,
.bottombar_part:hover .btn_hasicon {
  color: #0081e7;
}
.bottombar_part .btn_hasicon .active_show,
.bottombar_part.active .btn_hasicon .active_hide {
  /*visibility: hidden;*/
  display: none;
}
.bottombar_part.active .btn_hasicon .active_show,
.bottombar_part .btn_hasicon .active_hide {
  /*visibility: visible;*/
  display: inline-block;
}




/** 置顶区 **/

.main_top {
  position: relative;
  margin-top: 50px;
  width: 100%;
  background-color: #08070b;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  margin-bottom: -50px;
}
.main_top_box {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  top: 0;
  left: 0;
  z-index: 2;
}
.main_top_fixed .main_top {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

.main_top ::-webkit-scrollbar {
  background-color: #2a2a2a;
}
.main_top ::-webkit-scrollbar-thumb {
  border-color: #2a2a2a;
}
body ::-webkit-scrollbar-thumb:window-inactive {
  background-color: #000;
}

/** 页面主体 **/
.main {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  margin-top: 160px;
  /* padding: 0 30px; */
}
.main_maxwidth {
  /* margin: 0 -30px; */
}
/** 标题 【主体区】 **/
.main_title {
  font-size: 14px;
  margin: 10px 0;
  /*text-align: center;*/
  display: block;
}
.main_title .iconfont {
  font-size: 25px;
  vertical-align: middle;
}
.main_title .material-icons {
  vertical-align: middle;
}
.main_title span {
  vertical-align: middle;
}
@media only screen and (max-width: 800px) {
  .main {
    margin-top: 100px;
  }
}



/************* 覆盖时间选择器 *************/
.mbsc-fr-w {
  font-family: inherit!important;
}
.mbsc-material .mbsc-fr-popup,
.mbsc-mobiscroll .mbsc-fr-w {
  border-radius: 10px!important;
}
.mbsc-material .mbsc-sc-whl-l {
  border-color: #ccc!important;
}
.mbsc-material .mbsc-fr-btn {
  color: #555!important;
}
.mbsc-material .mbsc-fr-w {
  padding-top: 10px!important;
}
.mbsc-material .mbsc-sc-lbl {
  margin-bottom: -10px!important;
  color: #999!important;
}
.mbsc-mobiscroll .mbsc-sc-itm {
  font-size: 1em!important;
}
.mbsc-mobiscroll .mbsc-range-btn {
  border-radius: 4px;
}

.mbsc-mobiscroll .mbsc-range-btn {
  border-color: #0081e6!important;
}
.mbsc-mobiscroll .mbsc-range-btn-sel .mbsc-range-btn {
  background-color: #0081e6!important;
}
.mbsc-mobiscroll .mbsc-cal-btn-txt {
  color: #0081e6!important;
}
.mbsc-mobiscroll .mbsc-cal-days {
  color: #0081e6!important;
}
.mbsc-mobiscroll .mbsc-cal-days th {
  border-bottom-color: #0081e6!important;
}
.mbsc-mobiscroll .mbsc-fr-btn {
  color: #0081e6!important;
}
.mbsc-mobiscroll .mbsc-cal .mbsc-cal-day-sel .mbsc-cal-day-i,
.mbsc-mobiscroll .mbsc-cal .mbsc-cal-sc-sel .mbsc-cal-sc-cell-i {
  background-color: #0081e6!important;
}
.mbsc-mobiscroll.mbsc-range .mbsc-cal-table .mbsc-cal-day-sel .mbsc-cal-day-i {
  background-color: rgba(0, 129, 230, .3)!important;
}
.mbsc-mobiscroll.mbsc-range .mbsc-cal-table .mbsc-cal-day-hl .mbsc-cal-day-i {
  background-color: #0081e6!important;
}

.mbsc-material .mbsc-range-btn-sel .mbsc-range-btn {
  border-color: #0081e6!important;
  color: #0081e6!important;
}
.mbsc-material .mbsc-cal-btn-txt {
  color: #0081e6!important;
}
.mbsc-material.mbsc-range .mbsc-cal-table .mbsc-cal-day-hl .mbsc-cal-day-i .mbsc-cal-day-fg {
  background-color: rgba(0, 129, 230, .8)!important;
}
.mbsc-mobiscroll .mbsc-cal-hl-now .mbsc-cal-today {
  color: #0081e6!important;
}








#index_main {
  max-width: none;
}


/************* 首页Banner *************/

#index_header_banner {
  position: relative;
}

#index_header_banner .swiper-slide {
  padding-top: 40%;
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#index_header_banner .swiper-slide .title_wrap_mask {
  /*background-color: rgba(0,0,0,.5);*/
  background-image: linear-gradient(to right, #e4f0fc, rgba(228,240,252,0));
  color: #08070c;
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
#index_header_banner .swiper-slide .title_wrap {
  padding: 0 50px 0 100px;
}
#index_header_banner .swiper-slide .title_wrap .title {
  font-size: 50px;
  font-weight: bold;
}
#index_header_banner .swiper-slide .title_wrap .title_text {
  font-size: 16px;
  /* text-align: justify; */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-height: 25px;
  margin-top: 10px;
}
#index_header_banner .swiper-slide .title_wrap .btn_more {
  background-color: #068bf0;
  color: #fff;
  display: inline-block;
  padding: 20px 50px;
  margin-top: 10px;
}
#index_header_banner .swiper-slide:hover .title_wrap .btn_more {
  background-color: #004990;
}
#index_header_banner .swiper-slide-active .title_wrap_mask {
  animation: indexbanner_bg_ani .8s 1 both;
}
#index_header_banner .swiper-slide-active .title_wrap .title {
  animation: indexbanner_text_ani .7s 1 both;
}
#index_header_banner .swiper-slide-active .title_wrap .title_text {
  animation: indexbanner_text_ani .7s 1 .3s both;
}
#index_header_banner .swiper-slide-active .title_wrap .btn_more {
  animation: indexbanner_text_ani .7s 1 .6s both;
}
@keyframes indexbanner_bg_ani {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes indexbanner_text_ani {
  0% {
    transform: translate(-100%, 0);opacity: 0;
  }
  100% {
    transform: translate(0, 0);opacity: 1;
  }
}



#index_header_banner .banner_pagination {
  /*background-color: rgba(0,0,0,.5);*/
  color: #fff;
  position: absolute;
  bottom: 10px;
  width: 300px;
  left: 50%;
  margin-left: -150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  z-index: 1;
}
#index_header_banner .banner_pagination .swiper-pagination-bullet {
  margin: 0 3px !important;
  border-radius: 100px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  background-color: rgba(0,0,0,.5);
}
#index_header_banner .banner_pagination .swiper-pagination-bullet:hover {
  opacity: 0.5;
  background: #068bf0;
}
#index_header_banner .banner_pagination .swiper-pagination-bullet-active:hover,
#index_header_banner .banner_pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #068bf0;
}
#index_header_banner .banner_pagination_btn {
  position: absolute;
  bottom: 8px;
  right: 30px;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
#index_header_banner .banner_pagination_btn a {
  background-color: rgba(0,0,0,.5);
  color: #fff;
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
  cursor: pointer;
  border-radius: 0 100px 100px 0;
  /*margin-left: 10px;*/
}
#index_header_banner .banner_pagination_btn .banner_prev {
  border-radius: 100px 0 0 100px;
}
#index_header_banner .banner_pagination_btn a .material-icons {
  line-height: 50px;
}
#index_header_banner .banner_pagination_btn a:hover {
  background-color: #068bf0;
}


@media only screen and (min-width: 2000px) {
  #index_header_banner .swiper-slide {
    padding-top: 30%;
  }
}


@media only screen and (max-width: 1024px) {
  #index_header_banner .swiper-slide .title_wrap_mask {
    width: 60%;
  }
  #index_header_banner .swiper-slide .title_wrap {
    padding-left: 30px;
  }
  #index_header_banner .swiper-slide .title_wrap .title {
    font-size: 40px;
  }
  #index_header_banner .swiper-slide .title_wrap .title_text {
    font-size: 12px;
  }
}
@media only screen and (max-width: 800px) {
  #index_header_banner .swiper-slide {
    padding-top: 80%;
  }
}
@media only screen and (max-width: 600px) {
  #index_header_banner .swiper-slide {
    padding-top: 100%;
  }
  #index_header_banner .swiper-slide .title_wrap {
    padding: 0 20px 0 30px;
  }
  #index_header_banner .swiper-slide .title_wrap .title {
    font-size: 30px;
  }
  #index_header_banner .banner_pagination {
    width: 100px;
    margin-left: -50px;
  }
  #index_header_banner .swiper-pagination-bullet {
    
  }
  #index_header_banner .banner_pagination_btn a {
    width: 40px;
    height: 40px;
  }
  #index_header_banner .banner_pagination_btn {
    bottom: 2px;
    /* right: 20px; */
  }
  #index_header_banner .banner_pagination_btn a .material-icons {
    line-height: 40px;
  }
}
@media only screen and (max-width: 400px) {
  #index_header_banner .swiper-slide .title_wrap .title_text {
    display: none;
  }
  #index_header_banner .swiper-slide .title_wrap .btn_more {
    display: none;
  }
  #index_header_banner .banner_pagination_btn {
    right: 0;
  }
}


/************* 首屏关键数据 开始 *************/
.index_criticaldata {
  background-color: #068bf0;
  margin-bottom: 60px;
  text-align: center;
  color: #fff;
}
.index_criticaldata_box {
  max-width: 1500px;
  padding: 50px 30px;
  margin: 0 auto;
  font-size: 0;
}
.index_criticaldata .index_criticaldata_item {
  display: inline-block;
  padding: 10px 10px;
  width: 25%;
  vertical-align: top;
}
.index_criticaldata .index_criticaldata_item .index_criticaldata_title {
  font-weight: bold;
  font-size: 30px;
}
.index_criticaldata .index_criticaldata_item .index_criticaldata_text {
  font-size: 16px;
  opacity: .6;
}


@media only screen and (max-width: 800px) {
  .index_criticaldata .index_criticaldata_item .index_criticaldata_title {
    font-size: 20px;
  }
  .index_criticaldata .index_criticaldata_item {
    width: 50%;
  }
}

@media only screen and (max-width: 700px) {
  .index_criticaldata {
    margin-bottom: 30px;
  }
}


/************* 首屏关键数据 结束 *************/



/************* 首页通用部分 *************/
.index_maintitle_wrap {
  font-size: 18px;
  margin-bottom: 30px;
  font-size: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: bold;
}
.index_maintitle {

}

.index_maintitle span {

}
/*.index_maintitle span:first-letter {
  color: #ff7200;
}*/
.index_maintitle small {
  font-size: 18px;
  margin-left: 20px;
  font-weight: bold;
}
.index_maintitle_wrap .index_maintitle_more {
  color: #ff7200;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  font-weight: bold;
  display: block;
}
.index_maintitle_wrap .index_maintitle_more .material-icons {
  vertical-align: middle;
}
.index_maintitle_wrap .index_maintitle_more span {
  vertical-align: middle;
}

@media only screen and (max-width: 700px) {
  .index_maintitle small {
    font-size: 12px;
  }
  .index_maintitle_wrap .index_maintitle_more {
    font-size: 12px;
  }
}



.index_maintext {
  font-size: 16px;
  margin: 0 100px 30px;
  line-height: 1.5;
}
@media only screen and (max-width: 700px) {
  .index_maintext {
    margin: 0 30px 30px;
  }
}



.index_mainmore {
  text-align: center;
}
.index_mainmore .btn {
  background-color: #068bf0;
  color: #fff;
  display: inline-block;
  padding: 20px 50px;
}
.index_mainmore .btn:hover {
  background-color: #004990;
}



/************* 案例 通用 *************/
.list_product {
  font-size: 0;
  margin: 0 -10px;
}
.list_product .item_product {
  font-size: 16px;
  width: 25%;
  display: inline-block;
  padding: 0 10px 40px;
  vertical-align: top;
}
.list_product .item_product_box {
  display: block;
  color: #08070b;
  position: relative;
}
.list_product .item_product_box .cover_wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.list_product .item_product_box .cover {
  padding-top: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.list_product .item_product_box .title {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.list_product .item_product_box .title span {
  background-image: linear-gradient(rgba(255, 115, 0, 0),rgba(255, 115, 0, 0)),linear-gradient(#068bf0,#068bf0);
  background-position: 100% 100%,0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px,0 2px;
  text-decoration: none;
  transition: background-size .3s ease-out,background-position 2s linear;
}
.list_product .item_product_box .text {
  opacity: .5;
}

.list_product .item_product_box:hover {
  z-index: 1;
}
.list_product .item_product_box:hover .cover_wrap {
  outline: solid 8px #068bf0;
}
.list_product .item_product_box:hover .cover_product {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.list_product .item_product_box:hover .title span {
  color: #068bf0;
  background-position: 100% 100%, 0 100%;
  background-size: 0 0, 100% 2px;
}
.list_product .item_product_box:hover .text {
  opacity: 1;
}

@media only screen and (max-width: 1000px) {
  .list_product .item_product {
    width: 50%;
  }
}
@media only screen and (max-width: 700px) {
  .list_product .item_product {
    font-size: 12px;
  }
  .list_product .item_product_box .title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 400px) {
  .list_product .item_product {
    width: 100%;
  }
  .list_product .item_product_box .cover_wrap {
    margin-bottom: 10px;
  }
}









/************* 翻页 通用 *************/
.list_pagination {
  margin: 0 100px 100px;
  text-align: right;
  font-size: 0;
}
.list_pagination * {
  line-height: 50px;
  height: 50px;
  vertical-align: bottom;
}
.list_pagination a {
  display: inline-block;
  font-size: 16px;
  min-width: 50px;
  border: solid 1px #eee;
  text-align: center;
  /* color: #08070b; */
  border-right: none;
  cursor: pointer;
}
.list_pagination a:last-child {
  border-right: solid 1px #eee;
}
.list_pagination a:hover {
  color: #08070b;
  background-color: rgba(0, 0, 0, 0.05);
}
.list_pagination a.active {
  background-color: #068bf0;
  color: #fff;
}
.list_pagination .btn_prev .material-icons {
  transform: rotate(180deg);
}

@media only screen and (max-width: 700px) {
  .list_pagination {
    margin: 0 30px 40px;
  }
  .list_pagination a {
    min-width: 40px;
  }
}
@media only screen and (max-width: 500px) {
  .list_pagination a {
    min-width: 50px;
  }
  .list_pagination .btn_pagenumber {
    display: none;
  }
}




/************* 查看大图面板 *************/
.subplate_viewbigpic {
  z-index: 100;
}
.subplate_viewbigpic .subplate {
  z-index: 100;
  top: 0;
  overflow: hidden;
  background-color: #000;
}
.subplate_viewbigpic .subplate_viewbigpic_btnbox {
  text-align: right;
}
.subplate_viewbigpic .subplate_viewbigpic_btnbox .btn_close {
  /* background-color: #0072CC; */
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.subplate_viewbigpic .subplate_viewbigpic_btnbox .btn_close .material-icons {
  line-height: 50px;
  color: #fff;
}

.subplate_viewbigpic .subplate_viewbigpic_viewer {
  background-color: #000;
  position: absolute;
  top: 50px;
  bottom: 100px;
  width: 100%;
  left: 0;
}
.subplate_viewbigpic .subplate_viewbigpic_viewer .swiper-slide {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform-origin: center;
  transform-origin: center;
}


.subplate_viewbigpic .subplate_viewbigpic_list_thumbnail {
  background-color: #08070b;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 100px;
  font-size: 0;
  text-wrap: nowrap;
  padding-top: 5px;
  padding-left: 5px;
}
.subplate_viewbigpic .subplate_viewbigpic_item_thumbnail {

}

.subplate_viewbigpic .subplate_viewbigpic_list_thumbnail .swiper-slide {
  width: 90px;
  height: 90px;
  background-color: #000;
  /* margin: 5px 5px 5px; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform-origin: center;
  transform-origin: center;
  cursor: pointer;
  opacity: 0.4;
}
.subplate_viewbigpic .subplate_viewbigpic_list_thumbnail .swiper-slide-thumb-active {
  opacity: 1;
}

.subplate_viewbigpic .subplate_viewbigpic_viewer .btn_next,
.subplate_viewbigpic .subplate_viewbigpic_viewer .btn_prev {
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 60px;
  z-index: 10;
  cursor: pointer;
  left: auto;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
}
.subplate_viewbigpic .subplate_viewbigpic_viewer .btn_prev {
  left: 0;
  right: auto;
}
.subplate_viewbigpic .subplate_viewbigpic_viewer .btn_next .material-icons,
.subplate_viewbigpic .subplate_viewbigpic_viewer .btn_prev .material-icons {
  line-height: 60px;
  font-size: 40px;
}
@media only screen and (max-width: 400px) {
  .subplate_viewbigpic .subplate_viewbigpic_viewer .btn_next,
  .subplate_viewbigpic .subplate_viewbigpic_viewer .btn_prev {
    width: 40px;
    height: 40px;
  }
  .subplate_viewbigpic .subplate_viewbigpic_viewer .btn_next .material-icons,
  .subplate_viewbigpic .subplate_viewbigpic_viewer .btn_prev .material-icons {
    line-height: 40px;
    font-size: 24px;
  }
}




/************* 头部面包屑导航 *************/
.header_crumb {
  padding: 30px 0 0;
  margin: 0 100px 30px;
}
.header_crumb .list_crumb {
  font-size: 0;
}
.header_crumb .item_crumb {
  font-size: 16px;
}
.header_crumb .item_crumb * {
  line-height: 40px;
  vertical-align: bottom;
}
.header_crumb .item_crumb:after {
  content: "/";
  display: inline-block;
  line-height: 40px;
  vertical-align: bottom;
  padding: 0 10px;
}
.header_crumb .item_crumb .material-icons {
  margin-right: 10px;
}
.header_crumb .item_crumb:last-child {
  font-weight: bold;
  color: #08070b;
}
.header_crumb .item_crumb:last-child:after {
  display: none;
}
.header_crumb .item_crumb:hover {
  color: #08070b;
}
@media only screen and (max-width: 700px) {
  .header_crumb {
    margin: 0 30px 30px;
  }
}




/************* 产品 首页 *************/
.index_product {
  font-size: 16px;
  margin: 0 100px 60px;
}
@media only screen and (max-width: 700px) {
  .index_product {
    font-size: 12px;
    margin: 0 30px 30px;
  }
}




/************* 服务 首页 *************/
.index_service {
  font-size: 16px;
  background-color: #068bf0;
  padding: 50px 50px 0;
  color: #fff;
}
.index_service .index_service_box {
  margin: 0 100px 100px;
}

.index_service .list_indexservice {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.index_service .item_indexservice {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 300px 40px 40px;
  position: relative;
}
.index_service .item_indexservice:after {
  content: "";
  position: absolute;
  top: 150px;
  left: 0;
  width: 100%;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(6,139,240,0), rgba(6,139,240,1));
}
.index_service .item_indexservice_text_wrap {
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(6,139,240,1);
}
.index_service .item_indexservice_title {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 10px;
}
.index_service .item_indexservice_text {

}


@media only screen and (max-width: 1300px) {
  .index_service .index_service_box {
    margin: 0 0 100px;
  }
}
@media only screen and (max-width: 900px) {
  .index_service {
    padding: 50px 0 0;
  }
  .index_service .index_service_box {
    margin: 0 0 30px;
  }
}
@media only screen and (max-width: 700px) {
  .index_service .list_indexservice {
    display: block;
  }
  .index_service .item_indexservice {
    padding-top: 200px;
  }
}






/************* 新闻 首页 *************/
.index_news {
  font-size: 16px;
  margin: 0 100px 100px;
}

.list_indexnews {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.list_indexnews .item_indexnews {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  /*-webkit-align-items: flex-end;
  align-items: flex-end;*/
  margin-bottom: 40px;
  position: relative;
  color: #08070b;
  border-radius: 20px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-image: linear-gradient(to right, #fff, #dfe9f3);
}

.list_indexnews .item_indexnews .cover_wrap {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 240px;
  /*margin-right: 40px;*/
  overflow: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 20px 0 0 20px;
}
.list_indexnews .item_indexnews .cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  height: 100%;
}
.list_indexnews .item_indexnews .title_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  position: relative;
  padding: 40px;
}
.list_indexnews .item_indexnews .title {
  font-size: 30px;
  margin: 20px 0;
  font-weight: bold;
}
.list_indexnews .item_indexnews .title span {
  background-image: linear-gradient(rgba(255, 115, 0, 0),rgba(255, 115, 0, 0)),linear-gradient(#068bf0,#068bf0);
  background-position: 100% 100%,0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px,0 2px;
  text-decoration: none;
  transition: background-size .3s ease-out,background-position 2s linear;
}
.list_indexnews .item_indexnews .date {
  opacity: .5;
}
.list_indexnews .item_indexnews .text {
  opacity: .8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-height: 25px;
  text-align: justify;
}

.list_indexnews .item_indexnews:hover {
  z-index: 1;
  outline: solid 8px #068bf0;
}
.list_indexnews .item_indexnews:hover .cover_wrap {
  
}
.list_indexnews .item_indexnews:hover:before {
  top: -30px;
  left: -30px;
}
.list_indexnews .item_indexnews:hover .cover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.list_indexnews .item_indexnews:hover .title span {
  color: #068bf0;
  background-position: 100% 100%, 0 100%;
  background-size: 0 0, 100% 2px;
}

@media only screen and (max-width: 1000px) {
  .list_indexnews .item_indexnews {
    font-size: 12px;
  }
  .list_indexnews .item_indexnews .title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 700px) {
  .index_news {
    font-size: 14px;
    margin: 0 30px 30px;
  }
  .list_indexnews .item_indexnews .cover_wrap {
    width: 150px;
    /*-webkit-align-self: self-start;
    align-self: self-start;
    margin-right: 20px;*/
  }
  .list_indexnews .item_indexnews .title_wrap {
    padding: 30px;
  }
  .list_indexnews .item_indexnews .title {
    font-size: 16px;
    margin: 10px 0;
  }
}
@media only screen and (max-width: 500px) {
  .list_indexnews .item_indexnews {
    margin-bottom: 20px;
    display: block;
  }
  .list_indexnews .item_indexnews .cover_wrap {
    width: 100%!important;
    height: 150px;
    border-radius: 20px 20px 0 0;
  }
}



@media only screen and (max-width: 400px) {
  .list_indexnews .item_indexnews .cover_wrap {
    width: 80px;
    margin-right: 20px;
  }
}



/************* 新闻列表 *************/

.newslist_news {
  margin: 0 100px 30px;
  font-size: 16px;
}

@media only screen and (max-width: 700px) {
  .newslist_news {
    margin: 0 30px 30px;
  }
}


/************* 产品列表 *************/
#productlist_main {
  max-width: 2000px;
}


.productlist_firstfilter {
  font-size: 0;
  margin: 0 100px;
}
.productlist_firstfilter .list_firstfilter {
  margin-right: -20px;
}
.productlist_firstfilter .item_firstfilter {
  display: inline-block;
  width: 20%;
  vertical-align: top;
  position: relative;
}
.productlist_firstfilter .item_firstfilter_box {
  display: block;
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}
.productlist_firstfilter .item_firstfilter input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  background-color: transparent;
  border: 0;
  width: 0;
  height: 0;
  display: none;
}
.productlist_firstfilter .item_firstfilter_pic {
  display: block;
  padding-top: 50%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.productlist_firstfilter input:disabled ~ .item_firstfilter_pic {
  filter: grayscale(100%);
}
.productlist_firstfilter .item_firstfilter_text {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,.5);
  padding: 10px;
}
.productlist_firstfilter input:checked ~ .item_firstfilter_text {
  background-color: #068bf0;
}
.productlist_firstfilter .item_firstfilter_text .icon_check {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 5px;
}
.productlist_firstfilter .item_firstfilter_text .icon_check:before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  content: "\e835";
}
.productlist_firstfilter input:checked ~ .item_firstfilter_text .icon_check:before {
  content: "\e834";
  
  -webkit-animation: check_radio 0.2s ease-out 0s 1 normal both;
  animation: check_radio 0.2s ease-out 0s 1 normal both;
}

.productlist_firstfilter .item_firstfilter_text span {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: block;
}
.productlist_firstfilter input:disabled ~ .item_firstfilter_text .icon_check,
.productlist_firstfilter input:disabled ~ .item_firstfilter_text span {
  opacity: .5;
}





.productlist_product_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: start;
  align-items: start;
  margin: 0 100px 30px;
}

.productlist_filter {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 40px;
  background-color: #eef2f8;
  padding: 30px;
}


.productlist_filter .item_productfilter_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}
.productlist_filter .item_productfilter_title .icon_fold {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.productlist_filter .item_productfilter_title .icon_fold:before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  content: "\e313";
}
.productlist_filter .item_productfilter.folded .icon_fold:before {
  content: "\e5cc";
}
.productlist_filter .item_productfilter_title span {
  display: block;
  font-weight: bold;
}

.productlist_filter .list_subproductfilter {
  margin-bottom: 10px;
}
.productlist_filter .form_check {
  display: block;
}
.productlist_filter .item_productfilter.folded .list_subproductfilter {
  display: none;
}


.productlist_filter .form_item_btn {
  border-top: solid 2px #dfe9f3;
  margin-top: 20px;
  padding-top: 20px;
}






.productlist_product {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}





.productlist_product .list_sortproduct {
  font-size: 0;
}
.productlist_product .item_sortproduct {
  font-size: 16px;
  margin: 0 0 20px 0;
  color: #08070b;
  display: inline-block;
  padding: 0 20px;
  line-height: 40px;
  border-bottom: solid 2px rgba(0,0,0,0);
}
.productlist_product .item_sortproduct.active,
.productlist_product .item_sortproduct:hover {
  color: #068bf0;
  border-bottom: solid 2px #068bf0;
}





.productlist_product .list_pagination {
  margin-left: 0;
  margin-right: 0;
}



@media only screen and (max-width: 1300px) {
  .productlist_firstfilter .item_firstfilter_pic {
    padding-top: 100%;
  }
  #productlist_main .list_product .item_product {
    width: 50%;
  }
}
@media only screen and (max-width: 1000px) {
  .productlist_firstfilter .item_firstfilter {
    width: 33.33%;
  }
  .productlist_firstfilter .item_firstfilter_pic {
    padding-top: 50%;
  }
  #productlist_main .list_product .item_product {
    width: 100%;
  }
}
@media only screen and (max-width: 850px) {
  .productlist_firstfilter .item_firstfilter_pic {
    padding-top: 100%;
  }
  .productlist_product_box {
    display: block;
  }
  .productlist_filter {
    margin-right: 0;
    margin-bottom: 20px;
  }
  #productlist_main .list_product .item_product {
    width: 50%;
  }
}

@media only screen and (max-width: 700px) {
  .productlist_firstfilter {
    margin: 0 0;
  }
  .productlist_product_wrap {
    margin: 0 30px 30px;
  }
  .productlist_product_box {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 500px) {
  .productlist_firstfilter .item_firstfilter {
    display: block;
    width: auto;
  }
  .productlist_firstfilter .item_firstfilter_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: #08070b;
  }
  .productlist_firstfilter .item_firstfilter_pic {
    padding-top: 0;
    width: 50px;
    height: 50px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    margin-right: 10px;
  }
  .productlist_firstfilter .item_firstfilter_text {
    position: relative;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    padding: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
  }
  .productlist_firstfilter input:checked ~ .item_firstfilter_text {
    color: #068bf0;
    background-color: transparent;
  }
}


/************* 服务列表 *************/

.servicetlist_service {
  margin: 0 100px 30px;
}


.servicetlist_service .list_indexservice {
  display: block;
}
.servicetlist_service .item_indexservice {
  margin-bottom: 40px;
}
.servicetlist_service .item_indexservice_cover {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 300px 40px 40px;
  position: relative;
  margin-bottom: 20px;
}
.servicetlist_service .item_indexservice_cover:after {
  content: "";
  position: absolute;
  top: 150px;
  left: 0;
  width: 100%;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(6,139,240,0), rgba(6,139,240,1));
}



.servicetlist_service .item_indexservice_text_wrap {
  position: relative;
  z-index: 1;
  /*text-shadow: 0 0 10px rgba(6,139,240,1);*/
}
.servicetlist_service .item_indexservice_title {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 10px;
}
.servicetlist_service .item_indexservice_text {
  font-size: 16px;
}




@media only screen and (max-width: 700px) {
  .servicetlist_service {
    margin: 0 30px 30px;
  }
}



/************* 关于 *************/

.aboutindex {
  margin: 0 100px 30px;
}


.aboutindex .aboutindex_bigpic {
  width: 100%;
  margin-bottom: 30px;
}
.aboutindex .aboutindex_title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}
.aboutindex .aboutindex_text {
  font-size: 20px;
  margin-bottom: 30px;
}

.aboutindex .aboutindex_list {
  font-size: 20px;
  margin-bottom: 30px;
}
.aboutindex .aboutindex_list .aboutindex_item {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.aboutindex .aboutindex_list .aboutindex_item_title {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  font-size: 26px;
  font-weight: bold;
  margin-right: 20px;
  border-left: solid 2px #068bf0;
  padding-left: 20px;
}
.aboutindex .aboutindex_list .aboutindex_item_text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}


@media only screen and (max-width: 700px) {
  .aboutindex {
    margin: 0 30px 30px;
  }
}



/************* 新闻详情页 *************/
#newsindex_main {
  
}
#newsindex_main .index_maintitle_wrap {
  margin: 0 100px 30px;
  font-size: 40px;
  line-height: 40px;
  text-align: left;
}
#newsindex_main .index_maintitle {
  margin-bottom: 20px;
}
#newsindex_main .index_maintitle_extra {
  font-size: 20px;
  line-height: 20px;
  font-size: 0;
  font-weight: initial;
}
#newsindex_main .index_maintitle_extra > div {
  display: inline-block;
  font-size: 16px;
  margin-right: 20px;
}
#newsindex_main .index_maintitle_extra > div * {
  line-height: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: bottom;
}
#newsindex_main .index_maintitle_extra > div i {
  margin-right: 5px;
}


#newsindex_main .richtext {
  margin: 0 100px 30px;
  font-size: 16px;
}

@media only screen and (max-width: 700px) {
  #newsindex_main .index_maintitle_wrap {
    margin: 0 30px 30px;
  }
  #newsindex_main .richtext {
    margin: 0 30px 30px;
  }
}




/************* 产品详情页 *************/

.productindex_maintop {
  font-size: 16px;
  margin: 0 100px 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.productindex_maintop .cover_wrap {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 400px;
  margin-right: 40px;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.productindex_maintop .cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
}
.productindex_maintop .cover:before {
  content: "";
  width: 100%;
  padding-top: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
}
.productindex_maintop .caseindex_maintop_box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  position: relative;
}
.productindex_maintop .caseindex_maintop_box .subtitle {
  font-weight: bold;
  display: block;
  color: #333;
  font-size: 20px;
  margin-top: 10px;
}
.productindex_maintop .caseindex_maintop_box .title {
  font-size: 50px;
  font-weight: bold;
}
.productindex_maintop .caseindex_maintop_box .parameter {
  margin-top: 10px;
}
.productindex_maintop .caseindex_maintop_box .text {
  margin-top: 10px;
  opacity: .7;
  line-height: 25px;
  text-align: justify;
}

@media only screen and (max-width: 1200px) {
  .productindex_maintop .cover_wrap {
    width: 300px;
  }
}
@media only screen and (max-width: 1000px) {
  .productindex_maintop {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    font-size: 14px;
  }
  .productindex_maintop .cover_wrap {
    width: 200px;
  }
}
@media only screen and (max-width: 800px) {
  .productindex_maintop {
    display: block;
  }
  .productindex_maintop .cover_wrap {
    width: 100%;
    overflow: initial;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .productindex_maintop .cover {
    margin-left: -30px;
    margin-right: -30px;
  }
  .productindex_maintop .caseindex_maintop_box .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 700px) {
  .productindex_maintop {
    margin: 0 30px 30px;
  }
}


/************* 页面内导航 产品详情页 *************/
.productindex_nav_wrap {
  margin: 0 100px 40px;
  height: 50px;
}
.productindex_nav .productindex_nav_box {
  font-size: 0;
  box-shadow: 0 2px #eee;
}
.productindex_nav .productindex_nav_box a {
  font-size: 18px;
  margin-right: 20px;
  line-height: 50px;
  display: inline-block;
  color: #333;
  opacity: .8;
  position: relative;
  cursor: pointer;
}
.productindex_nav .productindex_nav_box a:before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #068bf0;
  bottom: -2px;
  left: 0;
  position: absolute;
 -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.productindex_nav .productindex_nav_box a.active {
  opacity: 1;
  text-shadow: 0 0;
  color: #068bf0;
}
.productindex_nav .productindex_nav_box a.active:before {
  opacity: 1;
}

.productindex_nav .productindex_nav_box a:hover:before,
.productindex_nav .productindex_nav_box a.active:before {
  width: 100%;
}
.productindex_nav .productindex_nav_box a:hover {
  color: #333;
}
.productindex_nav .productindex_nav_box a:hover:before {
  background-color: #333;
}


.fixed_productindex_nav .productindex_nav_wrap {
  
}
.fixed_productindex_nav .productindex_nav {
  position: fixed;
  top: 160px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0 100px;
  background-color: #f3f7fa;
  box-shadow: 0 1px 30px rgba(0,0,0,.4);
  z-index: 10;
}
.fixed_productindex_nav .productindex_nav .productindex_nav_box {
  box-shadow: none;
}
.fixed_productindex_nav .productindex_nav_box a:before {
  bottom: 0;
}
@media only screen and (max-width: 800px) {
  .fixed_productindex_nav .productindex_nav {
    top: 100px;
  }
  .productindex_nav .productindex_nav_box a {
    
  }
}
@media only screen and (max-width: 700px) {
  .productindex_nav_wrap {
    margin: 0 30px 40px;
  }
  .fixed_productindex_nav .productindex_nav {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 600px) {
  .productindex_nav .productindex_nav_box a {
    font-size: 12px;
    margin-right: 10px;
  }
}


.productindex_details .richtext {
  font-size: 16px;
}



.productindex_parameter {
  font-size: 16px;
}
.productindex_parameter li {
  margin-bottom: 10px;
}


.productindex_download {
  
}
.productindex_download .list_download {
  
}
.productindex_download .item_download {
  border-bottom: solid 2px #dfe9f3;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
}
.productindex_download .item_download .item_download_icon {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 10px;
}
.productindex_download .item_download .item_download_icon .material-icons {
  font-size: 32px;
}
.productindex_download .item_download .item_download_text_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.productindex_download .item_download .item_download_title {
  font-weight: bold;
  font-size: 16px;
}
.productindex_download .item_download .btn {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.productindex_download .item_download:hover {
  border-bottom: solid 2px #068bf0;
}
.productindex_download .item_download:hover .item_download_title {
  color: #068bf0;
}
.productindex_download .item_download:hover .btn {
  color: #068bf0;
}



#productindex_main [data-pageinnernav] {
  margin: 0 100px 40px;
}
@media only screen and (max-width: 700px) {
  #productindex_main [data-pageinnernav] {
    margin: 0 30px 40px;
  }
}





/************* 页面内嵌查看大图 *************/
.pageinner_viewbigpic_viewer {
  position: relative;
  overflow: hidden;
  background-color: #000;
  border-radius: 20px;
}
.pageinner_viewbigpic_viewer .swiper-wrapper {

}
.pageinner_viewbigpic_viewer .swiper-slide {
  background-position: center;
  /* background-size: contain; */
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.pageinner_viewbigpic_viewer .swiper-slide:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.pageinner_viewbigpic_viewer .btn_next,
.pageinner_viewbigpic_viewer .btn_prev {
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 60px;
  top: 50%;
  margin-top: -30px;
  z-index: 1;
  cursor: pointer;
  left: auto;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
}
.pageinner_viewbigpic_viewer .btn_prev {
  left: 0;
  right: auto;
}
.pageinner_viewbigpic_viewer .btn_next .material-icons,
.pageinner_viewbigpic_viewer .btn_prev .material-icons {
  line-height: 60px;
  font-size: 40px;
}
.pageinner_viewbigpic_viewer .swiper-button-disabled {
  opacity: .2;
}

.pageinner_viewbigpic_list_thumbnail {
  height: 100px;
  padding-top: 5px;
  overflow: hidden;
}
.pageinner_viewbigpic_list_thumbnail .swiper-slide {
  width: 90px;
  height: 90px;
  background-color: #000;
  /* margin: 5px 5px 5px; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform-origin: center;
  transform-origin: center;
  cursor: pointer;
  opacity: 0.4;
  border-radius: 20px;
}
.pageinner_viewbigpic_list_thumbnail .swiper-slide-thumb-active {
  opacity: 1;
}

/************* 图集 案例详情页 *************/
.caseindex_photo_part {
  font-size: 18px;
  margin: 0 100px 40px;
}
@media only screen and (max-width: 700px) {
  .caseindex_photo_part {
    margin: 0 30px 40px;
  }
}























