/* 搜索栏 */
.search-wrapper {
    width: 1000px;
    height: 100px;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* 搜索栏logo */
.search-logo-box {
    position: relative;
    margin-left: 20px;
    width: 150px;
    height: 100%;
    /* background-color: green; */
}

/* 搜索栏logo图 */
.search-wrapper-logo {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    display: block;
    width: 60px;
    /* background-color: #fff; */
}

/* 搜索栏logo图文字 */
.search-wrapper-logo+span {
    display: block;
    height: max-content;
    width: 80px;
    padding: 0 5px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    color: #333;
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
}

/* 搜索框容器 */
.search-bar-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 600px;
    height: 100%;
}

/* 搜索框区域 */
.search-bar {
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin: 30px 0;
    position: relative;
}

/* 搜索框 */
.search-box {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 460px;
    height: 28px;
    border-radius: 20px;
    border: 2px solid #333;
    padding: 5px 80px 5px 40px;
    font-size: 16px;
    font-weight: 600;
}

/* 搜索logo  */
.search-iconfont {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    cursor: default;
    font-size: 22px;
    font-weight: 800;
}

/* 搜索按钮 */
.search-btn {
    position: absolute;
    width: 80px;
    height: 36px;
    background-color: #333;
    top: 3px;
    margin: auto 0;
    right: 11px;
    border-radius: 18px;
    cursor: pointer;
    transition: background-color .2s ease-in-out;
    text-align: center;
    color: #fff;
    font-size: 18px;
}

.search-btn:hover {
    background-color: #555;
}