/* home.css */
* {
    box-sizing: border-box;
}

#container {
    height: 400px;
    margin: 0 auto;
}

div.search {
    padding: 30px 0;
}

form {
    background: #ffffff;
    /*背景*/
    border-radius: 10px;
    /*倒圆角*/
    position: relative;
    /*max-width:700px;         */
    min-width: 100px;
    margin: 0 auto;
}

input,
button {
    border: none;
    outline: none;
}

input {
    /*搜索框*/
    width: 100%;
    height: 42px;
    padding-left: 13px;
}

button {
    height: 42px;
    width: 42px;
    cursor: pointer;
    position: absolute;
}

/*搜索框6
/*.bar6 {background: #F9F0DA;}*/
.bar6 input {
    border: 2px solid #5771EC;
    border-radius: 10px;
    /*倒圆角*/
    background: transparent;
    top: 0;
    right: 0;
}

.bar6 button {
    background: #5771EC;
    border-radius: 0 10px 10px 0;
    /*倒圆角*/
    width: 100px;
    top: 0;
    right: 0;
}

.bar6 button:before {
    content: "";
    font-size: 16px;
    color: #ffffff;
}

.ui.dropdown.select {
    width: 20px; /* 指定长度为200px */
  }