@font-face {
	font-family: 'RobotoCondensed-Regular'; 
	src: url('../assets/font/RobotoCondensed-Regular.ttf') format('truetype');
}

@font-face {
	font-family: 'RobotoCondensed-Bold'; 
	src: url('../assets/font/RobotoCondensed-Bold.ttf') format('truetype');
}

/* reset */

html,
body {
	height: 100%;
}

body {
	background: #fff;
	color: #000;
	font-family: RobotoCondensed-Regular, RobotoCondensed, Tahoma, sans-serif;
}

body,
form,
fieldset,
legend,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
dt,
dd {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
	font-family: RobotoCondensed-Bold, RobotoCondensed;
}

li {
	list-style: none;
}

label {
	cursor: pointer;
}

input,
select,
button,
textarea {
	font-family: RobotoCondensed-Regular, RobotoCondensed, Tahoma, sans-serif;
}

select {
	-webkit-appearance: none;
}

input:focus,
button:focus {
	outline: none;
}

button {
	cursor: pointer;
}

textarea {
	resize: none;
}

fieldset,
table,
th,
td {
	border: none;
}

a {
	color: #055fa5;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

em {
	font-style: normal;
}

table {
	border-collapse: collapse;
}

::placeholder {
	color: #cacaca;
}

/* common */

[data-status=wait] {
	color: #999;
}

[data-status=success] {
	color: #05a521;
}

[data-status=fail] {
	color: red;
}

[data-status=warning] {
	color: #ff8200;
}

[data-user-level=prepayed] {
	color: #017eff;
}

[data-user-level=breip] {
	color: #ffc401;
}

[data-user-level=trial] {
	color: #666;
}

.content * {
	max-width: 100%!important;
}

button {
	background: #055fa5;
	border: none;
	border-radius: 3px;
	box-sizing: border-box;
	color: #fff;
	flex-shrink: 0;
	font-size: 14px;
	height: 38px;
	margin-right: 16px;
	width: 110px;
}

.cancel-button {
	background: #fff;
	border: 1px solid #d9d9d9;
	color: #686868;
}

.hilite-button {
	background: #ff9901;
}

.follow-button,
.unfollow-button {
	background: #ff9901;
	border-radius: 16px;
	height: 32px;
	width: 98px;
}

.follow-button i,
.unfollow-button i {
	font-size: 16px;
	margin-right: 5px;
}

.unfollow-button {
	background: #055fa5;
}

button i:not(:only-child) {
	margin-right: 10px;
}

textarea {
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	box-sizing: border-box;
	padding: 10px;
	width: 100%;
}

.body-show-dialog {
	overflow: hidden;
}

.hide {
	opacity: 0;
	pointer-events: none;
}

section header,
.section-header {
	position: relative;
}

section header .more,
.section-header .more {
	color: #999;
	font-size: 12px;
	line-height: 14px;
	position: absolute;
	right: 0;
	top: 7px;
}

.section-header h2,
#sidelink h2 {
	border-bottom: 1px solid #055fa5;
	color: #055fa5;
	font-size: 14px;
	line-height: 16px;
	padding: 6px 0 10px;
}

.checkbox input[type=checkbox] {
	display: none;
}

.checkbox input[type=checkbox] + span::before {
	background: url(../assets/img/checkbox.svg) no-repeat;
	content: '';
	display: inline-block;
	height: 14px;
	margin-right: 10px;
	pointer-events: none;
	vertical-align: top;
	width: 14px;
}

.checkbox input[type=checkbox]:checked + span::before {
	background-image: url(../assets/img/checkbox-checked.svg);
}

.radio input[type=radio] {
	display: none;
}

.radio input[type=radio] + span::before {
	background-clip: content-box;
	border: 1px solid #e6e6e6;
	border-radius: 50%;
	box-sizing: border-box;
	content: '';
	display: inline-block;
	height: 14px;
	margin-right: 10px;
	padding: 2px;
	pointer-events: none;
	transition: all .5s;
	vertical-align: top;
	width: 14px;
}

.radio input[type=radio]:checked + span::before {
	background: #055fa5;
	background-clip: content-box;
}

/* dialog */

.dialog {
	align-items: center;
	background: rgba(0, 0, 0, .7);
	box-sizing: border-box;
	display: none;
	height: 100%;
	justify-content: center;
	left: 0;
	padding: 24px 16px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9;
}

.dialog-show {
	display: flex;
}

.dialog-wrap {
	background: #fff;
	border: 1px solid #d8d8d8;
	border-radius: 3px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	max-height: 100%;
	max-width: 564px;
	min-width: 280px;
	width: 100%;
}

.dialog header {
	flex-shrink: 0;
	padding: 24px 32px;
	position: relative;
}

.dialog h1 {
	align-items: center;
	color: #000;
	display: flex;
	font-size: 20px;
	line-height: 24px;
}

.dialog h1 i {
	font-size: 28px;
	margin-right: 12px;
}

.dialog-close {
	color: #999;
	cursor: pointer;
	font-size: 14px;
	position: absolute;
	right: 18px;
	top: 18px;
}

.dialog-body {
	box-sizing: border-box;
	flex-grow: 1;
	overflow: auto;
	padding: 0 32px 24px;
}

.dialog-body::-webkit-scrollbar {
	width: 6px;
}

.dialog-body::-webkit-scrollbar-thumb {
	background: transparent;
	border-radius: 3px;
	transition: all 1s;
}

.dialog-body:hover::-webkit-scrollbar-thumb {
	background: #055fa5;
}

.dialog footer {
	align-items: flex-start;
	display: flex;
	flex-shrink: 0;
	justify-content: flex-end;
	padding: 0 16px 24px;
}

.dialog footer button {
	height: 32px;
	margin-right: 16px;
	width: 83px;
}

/* popup */

.popup {
	background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
	box-sizing: border-box;
	display: none;
    padding: 12px 16px;
    position: absolute;
    width: 388px;
}

.popup::before {
	border: 8px solid transparent;
	border-bottom-color: #d9d9d9;
	content: '';
	position: absolute;
	right: 20px;
	top: -16px;
}

.popup::after {
	border: 7px solid transparent;
	border-bottom-color: #fff;
	content: '';
	position: absolute;
	right: 21px;
	top: -13px;
}

.popup-body {
	color: #333;
    font-size: 14px;
    line-height: 16px;
}

.popup-footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 10px;
}

.popup-footer button {
	height: 24px;
	padding: 0 16px;
	width: auto;
}

/* form */

.form-item {
	align-items: center;
	display: flex;
	margin-bottom: 16px;
}

.form-item-wrap {
	display: flex;
	flex-grow: 1;
	word-break: break-all;
}

.form-item-wrap .tips {
	color: #999;
	font-size: 12px;
	line-height: 14px;
	margin-left: 8px;
}

/* switch */

.switch {
	opacity: 0;
	position: absolute;
	pointer-events: none;
}

.switch + label .switch-show,
.switch + .switch-show {
	background: currentColor;
	border: 3px solid currentColor;
	border-radius: 12px;
	box-sizing: border-box;
	color: #d9d9d9;
	display: inline-flex;
	height: 24px;
	position: relative;
	width: 42px;
}

.switch + label .switch-show::before,
.switch + .switch-show::before {
	background: #fff;
	border-radius: 9px;
	content: '';
	display: block;
	height: 18px;
	width: 18px;
}

.switch:checked + label .switch-show,
.switch:checked + .switch-show {
	color: #055fa5;
	justify-content: flex-end;
}

/* file upload */

.file-upload {
	flex-shrink: 0;
	overflow: hidden;
	position: relative;
}

.file-upload input[type=file] {
	font-size: 9999rem;
	opacity: 0;
	position: absolute;
	right: 0;
}

.file-upload-icon {
	align-items: center;
	border: 1px dashed #d9d9d9;
	border-radius: 3px;
	color: #999;
	display: inline-flex;
	font-size: 25px;
	height: 72px;
	justify-content: center;
	width: 72px;
}

/* logo */

.logo {
	align-items: center;
	border: 1px solid #e4e4e4;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	height: 60px;
	padding: 3px;
	width: 139px;
}

.logo > a {
	align-items: center;
	align-self: stretch;
	display: flex;
	justify-content: center;
}

.logo img {
	max-height: 100%;
	max-width: 100%;
}

/* tabs */

.tabs {
	border-bottom: 1px solid #d9d9d9;
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
}

.tabs a {
	color: #999;
	font-size: 14px;
	line-height: 36px;
	padding: 0 15px;
	text-decoration: none;
}

.tabs a.current {
	border-bottom: 1px solid #055fa5;
	color: #055fa5;
	margin-bottom: -1px;
}

.tabs a:not(:last-child) {
	margin-right: 20px;
}

/* table */

.table-wrap {
	overflow-x: auto;
}

.table {
	width: 100%;
}

.table th,
.table td  {
	border-bottom: 1px solid #e6e6e6;
	font-size: 12px;
	min-height: 20px;
	padding: 10px 25px;
	text-align: left;
}

.table thead th {
	background: #f5f5f5;
	color: #333;
	white-space: nowrap;
}

.table tbody {
	color: #666;
}

.table tbody td:last-child * + a {
	margin-left: 10px;
}

/* attachment list */

.attachment-list .name {
	margin-right: 6px;
}

/* footer */

#ft-nav {
	background: #055fa5;
	padding: 0 24px;
}

#ft-nav ul {
	display: flex;
	flex-wrap: wrap;
	font-family: RobotoCondensed-Bold, RobotoCondensed;
	font-size: 14px;
	justify-content: center;
	padding: 28px 0;
}

#ft-nav li {
	line-height: 34px;
	margin: 0 15px;
}

#ft-nav a {
	color: #fff;
}

#ft-copyright {
	background: #014d87;
	color: rgba(255, 255, 255, .77);
	font-size: 14px;
	line-height: 16px;
	padding: 17px 16px;
	text-align: center;
}

/* header */

#header {
	background:#fff url(../assets/img/top.png) no-repeat 593px bottom;
	background-size: auto 50px;
	box-shadow: 0px 2px 10px 0px rgba(70,70,70,0.26);
	display: flex;
	height: 70px;
	justify-content: space-between;
	position: fixed;
	width: 100%;
	z-index: 7;
}

#header.nosearch {
	background-position: 125px bottom;
}

#header .action-sidenav {
	color: #055fa5;
	cursor: pointer;
	display: none;
	float: left;
	font-size: 24px;
	margin: 23px 28px 0;
}

#hd-logo {
	background: url(../assets/img/logo.svg) no-repeat;
	background-size: contain;
	height: 0;
	margin: 19px 0 0 30px;
	overflow: hidden;
	padding-top: 32px;
	position: relative;
	width: 125px;
}

#hd-logo a {
	padding-top: 32px;
	position: absolute;
	top: 0;
	width: 125px;
}

#header .action-search {
	color: #000;
	display: none;
	font-size: 24px;
	margin: 12px 20px 0 0;
	order: 1;
}

#hd-text {
	color: #055fa5;
	flex-grow: 1;
	font-size: 22px;
	line-height: 70px;
	padding-left: 25%;
	text-align: center;
}

#hd-actions {
	display: flex;
	padding: 16px 20px 0 0;
}

#hd-actions button {
	width: 100px;
}

#hd-actions button + button {
	margin-left: 20px;
}

/* hd-search */

#hd-search {
	flex-grow: 1;
	margin: 15px 0 0 40px;
}

#hd-search .search-input-wrap {
	cursor: pointer;
	float: left;
	height: 34px;
	position: relative;
	width: 388px;
}

#hd-search .action-history {
	color: #666;
	cursor: pointer;
	font-size: 14px;
	left: 11px;
	position: absolute;
	top: 10px;
}

#hd-search .action-calendar {
	color: #333;
	font-size: 12px;
	right: 11px;
	position: absolute;
	top: 11px;
}

#hd-search .search-input {
	background: #fff;
	border-radius: 3px;
	border: 1px solid #d9d9d9;
	box-sizing: border-box;
	height: 100%;
	padding: 0 38px 0 36px;
	width: 100%;
}

#hd-search button {
	height: 34px;
	margin-left: 10px;
	width: 98px;
}

/* hd-search-history */

#hd-search .history {
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 2px;
	box-sizing: border-box;
	padding: 16px 16px 12px;
	position: absolute;
	top: 34px;
	transition: opacity .5s;
	width: 100%;
}

#hd-search .history li {
	color: #333;
	display: flex;
	font-size: 14px;
	justify-content: space-between;
	line-height: 16px;
	margin-bottom: 10px;
}

#hd-search .history li > :hover {
	color: #055fa5;
}

#hd-search .history .action-delete {
	display: none;
}

#hd-search .history li:hover .action-delete {
	display: block;
}

#hd-search .history .action {
	color: #666;
	display: flex;
	font-size: 14px;
	justify-content: flex-end;
	line-height: 16px;
	margin-top: 20px;
}

#hd-search .history .action span {
	margin-left: 10px;
}

#hd-search .history .action span:hover {
	color: #055fa5;
}

/* hd-search-calendar */

#hd-search .calendar {
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 2px;
	box-sizing: border-box;
	padding: 12px 16px 20px;
	position: absolute;
	top: 34px;
	transition: opacity .5s;
	width: 100%;
}

#hd-search .calendar label {
	color: #999;
	font-size: 12px;
}

#hd-search button i {
	margin-right: 10px;
}

#hd-search .calendar-input-wrap {
	border: 1px solid #d9d9d9;
	border-radius: 2px;
	box-sizing: border-box;
	height: 24px;
	margin-top: 4px;
	position: relative;
}

#hd-search .calendar-input-wrap i {
	color: #666;
	font-size: 14px;
	position: absolute;
	right: 6px;
	top: 4px;
}

#hd-search .calendar-input {
	border: none;
	box-sizing: border-box;
	color: #999;
	display: block;
	font-size: 12px;
	height: 22px;
	padding: 0 6px;
	width: 100%;
}

/* hd-user */

#hd-user {
	margin: 18px 30px 0 0;
	order: 3;
}

#hd-user img {
	border-radius: 50%;
	float: left;
	height: 34px;
	width: 34px;
}

#hd-user .userinfo {
	float: left;
	margin: 2px 0 0 10px;
}

#hd-user .name {
	color: #055fa5;
	font-size: 14px;
	font-weight: bold;
	line-height: 16px;
	max-width: 120px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#hd-user .action {
	font-size: 12px;
	line-height: 14px;
}

#hd-user .action a {
	color: #b7b7b7;
}

#hd-user .mnav {
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 2px;
	box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
	padding: 0 16px;
	position: absolute;
	right: 10px;
	top: 80%;
}

#hd-user .mnav a {
	color: #666666;
	display: block;
	font-size: 16px;
	line-height: 22px;
	padding: 15px 25px 15px 0;
	text-decoration: none;
}

#hd-user .mnav a + a {
	border-top: 1px solid #e4e4e4;
}

#hd-user .mnav i {
	margin-right: 8px;
}

/* hd-notification */

#hd-notification {
	margin: 23px 20px 0 0;
	order: 2;
	position: relative;
}

#hd-notification .action-notification {
	color: #333;
	cursor: pointer;
	display: block;
	font-size: 24px;
	position: relative;
}

#hd-notification .action-notification:not([data-num="0"]):not([data-num=""])::after {
	background: #da1e28;
	border-radius: 50%;
	color: #fff;
	content: attr(data-num);
	font-size: 14px;
	height: 16px;
	line-height: 14px;
	position: absolute;
	right: -4px;
	text-align: center;
	top: -5px;
	width: 16px;
}

#hd-notification .notification {
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 2px;
	box-sizing: border-box;
	padding: 12px 16px 0;
	position: absolute;
	right: 0;
	transition: opacity .5s;
	width: 388px;
}

#hd-notification .notification header {
	display: flex;
	justify-content: space-between;
}

#hd-notification .notification h2 {
	color: #666;
	font-size: 14px;
}

#hd-notification .notification header a {
	background: #055fa5;
	border-radius: 12px;
	color: #fff;
	font-family: RobotoCondensed-Bold, RobotoCondensed;
	font-size: 14px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	width: 77px;
}

#hd-notification .notification .tabs {
	border-bottom-style: none;
	margin: 8px 0;
}

#hd-notification .notification .tabs a {
	align-items: center;
	border-bottom-style: none;
	display: flex;
	flex-grow: 1;
	justify-content: center;
	line-height: 44px;
	margin-right: 0;
	position: relative;
}

#hd-notification .notification .tabs a:not(.current) {
	color: #333;
}

#hd-notification .notification .tabs a:first-child::after {
	border-left: 1px solid #e4e4e4;
	content: '';
	height: 26px;
	position: absolute;
	right: 0;
	top: 9px;
}

#hd-notification .notification .tabs a i {
	font-size: 24px;
	margin-right: 4px;
}

#hd-notification .notification li {
	border-top: 1px solid #e4e4e4;
	display: flex;
	padding: 16px 0;
}

#hd-notification .notification .type {
	align-items: center;
	background: #f4f4f4;
	border-radius: 50%;
	color: #055fa5;
	display: flex;
	flex-shrink: 0;
	font-family: RobotoCondensed-Bold, RobotoCondensed;
	font-size: 12px;
	height: 48px;
	justify-content: center;
	line-height: 21px;
	width: 48px;
}

#hd-notification .notification .type[data-type] {
	background: #055fa5;
	color: #fff;
	font-size: 16px;
}

#hd-notification .notification .type[data-type=favo] {
	background: #ff9901;
}

#hd-notification .notification .content {
	color: #333;
	font-size: 14px;
	line-height: 16px;
	margin-left: 16px;
}

#hd-notification .notification .empty {
	align-items: center;
	border-top: 1px solid #e4e4e4;
	color: #999;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	height: 200px;
	justify-content: center;
}

#hd-notification .notification .empty i {
	color: #000;
	font-size: 81px;
	margin-bottom: 8px;
	opacity: .1;
}

/* container */

#container {
	box-sizing: border-box;
	display: flex;
	margin: 0 auto;
	min-height: 100%;
	padding-top: 90px;
	position: relative;
	width: 1200px;
}

/* sidenav */

#sidenav {
	flex-shrink: 0;
	margin-right: 16px;
	transition: opacity .5s;
	width: 212px;
}

#sd-logo {
	display: none;
}

#sd-nav ul {
	border-bottom: 1px solid #e4e4e4;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

#sd-nav li + li {
	margin-top: 2px;
}

#sd-nav a {
	color: #666;
	display: block;
	font-family: RobotoCondensed-Bold, RobotoCondensed;
	font-size: 14px;
	line-height: 35px;
	padding-left: 35px;
	position: relative;
	text-decoration: none;
}

#sd-nav a i {
	color: #055fa5;
	font-size: 16px;
	left: 19px;
	position: absolute;
	top: 10px;
	transform: translateX(-50%);
}

#sd-nav a:hover,
#sd-nav .current a {
	background-color: #055fa5;
	border-radius: 3px;
	color: #fff;
}

#sd-nav a:hover i,
#sd-nav .current i {
	color: #fff;
}

#sd-about {
	border-bottom: 1px solid #e4e4e4;
	padding: 5px 0 20px;
}

#sd-about li {
	font-size: 14px;
	line-height: 16px;
	padding-left: 10px;
}

#sd-about li + li {
	margin-top: 19px;
}

#sd-about a {
	color: #666;
}

#sd-copyright {
	color: #999;
	font-size: 12px;
	padding: 20px 10px;
}

/* sidelink */

#sidelink {
	flex-shrink: 0;
	width: 288px;
}

#sidelink > section {
	margin-bottom: 20px;
}

#sd-members ul {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
}

#sd-members li {
	align-items: center;
	border: 1px solid #e4e4e4;
	box-sizing: border-box;
	display: inline-flex;
	height: 60px;
	justify-content: center;
	margin: 10px 10px 0 0;
	padding: 3px;
	width: 139px;
}

#sd-members img {
	max-width: 100%;
}

#sd-hot-topics li {
	display: flex;
	line-height: 16px;
	justify-content: space-between;
	margin-top: 16px;
}

#sd-hot-topics li a {
	color: #000;
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#sd-hot-topics time {
	color: #999;
	flex-shrink: 0;
	font-size: 12px;
	line-height: 14px;
}

/* main */

#main {
	flex-grow: 1;
	margin-right: 16px;
}

#main:last-child {
	margin-right: 0;
}

#m-topic-manage {
	margin-bottom: 20px;
}

#m-topic-manage header nav {
	border-bottom: 1px solid #e4e4e4;
	display: flex;
	height: 32px;
}

#m-topic-manage header nav span {
	cursor: pointer;
	flex-shrink: 0;
	font-family: RobotoCondensed-Bold, RobotoCondensed;
	font-size: 14px;
	line-height: 28px;
}

#m-topic-manage header nav span + span {
	margin-left: 16px;
}

#m-topic-manage header nav .current {
	border-bottom: 2px solid #055fa5;
	color: #055fa5;
	margin-bottom: -1px;
}

#m-topic-manage ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: 5px;
}

#m-topic-manage li {
	margin: 10px 10px 0 0;
	position: relative;
}

#m-topic-manage li .text {
	background: #f9f9f9;
	border: 1px solid #e4e4e4;
	border-radius: 16px;
	box-sizing: border-box;
	color: #666;
	cursor: pointer;
	display: block;
	font-family: RobotoCondensed-Bold, RobotoCondensed;
	font-size: 14px;
	height: 32px;
	line-height: 32px;
	padding: 0 14px;
}

#m-topic-manage li.current .text {
	background: #055fa5;
	border-color: hsl(206, 94%, 33%);
	color: #fff;
}

#m-topic-manage .action-delete-btn,
#m-topic-manage .action-edit-nav {
	background: #ffffff;
	border: 1px solid #d5d5d5;
	border-radius: 10px;
	box-sizing: border-box;
	color: #666666;
	cursor: pointer;
	display: none;
	font-size: 10px;
	height: 20px;
	line-height: 18px;
	position: absolute;
	right: -2px;
	text-align: center;
	top: -2px;
	width: 20px;
}

#m-topic-manage .action-edit-nav {
	right: 20px;
}

#m-topic-manage li:hover .action-delete-btn,
#m-topic-manage li:focus .action-delete-btn,
#m-topic-manage li:hover .action-edit-nav,
#m-topic-manage li:focus .action-edit-nav {
	display: block;
}

#m-topic-manage .text[contenteditable] ~ .action-delete-btn,
#m-topic-manage .text[contenteditable] ~ .action-edit-nav {
	display: none;
}

#m-topic-manage .edit-nav {
	border: 1px solid #d9d9d9;
	border-radius: 2px;
	display: none;
	font-size: 14px;
	position: absolute;
	right: -2px;
	top: 18px;
	width: 100px;
	z-index: 1;
}

#m-topic-manage .edit-nav span {
	background: #fff;
	color: #333;
	cursor: pointer;
	display: block;
	height: 24px;
	line-height: 24px;
	padding-left: 15px;
}

#m-topic-manage .edit-nav span:hover {
	background: #f9f9f9;
	color: #055fa5;
}

#m-topic-manage .action-add i {
	color: #055fa5;
	margin-right: 4px;
}

#main .no-follow {
	align-items: center;
	border: 1px solid #e6e6e6;
	display: flex;
	padding: 23px 64px 23px 40px;
}

#main .no-follow .intro {
	color: #666;
	font-size: 16px;
	line-height: 19px;
	margin-left: 40px;
}

#m-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

#m-filter .filter-item {
	margin-bottom: 15px;
}

#m-filter label {
	color: #999;
	font-size: 12px;
	line-height: 28px;
	margin: 0 10px 0 20px;
}

#m-filter select {
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	box-sizing: border-box;
	color: #999;
	font-size: 12px;
	height: 28px;
	padding: 0 5px;
	width: 120px;
}

#m-filter select:focus {
	color: #000;
}

#m-list header {
	align-items: center;
	background: #f9f9f9;
	color: #999;
	display: flex;
	font-size: 12px;
	height: 40px;
	padding: 0 10px;
}

#m-list header .total {
	margin-left: 12px;
}

#m-list header button {
	font-size: 12px;
	height: 24px;
	margin-left: 20px;
	width: 83px;
}

#m-list header button i {
	font-size: 10px;
	margin-right: 5px;
}

#m-list .listitem {
	align-items: center;
	border-top: 1px solid #e6e6e6;
	display: flex;
	padding: 10px;
	position: relative;
}

#m-list .listitem:last-child {
	border-bottom: 1px solid #e6e6e6;
}

#m-list .listitem label {
	left: 0;
	padding-top: 4px;
	position: absolute;
	width: 24px;
}

#m-list .listitem .tag {
	color: #ff9901;
	font-family: RobotoCondensed-Bold, RobotoCondensed;
	font-size: 12px;
	line-height: 22px;
	margin-bottom: 6px;
}

#m-list .listitem .content {
	flex-grow: 1;
	padding-left: 24px;
	position: relative;
}

#m-list .listitem h2 {
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
	margin-bottom: 6px;
}

#m-list .listitem h2 a {
	color: #000;
}

#m-list .listitem h2 a:hover {
	color: #055fa5;
}

#m-list .listitem .info {
	align-items: center;
	color: #999;
	display: flex;
	font-size: 12px;
}

#m-list .listitem .authorinfo {
	align-items: center;
	color: #999;
	display: flex;
}

#m-list .listitem .authorinfo .icon {
	align-items: center;
	display: flex;
	height: 22px;
	justify-content: center;
	margin-right: 5px;
	width: 22px;
}

#m-list .listitem .authorinfo .icon img {
	border-radius: 2px;
	max-height: 22px;
	max-width: 22px;
}

#m-list .listitem time::before {
	border-left: 1px solid #999;
	content: '';
	display: inline-block;
	height: 10px;
	margin: 0 10px;
	vertical-align: middle;
}

#m-list .listitem .tags {
	align-items: center;
	display: flex;
	margin-left: 20px;
}

#m-list .listitem .tags li + li {
	margin-left: 10px;
}

#m-list .listitem .tags a::before {
	content: '#';
}

#m-list .listitem .img-wrap {
	flex-shrink: 0;
	height: 72px;
	margin-left: 20px;
	width: 108px;
}

#m-list .listitem .img-wrap img {
	height: 72px;
	width: 108px;
}

#m-list .pagination {
	margin-left: 8px;
}

#m-crumbs {
	border-bottom: 2px solid #e6e6e6;
	box-sizing: border-box;
	color: #666;
	font-size: 14px;
	line-height: 33px;
	margin-bottom: 18px;
}

#m-crumbs ul {
	display: flex;
	flex-wrap: wrap;
}

#m-crumbs li:not(:first-child)::before {
	content: '\00A0> '
}

#m-crumbs a {
	color: #666;
}

/* pagination */

.pagination {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	padding: 24px 0;
}

.pg-item {
	align-items: center;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	box-sizing: border-box;
	color: #666;
	display: flex;
	font-family: PingFangSC-Regular, PingFang SC, Microsoft Yahei;
	font-size: 12px;
	height: 30px;
	justify-content: center;
	margin: 0 8px 8px 0;
	width: 30px;
}

.pg-first,
.pg-end {
	width: 60px;
}

.pg-prev,
.pg-next {
	font-size: 10px;
}

.pg-current {
	background: #055fa5;
	border-color: #055fa5;
	color: #fff;
}

.pg-total {
	color: #999;
	font-size: 12px;
	margin: 0 0 8px 12px;
}

/* load */

.load-more,
.load-nomore {
	align-items: center;
	background: #f9f9f9;
	color: #055fa5;
	cursor: pointer;
	display: flex;
	font-size: 14px;
	height: 50px;
	justify-content: center;
	margin: 30px 0;
}

.load-more i {
	font-size: 10px;
	margin-left: 5px;
}

.load-nomore {
	color: #666;
}

.load-empty {
	align-items: center;
	color: #666;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	justify-content: center;
	line-height: 16px;
	padding: 40px 0;
}

.load-empty i {
	background: url(../assets/img/icon-empty.svg) no-repeat;
	background-size: contain;
	display: block;
	height: 62px;
	margin-bottom: 21px;
	width: 62px;
}

/* suggest */

#suggest {
	background: #fff;
	border: 1px solid #d9d9d9;
	box-sizing: border-box;
	color: #055fa5;
	font-size: 12px;
	position: absolute;
	z-index: 8;
}

#suggest li {
	cursor: pointer;
	line-height: 30px;
	padding: 0 10px;
}

#suggest li:hover {
	background-color: #f5f5f5;
}

/* toast */

.toast {
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, .22);
	left: 10%;
	opacity: 1;
	padding: 20px;
	pointer-events: none;
	position: fixed;
	right: 10%;
	text-align: center;
	top: 50%;
	transition: all 2s ease-in;
	z-index: 9;
}

/* media query */

@media screen and (min-width: 1025px) {
	.topic-fixed #m-topic-manage {
		background: #fff;
		background-image: linear-gradient(to bottom, rgba(70,70,70,0.14), #fff 12px);
		left: 24px;
		margin-top: -20px;
		padding: 20px 0 10px;
		position: fixed;
		right: 326px;
		z-index: 9;
	}
}

@media screen and (min-width: 1241px) {
	.side-fixed #sidenav {
		height: calc(100vh - 90px);
		overflow: auto;
		position: fixed;
	}

	.side-fixed #sidenav::-webkit-scrollbar {
		width: 6px;
	}

	.side-fixed #sidenav::-webkit-scrollbar-thumb {
		background: #e4e4e4;
		border-radius: 3px;
		width: 6px;
	}

	.side-fixed #main {
		margin-left: 228px;
	}

	.topic-fixed #m-topic-manage {
		left: auto;
		right: auto;
		width: 668px;
	}
}

@media screen and (max-width: 1240px) {
	#header {
		background-position: 534px bottom;
	}

	#header.nosearch {
		background-image: none;
	}

	#hd-text {
		padding-left: 0;
	}

	#container {
		padding-left: 24px;
		padding-right: 24px;
		width: auto;
	}

	#sidenav {
		background: #fff;
		box-shadow: 0 0 12px rgba(0, 0, 0, .2);
		box-sizing: border-box;
		height: 100%;
		left: 0;
		overflow: auto;
		padding: 106px 16px 16px;
		position: fixed;
		top: 0;
		z-index: 7;
	}

	#sidenav::-webkit-scrollbar {
		width: 2px;
	}

	#sidenav::-webkit-scrollbar-thumb {
		background: transparent;
		border-radius: 1px;
		transition: all 1s;
	}

	#sidenav:hover::-webkit-scrollbar-thumb {
		background: #055fa5;
	}

	#sd-logo {
		background: #fff;
		display: block;
		height: 0;
		left: 0;
		overflow: hidden;
		padding-top: 90px;
		position: fixed;
		top: 0;
		width: 212px;
		z-index: 1;
	}

	#sd-logo::before {
		background: url(../assets/img/logo.svg) no-repeat;
		background-size: contain;
		content: '';
		height: 32px;
		left: 16px;
		position: absolute;
		top: 12px;
		width: 125px;
	}

	#sd-logo::after {
		background: url(../assets/img/top.png) no-repeat bottom;
		background-size: cover;
		content: '';
		height: 39px;
		left: 0;
		position: absolute;
		top: 51px;
		width: 100%;
	}

	#hd-search .search-input-wrap {
		width: 290px;
	}

	#header .action-sidenav + #hd-logo {
		margin-left: 0;
	}
	
	#header .action-sidenav {
		display: block;
	}
}

@media screen and (max-width: 1024px) {
	#header {
		background-image: none;
	}

	#hd-user .userinfo {
		display: none;
	}

	#hd-text {
		font-size: 16px;
	}

	#container {
		flex-direction: column-reverse;
	}

	#main {
		margin-right: 0;
	}

	#m-filter {
		margin-top: auto!important;
	}

	#sd-hot-topics {
		display: none;
	}
	
	#sidelink {
		width: auto;
	}
}

@media screen and (max-width: 768px) {
	.table th,
	.table td {
		padding: 10px;
	}

	#header {
		height: 48px;
	}

	#container {
		padding-top: 68px;
	}

	#header .action-sidenav {
		font-size: 14px;
		margin: 16px 19px 0;
	}

	#hd-logo {
		flex-grow: 1;
		margin-top: 12px;
		padding-top: 22px;
		width: 94px;
	}

	#hd-logo a {
		padding-top: 22px;
		width: 94px;
	}

	#hd-search {
		display: none;
	}

	#header .action-search {
		display: block;
	}

	#hd-notification {
		margin-top: 12px;
	}

	#hd-notification .notification {
		max-width: 388px;
		width: calc(100vw - 80px);
	}

	#hd-notification .notification .tabs a i {
		display: none;
	}

	#hd-user {
		margin: 12px 16px 0 0;
	}

	#hd-user img {
		height: 24px;
		width: 24px;
	}

	#hd-text {
		display: none;
	}

	#hd-actions {
		padding-top: 10px;
	}

	#hd-actions button {
		font-size: 12px;
		height: 28px;
		width: 90px;
	}

	#hd-actions button + button {
		margin-left: 10px;
	}

	#m-filter select {
		width: 200px;
	}

	#m-filter label {
		margin-left: 0;
	}

	#m-list header .total {
		flex-grow: 1;
	}

	#m-list .listitem .img-wrap {
		height: 57px;
		width: 86px;
	}
	
	#m-list .listitem .img-wrap img {
		height: 57px;
		width: 86px;
	}

	#m-list .listitem .tags {
		display: none;
	}
}
