*{
    margin: 0;
    padding: 0;
}
html{
    width: 100%;
    height: 100%;
}

.inputTab {
	min-width: 400px;
	padding-left: 5px;
}

.inputTab > ul > li {  
    float: left;  
    margin-right: 8px;  
    background-color: rgba(168, 168, 168, 0.6);
    color: black;  
    cursor: pointer;  
    width: 56px;  
	border-radius: 4px 4px 0px 0px;
    height: 32px;  
    line-height: 32px;  
    text-align: center;  
	list-style: none;
}

.inputBox {
    width: 40%;
    height: 44px;
	min-width: 400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 0 20px;
    border-radius: 20px;
}

.inputBox > input{
    background: none;
    border: none;
    outline: none;
    padding: 0 10px 0 0;
    flex: 1;
    height: 44px;
    color: #242323;
    font-size: 16px;
}

.inputBox > input::placeholder{
    color: #242323;
    font-size: 16px;
}

.inputBox > img{
    width: 1.5rem;
    height: 1.5rem;
}

.inputBox > img:hover{
    cursor: pointer;
}