.container {
    width: 100%;
    margin: 0 auto
    padding: 0;
    font-family: "Source Sans Pro", 'Microsoft Yahei', '微软雅黑', sans-serif, Helvetica, 'Hiragino Sans GB', Arial;
}

.container a {
    font-size: .95em;
    text-decoration: none;
    color: #435275
}
.container a:hover {
    color: #f77b6f;
    text-decoration:underline;
}
.container .pull-right {
    float: right
}

.container .row {
    min-height: 2em;
    line-height: 2em;
    width: 100%
}

.container .span {
    float: left;
    display: inline;
    min-height: 1em;
}

.container .span:first-child {
    margin-left: 0
}

.container .span:last-child {
    margin-right: 0
}


.container:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

.container .row:before,
.container .row:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0
}

.container .row:after {
    clear: both
}

.container .row {
    zoom: 1;
    margin: 10px 0;
}

.container h3,
.container h4{
    font-weight: 500
}

.container h3 {
    font-size: 1.4em
}

.container h4 {
    font-size: 1.2em
}

.container .button {
    border: 0;
    border-radius: 4px;
    outline: 0;
    cursor: pointer;
}

.container .button.small {
    padding: 7px 10px;
    font-size: .95em
}


.container .button.primary {
    color: #FFF;
    background: #5f90b0
}

.container .button.primary:hover {
    background: #5589ab
}

.container .button.success {
    color: #FFF;
    background: #4daf7c
}

.container .button.success:hover {
    background: #48a474
}

.container input {
    text-align: left;
    border: 1px solid #CCC;
    border-radius:5px;
    font-size: .98em;
}

.container textarea {
    width: 100%;
    height: 200px;
    resize:vertical;
    border: 1px solid #CCC;
    /*border-radius:8px;*/
    padding:4px;
    box-shadow: 2px 2px 5px #d3d6da;
    -moz-box-shadow: 2px 2px 5px #d3d6da;
}

.container .alert {
    padding: 10px;
    margin: 0;
    border-radius: 3px
}

.container .alert.success {
    background: #daeee4;
    border: 1px #b6dfca solid
}

.container .red {color: red!important;}
.container .green {color: green!important;}

.container .divider {
    width: 100%;
    background: #CCC;
    height: 1px;
    margin: 25px 0;
}

.container .explainer {
    font-weight: 200;
    color: #222;
    margin-bottom: 10px;
}

.container button {
    margin-bottom: 10px;
}

.container ul.new_tools_list, ul.sitemap_list {
    margin: 20px 0 20px 0px;
}

.container ul.new_tools_list li {
    list-style-type:decimal;
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
    width: 8px;
}
/* 滚动槽 */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
    border-radius: 2px;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255,0,0,0.4);
}