/*--------------------------------------------------------------
此样式文件，摘自网站本身自带，为了方便维护，这里单独放在style.css文件中。
1. Defaults
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.2;
}

strong,
b {
    font-weight: bold;
}

input,
textarea,
select {
    /* Remove First */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input,
input[type="text"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"],
input[type="tel"],
textarea {
    font-size: 1em;
    font-weight: normal;
    background-color: #fff;
    border: 1px solid #eee;
    outline: none;
    color: #414141;
}

input:focus,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: #ddd;
    outline: none;
}

textarea {
    padding: 10px 15px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="url"],
input[type="search"],
input[type="password"],
input[type="tel"] {
    height: 42px;
    line-height: 42px;
    padding: 0 15px;
}

a.roll-button,
button,
.btn,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    border: none;
    color: #fff;
    display: inline-block;
    padding: 0 15px;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    font-size: 1em;
    height: 40px;
    line-height: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -webkit-backface-visibility: hidden;
    transition: all 0.3s;
    text-decoration: none;
}

a.roll-button:hover,
button:hover,
.btn:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    color: #fff;
    opacity: 0.85;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

a.roll-button {
    display: inline-block;
    height: 42px;
    line-height: 42px;
}

a.roll-button:link,
a.roll-button:visited {
    color: #fff;
}

a.roll-button:hover,
button:hover,
.btn:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
}

button:focus,
textarea:focus {
    outline: 0;
}

.click-button:before {
    content: " ";
    clear: both;
    display: block;
}

.action-button a:link,
.action-button a:visited {
    display: inline-block;
    font-size: 1em;
    font-weight: bold;
    line-height: 1;
    margin: 0 10px 20px 0;
    padding: 14px 18px;
    height: auto;
    text-align: center;
}

.action-button .subtitle {
    display: block;
    font-weight: normal;
    font-size: 0.72em;
    line-height: 1;
    margin: 6px 0 0;
}

.blue-button a:link,
.blue-button a:visited {
    background-color: #037ef3;
}

.green-button a:link,
.green-button a:visited {
    background-color: #2c9f45;
}

.orange-button a:link,
.orange-button a:visited {
    background-color: #f85a40;
}

.yellow-button a:link,
.yellow-button a:visited {
    background-color: #ffc845;
}

.red-button a:link,
.red-button a:visited {
    background-color: #ed1c24;
}

.purple-button a:link,
.purple-button a:visited {
    background-color: #8e43e7;
}

.black-button a:link,
.black-button a:visited {
    background-color: #111;
}

.white-button a:link,
.white-button a:visited {
    background-color: #fff;
    color: #111 !important;
}

.white-button a:link .subtitle,
.white-button a:visited .subtitle {
    color: #999;
}

table {
    font-size: 1em;
    color: #333333;
    border-width: 1px;
    border-color: #eee;
    border-collapse: collapse;
    width: 100%;
}

table th {
    border-width: 1px;
    padding: 8px;
    border-style: solid;
    border-color: #eee;
    background-color: #f7f7f7;
}

table tr:hover td {
    background-color: #f9f9f9;
}

table td {
    border-width: 1px;
    padding: 8px;
    border-style: solid;
    border-color: #eee;
    background-color: #ffffff;
}

select {
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 0 .75em;
    height: 2.507em;
    font-size: .97em;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    background-color: #fff;
    color: #414141;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: color .3s, border .3s, background .3s, opacity .3s;
    box-shadow: inset 0 -1.4em 1em 0 rgba(0, 0, 0, 0.02);
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("assets/img/arrow-down.png");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 10px 10px;
    border-radius: 0;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    clear: both;
}

.alignnone {
    display: block;
}

/* Clear Floats */
.clear,
.clearfix {
    clear: both;
}

.clear:before, .clear:after,
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clear:after,
.clearfix:after {
    clear: both;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
}

.sticky,
.bypostauthor {
    background: inherit;
    color: inherit;
}