body {
  position: relative;
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --color: #CA1C1D;
}

*,
:after,
:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  vertical-align: baseline;
}

p {
  word-break: break-all;
}

a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
}

a:hover {
  text-decoration: none !important;
}

ol,
ul {
  list-style: none
}

@font-face {
  font-family: "DIN";
  src: url(../../font/DIN-Condensed-Bold.eot);
  src: url(../../font/DIN-Condensed-Bold.eot#iefix) format("embedded-opentype"), url(../../font/DIN-Condensed-Bold.woff2) format("woff2"), url(../../font/DIN-Condensed-Bold.woff) format("woff"), url(../../font/DIN-Condensed-Bold.ttf) format("truetype"), url(../../font/DIN-Condensed-Bold.svg#DIN-Condensed-Bold) format("svg")
}

.DIN-bd {
  font-family: "DIN";
}

/* 单独设置左右宽度与主体宽度达到一致 */
@media screen and (min-width: 1700px) {
  :root {
    --positionLeft: calc((100% - 1200px) / 2 + 15px);
    --positionRight: calc((100% - 1200px) / 2 + 15px);
    --paddingLeft: calc((100% - 1200px) / 2 + 15px);
    --paddingRight: calc((100% - 1200px) / 2 + 15px);
  }
}

@media screen and (max-width: 1700px) and (min-width:0px) {
  :root {
    --positionLeft: calc((100% - 1200px) / 2 + 15px);
    --positionRight: calc((100% - 1200px) / 2 + 15px);
    --paddingLeft: calc((100% - 1200px) / 2 + 15px);
    --paddingRight: calc((100% - 1200px) / 2 + 15px);
  }
}

@media screen and (max-width: 1200px) and (min-width:0px) {
  :root {
    --positionLeft: 3vw;
    --positionRight: 3vw;
    --paddingLeft: 3vw;
    --paddingRight: 3vw;
  }
}

@media screen and (max-width: 750px) and (min-width:0px) {
  :root {
    --positionLeft: 2vw;
    --positionRight: 2vw;
    --paddingLeft: 2vw;
    --paddingRight: 2vw;
  }
}

.container {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}

/* @media screen and (min-width: 1700px) {
  .container {
    width: 1600px;
    max-width: 1600px;
  }
}

@media screen and (max-width: 1700px) {
  .container {
    width: 1440px;
    max-width: 1440px;
  }
}

@media screen and (max-width: 1440px) {
  .container {
    width: 1200px;
    max-width: 1200px;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 2%;
    padding-right: 2%;
  }
} */



/*滚动条*/
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background: #c9cfd9;
}

/* end */
/* 隐藏video 全屏按钮 */
.video::-webkit-media-controls-fullscreen-button {
  display: none;
}

/* 隐藏video 播放按钮 */
.video::-webkit-media-controls-play-button {
  display: none;
}

/* 隐藏video 进度条 */
.video::-webkit-media-controls-timeline {
  display: none;
}

/* 隐藏video 观看的当前时间 */
.video::-webkit-media-controls-current-time-display {
  display: none;
}

/* 隐藏video 剩余时间 */


/* 搜索样式 */
.search {
  margin-left: 15px;
  display: flex;
  align-items: center;
  width: 110px;
  border-radius: 20px;
  height: 42px;
  border: 1px solid #E6E6E6;
}

.search input {
  background: #fff0;
  outline: aliceblue;
  height: 40px;
  width: 70px;
  font-size: 14px;
  position: relative;
}

.search button {
  display: block;
  height: 40px;
  width: 40px;
  background: url(../../image/ico02.png) no-repeat center;

}

input:-internal-autofill-selected {
  background-color: #fff0;
}

.search input:focus-visible {
  border: 0;
  box-shadow: 0 0 0;
}

@media screen and (max-width: 992px) {
  .search {
    display: none;
  }
}