@charset "UTF-8";
/* 常用颜色 */
/* 文字大小 */
/* 行高 */
/* 边框圆角 */
/* 边距 */




/* 样式初始化 */
* {
  box-sizing: border-box;
  /* 微软雅黑，编码防字体冲突 */
  margin: 0px;
  padding: 0px;
}

/* 英文字体 */
.font-english {
  font-family: "arial, helvetica, sans-serif" !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  color: #252b3a;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img {
	vertical-align: middle;
}

/* 强制字体库（font）字体 */
@font-face {
  font-family: "HuXiaoBo";
  src: url("../font/HuXiaoBoNanShenTi-2.otf");
  font-weight: normal;
  font-style: normal;
}

.huxiaobo {
  font-family: "HuXiaoBo" !important;
}

@font-face {
  font-family: "AbrilFatface";
  src: url("../font/AbrilFatface-Regular-2.ttf");
  font-weight: normal;
  font-style: normal;
}

.afface {
  font-family: "AbrilFatface" !important;
}

@font-face {
  font-family: "SourceHanSansCN-Bold";
  src: url("../font/SourceHanSansCN-Bold.otf");
  font-weight: normal;
  font-style: normal;
}

.shs-b {
  font-family: "SourceHanSansCN-Bold" !important;
}

@font-face {
  font-family: "SourceHanSansCN-ExtraLight";
  src: url("../font/SourceHanSansCN-ExtraLight.otf");
  font-weight: normal;
  font-style: normal;
}

.shs-e {
  font-family: "SourceHanSansCN-ExtraLight" !important;
}

@font-face {
  font-family: "SourceHanSansCN-Heavy";
  src: url("../font/SourceHanSansCN-Heavy.otf");
  font-weight: normal;
  font-style: normal;
}

.shs-h {
  font-family: "SourceHanSansCN-Heavy" !important;
}

@font-face {
  font-family: "SourceHanSansCN-Light";
  src: url("../font/SourceHanSansCN-Light.otf");
  font-weight: normal;
  font-style: normal;
}

.shs-l {
  font-family: "SourceHanSansCN-Light" !important;
}

@font-face {
  font-family: "SourceHanSansCN-Medium";
  src: url("../font/SourceHanSansCN-Medium.otf");
  font-weight: normal;
  font-style: normal;
}

.shs-m {
  font-family: "SourceHanSansCN-Medium" !important;
}

@font-face {
  font-family: "SourceHanSansCN-Normal";
  src: url("../font/SourceHanSansCN-Normal.otf");
  font-weight: normal;
  font-style: normal;
}

.shs-n {
  font-family: "SourceHanSansCN-Normal" !important;
}

@font-face {
  font-family: "SourceHanSansCN-Regular";
  src: url("../font/SourceHanSansCN-Regular.otf");
  font-weight: normal;
  font-style: normal;
}

.shs-r {
  font-family: "SourceHanSansCN-Regular" !important;
}

@font-face {
  font-family: "youshe";
  src: url("../font/youshe.ttf");
  font-weight: normal;
  font-style: normal;
}

.youshe {
  font-family: "youshe" !important;
}

@font-face {
  font-family: "PingFang";
  src: url("../font/PingFang.ttf");
  font-weight: normal;
  font-style: normal;
}

.pingfang {
  font-family: "PingFang" !important;
}

@font-face {
  font-family: "DingTalk_JinBuTi_Regular";
  src: url("../font/DingTalk_JinBuTi_Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

.dingtalk {
  font-family: "DingTalk_JinBuTi_Regular" !important;
}



.fa {
  font-family: FontAwesome !important;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:hover {
  color: unset;
  text-decoration: none;
}
a.bg-danger:hover {
  box-shadow: 0 0 8px rgba(203, 42, 47, 0.35);
  background: #de474b !important;
}
/* 重载bootstrap */
/* .row {
  margin: 0px;
}
.row {
  margin: 0;
  float: left;
  display: inline;
}

.row > * {
  float: left;
}

.row > *::after {
  content: "";
  display: block;
  clear: both;
}
.row-align-c {
  align-items: center;
}
.row-justify-c {
  justify-content: center;
}

.row::after {
  content: "";
  display: block;
  clear: both;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
} */

/****弹性布局*****/
.flex {
  display: flex;
	flex-direction: row;
}

.flex-col {
  display: flex;
	flex-direction: column;
}

.flex-wrap{
	flex-wrap: wrap;
}

.flex-align {
  display: flex;
  align-items: center;
}

.flex-justify {
  display: flex;
  justify-content: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-1 {
  flex: 1;
}

.flex-start {
	display: flex;
	justify-content: flex-start;
}

.flex-end {
	display: flex;
	justify-content: flex-end;
}


/* 鼠标样式 */
.m-pointer {
  cursor: pointer;
  /*手型*/
}

.m-wait {
  cursor: wait;
  /*忙、转圈*/
}

.m-move {
  cursor: move;
  /*移动*/
}

/* 分割线、边框 */
.bdr{
	border: 1px solid #e5e5e5;
}
.bdr-t{
	border-top: 1px solid #e5e5e5;
}
.bdr-r{
	border-right: 1px solid #e5e5e5;
}
.bdr-b{
	border-bottom: 1px solid #e5e5e5;
}
.bdr-l{
	border-left: 1px solid #e5e5e5;
}

hr.cut-solid-line {
  width: 100%;
  border: 0.5px solid #cccccc;
}

hr.cut-dashed-line {
  width: 100%;
  border: 0.5px dashed #cccccc;
}

/* 背景色 */
.bg-white {
  background: #ffffff !important;
}
.bg-danger {
  background: #cb2a2f !important;
}
.bg-light-gray {
  background: #fafafa !important;
}
.bg-custom-gray {
  background: #777684 !important;
}
.bg-blue {
  background: #647ab4 !important;
}
.bg-note {
  background: #282828 !important;
}
.bg-gradient {
	background: linear-gradient(180deg,
			#ffffff 0%,
			#ebf4fd 100%) !important;
}

/* 宽高度 */
.w-100 {
  width: 100%;
}
.w-80 {
	width: 80%;
}
.w-75 {
  width: 75%;
}
.w-60 {
  width: 60%;
}
.w-50 {
  width: 50%;
}
.w-45 {
  width: 45%;
}
.w-40 {
  width: 40%;
}
.w-30 {
  width: 30%;
}
.w-3 {
  width: 33.333%;
}
.w-25 {
  width: 25%;
}
.w-0 {
  width: 0;
}
.min-w {
  min-width: 100px;
}
.max-w-unset {
  max-width: unset !important;
}
.max-w-25 {
  max-width: 25%;
}

.h-100 {
  height: 100%;
}
.h-75 {
  height: 75%;
}
.h-60 {
  height: 60%;
}
.h-50 {
  height: 50%;
}
.h-45 {
  height: 45%;
}
.h-40 {
  height: 40%;
}
.h-30 {
  height: 30%;
}
.h-25 {
  height: 25%;
}
.min-h {
  min-height: 50px;
}
.max-h {
  max-height: 50px;
}

/* 边距 */
.m-auto {
  margin: 0 auto !important;
  /*水平居中*/
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.m-0 {
  margin: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.ma-5 {
  margin-left: 5px;
  margin-right: 5px;
}

.mv-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.m-5 {
  margin: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.ma-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.mv-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.m-10 {
  margin: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.ma-15 {
  margin-left: 15px;
  margin-right: 15px;
}

.mv-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.m-15 {
  margin: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.ma-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mv-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.m-20 {
  margin: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.ma-25 {
  margin-left: 25px;
  margin-right: 25px;
}

.mv-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.m-25 {
  margin: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.ma-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.mv-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.m-30 {
  margin: 30px !important;
}

.mt-36 {
  margin-top: 36px !important;
}

.mb-36 {
  margin-bottom: 36px !important;
}

.ml-36 {
  margin-left: 36px !important;
}

.mr-36 {
  margin-right: 36px !important;
}

.ma-36 {
  margin-left: 36px;
  margin-right: 36px;
}

.mv-36 {
  margin-top: 36px;
  margin-bottom: 36px;
}

.m-36 {
	margin: 36px;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.ma-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.mv-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.m-40 {
  margin: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.ma-50 {
  margin-left: 50px;
  margin-right: 50px;
}

.mv-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.m-50 {
  margin: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.ma-60 {
  margin-left: 60px;
  margin-right: 60px;
}

.mv-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.m-60 {
  margin: 60px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.ma-90 {
  margin-left: 90px;
  margin-right: 90px;
}

.mv-90 {
  margin-top: 90px;
  margin-bottom: 90px;
}

.ma-90 {
  margin: 90px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.p-0 {
  padding: 0px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pa-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.pv-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.p-5 {
  padding: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pa-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.pv-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.p-10 {
  padding: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pa-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.pv-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.p-15 {
  padding: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pa-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.pv-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-20 {
  padding: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pa-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.pv-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.p-25 {
  padding: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pa-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.pv-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-30 {
  padding: 30px !important;
}

.pt-36 {
  padding-top: 36px !important;
}

.pb-36 {
  padding-bottom: 36px !important;
}

.pl-36 {
  padding-left: 36px !important;
}

.pr-36 {
  padding-right: 36px !important;
}

.pa-36 {
  padding-left: 36px;
  padding-right: 36px;
}

.pv-36 {
  padding-top: 36px;
  padding-bottom: 36px;
}

.p-36 {
  padding: 36px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pa-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.pv-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.p-40 {
  padding: 40px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pa-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.pv-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.p-60 {
  padding: 60px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pa-90 {
  padding-left: 90px;
  padding-right: 90px;
}

.pv-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.p-90 {
  padding: 90px !important;
}

/* 文字大小12 14 16 18 20 30 */
.font-12 {
  font-size: 12px !important;
}

.font-14 {
  font-size: 14px !important;
}

.font-16 {
  font-size: 16px !important;
}

.font-18 {
  font-size: 18px !important;
}

.font-20 {
  font-size: 20px !important;
}

.font-22 {
  font-size: 22px !important;
}

.font-24 {
	font-size: 24px !important;
}

.font-28 {
	font-size: 28px !important;
}

.font-30 {
  font-size: 30px !important;
}

.font-32 {
  font-size: 32px !important;
}

.font-36 {
  font-size: 36px !important;
}

.font-64 {
  font-size: 64px !important;
}

.font-80 {
  font-size: 80px !important;
}

/* 文字加粗 */
.bold {
  font-weight: bold;
}
.bolder {
  font-weight: bolder;
}
.normal {
  font-weight: normal;
}
.lighter {
  font-weight: lighter;
}
/* 文字倾斜 */
.font-ob {
	font-style: oblique;
}
/* 文字颜色 */
.text-primary {
  color: #cb2a2f !important;
}

.text-black {
  color: #000000 !important;
}

.text-deep-black {
  color: #2d374f !important;
}

.text-black-title {
  color: #252b3a !important;
}

.text-light-black {
  color: #575d6c !important;
}

.text-note {
	color: #adb0b8 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-common {
  color: #666666 !important;
}

.text-secondary {
  color: #999999 !important;
}

.text-gray-white {
  color: #ced4e2 !important;
}
.text-weakest {
  color: #bbbbbb !important;
}

.text-danger {
  color: #cb2a2f !important;
}
.text-blue {
  color: #415fb1 !important;
}

.text-light-blue {
  color: #1d77fc !important;
}
.text-dark-blue {
  color: #2f669d !important;
}

/*文字对齐*/
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
  line-break: anywhere;
}

.letter-spacing-2 {
	letter-spacing: 2px;
}

/* 段落缩进 */
.text-indent-base {
  text-indent: 2em;
}

/* 文本行高 */
.line-height-base {
  line-height: 24px;
}

.line-height-clear {
  line-height: 1;
}

/* 文本超出省略 */
/* 单行文本超出省略 */
.line-limit-length {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  min-height: 24px;
  word-break: break-all;
}

.line-limit-length-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 按钮 */
.btn {
  border-width: 0;
  padding: 4px 15px;
  font-size: 14px;
  border-radius: 50px;
  text-align: center;
  color: white;
  background-image: none !important;
  filter: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}

.btn:disabled {
  background-color: #999999 !important;
  pointer-events: none;
  cursor: not-allowed;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none !important;
}

.btn-lg,
.btn-xx-large {
  font-size: 16px;
}

.btn-lg {
  padding: 6px 15px;
}

.btn-xx-large {
  padding: 8px 15px;
}

.btn-sm,
.btn-mini {
  font-size: 12px;
}

.btn-sm {
  padding: 3px 15px;
}

.btn-mini {
  padding: 1px 15px;
}
.more-link-button {
  display: inline-block;
  padding: 16px 24px;
  background: transparent;
}
.carousel-text-box .more-link-button {
  position: absolute;
  left: 0;
  bottom: 126px;
}
/* 按钮颜色 */
.btn-primary {
  background-color: #008bac;
}

.btn-primary:hover {
  color: white;
  text-decoration: none;
  background-color: #4ecae7;
}

.btn-primary:active {
  background-color: #006881 !important;
  -webkit-appearance: none;
}

.btn-gray,
.btn-gray:focus {
  background-color: #999999;
}

.btn-gray:hover {
  color: white;
  background-color: #999999;
}

.btn-gray:active {
  background-color: #999999 !important;
  -webkit-appearance: none;
}

.btn-darkgreen,
.btn-darkgreen:focus {
  background-color: #009579;
}

.btn-darkgreen:hover {
  color: white;
  background-color: #3ccaaf;
}

.btn-darkgreen:active {
  background-color: #007861 !important;
  -webkit-appearance: none;
}

.btn-lightgreen,
.btn-lightgreen:focus {
  background-color: #3cbfae;
}

.btn-lightgreen:hover {
  color: white;
  background-color: #69e7d6;
}

.btn-lightgreen:active {
  background-color: #1c9c8b !important;
  -webkit-appearance: none;
}

.btn-cancel,
.btn-cancel:focus {
  color: black;
  background-color: #f0f0f0;
}

.btn-outline-primary {
  border-width: 1px;
  color: #008bac;
  background-color: white;
  background-image: none;
  border-color: #008bac;
}

.btn-outline-primary:active {
  color: #008bac !important;
  background-color: white !important;
  border-color: #008bac !important;
}

.btn-outline-primary:hover {
  color: #4ecae7 !important;
  background-color: white !important;
  border-color: #4ecae7 !important;
}

/* 按钮形状 */
.btn-rightAngle {
  border-radius: 0px !important;
}

.btn-fillet {
  border-radius: 4px !important;
}

/* 验证码按钮 */
.code-btn {
  display: table;
  width: 90px;
  height: 26px;
  color: #fff;
  line-height: 25px;
  background: #169bd5;
  font-size: 12px;
  border-radius: 4px;
  text-align: center;
  outline: none !important;
  border: none;
  position: absolute;
  top: 6px;
  right: 7px;
}

.code-btn:hover {
  color: white;
  text-decoration: none;
  background-color: #4ecae7 !important;
}

.code-btn:active {
  background-color: #006881 !important;
  -webkit-appearance: none;
}

.btn i {
  font-size: 16px;
  margin-right: 5px;
}

.btn.btn-xx-large i,
.btn.btn-lg i {
  font-size: 18px;
}

.btn.btn-sm i,
.btn.btn-mini i {
  font-size: 14px;
}

.btn + .btn {
  margin-left: 16px;
}

/********** 表单类 **********/
/* input框 */
input:-ms-input-placeholder {
  color: #bbbbbb !important;
  font-size: 14px;
}

input:-moz-placeholder {
  color: #bbbbbb !important;
  font-size: 14px;
}

input::-moz-placeholder {
  color: #bbbbbb !important;
  font-size: 14px;
}

input::-webkit-input-placeholder {
  color: #bbbbbb !important;
  font-size: 14px;
}

input {
  height: 40px;
  font-size: 14px !important;
}

/* 文本框 */
textarea:-ms-textarea-placeholder {
  color: #bbbbbb !important;
  font-size: 14px !important;
}

textarea:-moz-placeholder {
  color: #bbbbbb !important;
  font-size: 14px !important;
}

textarea::-moz-placeholder {
  color: #bbbbbb !important;
  font-size: 14px !important;
}

textarea::-webkit-input-placeholder {
  color: #bbbbbb !important;
  font-size: 14px !important;
}

/* 浮动块 */
.floating-block {
  position: relative;
  top: 0;
  padding: 30px 20px;
  transition: all 0.2s linear;
  -moz-transition: all 0.2s linear; /* Firefox 4 */
  -webkit-transition: all 0.2s linear; /* Safari 和 Chrome */
  -o-transition: all 0.2s linear; /* Opera */
}
.floating-block:hover {
  position: relative;
  top: -10px;
  padding: 40px 20px;
  box-shadow: 0 0 14px rgba(43, 96, 145, 0.2);
}
/* 上浮块 */
.float-up-block {
  position: relative;
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear; /* Firefox 4 */
  -webkit-transition: all 0.3s linear; /* Safari 和 Chrome */
  -o-transition: all 0.3s linear; /* Opera */
}
.float-up-block:hover {
  box-shadow: 0 0 14px rgba(51, 51, 51, 0.3);
	position: relative;
	top: -1px;
}
/* 发光块 */
.shine-block{
	cursor: pointer;
	position: relative;
	box-shadow: 0 0 8px rgba(37, 43, 58, 0.24);
}
.shine-block::after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: #cb2a2f;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out; /* Firefox 4 */
	-webkit-transition: all 0.3s ease-in-out; /* Safari �?Chrome */
	-o-transition: all 0.3s ease-in-out; /* Opera */
}

.shine-block:hover::after{
	width: 100% !important;
}

.shine-block:hover {
  /* box-shadow: 0 0 10px rgba(255, 255, 255, 1); */
}


/***** 自定义图标 *****/
.ntc-right-arrow{
	width: max-content;
	display: flex;
	align-items: center;
	position: relative;
	border-color: #252b3a;
}


.ntc-right-arrow::before{
	content: '';
	display: block;
	width: 40px;
	border-color: inherit;
	border-top: 2px solid;
	transition: width 0.5s ease-in-out;
	-moz-transition: width 0.5s ease-in-out; /* Firefox 4 */
	-webkit-transition: width 0.5s ease-in-out; /* Safari �?Chrome */
	-o-transition: width 0.5s ease-in-out; /* Opera */
}

.ntc-right-arrow::after{
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border-color: inherit;
	border-top: 2px solid;
	border-right: 2px solid;
	transform: rotate(45deg);
	position: relative;
	left: -15px;
}

.ntc-right-arrow.icon-sm{
	transform: scale(0.5)
}

.ntc-right-arrow:hover{
	 /* transform: scale(1.2); */
}

.ntc-right-arrow:hover:before{
	width: 50px;
}

.more-link{
	cursor: pointer;
	color: #575d6c;
}

.more-link:hover {
	color: #cb2a2f;
}

.more-link:hover .ntc-right-arrow.icon-sm:before{
	width: 50px !important;
	border-color: #cb2a2f !important;
}

.more-link:hover .ntc-right-arrow::after{
	border-color: #cb2a2f !important;
}

/*** 通用 ***/
.over-hidden{
	overflow: hidden;
}

/*** 常用过度效果 ***/
.img-hover-scale1{
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out; /* Firefox 4 */
	-webkit-transition: all 0.3s ease-in-out; /* Safari �?Chrome */
	-o-transition: all 0.3s ease-in-out; /* Opera */
}

.img-hover-scale1:hover {
	transform: scale(1.05);
}

/* 定位 */
.p-rel {
	position: relative;
}

.p-abs {
	position: absolute;
}

.p-abs-over {
	position: absolute;
	inset: 0;
}

.p-abs-auto {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}