* {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

html, body {
    width: 100%;
    height: 100%;
}

#message {
    background-color: #E6A23C;
    border-color: #faecd8;
    min-width: 300px;
    max-width: 400px;
    box-sizing: border-box;
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 20px;
    overflow: hidden;
    padding: 0 20px;
    display: flex;
    font-size: 14px;
    line-height: 48px;
    min-height: 48px;
    font-weight: bold;
    animation-name: enter-to;
    animation-duration: 2s;
}

@keyframes enter-to {

    from {
        transform: translateY(-10%);
        opacity: 0;
    }

    to {
        transform: translateY(10%);
        opacity: 1;
    }
}

#ice-container .result-query-form {
    position: absolute;
    top: 46px;
    left: 0;
    z-index: 99;
    display: none;
}

.iconButton_All_Normal {
    cursor: pointer;
}

/*下划线*/
.underline {
    position: relative;
    cursor: pointer;
    color: #3a6adb;
    font-weight: bold;
}

.underline:hover {
    color: #1989fa !important;
}

.underline:hover:before {
    background-color: #1989fa !important;
}

.underline::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #3a6adb;
    position: absolute;
    bottom: -3px;
}

.Aside--heading-search-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.next-box.Header--header--1XOlH_r {
    flex-flow: row;
    justify-content: space-between;
}

.Header--header--top {
    width: 100%;
}

.Result--body--_GR5KhM {
    width: 100%;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
}

.next-box--header {
    width: 320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle-icon {
    cursor: pointer;
    transition: transform .2s;
}

.toggle-icon.toggled {
    transform: scaleX(-1);
}

.Result--detail--RnaIBfD {
    transition: transform .2s;
}

@media (max-width: 768px) {
    .next-box--header {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .Result--aside--14wdUXk {
        flex: 1;
        width: 100%;
        min-width: 100%;
        overflow-y: hidden;
    }

    .Aside--aside--3OdPGYq .next-list {
        width: calc(100% - 20px);
        padding: 0 20px 20px;
        overflow-y: scroll;
    }

    .Detail--right--34NwM8S {
        display: none !important;
    }
}