form.searchbox input[type=text] {
    color: #000000;
    height: 100px;
    padding: 20px;
    font-size: 48px;
    float: left;
    width: 80%;
    background: #4e87cc;
    border: 1px solid #1e1e1e;
    border-radius: 40px 0px 0px 40px;
}

form.searchbox button {
    height: 100px;
    float: left;
    width: 20%;
    padding: 5px;
    background: #5aaaf1;
    color: #1e1e1e;
    font-size: 48px;
    border: none;
    cursor: pointer;
    border: 1px solid #1e1e1e;
    border-radius: 0px 40px 40px 0px;
    text-align: center;
    line-height: 10px;
    margin: auto;
}

form.searchbox button:hover {
    background: #0b7dda;
    transition: background 0.4s;
}




form.searchbox::after {
    content: "";
    clear: both;
    display: table;
}


.resultlist {
    font-size: 36px;
    top: -20px;
    height: 0;
    width: 100%;
    transition: height 2s;
    background: #5aaaf1;
    color: #000000;
}


.resultlist#active {
    border-radius: 40px;
    border: 1px solid #1e1e1e;
    height: 60%;
}


.resultlist * {
    margin: 2px;
}


.resulttitle {
    color: #000000;
    font-size: 60px;
    
}




#info {
    font-size: 36px;
    opacity: 1;
    transition: opacity 0.4s;
}



.fc {
    text-align: center;
}


.title {
    max-width: 45%;
}


.tr {
    
    text-align: right
}


mark {
    background-color: #0b7dda;


    border-radius: 40px;


    color: #fff;


    margin: 0;
    

}


.showbox {


    display: -webkit-box;


    -webkit-box-orient: vertical;


    -webkit-line-clamp: 2;


    overflow: hidden;


    font-size: 36px;
    border-bottom: solid;border-color:#3d6c9a;border-width:10px;

    margin: 2px !important
    
    
}