/* 清除所有的间距 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 10px;
}

body {
    width: 1200px;
    margin: 0 auto;
    background-color: #ffe;
}

.header {
    display: grid;
    grid-template-columns: 2fr 20fr;
    background-color: #333;
    color: #fff;
    text-align: left;
    padding: 5px;
    margin-top: 10px;
    height: 100px;
    
}

.header .logo {
    width: 50px;
    height: 50px;
    margin: auto;
}

.header .slogn {
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
}

.type {
    display: grid;
    grid-template-columns: repeat(auto-fill, 50px);
    background-color: #333;
    color: #fff;
    text-align: left;
    padding: 5px;
    margin-top: 5px;

}

.content {
    display: grid;
    margin-top: 10px;
}

.content .row {
    display: grid;
    color: #000;
    border: #eee solid 3px;
    margin-bottom: 10px;
    background-color: #fff;
}

.content .row .row_title {
   
    text-align: left;
    padding: 5px;
    margin-top: 5px;
    font-weight: bold;
    margin-left: 5px;
}

.content .row .row_short {
    text-align: left;
    padding: 5px;
    margin-top: 3px;
    font-weight: lighter;
}

.content .row .row_type {
    margin-bottom: 3px;
    margin-left: 10px;
}
.row_type:link,.row_type:hover,.row_type:visited,.row_type:active,.row_type:focus{color:#aaa} 

.icp {
    background-color: #262728;
    height: 20px;
}

.icp a {
    padding: 0;
    margin-left: 5px;
    list-style: none;
}