h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ol,
ul,
dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #89C548;
  text-decoration: none;
}

input {
  border: none;
  /* 去除边框 */
  outline: none;
  /* 去除聚焦时的外边框 */
  background: none;
  /* 去除背景 */
  box-shadow: none;
  /* 去除阴影 */
  -webkit-appearance: none;
  /* 去除webkit浏览器的默认样式 */
  -moz-appearance: none;
  /* 去除mozilla浏览器的默认样式 */
  appearance: none;
  /* 去除所有浏览器的默认样式 */
}

/* 清楚type=number的样式 右边的加减按钮 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}

/* chrome */
input[type="number"] {
  -moz-appearance: textfield;
}

/* 去掉默认的按钮样式 */
button {
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button:focus,
select:focus {
  outline: none;
}

button:hover {
  cursor: pointer;
}

/* firefox */
/* 文字省略 */
.line-1 {
  /* 限制容器宽度 */
  white-space: nowrap;
  /* 禁止文本换行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  text-overflow: ellipsis;
}

.line-2 {
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为WebKit内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 2;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  text-overflow: ellipsis;
  /* 使用省略号 */
}

.line-3 {
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为WebKit内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 3;
  /* 限制显示三行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  text-overflow: ellipsis;
  /* 使用省略号 */
}

/* 面包屑样式修改 */
.breadcrumb_box {
  padding: 2.5rem 0;
}

.breadcrumb_box .breadcrumb-item+.breadcrumb-item::before {
  content: ">" !important;
  /* 重置默认内容 */
  color: #999999;
}

.breadcrumb_box .breadcrumb-item a {
  color: #999999;
}

.common_title {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0 15px;
  width: calc(100% - 30px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  border-radius: 0px 0px 8px 8px;
  color: #FFFFFF;
  text-align: center;
}

/* transform-center */
.transform-center {
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

body {
  padding-top: 56px !important;
  font-family: Source Han Sans CN, Source Han Sans CN;
}

.topnav {
  padding: 0 !important;
  height: 56px !important;
  box-shadow: 0px 3px 17px 1px rgba(0, 0, 0, 0.07) !important;
}

.btn-default {
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #999999;
  font-size: 0.875rem;
}

.btn-primary {
  background: linear-gradient(135deg, #89C548 0%, #E8A23B 100%);
  border-radius: 2px 2px 2px 2px;
  border-color: transparent;
  -webkit-border-radius: 2px 2px 2px 2px;
  -moz-border-radius: 2px 2px 2px 2px;
  -ms-border-radius: 2px 2px 2px 2px;
  -o-border-radius: 2px 2px 2px 2px;
  font-size: 0.875rem;
  color: #FFFFFF;
}

.btn:focus,
.btn.focus,
.btn-primary:focus,
.btn-primary.focus,
textarea:focus,
textarea.focus {
  box-shadow: none !important;
}

.w-15 {
  min-width: 15%;
}

.bold {
  font-weight: bold;
}

.font-12 {
  font-size: 0.75rem;
}

.font-14 {
  font-size: 0.875rem;
}

.mr-12 {
  margin-right: 0.75rem;
}

.ml-7 {
  margin-left: 2.5rem;
}

.mr-7 {
  margin-right: 2.5rem;
}

.mb-7 {
  margin-bottom: 2.5rem;
}

.mt-7 {
  margin-top: 2.5rem;
}

.pt-125 {
  padding-top: 1.25rem;
}

.pr-125 {
  padding-right: 1.25rem;
}

.pb-125 {
  padding-bottom: 1.25rem;
}

.pl-125 {
  padding-left: 1.25rem;
}

.display-block {
  display: block;
}

.display-none {
  display: none;
}

.card_box {
  line-height: 1.75rem;
  box-shadow: 0px 3px 24px 1px rgba(0, 0, 0, 0.06);
  border-radius: 8px 8px 8px 8px;
}

.card_box .card_content {
  padding: 0 0.875rem;
}

.text-six {
  color: #666666;
}

.primary {
  color: #89C548;
}

textarea {
  resize: none;
}

.info_box {
  padding: 7rem 0 5.5rem;
}

.info_box a:hover {
  color: #000;
}

@media (max-width: 768px) {
  .breadcrumb_box {
    padding: 1.5rem 0;
  }
}