/*版权所有 (c) 2024 蓝鲨科技有限公司。保留所有权利*/

form {
    /*页面加载动画*/
    animation: slideInFromLeft1 0.3s ease-out forwards;
    display: flex;
    justify-content: center;
    align-items: center;
}

form .text {
    display: inline-block;
    border: 0;
    width: 100vw;
    height: 35px;
    font-size: 14px;
    outline: none;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    padding: 0 10px;
    transition: border-color 0.3s ease;
}

form .text:focus {
    border-color: #0167ff;
}

form .search {
    font-size: clamp(10px, 3vw, 17px);
    font-family: "fonts3";
    width: 20vw;
    max-width: 100px;
    height: 35px;
    border: 0;
    outline: none;
    cursor: pointer;
    text-align: center;
    background-color: #0c9eff;
    color: #FFFFFF;
    border-radius: 5px;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

form .search:hover {
    background-color: #0167ff;
}