@charset "UTF-8";

:root {
  --kniu_border0: #ccc;
  --kniu_border1: #0000001a;
  --kniu_border2: #ffffff3b;
  --kniu_red: #dc3636;
  --kniu_orange: #e17719;
  --kniu_yellow: #bb8e00;
  --kniu_green: #3f8300;
  --kniu_green_light: #2e8800;
  --kniu_green_text: #06ae56;
  --kniu_brand: #018932;
  --kniu_cyan: #2f4056;
  --kniu_blue: #007dbb;
  --kniu_purple: #6265f1;
  --kniu_black: #000;
  --kniu_white: #fff;
  --kniu_gray0: #222;
  --kniu_gray1: #333;
  --kniu_gray2: #666;
  --kniu_gray3: #888;
  --kniu_gray4: #999;
  --kniu_gray5: #c3c3c3;
  --kniu_link: #576b95;
  --kniu_mask0: #0003;
  --kniu_mask1: #0000004d;
  --kniu_mask2: #0009;
  --kniu_mask3: #000000e6;
  --kniu_readonly: #f3f3f3;
  --kniu_table_hover: #fbfbfb;
  --kniu_bg0: transparent;
  --kniu_bg_active: #dcdcdc;
  --kniu_a_hover: #fffc;
  --kniu_vw: 1024*100vw;
  --kniu_vh: 576*100vh;
}

@media (min-width: calc(1024px - 60px)) {
  :root {
    --kniu_vw: 1920*100vw;
    --kniu_vh: 1080*100vh;
  }
}

a,
abbr,
address,
article,
blockquote,
body,
button,
caption,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
iframe,
img,
input,
ins,
label,
legend,
li,
object,
ol,
p,
pre,
q,
select,
small,
span,
strong,
sub,
sup,
table,
tbody,
td,
textarea,
tfoot,
th,
thead,
tr,
ul {
  margin: 0;
  padding: 0;
  outline: 0;
  border: none;
}

*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  position: relative;
}

a {
  text-decoration: none;
}

.BMap_bubble_title {
  line-height: 30px !important;
  font-weight: 700 !important;
}

.BMap_bubble_content {
  font-size: 14px !important;
}

/* 位置 */
.kniu_app_text_center {
  text-align: center;
}

.kniu_app_text_left {
  text-align: left;
}

.kniu_ml_20 {
  margin-left: calc(20 / var(--kniu_vw)) !important;
}

/* 颜色 */
.kniu_text_gray {
  color: var(--kniu_gray4) !important;
}

/* 表单 */
.kniu_control {
  position: relative;
  display: block;
}

.kniu_control+.kniu_control {
  margin-top: calc(20 / var(--kniu_vw));
}

.kniu_form_label_group,
.kniu_form_label {
  position: relative;
  display: flex;
  display: -webkit-flex;
}

.kniu_form_label+.kniu_form_label {
  margin-left: 10px;
}

.kniu_form_text,
.kniu_form_input {
  display: inline-flex;
  display: -webkit-inline-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  white-space: nowrap;
}

.kniu_form_text {
  width: auto;
  height: auto;
}

.kniu_form_input {
  border: 1px solid var(--kniu_border0);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  padding: 0 10px;
  width: 190px;
  height: 30px;
  background-color: var(--kniu_table_hover);
}

.kniu_input_group {
  display: inline-flex;
  display: -webkit-inline-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
}

.kniu_input_group .kniu_btn {
  height: 30px;
}

@media (min-width: calc(1024px - 60px)) {
  .kniu_form_input {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    height: 40px;
  }

  .kniu_input_group .kniu_btn {
    height: 40px;
  }

  .kniu_pcs_form_text_left>.kniu_form_text+.kniu_input_group,
  .kniu_pcs_form_text_left>.kniu_form_text+.kniu_form_input {
    order: 2;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-order: 2;
    -o-order: 2;
    margin-left: 10px;
  }
}

/* 返回按钮 START */
.kniu_btn {
  display: inline-flex;
  display: -webkit-inline-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  padding: 0 20px;
  width: auto;
  height: 38px;
  border: 1px solid transparent;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}

.kniu_btn:hover {
  text-decoration: none;
  color: #fff;
}

.kniu_fixed_btn {
  z-index: 2;
  position: fixed;
  top: 10px;
  right: 10px;
  margin: 0;
}

/* 返回按钮 END */
/* 点显示信息 START */
.map_point_note {
  display: none;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  padding: 3px 10px;
  font-size: 12px;
  white-space: nowrap;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
  -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
  -o-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

.map_point_note::before {
  content: "▲";
  position: absolute;
  top: -2px;
  left: 5px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  width: 22px;
  height: 100%;
  transform: rotateZ(-90deg);
  -webkit-transform: rotateZ(-90deg);
  -moz-transform: rotateZ(-90deg);
  -ms-transform: rotateZ(-90deg);
  -o-transform: rotateZ(-90deg);
  color: #fff;
}

#mapCN .map_point_note {
  min-width: 90px;
}

#mapEN .map_point_note {
  min-width: 150px;
}

.BMap_Marker {
  z-index: 1 !important;
}

.map_marker,
.map_active {
  z-index: 9 !important;
}

.map_active .map_point_note {
  display: flex;
  display: -webkit-flex;
  margin-left: 25px;
}

.map_point_note_num {
  color: #2173e6;
}

.map_btn_zoomin,
.map_btn_zoomout {
  z-index: 9;
  position: absolute;
  right: 5px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  width: 40px;
  height: 40px;
  font-family: monospace;
  font-size: 20px;
  color: #fff;
}

.map_btn_zoomin {
  top: 5px;
}

.map_btn_zoomout {
  top: 50px;
}

.map_zoomin_cn,
.map_zoomout_cn {
  background-color: rgba(2, 78, 155, .5);
}

.map_zoomin_cn:active,
.map_zoomout_cn:active {
  background-color: #024e9b;
}

.map_zoomin_en,
.map_zoomout_en {
  background-color: rgba(255, 255, 255, .3);
}

.map_zoomin_en:active,
.map_zoomout_en:active {
  background-color: #fff;
  color: #333;
}