.container {
    width: 100%;
    height: 700px;
}

.tip {
    width: 100%;
    height: 5%;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-left: 2%;
}
.circle-tip {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 1%;
    background-color: rgb(236, 148, 10);
    color: white;
}
/* 专利搜素框 */
.search-nav {
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-box {
    width: 98%;
    height: 94%;
    border-radius: 10px;
    background-color: rgb(247, 247, 247);
}

.search-form {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.form-item {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: center;
}
.form-item-item {
    flex: 1;
    display: flex;
    flex-direction: row;
}
.form-item-item label {
    flex: 2;
    text-align: right;
}
.form-item-item input,
select {
    flex: 3;
    margin: 0 3%;
    border: 1px solid rgb(30, 64, 255);
    height: 28px;
}
.form-test {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: center;
}
.form-test-item {
    flex: 1;
    display: flex;
    flex-direction: row;
}
.form-test-item label {
    flex: 2;
    text-align: right;
}
.form-test-item input {
    flex: 2;
    margin: 0 3%;
    border: 1px solid rgb(30, 64, 255);
    height: 28px;
}
.form-test-item img {
    flex: 1;
    border: 1px solid rgb(30, 64, 255);
}
.form-test-btn {
    flex: 2;
}
.form-test-btn input {
    margin-right: 5%;
}
.test-text {
    color: red;
}
.search-btn {
    border: none;
    width: 8%;
    height: 30px;
    margin-left: 30%;
    margin-right: 2%;
    color: white;
    background-color: rgb(236, 148, 10);
}
.reset-btn {
    border: none;
    width: 8%;
    height: 30px;
    margin-right: 2%;
    color: white;
    background-color: rgb(57, 137, 225);
}
/* 列表表头 */
.list-nav {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.list-nav-box {
    width: 98%;
    height: 90%;
    border-radius: 10px;
    background-color: rgb(238, 238, 238);
    display: flex;
    flex-direction: row;
}

.list-item {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
}
/* 列表内容 */
.list-content {
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#list-content-data {
    height: 95%;
    overflow-y: scroll;
}
/* 分页导航栏 */
.pages {
    padding-right: 5%;
    text-align: right;
}
div.pages a {
    text-decoration: none;
    text-align: center;
}
div.pages a,
div.pages span {
    display: inline-block;
    box-sizing: border-box;
}

/* 当前页按钮 */
.current {
    color: #ffffff;
    background: #1abc9c;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 3px;
}

/* 非当前页的按钮 */
.pageNum {
    color: #666;
    background: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
    border-radius: 3px;
}
.moreNum {
    color: #666;
    background: #fff;
    width: 60px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
    border-radius: 3px;
}
.turnNum {
    width: 55px;
    height: 20px;
}
.goTo {
    width: 40px;
    border-radius: 5px;
    margin-left: 10px;
    color: white;
    background: #1abc9c;
}

/* 当前页的下一页为当前页撑开空间 */
.nextpage {
    margin: 0 5px;
}

/* 上一页按钮,下一页按钮,第一页和最后一页时禁止点击的上一页按钮和下一页按钮 */
.preBtn,
.nextBtn {
    color: #666;
    width: 88px;
    height: 42px;
    line-height: 42px;
    border-radius: 3px;
}

.disabled {
    color: #666;
    width: 88px;
    height: 42px;
    line-height: 42px;
    border-radius: 3px;
    pointer-events: none;
}
.totalNum {
    color: #666;
    background: #fff;
    width: 88px;
    height: 42px;
    line-height: 42px;
    border-radius: 3px;
    margin-left: 5px;
}

.list-box {
    width: 98%;
    height: 96%;
    border-radius: 10px;
}
.list-box ul li {
    list-style-type: none;
}
.list-item-container {
    width: 100%;
    height: 10%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.item-cotainer-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
}
.item-form-item {
    width: 14%;
    padding-left: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
    white-space: nowrap;
}
.item-form-item:last-child {
    width: 14%;
    text-align: left;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: keep-all;
    white-space: nowrap;
}
.patent-number {
    color: rgb(153, 153, 177);
}

.item-cotainer-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 5px;
    color: rgb(153, 153, 177);
}
.item-cotainer-info div {
    margin-right: 50px;
}
.outlook {
    background-color: blue;
    color: white;
    border-radius: 5px;
    width: 60px;
}
.practical {
    background-color: lightpink;
    color: white;
    border-radius: 5px;
    width: 60px;
}
.invention {
    background-color: orange;
    color: white;
    border-radius: 5px;
    width: 60px;
}
.arrow {
    /* display: inline-block; */
    margin-top: 4px;
    vertical-align: middle;
    width: 0;
    height: 0;
    margin-left: 5px;
    opacity: 0.66;
}
.arrow.asc {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgb(30, 64, 255);
}
.arrow.dsc {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgb(30, 64, 255);
}
