/*通用header样式*/
.header {
  background: #163149;
  height: 30px;
  line-height: 30px;
  color: white;
  letter-spacing: 1.2px;
}
.empty-data {
  width: 1.20rem;
  height: 0.84rem;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  background: url(/image/empty.png) no-repeat center;
  background-size: cover;
}
.empty-text {
  padding-bottom: 0.50rem;
  font-size: 0.12rem;
}
/* 通用footer样式 */
.footer {
  width: 100%;
  height: 64px;
  line-height: 64px;
  font-size: 14px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.07);
  overflow: hidden;
  z-index: 200;
  display: none;
}
.footer .links a {
  padding-left: 10px;
  padding-right: 10px;
  letter-spacing: 1.4px;
}
.footer .copyright {
  color: #5a5a5a;
}
/* 全局提示 */
.sg-msg {
  position: fixed;
  z-index: 2000;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
}
.sg-msg-con {
  display: inline-block;
  padding: 12px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  background: #fff;
  position: relative;
}
.sg-msg-icon {
  position: absolute;
  left: 16px;
  top: 12px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
}
.sg-msg-text {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
  padding-left: 30px;
}
.sg-msg-success .sg-msg-icon {
  background-image: url(/image/success.png);
}
.sg-msg-error .sg-msg-icon {
  background-image: url(/image/error.png);
}
.sg-msg-success .sg-msg-text {
  color: #34B8C2;
}
.sg-msg-error .sg-msg-text {
  color: #F56A01;
}
/* 模态框 */
.sg-modal,
.sg-modal-photo {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.sg-modal-con,
.sg-modal-photo-con {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  background-color: #fff;
  border-radius: 6px;
}
.sg-modal-head {
  padding: 16px 30px;
  height: 70px;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}
.sg-modal-title {
  font-size: 24px;
  color: #5A5A5A;
  letter-spacing: 2.4px;
  height: 36px;
  line-height: 36px;
}
.sg-modal-title i {
  width: 28px;
  height: 28px;
  background: url(/image/tip.png) no-repeat center;
  position: absolute;
  top: 20px;
  left: 30px;
}
.sg-modal-title span {
  margin-left: 38px;
}
.sg-modal-close {
  position: absolute;
  top: 24px;
  right: 30px;
  cursor: pointer;
}
.sg-modal-close i {
  width: 20px;
  height: 20px;
  background: url(/image/close.jpg) no-repeat center;
}
.sg-modal-body {
  padding: 30px;
  font-size: 16px;
  color: #5a5a5a;
  letter-spacing: 1.6px;
}
.sg-modal-foot {
  padding: 12px 30px;
  height: 70px;
  border-top: 1px solid #e9e9e9;
  text-align: right;
}
.sg-modal-foot .btn {
  width: 150px;
  margin-left: 20px;
  font-size: 16px;
  letter-spacing: 4px;
}
/* 图片预览 */
.sg-modal-photo-con {
  width: auto;
  min-width: 150px;
  max-width: 800px;
}
.sg-modal-photo-head {
  padding: 0px 10px;
  height: 30px;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}
.sg-modal-photo-title {
  font-size: 14px;
  color: #5A5A5A;
  letter-spacing: 2.4px;
  height: 30px;
  line-height: 30px;
}
.sg-modal-photo-close {
  position: absolute;
  top: 7px;
  right: 10px;
  cursor: pointer;
}
.sg-modal-photo-close i {
  width: 12px;
  height: 12px;
  background: url(/image/close.jpg) no-repeat center;
  background-size: cover;
}
.sg-modal-photo-body {
  text-align: center;
  overflow: hidden;
}
.sg-modal-photo-body img {
  display: none;
}
.sg-modal-photo-body .text {
  text-align: left;
  padding: 5px 10px;
  display: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
body {
  color: #222;
  background-color: #eee;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "\5FAE\8F6F\96C5\9ED1", SimSun, sans-serif;
  line-height: 1.5;
}
dl,
dt,
dd,
ul,
ol,
li {
  list-style: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a,
i,
span,
label {
  display: inline-block;
}
a,
label,
button,
input[type='checkbox'] {
  cursor: pointer;
}
a,
input,
button,
select {
  outline: none;
}
a {
  color: #2D8cF0;
  background: transparent;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
a:hover {
  color: #57a3f3;
}
a:active {
  color: #2b85e4;
}
a:active,
a:hover {
  outline: 0;
  text-decoration: none;
}
a[disabled] {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}
img {
  border: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.row:before,
.row:after {
  display: flex;
}
.row-start {
  justify-content: flex-start;
}
.row-center {
  justify-content: center;
}
.row-end {
  justify-content: flex-end;
}
.row-between {
  justify-content: space-between;
}
.row-around {
  justify-content: space-around;
}
.row-top {
  align-items: flex-start;
}
.row-middle {
  align-items: center;
}
.row-bottom {
  align-items: flex-end;
}
/* 浮动 */
.flt {
  float: left;
}
.frt {
  float: right;
}
.clear {
  clear: both;
}
/* hide show */
.hide {
  display: none;
}
.show {
  display: block;
}
/* text */
.t-left {
  text-align: left;
}
.t-right {
  text-align: right;
}
.t-center {
  text-align: center;
}
.nowrap {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/* 定宽布局 */
.w {
  width: 1080px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
/* 字体颜色 */
.color-gray {
  color: #5a5a5a;
}
.color-grayer {
  color: #919191;
}
.color-jv {
  color: #F56A01;
}
.color-hu {
  color: #34B8C2;
}
/* 边框颜色 */
.bd-gray {
  border-bottom: 1px solid #e9e9e9;
}
/* 背景色 */
.bkg-color {
  background-color: #ffffff;
}
.bkg-hu {
  background-color: #34B8C2;
}
.bkg-jv {
  background-color: #F56A01;
}
/* 间距 */
.space {
  margin-top: 10px;
}
/* h1 */
h1 {
  font-size: 30px;
  font-weight: 500;
}
h2 {
  font-size: 24px;
  font-weight: 500;
}
h3 {
  font-size: 18px;
  font-weight: 500;
}
h4 {
  font-size: 16px;
  font-weight: 500;
}
h5 {
  font-size: 14px;
  font-weight: 500;
}
h6 {
  font-size: 12px;
  font-weight: 500;
}
/* form表单 */
/* button */
.btn {
  height: 44px;
  line-height: 44px;
  padding: 0 20px;
  color: #fff;
  border-radius: 5px;
  border: 1px solid transparent;
  background-color: #bfbfbf;
  cursor: pointer;
}
.btn-md {
  height: 35px;
  line-height: 35px;
  padding: 0 15px;
}
.btn-sm {
  height: 25px;
  line-height: 25px;
  padding: 0 10px;
}
.btn-bd {
  color: #919191;
  border-color: #d9d9d9;
  background-color: #fff;
}
/* 类似橘色 */
.btn-jv {
  color: #fff;
  border-color: #F56A01;
  background-color: #F56A01;
}
.btn-jv:hover {
  border-color: #E35E0F;
  background-color: #E35E0F;
  box-shadow: 0 0 4px 0 rgba(245, 106, 1, 0.6);
}
.btn-jv-bd {
  color: #919191;
  border-color: #d9d9d9;
  background-color: #fff;
}
.btn-jv-bd.active {
  color: #F56A01;
  border-color: #F56A01;
  background-color: #fff;
}
.btn-jv-bd:hover {
  color: #E35E0F;
  border-color: #E35E0F;
  box-shadow: 0 0 4px 0 rgba(245, 106, 1, 0.6);
}
/* 类似湖色 */
.btn-hu {
  color: #fff;
  border-color: #34B8C2;
  background-color: #34B8C2;
}
.btn-hu:hover {
  border-color: #01A2AE;
  background-color: #01A2AE;
  box-shadow: 0 0 4px 0 rgba(52, 184, 194, 0.6);
}
.btn-hu-bd {
  color: #919191;
  border-color: #d9d9d9;
  background-color: #fff;
}
.btn-hu-bd.active {
  color: #34B8C2;
  border-color: #34B8C2;
  background-color: #fff;
}
.btn-hu-bd:hover {
  color: #008997;
  border-color: #008997;
  box-shadow: 0 0 4px 0 rgba(52, 184, 194, 0.6);
}
/* 不可点击状态 */
.btn-disabled {
  color: #fff;
  background: #BFBFBF;
}
/* 验证码状态 */
.btn-yan {
  font-size: 14px;
  color: #F56A01;
  border: 1px solid #F76A00;
  background-color: #f2f2f2;
}
.btn-yan:hover {
  color: #ffffff;
  background: #F76A00;
}
.btn-yan-disabled {
  cursor: text;
  font-size: 14px;
  color: #BBBEC4;
  background-color: #f2f2f2;
  border: 1px solid #d9d9d9;
}
/* checkbox */
/* 输入框 */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #BBBEC4;
  font-size: 14px;
}
.inp {
  width: 100%;
  height: 44px;
  padding-left: 10px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  transition: all 0.2s ease-in-out;
}
.inp:hover {
  border: 1px solid #34B8C2;
}
.inp:focus {
  border: 1px solid #34B8C2;
  box-shadow: 0 0 4px 0 rgba(52, 184, 194, 0.6);
}
.inp-item {
  height: 44px;
  margin-bottom: 10px;
  overflow: hidden;
}
.inp-box {
  position: relative;
}
.inp-box.flt {
  width: 50%;
}
.inp-box.frt {
  width: 40%;
}
.inp-err-item {
  margin-bottom: 0px;
  position: relative;
}
.inp-err-item .inp-err {
  border: 1px solid #F56A01;
}
.inp-err-item .inp-err:hover,
.inp-err-item .inp-err:focus {
  border: 1px solid #F56A01;
  box-shadow: 0 0 4px 0 rgba(245, 106, 1, 0.6);
}
.inp-err-item .err-tip {
  font-size: 12px;
  color: #F56A01;
  line-height: 18px;
  padding-top: 0px;
  margin-top: 4px;
  margin-bottom: 8px;
}
.inp-err-item .inp-err-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  right: 12px;
  top: 12px;
  background: url(/image/error.png) no-repeat;
}
.inp-item-btn {
  margin-top: 30px;
}
.inp-item .btn-jv {
  width: 100%;
  font-size: 16px;
  letter-spacing: 2px;
}
/* icon */
/* 加载中 */
.loading {
  margin: 10px auto;
  display: block;
  width: 65px;
  height: 65px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: url(/image/loading.gif) no-repeat;
  opacity: .6;
}
/* 成功 */
.suc-icon {
  width: 20px;
  height: 20px;
  background: url(/image/success.png) no-repeat;
}
/* 错误 */
.err-icon {
  width: 20px;
  height: 20px;
  background: url(/image/error.png) no-repeat;
}
/* 删除按钮 */
.del-icon {
  width: 25px;
  height: 25px;
  background: url(/image/del.png) no-repeat center;
  cursor: pointer;
}
.del-icon:hover {
  background: url(/image/del_hover.png) no-repeat;
}
/* 没有数据 */
.empty {
  background: url(/image/empty.png) no-repeat;
}
