body * {
  box-sizing: border-box;
  flex-shrink: 0;
}
body {
  font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
    Arial, PingFang SC-Light, Microsoft YaHei;
  margin: 0;
}
input {
  background-color: transparent;
  border: 0;
}
button {
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  outline: none;
  background-color: transparent;
}

button:active {
  opacity: 0.6;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.justify-start {
  display: flex;
  justify-content: flex-start;
}
.justify-center {
  display: flex;
  justify-content: center;
}

.justify-end {
  display: flex;
  justify-content: flex-end;
}
.justify-evenly {
  display: flex;
  justify-content: space-evenly;
}
.justify-around {
  display: flex;
  justify-content: space-around;
}
.justify-between {
  display: flex;
  justify-content: space-between;
}
.align-start {
  display: flex;
  align-items: flex-start;
}
.align-center {
  display: flex;
  align-items: center;
}
.align-end {
  display: flex;
  align-items: flex-end;
}
.tab-common {
  display: block;
  text-decoration: none;
}
.tab-common img.on {
  display: none;
}
.tab-common.on img {
  display: none;
}
.tab-common.on img.on {
  display: inline-block;
}
.tab-common .text {
  /*width: 64px;*/
  /*height: 16px;*/
  overflow-wrap: break-word;
  color: rgba(102, 102, 102, 1);
  font-size: 16px;
  text-align: left;
  white-space: nowrap;
  /*line-height: 16px;*/
  margin-left: 10px;
  /*position: relative;*/
  /*top: -8px;*/
  display: inline-block;
  vertical-align: top;
}
.tab-common.on .text {
  color: rgba(11, 50, 251, 1);
  font-weight: 600;
}
.tab-common .div {
  width: 208px;
  height: 48px;
  margin-left: 16px;
  line-height: 48px;
  display: flex;
  align-items: center;
}
.tab-common.on .div {
  background-color: rgba(240, 242, 245, 1);
  border-radius: 8px;
  /*border: 1px solid rgba(246, 247, 249, 1);*/
}
.tab-common img {
  height: 20px;
  width: 20px;
  margin-left: 14px;
  position: relative;
  top: -2px;
}
.ewm-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.ewm-container .bg {
  background: rgba(0,0,0,0.4);
  width: 100%;
  height: 100%;
}
.ewm-container .content {
  width: 574px;
  height: 414px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -287px;
  margin-top: -207px;
  background: url("./img/dialog_bg1.png") no-repeat center center;
  background-size: contain;
}
.ewm-container .close {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 8px;
  right: 8px;
  background: url("./img/close.png") no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.ewm-container .ewm {
  width: 122px;
  height: 122px;
  position: absolute;
  left: 90px;
  top: 150px;
  overflow: hidden;
}
.ewm-container .ewm img {
  width: 122px;
  height: 122px;
}
.nav-item {
  cursor: pointer;
}
.copyright {
  color: rgba(102, 102, 102, 1)!important;
}
.copyright .beian {
  text-decoration: none!important;
}
.copyright .beian:link,.copyright .beian:visited,.copyright .beian:active {
  color: rgba(102, 102, 102, 1)!important;
}
.copyright .beian:hover {
  color: blue!important;
}

