.search-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  margin-bottom: 50px;
}

.select-left {
  width: 150px;
  margin-right: 10px;
  padding: 0 30px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-position: 120px;
  outline: none;
}

.input-content {
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 30px;
  font-family: "Microsoft YaHei";
  font-size: 14px;
  color: #333;
}
.search-btn {
  margin-left: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 43px;
  height: 43px;
  background: url("https://wwwtem.csm.com.cn/cn/images/search.png") center
    no-repeat;
  cursor: pointer;
}
.news-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
}
.news-content::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: #ddd;
}
.one-new {
  width: 50%;
  color: #333;
  padding: 50px 30px;
  box-sizing: border-box;
}
.one-new .title {
  font-size: 18px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.one-new .title a {
  color: #333;
}
.one-new .title a:hover {
  color: #e40073;
}
.one-new .time {
  font-size: 12px;
  margin-bottom: 10px;
}
.one-new .content {
  font-size: 12px;
  text-indent: 2em;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.one-new .view-all {
  font-size: 12px;
}
.one-new .view-all a {
  color: #333;
}
.one-new .view-all a:hover {
  color: #e40073;
}
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 100px;
  overflow: hidden;
}
.news-pagination button {
  padding: 8px 12px;
  border: 1px solid #b5b5b5;
    color: #333;
  background: white;
  cursor: pointer;
  font-size: 14px;
  width: 40px;
  height: 40px;
}
.news-pagination button:hover:not(:disabled) {
  background-color: #e40073;
  color: white;
}
.news-pagination button.active {
  background-color: #e40073;
  color: white;
  border-color: #e40073;
}
.news-pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.news-pagination .head_page {
  width: 40px;
  height: 40px;
  display: block;
  background: url("https://wwwtem.csm.com.cn/cn/images/page.gif") no-repeat 0 0;
}
.news-pagination .prev_page {
  width: 40px;
  height: 40px;
  display: block;
  background: url("https://wwwtem.csm.com.cn/cn/images/page.gif") no-repeat -40px 0;
}
.news-pagination .next_page {
  width: 40px;
  height: 40px;
  display: block;
  background: url("https://wwwtem.csm.com.cn/cn/images/page.gif") no-repeat -80px 0;
}
.news-pagination .last_page {
  width: 40px;
  height: 40px;
  display: block;
  background: url("https://wwwtem.csm.com.cn/cn/images/page.gif") no-repeat -120px 0;
}
