* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
button,
select {
  border: 0;
  resize: none;
  outline: 0;
  background: transparent;
}

button {
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*多行溢出*/
.line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

/* hover-图片放大1.1 */
.scale-box {
  overflow: hidden;
}

.scale-box .scale-img {
  width: 100%;
  height: 100%;
  transition: all .3s linear;
  cursor: pointer;
  object-fit: cover;
}

.scale-box:hover .scale-img {
  transform: scale(1.1);
}

/* 常用盒子阴影 */
.shadow_box {
  box-shadow: 0 .02rem .12rem 0 rgba(0, 0, 0, 0.1)
}

/* 水波纹效果 */
.btn-ripple {
  vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
  opacity: 1;
  position: relative;
  overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
  animation: ani_ripple 0.75s;
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
  0% {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(-50%) translateY(-50%) scale(0);
  }

  to {
    background: transparent;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

.serachTop {
  width: 7.86rem;
  height: .56rem;
  background: #FFFFFF;
  border-radius: .28rem .28rem .28rem .28rem;
  border: .01rem solid #D0D0D0;
  margin: .32rem auto .44rem;
  display: flex;
  align-items: center;
}

.serachBox input {
  width: 100%;
  height: 100%;
  padding: 0 .28rem;
  font-size: .16rem;
}

.serachBox input::-webkit-input-placeholder {
  font-family: Arial, Arial;
  font-weight: 400;
  font-size: .16rem;
  color: #999999;
}

.serachBox button {
  width: 1.32rem;
  height: .48rem;
  background: linear-gradient(180deg, #EFAF1B 0%, #9C7522 100%);
  border-radius: .5rem .5rem .5rem .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Arial;
  font-weight: bold;
  font-size: .18rem;
  color: #FFFFFF;
  margin-right: .04rem;
}

.serachBox button img {
  width: .18rem;
  height: .18rem;
  margin-right: .09rem;
}

.serachBot {
  width: 12rem;
  margin: 0 auto;
}

.searchTip {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: .24rem;
  color: #333333;
  margin-bottom: .44rem;
}

.searchTip span {
  color: #FF0000;
}

.serachResult {
  display: flex;
  align-items: flex-start;
}

.serachL {
  margin-right: .2rem;
}

.searchList {
  width: 3rem;
  padding: .37rem .3rem .53rem;
  box-sizing: border-box;
}

.listTit {
  font-family: PingFang SC, PingFang SC;
  font-weight: bold;
  font-size: .2rem;
  color: #262B3A;
  padding-bottom: .22rem;
  border-bottom: .01rem solid #DDDDDD;
  margin-bottom: .2rem;
}

.searchSelect {
  display: flex;
  align-items: center;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: .18rem;
  color: #666666;
  cursor: pointer;
  padding-bottom: .22rem;
  border-bottom: .01rem solid #DDDDDD;
  margin-bottom: .2rem;
  transition: all .3s;
}

.searchSelect img {
  width: .06rem;
  height: .12rem;
  margin-right: .2rem;
  object-fit: contain;
}

.searchSelect:hover,
.searchSelect.active {
  font-weight: bold;
  color: #041E3A;
}

.searchR {
  width: 8.8rem;
  padding: .3rem;
  box-sizing: border-box;
}

.serachNews {
  display: flex;
  margin-bottom: .33rem;
  padding-bottom: .32rem;
  border-bottom: .01rem solid #EDEDED;
}

.newImg {
  width: 3.05rem;
  height: 1.88rem;
  overflow: hidden;
  margin-right: .33rem;
}

.newR {
  width: 100%;
  max-width: 4.78rem;
}

.newTime {
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: .14rem;
  color: #999999;
  margin-bottom: .12rem;
}

.newTit {
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  font-size: .18rem;
  color: #000000;
  margin-bottom: .16rem;
}

.newTxt {
  min-height: .75rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: .14rem;
  color: #666666;
  line-height: .28rem;
  margin-bottom: .2rem;
}

.newBtn {
  display: flex;
  align-items: center;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: .14rem;
  color: #0067B8;
}

.newBtn img {
  width: .06rem;
  height: .1rem;
  margin-left: .06rem;
  object-fit: contain;
}

.jobs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .4rem;
  border-bottom: .01rem solid #EDEDED;
}

.jobTit {
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  font-size: .24rem;
  color: #333333;
  margin-bottom: .19rem;
}

.jobTips {
  display: flex;
  align-items: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: .14rem;
  color: #666666;
  white-space: nowrap;
  margin-top: .16rem;
}

.jobTips img {
  max-width: .16rem;
  max-height: .18rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-right: .08rem;
}

.jobR {
  width: 1.6rem;
  height: .44rem;
  background: #041E3A;
  border-radius: .04rem .04rem .04rem .04rem;
  border: .01rem solid rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: .14rem;
  color: #FFFFFF;
}

.jobR img {
  width: .19rem;
  height: .1rem;
  object-fit: contain;
  margin-left: .22rem;
}

@media only screen and (max-width: 1024px){
    .searchTip{
        width: 94%;
        margin:0 auto 0.44rem;
    }
    .serachResult{
        flex-wrap: wrap;
    }
    .serachBot{
        width: 100%;
    }
    
    .serachL{
        width: 100%;
    }
    .searchList{
        width: 94%;
        margin: 0 auto;
        padding: .37rem 0rem .53rem;
    }
    .searchSelect,
    .newTit
    {
        font-size: 0.2rem;
    }
    .newTime,
    .newBtn
    {
        font-size: 0.18rem;
    }
    .serachTop{
        width: 94%;
        margin:70px auto 0.4rem;
    }
    .serachBox input,
    .serachBox button
    {
        font-size: 0.2rem;
    }
}