:root {
  /* --theme-color: #ff8e33; */
  --theme-color: #ff7601;
  --text-color: #333333;

  --title-color: #212224;
  --sub-title-color: #666666;

  --bg-color: #f0f0f0;
  --bg-target-color: #f6f7f9;
  --bg-nav-color: #090909;

  /* --border-color: #e2e2e2; */
  --border-color: #f2f2f2;
  --bg-color: #f2f2f2;

  --font-size: 14px;
  --font-size-title: 30px;

  --content-width: 1200px;
}
html {}

.wrapper {
  width: 1200px;
  margin: 0 auto;
}

body {
  -webkit-text-size-adjust: none;
  font-family: "微软雅黑,Arial";
}

@media screen and (max-width: 1100px) {
  html,body{
    padding: 0;
    margin: 0;
    width: 100%;   
    height: 100%;  
    position: absolute;
    left: 0;top: 0;
    overflow: hidden;  
    overflow-y: auto;
}
  body {
    background-color: var(--bg-color);
  }

}

/* PC端 */
.pc-only {
  display: block;
  min-width: 1600px;
  overflow-x: auto;
  /* 显示PC端元素 */
}

/* 移动端 */
.mobile-only {
  display: none;
  /* 不显示移动端元素 */
}

@media screen and (max-width: 1100px) {
  .pc-only {
    display: none !important;
    /* 移动端时隐藏PC端元素 */
  }

  .mobile-only {
    display: block !important;
    /* 移动端时显示移动端元素 */
  }
  .mobile-only #page{
    padding-top: 50px;
  }
}
.mb-title{
  text-align: center;
  padding-top:30px;
  padding-bottom: 20px;
}
.mb-title span{
  display: inline-block;
  position: relative;
  font-weight: bold;
  font-size: 16px;
}
.mb-title span::after{
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  height: 2px;
  width: 100%;
  background-color:  var(--theme-color);

}
.mb-bgc{
  background-color: #fff;
}
.ellipsis{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

.ellipsis4{
  display: -webkit-box; /* 使用弹性盒模型布局 */
  -webkit-line-clamp: 4; /*显示的行数*/
  -webkit-box-orient: vertical; /* 垂直方向排列*/
  overflow: hidden;
  text-overflow: ellipsis; /* 超出部分显示省略号*/
}

.ellipsis2{
  display: -webkit-box; /* 使用弹性盒模型布局 */
  -webkit-line-clamp: 2; /*显示的行数*/
  -webkit-box-orient: vertical; /* 垂直方向排列*/
  overflow: hidden;
  text-overflow: ellipsis; /* 超出部分显示省略号*/
}