body {
  margin: 0;
  padding: 0;
  font-family: "Microsoft YaHei", "微软雅黑", "宋体", "Arial", "sans-serif";
}
body,
button,
input,
select,
textarea {
  font: 12px/1 system-ui, "Microsoft YaHei", "微软雅黑", "arial", "tahoma", "MicrosoftJhengHei", "sans-serif";
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased !important;
  /* 用 ascii 字符表示，使得在任何编码下都无问题 */
}
a {
  text-decoration: none;
}
a:link,
a:visited,
a:hover {
  color: inherit;
  text-decoration: none;
}
input {
  all: unset;
  /* 移除所有默认样式 */
  box-sizing: border-box;
  /* 让 padding 和 border 计算在 width 内 */
  font-family: inherit;
  /* 继承父级字体 */
  font-size: inherit;
  /* 继承字体大小 */
  appearance: none;
  /* 移除默认外观（对部分浏览器有效） */
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  padding: 0;
  margin: 0;
}
input:focus {
  outline: none;
}
button {
  all: unset;
  /* 移除所有默认样式 */
  background: transparent;
  /* 背景透明 */
  border: none;
  /* 移除默认边框 */
  font-family: inherit;
  /* 继承父元素字体 */
  font-size: inherit;
  /* 继承字体大小 */
  padding: 0;
  /* 去除内边距 */
  margin: 0;
  /* 去除外边距 */
  cursor: pointer;
  /* 使按钮可点击 */
  outline: none;
  /* 去除焦点框 */
  appearance: none;
  /* 去除系统样式 */
}
* {
  box-sizing: border-box;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tjjf-coverflow-layout {
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -ms-justify-content: center;
  justify-content: center;
}
.tjjf-coverflow-layout .tjjf-coverflow-container {
  max-width: 1620px;
  height: 360px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .tjjf-coverflow-layout .tjjf-coverflow-container {
    height: 200px;
  }
}
.tjjf-coverflow-layout .tjjf-coverflow-container .carousel-track {
  display: -ms-flexbox;
  display: flex;
}
.tjjf-coverflow-layout .tjjf-coverflow-container .carousel-track .carousel-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 540px;
  height: 360px;
  overflow: hidden;
  cursor: pointer;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .tjjf-coverflow-layout .tjjf-coverflow-container .carousel-track .carousel-item {
    width: 100%;
    height: 200px;
  }
}
.tjjf-coverflow-layout .tjjf-coverflow-container .carousel-track .carousel-item img {
  width: 100%;
  height: 100%;
  -ms-interpolation-mode: bicubic;
  object-fit: cover;
  display: block;
}
.tjjf-coverflow-layout .tjjf-coverflow-container .prev,
.tjjf-coverflow-layout .tjjf-coverflow-container .next {
  width: 34px;
  height: 67px;
  cursor: pointer;
  position: absolute;
}
.tjjf-coverflow-layout .tjjf-coverflow-container .prev {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 540px;
  background: url("./tjjf-prev.png");
}
@media (max-width: 768px) {
  .tjjf-coverflow-layout .tjjf-coverflow-container .prev {
    left: 0;
  }
}
.tjjf-coverflow-layout .tjjf-coverflow-container .next {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 540px;
  background: url("./tjjf-next.png");
}
@media (max-width: 768px) {
  .tjjf-coverflow-layout .tjjf-coverflow-container .next {
    right: 0;
  }
}
