@charset "utf-8";
/* CSS Document */
body{
    font-family: arial;
}

h1{
    position: relative;
    text-align: center;
    font-size: 20px;
    margin: 10px;
}

.word_search{
    position: relative;
    width:100%;
    max-width: 1000px;
    padding-top: 10px;
    margin: 0 auto;
    height: 80px;
    border:1px solid #ccc;
    z-index: 100;
}
.search_box{
    position: relative;
    width:300px;
    margin: 0 auto;
}
.search_box input{
    display:block;
    float: left;
    margin-right: 5px;
    padding:8px;
    height: 16px;
    width:180px;
    line-height: 16px;
    font-size: 14px;
    color: #666;
    border:1px solid #ccc;
}
.search_box .btn_com{
    float:left;
}
.search_box .search_suggest{
    position: absolute;
    left:0;
    top:32px;
    width:196px;
    border:1px solid #ccc;
    border-top:0;
    background-color: #f0f0f0;
}
.search_suggest li{
    display: block;
    padding: 0 8px;
    height: 26px;
    font-size: 14px;
    line-height: 26px;
}
.search_suggest strong{
    color: #f60;
}
.search_suggest .tip{
    text-align: center;
    line-height: 30px;
    height: 30px;
}
.article_detect{
    position: relative;
    width:100%;
    max-width: 1000px;
    border:1px solid #ccc;
    margin: 10px auto;
    background-color: #f0f0f0;
}
.article_detect .article_input{
    display: block;
    padding:10px;
    border-bottom:1px solid #ccc;
}
.article_detect .article_input textarea{
    background: #fff;
    border:none;
    padding:5px;
    display: block;
    width:100%;
    box-sizing: border-box;
    height:200px;
}
.article_detect .btns{
    position: relative;
    padding:10px;
    text-align: right;
    height: 32px;
    overflow: hidden;
}
.article_detect .btns .detect_static{
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
}
.article_detect .btns .detect_static strong{
    color: #f00;
}
.article_show{
    border-top:1px solid #ccc;
    padding:10px;
    min-height: 200px;
}
.article_show strong{
    color: #f00;
}
.article_show em{
    color: #f1aa00;
}
.article_show strong em{
    color: #f00;
}
.article_show p{
    line-height: 20px;
    margin-bottom: 20px;
}