@keyframes initRight {
  from {
    transform: translateX(150%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes initLeft {
  from {
    transform: translateX(-150%);
  }

  to {
    transform: translateX(0);
  }
}

.w1440 {
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
}

.searchInput {
  width: 100%;
  background: #F7F7F7;
  padding: 50px 0px;
  transform: translateX(-150%);
  animation: initLeft .8s ease-out .2s;
  animation-fill-mode: forwards;
}


.searchInput .input {
  background: #FFFFFF;
  width: 705px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px 18px 30px;
}


.searchInput .input input {
  height: 100%;
  width: 100%;
  font-weight: bold;
  font-size: 24px;
}
/* input获取焦点 placeholder消失 */
.searchInput .input input:focus::placeholder {
  opacity: 0;
}

.searchInput .input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
}

.searchInput .input input::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
}

.searchInput .input input:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
}

.searchInput .input input:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
}

.searchInput .input img {
  width: 23px;
  height: 24px;
  cursor: pointer;
}

.searchContent {
  width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  padding: 70px 0px 105px 0px;
  transform: translateX(150%);
  animation: initRight .8s ease-out .2s;
  animation-fill-mode: forwards;
}

.searchContent .noneData {
  margin-top: 110px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 800px;
}

.searchContent .listNav {
  display: flex;
  justify-content: flex-start;
}

.searchContent .listNav>div {
  margin-right: 49px;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  position: relative;
  padding-bottom: 24px;
}

.searchContent .nav {
  position: relative;
}

.searchContent .bule {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* .searchContent .bule div {
  width: 76px;
  height: 4px;
  margin: 0 auto;
  background-color: #0051F5;
} */
.searchContent .active:after {
  content: '';
     position: absolute;
     bottom: 5px;
     left: 0;
     right: 0;
     margin: 0 auto;
     width: 76px;
     height: 4px;
     background-color: #0051F5;
}

/* 产品 */
.searchContent .content .product .item {
  padding: 50px 0px;
  width: 100%;
  border-bottom: 1px solid #E6E6E6;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.searchContent .content .product .item .left {
  width: 320px;
  height: 320px;
}

.searchContent .content .product .item .left img {
  width: 100%;
}

.searchContent .content .product .item .right {
  margin-left: 70px;
}

.searchContent .content .product .item .right .title {
  font-size: 28px;
  font-weight: bold;
  color: #000000;
}

.searchContent .content .product .item .right .text {
  width: 314px;
  margin: 30px 0px 49px 0px;
  font-size: 18px;
}

.searchContent .content .product .item .right .more {
  width: 130px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  color: #FFFFFF;
  text-align: center;
  background: #333333;
  cursor: pointer;
}

.searchContent .content .product .item .right .more:after {
  content: ">";
  margin-left: 10px;
}

.searchContent .content .product .item .right .more:hover {
  border: 1px solid #333333;
  color: #333333;
  background: #FFFFFF;
}

.searchContent .content .product .item .right .more:hover a {
  color: #333333;
}

/* 公告 */
.searchContent .content .Notice {
  margin-top: 70px;
}

.searchContent .content .Notice .item {
  padding: 40px 0px;
  width: 100%;
  border-bottom: 1px solid #E6E6E6;
}

.searchContent .content .Notice .item .title {
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
}

.searchContent .content .Notice .item .time {
  font-size: 16px;
  color: #8F8F8F;
  line-height: 28px;
}

/* 活动 & 媒体 */
.activity .item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 50px 0px;
  border-bottom: 1px solid #E6E6E6;
}

.activity .item .left {
  width: 460px;
}

.activity .item .left img {
  width: 100%;
}

.activity .item .right {
  width: calc(100% - 480px);
}

.activity .item .right .title {
  font-size: 20px;
  color: #000000;
  font-weight: bold;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.activity .item .right .time {
  color: #8F8F8F;
  font-size: 16px;
  line-height: 28px;
  margin-top: 8px;
}



@media screen and (max-width: 1366px) {
  .w1440 {
    max-width: 1024px;
  }

  .searchInput {
    padding: 40px 0px;
  }

  .searchInput .input {
    padding: 15px 20px 15px 24px;
  }

  .searchInput .input input {
    font-size: 22px;
  }

  .searchContent {
    padding: 60px 0px 85px 0px;
  }
}

@media screen and (max-width: 1024px) {
  .w1440 {
    padding: 0 20px;
  }

  .searchInput {
    padding: 30px 0px;
  }

  .searchInput .input {
    width: 90%;
    padding: 15px 20px 15px 24px;
  }

  .searchInput .input input {
    font-size: 20px;
  }

  .searchContent {
    padding: 40px 0px 60px 0px;
  }

  .searchContent .noneData {
    margin-top: 80px;
    font-size: 18px;
    margin-bottom: 600px;
  }

  .searchContent .listNav>div {
    padding-bottom: 18px;
  }

  .searchContent .content .product .item {
    padding: 30px 0px;
  }

  .searchContent .content .list .product .right .title {
    font-size: 24px;
  }

  .searchContent .content .list .product .right .text {
    margin: 20px 0px 30px 0px;
    font-size: 16px;
  }

  .searchContent .content .list .product .left {
    width: 25%;
    height: inherit;
  }

  .searchContent .content .list .product .right {
    margin-left: 40px;
    width: 65%;
  }

  /* 公告 */
  .searchContent .content .Notice {
    margin-top: 50px;
  }

  .searchContent .content .Notice .item {
    padding: 30px 0px;
  }

  /* 活动 & 媒体 */

  .activity .item {
    padding: 35px 0px;
  }

  .activity .item .left {
    width: 320px;
  }

  .activity .item .right {
    width: calc(100% - 350px);
  }

  .activity .item .right .title {
    font-size: 18px;
  }

  .activity .item .right .time {
    margin-top: 5px;
  }
}

@media screen and (max-width: 720px) {
  .searchInput {
    padding: 15px 0px;
  }

  .searchInput .input {
    width: 90%;
    padding: 8px 10px 8px 12px;
  }

  .searchInput .input input {
    font-size: 16px;
  }

  .searchContent {
    padding: 30px 0px 35px 0px;
  }

  .searchContent .noneData {
    margin-top: 60px;
    font-size: 16px;
    margin-bottom: 400px;
  }

  .searchContent .listNav>div {
    padding-bottom: 12px;
  }

  .searchContent .listNav {
    justify-content: space-around;
  }

  .searchContent .listNav>div {
    margin-right: 13px;
    font-size: 10px;
    font-weight: 500;
    line-height: 16px;
  }

  .searchContent .nav .bule div {
    width: 30px;
  }

  .searchContent .listNav>div span {
    /* display: block; */
  }

  .searchContent .content .list .item .right .title {
    font-size: 18px;
  }

  .searchContent .content .list .item .right .text {
    margin: 11px 0px 14px 0px;
    font-size: 12px;
    white-space: normal;
    /**   不能设置为这个 white-space:nowrap; **/
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    /** 对象作为伸缩盒子模型显示 **/
    -webkit-box-orient: vertical;
    /** 设置或检索伸缩盒对象的子元素的排列方式 **/
    -webkit-line-clamp: 2;
    /** 显示的行数 **/
    overflow: hidden;
    /** 隐藏超出的内容 **/
  }

  .searchContent .content .product .item .left {
    width: 30%;
    height: auto;
  }

  .searchContent .content .product .item .right {
    width: calc(100% - 30% - 20px);
    margin-left: 20px;
  }

  .searchContent .content .product .item .right .text {
    width: 90%;
  }

  .searchContent .content .product .item .right .more {
    width: 80px;
    height: 20px;
    line-height: 20px;
    border-radius: 10px;
    font-size: 12px;
  }

  /* 公告 */
  .searchContent .content .Notice {
    margin-top: 30px;
  }

  .searchContent .content .Notice .item {
    padding: 15px 0px;
  }

  .searchContent .content .Notice .item .title {
    font-size: 18px;
    line-height: 24px;
  }

  .searchContent .content .Notice .item .time {
    font-size: 14px;
    line-height: 24px;
  }
  
  /* 活动 & 媒体 */
  .activity {
    margin-top: 30px;
  }
  .activity .item {
    padding: 20px 0px;
  }
  
  .activity .item .left {
    width: 100%;
  }
  
  .activity .item .right {
    width: 100%;
  }
  
  .activity .item .right .title {
    font-size: 18px;
    padding: 10px 0px 5px 0px;
    font-size: 16px;
  }
  
  .activity .item .right .time {
    margin-top: 0px;
    font-size: 14px;
    line-height: 18px;
  }
}
