
.foot{
  padding: 0 240px;
}
.about-head .left{
  width: 478px;
	height: 45px;
	background-color: #ffffff;
	border-radius: 4px;
	border: solid 1px #d9dfe5;
  justify-content: space-between;
  transition: all .5s;
}
.about-head .left:hover{
  border-color: #1551b3;
}
.about-head .left input[type=text]{
  color: #333;
  width: 400px;
  padding: 0 20px;
  font-size: 16px;
}
.about-head .left input::placeholder{
  color: #dad5d5;
}
.about-head .left button{
  color: #333;
  font-size: 20px;
  width: 43px;
  text-align: center;
  line-height: 43px;
	height: 43px;
	background-image: linear-gradient(90deg, 
		#114bb0 0%, 
		#347fce 100%), 
	linear-gradient(
		#e23c32, 
		#e23c32);
	background-blend-mode: normal, 
		normal;
  border: none;
  outline: none;
  background: #fff;
  transition: all .4s ease-in-out;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}
.about-head .left button:hover{
  background: #1551b3;
  color: #fff;
}
.about-page{
  padding: 66px 240px 106px;
  color: #333;
  position: relative;
}
.about-page::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #f6f8fa 0%,#fff 10%, #fff 100%);
  z-index: -3;
}
.search-result{
  padding-bottom: 36px;
}
.red{
  color: #e23c32 !important;
}
.search-list{
  min-height: 500px;
}
.search-list .pagination{
  justify-content: center;
}
.search-item{
  padding: 40px 0;
  border-bottom: 1px solid #ebebeb;
  position: relative;
  cursor: default;
}
.search-item:first-child{
  border-top: 1px solid #ebebeb;
}

.search-item::after{
  content: '';
  width: 0%;
  height: 1px;
  background-color: #1551b3;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  transition: all 0.5s ease;
  left: 50%;
  transform: translateX(-50%);
}
.search-item:hover h3 a{
  color: #000;
}
.search-item:hover::after{
  width: 100%;
}
.search-item h3{
  font-size: 24px;
  line-height: 48px;
  font-weight: 400;
  margin-bottom: 12px;
  transition: all 0.5s ease;
}
.search-item h3 a{
  color: #333;
}
.search-item p{
  line-height: 30px;
  color: #999;
}
.search-item .search-item-date{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.more{
  width: 144px;
  height: 50px;
  display: block;
  border-radius: 25px;
  color: #999;
  text-align: center;
  line-height: 50px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  
}
.more::before {
  content: '';
  position: absolute;
  z-index: -2;
  left: calc(50% - 72px);
  top: calc(50% - 72px);
  width: 144px;
  height: 144px;
  background-color: #999;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: conic-gradient( #fff, transparent 50%);
  animation: rotatemore 3s linear infinite;
}

.more::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 1px;
  top: 1px;
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fff;
  border-radius: 24px;
}
.search-item:hover .more{
  color: #1551b3;
}
.search-item:hover .more::before{
  background-color: #1551b3;
}
@keyframes rotatemore {
  100% {
    transform: rotate(1turn);
  }
}


@media screen and (max-width: 1680px) and (min-width:1440px) {
  .about-page{
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media screen and (max-width: 1440px)  {
  .about-page{
    padding-left: 100px;
    padding-right: 100px;
  }
}