/* common */
.wps-container {
  max-width: 1220px;
  margin: 0 auto;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}
.wps-container .caption .title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
.wps-container .caption .subtitle {
  margin-top: 16px;
  text-align: center;
}

/* 顶部banner */
.banner,
.banner .content {
  height: 312px;
}
.banner {
  width: 100%;
  background-image: url('/img/whitePapers/banner_top.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.banner .content {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  text-align: center;
  color: #fff;
}
.banner .content .title {
  font-size: 35px;
  font-weight: bold;
}
.banner .content .subtitle {
  font-size: 25px;
  margin-top: 10px;
}

/* 推荐 */
.recommend {
  margin-top: 65px;
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}
.recommend-cover {
  display: block;
  width: 547px;
  border-radius: 10px;
  overflow: hidden;
}
.recommend-cover > img {
  width: 100%;
  height: 338px;
  object-fit: cover;
  object-position: center;
}
.recommend-right {
  padding: 50px 76px 10px 60px;
  width: 673px;
  box-sizing: border-box;
  position: relative;
}
.recommend-right .title,
.recommend-right .summary {
  overflow: hidden;
  display: -webkit-box;
  word-break: break-all;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.recommend-right .title {
  font-size: 26px;
  font-weight: bold;
  -webkit-line-clamp: 2;
}
.recommend-right .title a:hover {
  color: #E5A414;
}
.recommend-right .summary,
.recommend-right .download-btn {
  margin-top: 30px;
}
.recommend-right .download-btn {
  position: absolute;
  left: 60px;
  bottom: 50px;
  display: inline-block;
  height: 28px;
  line-height: 28px;
  padding: 0 18px;
  border-radius: 19px;
  font-size: 14px;
  color: #333;
  background-color: #F0F0F0;
}
.recommend-right .download-btn:hover {
  color: #fff;
  background-color: #E5A414;
}

/* 白皮书列表 */
.wps-box {
  padding: 113px 0 110px;
}
.wps-content {
  display: flex;
  justify-content: space-between;
}
.wps-filter {
  width: 216px;
}
.wps-filter .filter-name {
  font-size: 18px;
  font-weight: bold;
}
.wps-filter .filter-items {
  margin-top: 13px;
}
.wps-filter .filter-items > li + li {
  margin-top: 18px;
}
.wps-filter .filter-items a {
  display: inline-block;
  padding-left: 26px;
  position: relative;
}
.wps-filter .filter-items a:hover {
  color: #333;
}
.wps-filter .filter-items a::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border: 1px solid #E5A414;
  border-radius: 50%;
}
.wps-filter .filter-items > li.active a::before {
  background-color: #E5A414;
}
.wps-list {
  display: flex;
  flex-wrap: wrap;
  width: 974px;
}
.wps-list .item {
  width: 300px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.16);
  margin-left: 37px;
  margin-top: 45px;
}
.wps-list .item:nth-child(1),
.wps-list .item:nth-child(2),
.wps-list .item:nth-child(3) {
  margin-top: 0;
}
.wps-list .item:nth-child(3n+1) {
  margin-left: 0;
}
.wps-list .item .cover {
  display: block;
  overflow: hidden;
}
.wps-list .item .cover > img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
}
.wps-list .item .detail {
  padding: 27px 24px 21px;
}
.wps-list .item .name,
.wps-list .item .summary {
  display: -webkit-box;
  overflow: hidden;
  word-break: break-all;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}
.wps-list .item .name {
  font-size: 18px;
  font-weight: bold;
  color: #3F3F3F;
  height: 2.8em;
  -webkit-line-clamp: 2;
}
.wps-list .item .name:hover {
  color: #E5A414;
}
.wps-list .item .summary {
  margin-top: 14px;
  height: 7em;
  -webkit-line-clamp: 5;
}
.wps-list .item .download-btn {
  margin-top: 17px;
  text-align: center;
}
.wps-list .item .download-btn > a {
  display: inline-block;
  height: 28px;
  line-height: 28px;
  border-radius: 19px;
  background-color: #F0F0F0;
  font-size: 14px;
  color: #3F3F3F;
  padding: 0 18px;
}
.wps-list .item .download-btn > a:hover {
  background-color: #E5A414;
  color: #fff;
}
.wps-pagination {
  margin-top: 80px;
}
.pagination,
.pagination .turning,
.pagination .turning > a,
.pagination .go,
.pagination .go > p ,
.pagination .go > span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}
.pagination .turning > a,
.pagination .go > span {
  font-size: 14px;
  color: #333;
  padding: 0 17px;
  box-sizing: border-box;
  border: 1px solid #D5D5D5;
  border-radius: 2px;
  cursor: pointer;
}
.pagination .turning > a + a {
  margin-left: 5px;
}
.pagination .turning > a.active {
  background-color: #E5A414;
  color: #fff;
  border-color: #E5A414;
}
.pagination .turning > a.disabled {
  color: #ccc;
}
.pagination .go {
  margin-left: 21px;
}
.pagination .go .label,
.pagination .go .label-page {
  font-size: 16px;
  color: #444444;
}
.pagination .go .label-page,
.pagination .go .input {
  margin-left: 8px;
}
.pagination .go .input {
  height: 35px;
  padding: 0;
}
.pagination .go .input > input {
  border: none;
  outline: none;
  background: transparent;
  width: 65px;
  text-align: center;
  box-sizing: border-box;
}

/* 免费试用下载 */
.download {
  height: 228px;
  background-color: #e5a414;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.download .title {
  font-size: 30px;
  font-weight: bold;
}
.download .contact {
  padding-top: 19px;
}
.download .contact a {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 0 32px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  border-radius: 18.5px;
  color: #e5a414;
  font-size: 16px;
  background-color: #fff;
}
.download .contact a:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
}

.yydQuerypages{
  padding-top: 80px!important;
  background:white !important;
  justify-content: left !important;
  padding-left: 246px !important;

}
