body {
    padding: 0px 18px;
    color: #252525;
    font-family: "LXGW WenKai Screen", sans-serif;
}

.limit-width {
    max-width: 960px;
}

.search {
    display: block;
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px dashed #BEBEBE;
    font-size: 1.6em;
    font-family: "LXGW WenKai Screen", sans-serif;
}

input:focus {
    outline: none;
}

/* Webkit浏览器（如Chrome、Safari） */
::-webkit-input-placeholder {
    color: #D9D9D9;
    font-size: 20px;

}

/* Firefox浏览器 */
:-moz-placeholder {
    color: #D9D9D9;
    font-size: 20px;
}

/* IE浏览器 */
::-ms-input-placeholder {
    color: #D9D9D9;
    font-size: 20px;
}

.line-one {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
    padding: 10px 0px;
}

.link-websit {
    color: #252525;
    text-decoration: none;
}

.link-websit:hover {
    color: #ACC5FE;
}

.gray {
    background-color: #F9F9F9;
}

.cancel-search {
    color: #FE7875;
    cursor: pointer;
}

.cancel-search:hover {
    color: #ACC5FE;
}

ul li {
    cursor: pointer;
}

.cover {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.cover:hover {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.details {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.details .info {
    background-color: white;
    width: 800px;
    height:400px;
    overflow: hidden;
}

@keyframes scale-animation {
    0% {
      transform: scale(1) rotate(0deg);
    }
    /* 50% {
      transform: scale(1.5);
    } */
    100% {
      transform: scale(1.3) rotate(-10deg);
    }
  }

.closeBtu {
    font-size: 20px;
    color: gray;
    cursor: pointer;
}

.closeBtu:hover {
    color:#252525;
}
