body {
  font-size: 16px;
  font-family: PingFangSC-Semibold, PingFang SC;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth
}

html,
body,
ul,
li,
p {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  display: block;
}

::-webkit-scrollbar {
  width: 6px;
  height: 7px;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
  border-radius: 4px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #999999;
}

::-webkit-scrollbar-thumb:window-inactive {
  background: #999999;
}

.layout {
  width: 100%;
  min-width: 1280px;
}

.layout-item {
  width: 100%;
  min-width: 1000px;
}

.container {
  width: 1200px;
  margin: 0 auto;
  min-width: 1000px;
}

/*当width>1440px*/
@media(min-width: 1280px) {}

@media(min-width: 1366px) {}

.flex {
  display: flex;
}

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

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

header {
  height: 3.75rem;
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 9;
}

header nav {
  padding-left: 100px;
}

header nav .active {
  color: #4FA271;
  font-weight: 550;
  border-bottom: 3px solid #4FA271;
}

header nav a {
  padding: 0 1.75rem;
  display: block;
  height: 3.75rem;
  margin: 0 1.25rem;
  line-height: 3.75rem;
  color: #000000;
}

footer {
  background: #FFFFFF;
}

footer .superiority {
  width: 100%;
  border-bottom: solid 1px #E5E5E5;
  height: 165px;
  display: flex;
}

footer .superiority>div {
  color: #333333;
  font-size: 16px;
  width: calc(100% / 6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

footer .superiority>div>img {
  width: 56px;
  margin-bottom: 7px;
}

footer .branch {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

footer .branch .branch-office {
  width: calc(100% / 3);
  padding-left: 30px;
  margin-bottom: 20px;
}

footer .branch .branch-office>p:nth-child(1) {
  color: #333;
  font-weight: bold;
  line-height: 28px;
  font-size: 18px;
}

footer .branch .branch-office>p:nth-child(2) {
  color: #333;
  line-height: 28px;
  font-size: 16px;
}

footer .branch .call {
  margin: 0 auto;
  display: flex;
  width: calc(100% / 3);
  justify-content: space-between;
  padding: 0 30px;
  padding-right: 40px;
}

footer .branch .call>img {
  width: 100px;
}

/* .hidden-cell{
  color: #4FA271;
  font-size: 20px;
}
.hidden-cell1{
  color: #4FA271;
  font-size: 20px;
}
.hidden-cell2{
  color: #4FA271;
  font-size: 20px;
}
.hidden-cell3{
  color: #4FA271;
  font-size: 20px;
}
.hidden-cell4{
  color: #4FA271;
  font-size: 20px;
}
.hidden-cell5{
  color: #4FA271;
  font-size: 20px;
} */
/* // flex布局 */
/************************************* 公共样式 *******************************************/
/* 单行文本溢出 */
.ov-hidden-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 两行文本溢出 */
.ov-hidden-2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 弹行布局 */
/*  从左往右 */
.flex-start {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* 从右往左 */
.flex-end {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* 两边排布 */
.flex-between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* 平均分布 */
.flex-around {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

/* 水平居中 */
.flex-horizontal-center {
  display: flex;
  justify-content: center;

}

/* 垂直居中 */
.flex-vertical-center {
  display: flex;
  align-items: center;

}

/*  单行垂直水平剧中 */
.flex-single-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 多行垂直居中 */
.flex-m-vertical-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 多行垂直水平居中 */
.flex-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 固定底部 */
.fixed-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.nothingList {
  margin-top: 65%;
}

/************************************* 公共样式end *******************************************/
.store .el-tabs__item.is-active {
  color: #4FA271 !important;
}

.store .el-tabs__active-bar {
  background-color: #4FA271 !important;
}