<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('../css/iconfont/iconfont.css');
* {
  margin: 0px;
  padding: 0px;
  outline: none;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "å¾®è½¯é›…é»‘", Tahoma, Arial, sans-serif;
  color: var(--default-font);
}
:root {
  --page-background: #f8f8fa;
  --color-primary: #f67f00;
  --default-font: #bfbfbf;
  --default-border: #f9f9f9;
  --card-background: #f9f9f9;
  --active-background: #1b1b1b;
  --label-background: #333;
  --label-hover-background: #f67f00;
  --upload-background: #333;
  --datetime-font: #fff;
  --calendar-hover-background: #eee;
  --vertical-line: #333;
  --w-sub: #797979;
  --background: #fff;
  --nav-hover-background: #f2f2f2;
  --nav-hover-font: #333;
  --module-background: #fff;
  --link-hover-background: #f2f2f2;
  --link-hover-font: #333;
  --tabs-button-background: #fff2e5;
  --tabs-button-font: #eb7350;
  --button-background: #ffc09f;
  --button-border: #fbbd9e;
  --button-font: #fff;
  --button-hover: #ffc09f;
  --tool-hover-background: #eee;
}
html {
  font-size: 14px;
  /*filter: grayscale(1);*/
}
html.intelligent.themecolor-toodark {
  --color-highlight: #fffdad !important;
}
body {
  background: var(--page-background);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.mask {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 101;
}
a {
  color: #666;
  text-decoration: none;
  cursor: pointer;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
input,
button,
textarea {
  outline: none;
}
img {
  display: inline-block;
  vertical-align: middle;
}
img[data-original] {
  background: url(/source/public/images/img_bg.png) no-repeat center;
  background-size: 80%;
}
#screen {
  display: none;
  opacity: 0.5;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}
#screens {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}
/*#show{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 100000000;
    overflow: hidden; 
    overflow-y: auto;
}*/
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
  height: 0;
}
.left {
  float: left !important;
}
.right {
  float: right !important;
}
.align_left {
  text-align: left !important;
}
.align_center {
  text-align: center !important;
}
.align_right {
  text-align: right !important;
}
.fixed {
  position: fixed !important;
}
.absolute {
  position: absolute !important;
}
.relative {
  position: relative !important;
}
.inherit {
  position: inherit !important;
}
.show {
  display: block !important;
}
.hide {
  display: none !important;
}
.hidden {
  overflow: hidden !important;
}
.block {
  display: block;
}
.overflow {
  overflow: auto !important;
}
.nobg {
  background: none !important;
}
.nobd {
  border: 0px !important;
}
.bold {
  font-weight: bold !important;
}
.nobold {
  font-weight: normal !important;
}
.inline {
  display: inline-block !important;
}
.flex {
  display: flex !important;
}
.pointer {
  cursor: pointer;
}
.indent-30 {
  text-indent: 30px;
}
.nowrap {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.multiple-wrap {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.multiple-wrap a {
  color: #333;
}
.multiple-wrap-2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.multiple-wrap-3 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.deg90 {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -moz-transform: rotate(90deg);
  /* Firefox */
  -webkit-transform: rotate(90deg);
  /* Safari å’Œ Chrome */
  -o-transform: rotate(90deg);
  /* Opera */
}
.deg180 {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari å’Œ Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}
.deg270 {
  transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  /* IE 9 */
  -moz-transform: rotate(270deg);
  /* Firefox */
  -webkit-transform: rotate(270deg);
  /* Safari å’Œ Chrome */
  -o-transform: rotate(270deg);
  /* Opera */
}
.hover img {
  transition: all 0.5s ease;
}
.hover:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.w-full,
.input-full,
.textarea-full {
  width: 100% !important;
}
.container {
  margin: 0 auto;
}
.row {
  overflow: auto;
}
.z-index--1 {
  z-index: -1;
}
.z-index-10 {
  z-index: 10;
}
.z-index-100 {
  z-index: 100;
}
.z-index-1000 {
  z-index: 1000;
}
.shadow {
  /*box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.13) !important;*/
  box-shadow: 0 1px 3px rgba(27, 95, 160, 0.1) !important;
}
.shadow-1 {
  box-shadow: 0px 3px 6px -2px rgba(0, 0, 0, 0.3);
}
.code-html {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-left-width: 3px;
  background: #fbfbfb;
  color: #4f9fcf;
  font-family: Menlo, Monaco, Consolas, Courier New, monospace !important;
}
.code-html p {
  margin: 0;
  padding: 2px;
}
.code-html {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-left-width: 3px;
  background: #fbfbfb;
  color: #4f9fcf;
  font-family: Menlo, Monaco, Consolas, Courier New, monospace !important;
}
.code-html p {
  margin: 0;
  padding: 2px;
}
.no-event {
  pointer-events: none;
}
.label-1 a {
  display: inline-block;
  padding: 2px 5px;
  color: #999;
}
.label-1 a:hover {
  color: #5bc0de;
}
.tag-media a {
  display: inline-block;
  padding: 0px 15px;
  background: #fff;
  border: 1px solid #d0d4d7;
  border-radius: 10px;
  margin: 0 10px 10px 0;
  color: #666;
}
.tag-media a:hover {
  background: #5bc0de;
  color: #fff;
}
.quick-edit {
  background: #fff;
  padding: 5px;
  width: 100%;
  min-height: 35px;
  display: inline-block;
  outline: none;
  border: 1px dashed #ddd;
}
.inputline {
  background: #fff;
  border: 1px dashed #40a9ff;
}
.disabled {
  cursor: not-allowed !important;
}
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9 {
  float: left;
}
.col-md-12 {
  width: 100%;
}
.col-md-11 {
  width: 91.66666667%;
}
.col-md-10 {
  width: 83.33333333%;
}
.col-md-9 {
  width: 75%;
}
.col-md-8 {
  width: 66.66666667%;
}
.col-md-7 {
  width: 58.33333333%;
}
.col-md-6 {
  width: 50%;
}
.col-md-5 {
  width: 41.66666667%;
}
.col-md-4 {
  width: 33.33333333%;
}
.col-md-3 {
  width: 25%;
}
.col-md-2 {
  width: 16.66666667%;
}
.col-md-1 {
  width: 8.33333333%;
}
.label a {
  display: inline-block;
  border-radius: 4px;
  padding: 5px 10px;
  background: #f3f4f9;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #999;
  transition: all 0.3s;
}
.label a:hover {
  background: #3598db;
  color: #fff !important;
}
.label.label-default a {
  border-radius: 3px;
}
.label.label-round a {
  border-radius: 100px;
}
.label.label-mark a {
  border-radius: 0 999px 999px 0;
}
.label.label-tag a {
  padding: 7px 15px;
  background: #fff;
  border: 1px solid #d0d4d7;
  color: #666;
}
.label.label-primary a {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
}
.label.label-success a {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.label.tag-default a {
  margin-right: 10px;
  margin-bottom: 10px;
}
.label.label-info a {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.label.label-warning a {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.label.label-cate a {
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  padding: 10px;
  transition: all 0.3s;
}
.label.label-blog a {
  border: 1px solid #ddd;
  margin-right: 2px;
  padding: 3px 5px;
  background: none;
  font-size: 12px;
  color: #666;
}
.label.label-blog a:hover {
  background: #3598db;
  border: 1px solid #3598db;
  color: #fff !important;
}
.label.tagall a {
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  padding: 10px;
  transition: all 0.3s;
}
.label.tagall a:hover {
  background: #3598db;
  color: #fff !important;
}
.tabs {
  width: 100%;
  height: auto;
}
.tabs .nav-tabs {
  display: flex;
  height: 50px;
  line-height: 50px;
}
.tabs .nav-tabs .tabs-list {
  box-sizing: border-box;
  border-radius: 3px;
  padding: 0 15px;
  height: 50px;
  line-height: 50px;
  color: #333;
  text-align: center;
  cursor: pointer;
}
.tabs .nav-tabs .tabs-list.active {
  border-top: 2px solid var(--color-primary);
  line-height: 46px;
  color: var(--color-primary);
}
.tabs .nav-tabs .tabs-list:hover {
  color: var(--color-primary);
}
.tabs .tab-content {
  padding: 15px 0;
  width: 100%;
  height: auto;
}
.tabs .tab-content .tabsbox {
  width: 100%;
  height: auto;
  display: none;
}
.silde {
  background: #304156;
  padding: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  width: 200px;
  position: absolute;
  top: 0px;
  bottom: 0px;
}
.silde .model {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid #ccc;
  padding: 15px 0;
  width: 100%;
  font-size: 12px;
  text-align: center;
}
.silde .model li {
  width: 30.333333333%;
  display: inline-block;
}
.silde .left {
  background: #ffffff;
  padding: 0;
  border-right: 1px solid #ddd;
  width: 201px;
  position: absolute;
  top: 0px;
  bottom: 0px;
}
.silde .aside {
  font-size: 14px;
  text-align: left;
}
.silde .menus {
  background: #cad9e5;
  font-family: Arial, Helvetica, sans-serif;
  width: 200px;
  height: 45px;
  line-height: 45px;
  cursor: pointer;
  margin: 0px 0px 1px 0px;
  padding: 0;
  text-indent: 20px;
  color: #ffffff;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #baccda;
  box-shadow: 0 0 2 #999999;
}
.silde .aside-head {
  position: relative;
  width: 200px;
  height: 45px;
  line-height: 45px;
  cursor: pointer;
  box-sizing: border-box;
  margin: 0px 0px 1px 0px;
  padding: 0px 0px 0 20px;
  font-size: 14px;
  color: #bfcbd9;
  border-top: 0px solid #f0f0f0;
}
.silde .aside-head i.arrow {
  float: right;
  margin-top: 18px !important;
  color: #ccc;
}
.silde .aside-head:hover {
  background-color: #263445 !important;
  border-left: 1px solid #cad9e5;
  padding-left: 19px !important;
}
.silde .aside-list {
  width: 165px;
  border: 0px solid #eee;
  border-top: 0px solid #f0f0f0;
  border-bottom: 0px solid #f0f0f0;
  display: none;
}
.silde .aside-list ul {
  list-style-type: none;
}
.silde .aside-list ul li {
  border-bottom: 0px solid #f0f0f0;
  width: 200px;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
}
.silde .aside-list ul li a {
  text-decoration: none !important;
  padding-left: 50px;
  color: #bfcbd9;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.silde .aside-list ul li a a:hover {
  color: #5babe9;
}
.silde .aside-list ul li:hover {
  background-color: #263445 !important;
  border-left: 1px solid #cad9e5;
  color: #5babe9;
  box-sizing: border-box;
}
.silde .aside-list ul li:hover a {
  padding-left: 49px !important;
}
.silde .aside-list ul li.single a {
  padding-left: 20px;
}
.silde .aside-list ul li.single a a:hover {
  color: #5babe9;
}
.silde .aside-list ul li.single:hover a {
  padding-left: 19px !important;
}
.con-wrap-box {
  position: absolute;
  left: 201px;
  top: 64px;
  right: 0;
  bottom: 0px;
  font-size: 12px;
  color: #666;
}
.con-wrap-box .con-main {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0px;
  overflow-y: scroll;
}
.silde-s {
  padding: 0 10px;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.silde-s .aside-head {
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  color: #000;
  border-top: 0px solid #f0f0f0;
}
.silde-s .aside-head i.arrow {
  float: right;
  color: #ccc;
}
.silde-s .aside-list {
  background: #f1f1f1;
  width: 100%;
  height: auto;
  display: none;
}
.silde-s .aside-list ul {
  list-style-type: none;
}
.silde-s .aside-list ul li {
  border-bottom: 0px solid #f0f0f0;
  width: 100%;
  height: 30px;
  line-height: 30px;
}
.silde-s .aside-list ul li a {
  text-decoration: none !important;
  padding-left: 10px;
  color: #333;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.silde-s .aside-list ul li a a:hover {
  color: #f00;
}
.gotop-1 {
  background: #fff;
  position: fixed;
  top: 50%;
  margin-top: -100px;
  right: 0;
  display: block;
  z-index: 9999;
  box-shadow: 0 1px 8px rgba(66, 66, 66, 0.1);
  text-align: center;
}
.gotop-1 img {
  border: none;
  width: 70px;
}
.gotop-1 ul {
  width: 64px;
  minn-height: 195px;
}
.gotop-1 ul li {
  border-bottom: 1px solid #eee;
  padding: 5px;
  width: 64px;
  min-height: 60px;
  font-size: 12px;
  color: #999;
}
.gotop-1 ul li i {
  display: block;
  font-size: 18px;
  color: #999;
}
.gotop-1 ul li span {
  display: block;
}
.gotop-1 ul li a {
  color: #999;
}
.gotop-1 ul li:hover {
  background: #999;
  color: #fff !important;
}
.gotop-1 ul li:hover i {
  color: #fff;
}
.gotop-1 ul li:hover a {
  color: #fff;
}
.gotop-1 ul li.sign {
  background: #fff;
  line-height: 35px;
  color: #f67f00;
}
.gotop-1 ul li.sign:hover {
  background: #fff;
  color: #f67f00 !important;
}
.gotop-1 ul li.wx {
  position: relative;
  padding-top: 15px;
}
.gotop-1 ul li.wx .qr {
  display: none;
  position: absolute;
  right: 65px;
  bottom: 0;
  background: #fff;
  box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.3), 0 0 6px 2px rgba(0, 0, 0, 0.15);
  padding: 23px 20px;
  color: #333;
}
.gotop-1 ul li.wx .qr img {
  width: 135px;
}
.gotop-1 ul li.wx:hover .qr {
  display: block;
}
.gotop-1 ul li.qq {
  position: relative;
  padding-top: 15px;
}
.gotop-1 ul li.qq .qqq {
  position: absolute;
  right: 65px;
  top: 0;
  background: #fff;
  text-align: left;
  width: 175px;
  box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.3), 0 0 6px 2px rgba(0, 0, 0, 0.15);
  padding: 23px 20px;
  font-weight: bold;
  color: #333;
}
.gotop-1 ul li.qq .qqq i {
  display: inline;
  margin-right: 10px;
  color: #3598db;
}
.gotop-1 ul li.qq:hover .qqq {
  display: block;
  color: #333;
}
.gotop-2 {
  background: #fff;
  position: fixed;
  bottom: 0px;
  right: 8px;
  display: none;
  z-index: 9999;
  box-shadow: 0 1px 8px rgba(66, 66, 66, 0.1);
  text-align: center;
}
.gotop-2 img {
  border: none;
  width: 40px;
}
.gotop-2 ul {
  width: 40px;
  minn-height: 195px;
}
.gotop-2 ul li {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.gotop-3 {
  background: #fff;
  position: fixed;
  top: 200px;
  left: 8px;
  display: none;
  z-index: 9999;
  box-shadow: 0 1px 8px rgba(66, 66, 66, 0.1);
  text-align: center;
}
.gotop-3 img {
  border: none;
  width: 64px;
}
.gotop-3 ul {
  border-top: 2px solid #5bc0de;
  width: 64px;
  minn-height: 195px;
}
.gotop-3 ul li {
  padding: 12px;
  border-bottom: 1px solid #eee;
  width: 64px;
  height: 64px;
  cursor: pointer;
}
.gotop-3 ul li.spread {
  position: relative;
}
.gotop-3 ul li.spread .spread-img {
  display: none;
  position: absolute;
  left: 70px;
  bottom: 0;
  background: #fff;
  box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.3), 0 0 6px 2px rgba(0, 0, 0, 0.15);
  padding: 23px 20px;
  color: #333;
}
.gotop-3 ul li.spread .spread-img img {
  width: 110px;
}
.gotop-3 ul li.spread:hover .spread-img {
  display: block;
}
.gotop-4 {
  position: fixed;
  top: 250px;
  display: none;
  z-index: 9999;
  text-align: center;
}
.gotop-4 img {
  border: none;
  width: 40px;
}
.gotop-4 ul {
  width: 40px;
  minn-height: 195px;
}
.gotop-4 ul li {
  width: 50px;
  line-height: 40px;
  text-align: center;
}
.suspended {
  position: fixed;
  top: 50%;
  margin-top: -150px;
  right: 20px;
  display: block;
  z-index: 9999;
  text-align: center;
  z-index: 999;
}
.suspended img {
  border: none;
  width: 70px;
}
.suspended ul {
  width: 64px;
  minn-height: 195px;
}
.suspended ul li {
  border-bottom: 1px solid #eee;
  padding-top: 10px;
  width: 68px;
  height: 66px;
  border-radius: 4px;
  min-height: 60px;
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}
.suspended ul li .qr-wrap {
  background-color: #f7f8fa;
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.05);
  position: absolute;
  bottom: 0;
  right: 68px;
  border-radius: 4px;
  padding: 20px;
  width: 280px;
  display: none;
  text-align: center;
}
.suspended ul li .qr-wrap .text {
  font-size: 18px;
  line-height: normal;
}
.suspended ul li.qq {
  background: #5bc0de;
}
.suspended ul li.qq i {
  color: #fff;
}
.suspended ul li.qq a {
  color: #fff;
}
.suspended ul li.message_board {
  background: #fff;
  border: 1px solid #5bc0de;
}
.suspended ul li.message_board i {
  color: #5bc0de;
}
.suspended ul li.message_board a {
  color: #5bc0de;
}
.suspended ul li i {
  display: block;
  font-size: 18px;
  color: #999;
}
.suspended ul li span {
  display: block;
}
.suspended ul li:hover {
  background: #999;
  color: #fff !important;
}
.suspended ul li:hover i {
  color: #fff;
}
.suspended ul li:hover a {
  color: #fff;
}
.suspended ul li:hover .qr-wrap {
  display: block;
}
.gotop-5 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  z-index: 9999;
  text-align: center;
  z-index: 999;
}
.gotop-5 img {
  border: none;
  width: 70px;
}
.gotop-5 ul {
  width: 64px;
  minn-height: 195px;
}
.gotop-5 ul li {
  background: #5bc0de;
  padding-top: 10px;
  width: 68px;
  height: 66px;
  border-radius: 4px;
  min-height: 60px;
  color: #999;
  margin-bottom: 10px;
}
.gotop-5 ul li i {
  font-size: 32px;
  color: #fff;
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.vote {
  position: fixed;
  top: 80px;
  right: 20px;
  display: block;
  font-size: 12px;
  text-align: center;
  z-index: 999;
  animation: upDown ease-in-out 1s infinite;
}
.vote img {
  border: none;
  width: 70px;
}
.vote ul {
  width: 64px;
  minn-height: 195px;
}
.vote ul li {
  padding-top: 10px;
  width: 68px;
  height: 66px;
  border-radius: 4px;
  min-height: 60px;
  color: #999;
  margin-bottom: 10px;
}
.vote ul li i {
  font-size: 32px;
}
.position {
  padding: 15px 25px;
  font-size: 16px;
  color: #999;
}
.position a {
  color: #999;
}
.position a:hover {
  color: #5bc0de;
}
.channel-wrap {
  line-height: 40px;
}
.channel-wrap a {
  background: #ff9da0;
  display: inline-block;
  width: 50%;
  height: 90px;
  line-height: 75px;
  color: #fff;
  float: left;
}
.page-line {
  background: #5bc0de;
  position: absolute;
  top: 0;
  left: 15px;
  display: block;
  width: 80px;
  height: 3px;
}
.page-line-1 {
  background: #5bc0de;
  position: absolute;
  top: 15px;
  left: 0;
  display: block;
  width: 3px;
  height: 50px;
}
.page-line-2 {
  background: #5bc0de;
  position: absolute;
  top: 0;
  right: 15px;
  display: block;
  width: 80px;
  height: 3px;
}
.send_info {
  margin-bottom: 10px;
  border-radius: 2px;
  width: 100%;
  height: auto;
}
.send_info .sendtitle {
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
  color: var(--color-primary);
}
.send_info .send-input .send-input-box {
  background: var(--input-background);
  border-radius: 8px;
  padding: 6px 11px;
}
.send_info .send-input .send-input-box textarea {
  width: 100%;
  height: 60px;
  margin: 0px;
  padding: 5px;
  border-style: none;
  border-width: 0px;
  font-size: 14px;
  word-wrap: break-word;
  line-height: 18px;
  overflow: hidden;
  outline: none;
}
.send_info .operate {
  padding: 10px;
  height: 52px;
  display: flex;
}
.send_info .operate .operate-left {
  flex: 1;
  line-height: 32px;
}
.send_info .operate .operate-left i {
  color: #838383 !important;
}
.send_info .operate .operate-left span {
  margin-right: 5px;
  color: #666;
}
.send_info .operate .operate-right {
  width: 100px;
  text-align: right;
}
.send_info .operate .operate-right button {
  background: var(--input-background);
  border-radius: 30px;
  color: var(--button-font);
  width: 65px;
  height: 32px;
  text-align: center;
}
.user-photos {
  margin-bottom: 10px;
  border-radius: 2px;
  height: auto;
}
.user-photos .user-head {
  background-color: #6c757d;
  color: rgba(255, 255, 255, 0.5);
  height: 135px;
  text-align: center;
  padding-top: 10px;
}
.user-photos .user-head::before {
  text-align: center;
}
.user-photos .user-head .photos {
  position: absolute;
  left: 50%;
  top: -10px;
  margin-left: -62.5px;
  margin-top: 75px;
}
.user-photos .user-head .photos img {
  border-radius: 50%;
  width: 125px;
  height: 125px;
}
.user-photos .user-info {
  height: auto;
}
.user-photos .user-info .name-box {
  padding: 70px 0 20px 0;
  text-align: center;
}
.user-photos .user-info .name-atten {
  height: 45px;
}
.user-photos .user-info .name-atten ul li {
  width: 33.33333333%;
  height: 35px;
  float: left;
  text-align: center;
}
.user-photos .user-info .name-atten ul li a {
  color: #333;
}
.user-photos .user-info .name-atten ul li strong,
.user-photos .user-info .name-atten ul li span {
  display: block;
}
.user-photos .user-info .name-atten ul li:nth-child(2) {
  border-left: 1px solid var(--default-border);
  border-right: 1px solid var(--default-border);
}
.user-photos .user-info .name-atten:after {
  content: '';
  clear: both;
}
.user-photos .user-info-art {
  border-top: 1px solid #eee;
  padding: 15px;
  height: 130px;
}
.user-photos .user-info-art ul li {
  padding: 5px;
  width: 33.333333%;
  height: 100px;
  float: left;
  text-align: center;
}
.user-photos .user-info-art ul li a {
  color: #333;
}
.user-photos .user-info-art ul li strong,
.user-photos .user-info-art ul li span {
  display: inline-block;
}
.user-photos .user-info-art:after {
  content: '';
  clear: both;
}
.user-photos .name-info {
  margin-top: 15px;
}
.user-photos .name-info li {
  border-top: 1px solid var(--default-border);
  padding: 10px 15px;
  font-size: 12px;
}
.user-photos .mood {
  padding: 15px 15px 0 15px;
  line-height: 25px;
  font-size: 12px;
  color: #8bc34a;
}
.user-photos .mood span {
  font-weight: bold;
}
.user-photos .introduction {
  padding: 15px;
  line-height: 25px;
  font-size: 12px;
  color: #666;
}
.user-photos .introduction span {
  font-weight: bold;
}
.form-wrap {
  border: 0px solid #ddd;
}
.form-wrap li {
  position: relative;
  padding: 10px 5px 10px 100px;
  min-height: 30px;
  line-height: 30px;
}
.form-wrap li label {
  position: absolute;
  left: 0px !important;
  top: 50%;
  margin-top: -15px;
  font-size: 14px;
  color: #666;
  font-weight: normal;
}
.form-wrap-box {
  border: 0px solid #ddd;
}
.form-wrap-box .li {
  position: relative;
  padding: 10px 5px 10px 100px !important;
  min-height: 30px;
  line-height: 30px;
}
.form-wrap-box .li .label {
  position: absolute;
  left: 0px !important;
  top: 50%;
  margin-top: -15px;
  font-size: 14px;
  color: #666;
  font-weight: normal;
}
.form-wrap-box .vertical {
  margin-bottom: 15px;
}
.form-wrap-box .vertical .label {
  margin-bottom: 10px;
}
.con-list {
  background: var(--module-background);
  margin-bottom: 10px;
  border-radius: 4px;
  height: auto;
  border-radius: 2px;
}
.con-list .con-wrap {
  position: relative;
  padding: 15px 15px 15px 80px;
}
.con-list .con-wrap .photos {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
}
.con-list .con-wrap .photos a {
  display: block;
}
.con-list .con-wrap .photos img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.con-list .con-wrap .user_info .username {
  font-weight: bold;
}
.con-list .con-wrap .user_from {
  font-size: 10px;
  color: #808080;
}
.con-list .con-wrap .user_text {
  line-height: 23px;
}
.con-list .con-wrap .user_text a {
  color: #eb7340;
}
.con-list .con-wrap .user_text .topic {
  color: #eb7340;
}
.con-list .bottom-wrap {
  min-height: 40px;
  font-size: 12px;
}
.con-list .bottom-wrap ul li {
  box-sizing: border-box;
  width: 25%;
  height: 40px;
  line-height: 40px;
  color: #808080;
  float: left;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
}
.con-list .bottom-wrap ul li:hover {
  color: var(--color-primary);
}
.con-list .bottom-wrap ul li:hover i,
.con-list .bottom-wrap ul li:hover span {
  color: var(--color-primary);
}
.con-list .bottom-wrap ul li .iconfont {
  margin-right: 5px;
  font-size: 18px;
}
.con-list .bottom-wrap ul li .is-collect {
  color: var(--color-primary);
}
.con-list .bottom-wrap ul li .icon-star {
  font-size: 16px;
}
.con-list .bottom-wrap ul li:last-child {
  border: 0;
}
.img-grid {
  padding: 0px !important;
  width: 410px;
  overflow: hidden;
}
.img-grid li {
  padding: 0px;
  margin-top: 4px;
  margin-right: 4px;
  width: 132px;
  height: 132px;
  float: left;
}
.img-grid img {
  cursor: pointer;
}
.grid {
  background: #fff;
}
.grid li {
  position: relative;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  height: 180px;
  line-height: 180px;
  font-size: 18px;
  text-align: center;
  overflow: hidden;
}
.grid li .grid-cover {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 20px;
  background-color: #269bff;
  padding: 25px;
  font-size: 14px;
  color: #fff;
  transition: top 0.2s ease;
  text-align: left;
}
.grid li .grid-cover .title {
  border-left: 3px solid #ffb230;
  padding-left: 8px;
  font-size: 20px;
}
.grid li .grid-cover .desc {
  padding: 10px 0 15px 0;
}
.grid li .grid-cover a {
  color: #fff;
}
.grid li:hover .grid-cover {
  top: 0;
}
.grid li:nth-child(4n) {
  border-right: 0px solid #ddd;
}
.grid li:nth-child(5),
.grid li:nth-child(6),
.grid li:nth-child(7),
.grid li:nth-child(8) {
  border-bottom: 0px solid #ddd;
}
.bigimg-wrap {
  display: none;
  background: #eee;
  margin-left: -80px;
  margin-right: -15px;
  margin-bottom: 0;
  padding: 30px;
  padding-left: 80px;
  padding-right: 15px;
}
.bigimg-wrap .hideimg {
  cursor: url('/source/public/images/small.cur'), auto;
}
.bigimg-wrap .bigimg_tab {
  height: 30px;
}
.bigimg-wrap .bigimg_tab a {
  margin-right: 10px;
  padding: 10px 0;
  color: #333;
}
.bigimg-wrap .thumblist {
  height: 62px;
}
.bigimg-wrap .thumblist li {
  margin-right: 4px;
  padding: 10px 0;
  width: 52px;
  height: 52px;
  float: left;
}
.bigimg-wrap .thumblist li img {
  width: 52px;
  height: 52px;
}
.bigimg-wrap .thumblist:after {
  content: '';
  clear: both;
}
.timeline {
  padding: 0 10px;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.timeline .line-head {
  position: relative;
  border-right: 4px solid #24adbd;
  margin-bottom: 5px;
  padding-right: 10px;
  width: 100%;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  color: #24adbd;
  border-top: 0px solid #f0f0f0;
}
.timeline .line-head i.arrow {
  float: right;
  color: #ccc;
}
.timeline .line-head.current {
  background: #24adbd;
}
.timeline .line-head.current a {
  color: #fff;
}
.timeline .line-head a {
  color: #24adbd;
}
.timeline .line-list {
  width: 100%;
  height: auto;
  display: none;
}
.timeline .line-list ul {
  list-style-type: none;
}
.timeline .line-list ul li {
  border-bottom: 0px solid #f0f0f0;
  width: 100%;
  height: 30px;
  line-height: 30px;
}
.timeline .line-list ul li a {
  text-decoration: none !important;
  padding-left: 10px;
  color: #24adbd;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.timeline .line-list ul li a.current {
  font-weight: bold;
}
.timeline .line-list ul li a a:hover {
  color: #f00;
}
.cat-label {
  background-color: #333;
  margin-right: 10px;
  position: relative;
  padding: 2px 6px 4px;
}
.cat-label .label-arrow {
  top: 7px;
  right: -4px;
  border-left: 4px solid #333;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  position: absolute;
  width: 0;
  height: 0;
  vertical-align: top;
  content: '';
}
.text-scroll {
  width: 100%;
  /*å•è¡Œæ˜¾ç¤ºï¼Œè¶…å‡ºéšè—*/
  height: 42px !important;
  /*å›ºå®šå…¬å‘Šæ&nbsp;æ˜¾ç¤ºåŒºåŸŸçš„é«˜åº¦*/
  overflow: hidden;
  position: relative;
  padding-left: 25px;
  padding-right: 350px;
}
.text-scroll .icons {
  position: absolute;
  top: 0;
  left: 0;
}
.text-scroll .statistics {
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
}
.text-scroll ul {
  height: 42px !important;
}
.text-scroll ul li {
  border: 0 !important;
  width: 100% !important;
  height: 42px !important;
  line-height: 42px !important;
  font-size: 14px !important;
  /*ä»¥ä¸‹ä¸ºäº†å•è¡Œæ˜¾ç¤ºï¼Œè¶…å‡ºéšè—*/
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left !important;
  overflow: hidden;
}
.text-scroll ul li a {
  height: 42px !important;
}
.ad-wrap {
  position: relative !important;
  overflow: hidden;
  /*&amp;:hover{
		.ad-flag{
			position: absolute !important;
			right: -34px;;
			bottom: 2px;
		}
	}*/
}
.ad-wrap .ad-flag {
  position: absolute !important;
  right: 5px;
  bottom: 5px;
  width: 34px;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
}
.ad-wrap .ad-full {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 1920px;
  height: auto;
  left: 50%;
  margin-left: -960px;
}
.ad-wrap .ad-group li {
  padding: 1px 2px;
  text-align: center;
}
.ad-wrap .ad-group li img {
  width: 100%;
}
.ad-wrap .ad-group-txt li {
  padding: 15px 5px;
  text-align: center;
}
.ad-wrap .ad-group-txt li img {
  width: 100%;
  height: 100px;
}
.media-cat li a {
  display: block;
  padding: 10px;
}
.media-cat li i {
  color: #eee !important;
}
.media-cat li:hover {
  background: #009a61;
}
.media-cat li:hover a {
  color: #fff;
}
.home-wrap {
  background: #ccc;
  background-size: 100%;
  margin: 0 auto;
  height: 220px;
}
.home-wrap h2 {
  margin: 0;
  font-size: 16px;
}
.home-wrap .user-home-photos {
  width: 150px;
  height: 100px;
  text-align: center;
}
.home-wrap .user-home-photos img {
  border: 3px solid rgba(255, 255, 255, 0.5);
}
.home-wrap .user-info {
  background: #6d656555;
  padding: 0;
  width: auto;
  height: 30px;
  color: #333;
  position: absolute;
  right: 20px;
  bottom: 30px;
}
.home-wrap .user-info a {
  margin: 0 5px;
  padding: 8px 10px;
  color: #333;
}
.home-wrap .user-info h2 {
  margin: 0;
  font-size: 16px;
}
.home-wrap .user-info .subinfo {
  padding: 10px 0;
}
.home-wrap .user-info .blogmenu {
  padding-bottom: 10px;
}
.home-wrap .user-info .blogmenu a {
  border: 1px solid #ccc;
  padding: 2px 10px;
  color: #333;
}
.home-wrap .user-info li {
  padding: 5px 0px;
}
.home-wrap .user-info li.current {
  background: #a3d1e6c9;
  font-weight: bold;
}
.home-wrap .user-info li:hover {
  background: #a3d1e6c9;
}
.home-wrap .user-info li a {
  color: #fff;
}
.titleStyle {
  font-size: 24px;
  color: #222;
  position: relative;
  width: 230px;
  text-align: center;
  margin: 0 auto 17px;
  line-height: 32px;
}
.titleStyle:before {
  content: '';
  height: 2px;
  width: 20px;
  background: #333;
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 3px;
}
.titleStyle:after {
  content: '';
  height: 2px;
  width: 20px;
  background: #333;
  position: absolute;
  top: 50%;
  right: 0;
  border-radius: 3px;
}
.user-info-wrap {
  background: var(--module-background);
  width: 100%;
  height: 375px;
  font-size: 14px;
}
.user-info-wrap .user-info-head {
  height: 135px;
}
.user-info-wrap .user-info-photos {
  display: flex;
  padding: 10px 15px;
  width: 450px;
  height: 60px;
}
.user-info-wrap .user-info-photos a {
  color: #666;
  cursor: pointer;
}
.user-info-wrap .user-info-photos .blogphotos {
  margin: 0 10px 0 0;
  width: 64px;
  height: 64px;
}
.user-info-wrap .user-info-photos .blogphotos img {
  border-radius: 50%;
  width: 64px;
  height: 64px;
}
.user-info-wrap .user-info-photos .bloginfo {
  flex: 1;
}
.user-info-wrap .user-info-photos .bloginfo .subinfo a {
  padding-right: 15px;
  color: #666;
}
.user-info-wrap .user-info-photos .blogmenu {
  width: 100px;
  float: right;
}
.user-info-wrap .user-info-photos .blogmenu span {
  background: #333;
  border: 1px solid #111;
  padding: 5px 10px;
  color: #ccc;
}
.user-info-wrap .user-info-photos .user-info {
  padding: 15px;
  height: 70px;
}
.user-info-wrap .user-info-photos .user-info .name-box {
  text-align: center;
}
.user-info-wrap .user-info-photos .user-info .name-atten {
  height: 30px;
}
.user-info-wrap .user-info-art {
  border-bottom: 1px solid var(--default-border);
  padding: 15px 10px;
  height: 130px;
}
.user-info-wrap .user-info-art ul {
  display: flex;
}
.user-info-wrap .user-info-art ul li {
  padding: 5px;
  width: 33.333333%;
  height: 110px;
  text-align: center;
}
.user-info-wrap .user-info-art ul li a {
  color: #333;
}
.user-info-wrap .user-info-art ul li strong,
.user-info-wrap .user-info-art ul li span {
  display: inline-block;
}
.user-info-wrap .user-info-art:after {
  content: '';
  clear: both;
}
.user-info-wrap .user-introduction {
  padding: 0 25px;
  height: 50px;
  line-height: 50px;
  color: #ccc;
}
.color-list .cl,
.color-list a {
  position: relative;
  float: left;
  padding: 0 5px 0 40px;
  margin: 3px 0px 2px 0;
  white-space: nowrap;
  height: 32px;
  line-height: 32px;
}
.color-list .cl.color-box,
.color-list a.color-box {
  margin: 0;
  padding: 0;
  width: 32px;
  height: 24px;
  line-height: 24px;
}
.color-list .cl.color-box i,
.color-list a.color-box i {
  position: absolute;
  left: 0;
  top: 0;
}
.color-list .cl i,
.color-list a i {
  position: absolute;
  left: 4px;
  top: 3px;
  width: 12px;
  height: 12px;
}
.color-list .cl i.size-32-24,
.color-list a i.size-32-24 {
  width: 32px;
  height: 24px;
}
.color-list .cl i.all,
.color-list a i.all {
  background: linear-gradient(45deg, #d82f39, #ff8a00, #dcb900, #47bb2a, #13c6d1);
}
.color-list .cl i.red,
.color-list a i.red {
  border: 1px solid #cb1c1c;
  background: #de2020;
}
.color-list .cl i.orange,
.color-list a i.orange {
  border-color: #e96300;
  background: #fe6c00;
}
.color-list .cl i.yellow,
.color-list a i.yellow {
  border-color: #e9b000;
  background: #febf00;
}
.color-list .cl i.green,
.color-list a i.green {
  border-color: #539b23;
  background: #59a725;
}
.color-list .cl i.purple,
.color-list a i.purple {
  border-color: #7a27b7;
  background: #892bcf;
}
.color-list .cl i.pink,
.color-list a i.pink {
  border-color: #c63fab;
  background: #d744ba;
}
.color-list .cl i.cyan,
.color-list a i.cyan {
  border-color: #07a6b7;
  background: #06b7c8;
}
.color-list .cl i.blue,
.color-list a i.blue {
  border-color: #005ceb;
  background: #0065fe;
}
.color-list .cl i.brown,
.color-list a i.brown {
  border-color: #6b3012;
  background: #733413;
}
.color-list .cl i.white,
.color-list a i.white {
  border-color: #c0babc;
  background: #fff;
}
.color-list .cl i.black,
.color-list a i.black {
  border-color: #000;
  background: #000;
}
.item-thum-wrap {
  padding: 6px 15px;
}
.item-thum-wrap .item-title a {
  height: 20px;
  line-height: 22px;
}
.item-thum-wrap .item-title em {
  position: absolute;
  top: 0;
  left: 0;
  background: #9a9a9a;
  width: 20px;
  height: 20px;
  padding-top: 4px;
  background-position: -170px -85px;
  color: #fff;
  font: normal 10px/15px Arial;
  text-align: center;
  -webkit-text-size-adjust: none;
}
.item-thum-wrap .item-title .dot {
  position: absolute;
  top: -8px;
  left: -5px;
  color: #ccc;
}
.item-thum-wrap .item-title .arrow {
  position: absolute;
  top: -6px;
  left: -10px;
  color: #ccc;
}
.item-thum-wrap .item-title .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  padding-top: 4px;
  background-position: -170px -85px;
  color: #333;
  font: normal 10px/15px Arial;
  font-size: 16px;
  text-align: center;
  -webkit-text-size-adjust: none;
}
.item-thum-wrap .text-title {
  display: block;
}
.item-thum-wrap .item-thum {
  display: none;
  min-height: 45px;
  line-height: 23px;
}
.item-thum-wrap:nth-child(1) .num {
  color: #f73131;
}
.item-thum-wrap:nth-child(2) .num {
  color: #fe2d46;
}
.item-thum-wrap:nth-child(3) .num {
  color: #f60;
}
.item-thum-wrap:nth-child(4) .num {
  color: #faa90e;
}
.item-thum-wrap:nth-child(1) em,
.item-thum-wrap:nth-child(2) em,
.item-thum-wrap:nth-child(3) em {
  background: #ff6600;
}
.item-thum-wrap.hover {
  background: #fafbfc;
}
.item-thum-wrap.hover a {
  color: #3598db;
}
.item-thum-wrap.hover .text-title {
  display: none;
}
.item-thum-wrap.hover .item-thum {
  display: block;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.thum-wrap {
  display: flex;
  padding: 7px 0 8px;
}
.thum-wrap .thum {
  margin-right: 16px;
}
.thum-wrap .thum img {
  width: 145px;
  height: 85px;
}
.thum-wrap .content {
  flex: 1;
}
.thum-wrap .content .thum-title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}
.thum-wrap .content p {
  color: #828a92;
}
.thum-wrap .content p.footer {
  padding-top: 5px;
  color: #999;
}
.thum-wrap:hover {
  background: #fafbfc;
}
.notes-list {
  padding-left: 40px;
}
.notes-list::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  border-right: 1px solid var(--default-border);
  left: 19px;
  z-index: 1;
}
.notes-list .notes-content {
  padding: 15px;
  border: 1px solid var(--default-border);
  margin-bottom: 15px;
  background: var(--input-background);
  overflow: hidden;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.notes-list .notes-content::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--input-background);
  border-radius: 4px;
  left: 16px;
  top: 50%;
  margin-top: -2px;
  z-index: 1;
}
.comment-wrap textarea {
  padding: 12px 16px;
  width: 100%;
  height: 90px;
  font-size: 13px;
  border: 1px solid #eee;
  border-radius: 4px;
  background-color: #fafafa;
  resize: none;
  display: inline-block;
  vertical-align: top;
  outline-style: none;
}
.comment-wrap .button-group {
  display: flex;
  justify-content: flex-end;
}
.comment-wrap .button-group button {
  background-color: #ec7259;
  border: 0;
  padding: 6px 15px;
  font-size: 14px;
  color: #fff;
}
.comment-wrap .button-group button.cancer {
  background-color: #f6f6f6;
  color: #999;
}
.special-ul {
  padding: 0;
}
.special-ul li:nth-child(1),
.special-ul li:nth-child(2),
.special-ul li:nth-child(3) {
  border-bottom: 1px solid #eee;
}
.special-ul li:nth-child(2),
.special-ul li:nth-child(5) {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}
.special-ul li:hover {
  box-shadow: #ccc 1px 1px 8px;
}
.content-wrap ul {
  flex-wrap: wrap;
}
.content-wrap ul li .list {
  background-image: -webkit-linear-gradient(-45deg, #e9eae8 10%, #f6f6f6 10%);
  padding: 15px;
  height: 120px;
  line-height: 90px;
}
.flex-wrap {
  display: flex;
  justify-content: center;
}
.flex-wrap .flex-list,
.flex-wrap .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0 4px 10px 0 #ccc;
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
.notes-code {
  padding: 50x;
}
.notes-code p {
  text-indent: 0 !important;
  margin-bottom: 15px;
}
.notes-code ol {
  margin-bottom: 15px;
  padding-left: 18px;
}
.notes-code .language-html,
.notes-code .language-javaScript {
  background: #303637 !important;
  margin-bottom: 15px;
  border-radius: 4px;
  font-size: 12px;
  color: #ccc;
  text-shadow: none;
}
.language-mysql {
  background: #303637 !important;
  margin-bottom: 15px;
  border-radius: 4px;
  font-size: 14px;
  color: #ccc !important;
  text-shadow: none;
  word-spacing: 0px;
  font-family: monospace;
  line-height: 15px !important;
}
.adaptation {
  overflow: hidden;
}
.adaptation a {
  padding: 0 !important;
}
.adaptation a img {
  width: initial !important;
}
.list-wrap {
  display: flex;
}
.list-wrap .list-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.list-wrap .list-content {
  width: 120px;
  margin-left: 10px;
}
.list-wrap .list-content .list-title {
  font-size: 15px;
}
.list-wrap .list-content .list-desc {
  margin-top: 5px;
  font-size: 13px;
  color: #939393;
}
.verified {
  background: #00a4ff;
  position: absolute;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  right: -2px;
  bottom: -2px;
  font-size: 12px;
  color: #fff;
  text-align: center;
}
.contains-wrap {
  overflow: hidden;
}
.zhejiao {
  background: #eee;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 16px;
  height: 16px;
}
.zhejiao i {
  background: #ddd;
  margin: 0;
}
.video-wrap {
  position: relative;
  height: 400px;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}
.video-wrap .background-mask {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.video-wrap .background-mask img {
  width: 100%;
  height: 100%;
  -webkit-filter: blur(60px);
  filter: blur(60px);
}
.control {
  background-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  height: 50px;
}
.control .progress_bar {
  background: #7f7a79;
  margin-bottom: 15px;
  width: 100%;
  height: 2px;
  cursor: pointer;
}
.control .progress_bar .time_bar {
  background: #e7e6e4;
  width: 0%;
  height: 2px;
  cursor: pointer;
}
.control .progress_bar .box {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #d7d9e0;
  top: -4px;
  cursor: pointer;
}
.control .button-group {
  display: flex;
  line-height: normal;
}
.control .button-group .duration {
  padding-top: 5px;
  width: 120px;
  color: #fff;
}
.control .button-group i {
  margin: 0;
  padding: 0;
  font-size: 26px !important;
  cursor: pointer;
}
input[type=text],
input[type=password],
input[type=number] {
  background: var(--input-background);
  border: 1px solid var(--default-border);
  border-radius: 3px;
  padding: 0px 10px;
}
input[type=checkbox] {
  width: 16px;
  height: 16px;
}
input[type=radio] {
  width: 16px;
  height: 16px;
}
input[disabled=disabled] {
  background: #f9f9f9 !important;
  border: 1px solid #ddd !important;
}
select {
  background: var(--input-background);
  border: 1px solid var(--input-background);
  border-radius: 3px;
  padding: 0px 10px;
  min-width: 150px;
  height: 32px;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
}
.input-mid {
  height: 38px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
}
.input-sm {
  height: 32px;
  padding: 5px 10px;
  line-height: 1.5;
}
.input-50 {
  width: 50px !important;
}
.input-100 {
  width: 100px !important;
}
.input-120 {
  width: 120px !important;
}
.input-150 {
  width: 150px !important;
}
.input-175 {
  width: 175px !important;
}
.input-220 {
  width: 220px !important;
}
.input-250 {
  width: 250px !important;
}
.input-300 {
  width: 300px !important;
}
.input-350 {
  width: 350px !important;
}
.input-500 {
  width: 500px !important;
}
.input-full {
  width: 100% !important;
}
textarea {
  background: var(--input-background);
  border: 1px solid var(--default-border);
  border-radius: 3px;
  padding: 10px;
  width: 500px;
  height: 80px;
}
.textarea-500 {
  width: 500px;
}
input::-webkit-input-placeholder {
  color: #777;
}
input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #777;
}
input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #777;
}
input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #777;
}
textarea::-webkit-input-placeholder {
  color: #777;
}
textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #777;
}
textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #777;
}
textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #777;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 2px;
  box-shadow: 0 2px #00000004;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover {
  color: #40a9ff;
  border-color: #40a9ff;
}
.btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-link {
  border-color: transparent;
}
.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-login {
  background: #ff3766;
  display: inline-block;
  border-radius: 30px;
  padding: 10px;
  color: #fff;
  border: 1px solid transparent;
  min-width: 70px;
  height: 36px;
  line-height: 16px;
  text-align: center;
  animation: pulse ease-in-out 1s infinite;
}
.btn-submit {
  background: var(--input-background);
  display: inline-block;
  border-radius: 30px;
  padding: 10px;
  color: #fff;
  border: 1px solid transparent;
  min-width: 70px;
  height: 36px;
  line-height: 16px;
  text-align: center;
}
/* width */
.w50 {
  width: 50px !important;
}
.w70 {
  width: 70px !important;
}
.w100 {
  width: 100px !important;
}
.w110 {
  width: 110px !important;
}
.w120 {
  width: 120px !important;
}
.w130 {
  width: 130px !important;
}
.w150 {
  width: 150px !important;
}
.w180 {
  width: 180px !important;
}
.w190 {
  width: 190px !important;
}
.w200 {
  width: 200px !important;
}
.w210 {
  width: 210px !important;
}
.w220 {
  width: 220px !important;
}
.w230 {
  width: 230px !important;
}
.w245 {
  width: 245px !important;
}
.w250 {
  width: 250px !important;
}
.w280 {
  width: 280px !important;
}
.w300 {
  width: 300px !important;
}
.w320 {
  width: 320px !important;
}
.w325 {
  width: 325px !important;
}
.w350 {
  width: 350px !important;
}
.w360 {
  width: 360px !important;
}
.w400 {
  width: 400px !important;
}
.w450 {
  width: 450px !important;
}
.w470 {
  width: 470px !important;
}
.w480 {
  width: 480px !important;
}
.w500 {
  width: 500px !important;
}
.w530 {
  width: 530px !important;
}
.w560 {
  width: 560px !important;
}
.w580 {
  width: 580px !important;
}
.w610 {
  width: 610px !important;
}
.w645 {
  width: 645px !important;
}
.w675 {
  width: 675px !important;
}
.w685 {
  width: 685px !important;
}
.w695 {
  width: 695px !important;
}
.w700 {
  width: 700px !important;
}
.w725 {
  width: 725px !important;
}
.w750 {
  width: 750px !important;
}
.w770 {
  width: 770px !important;
}
.w780 {
  width: 780px !important;
}
.w785 {
  width: 785px !important;
}
.w800 {
  width: 800px !important;
}
.w840 {
  width: 840px !important;
}
.w870 {
  width: 870px !important;
}
.w880 {
  width: 880px !important;
}
.w890 {
  width: 890px !important;
}
.w930 {
  width: 930px !important;
}
.w940 {
  width: 940px !important;
}
.w960 {
  width: 960px !important;
}
.w1000 {
  width: 1000px !important;
}
.w1100 {
  width: 1100px !important;
}
.w1200 {
  width: 1200px !important;
}
.w1230 {
  width: 1230px !important;
}
.w1320 {
  width: 1320px !important;
}
.w1360 {
  width: 1360px !important;
}
.w1440 {
  width: 1440px !important;
}
/* height */
.h30 {
  height: 30px !important;
}
.h32 {
  height: 32px !important;
}
.h35 {
  height: 35px !important;
}
.h36 {
  height: 36px !important;
}
.h40 {
  height: 40px !important;
}
.h50 {
  height: 50px !important;
}
.h55 {
  height: 55px !important;
}
.h60 {
  height: 60px !important;
}
.h70 {
  height: 70px !important;
}
.h80 {
  height: 80px !important;
}
.h90 {
  height: 90px !important;
}
.h100 {
  height: 100px !important;
}
.h120 {
  height: 120px !important;
}
.h140 {
  height: 140px !important;
}
.h150 {
  height: 150px !important;
}
.h200 {
  height: 200px !important;
}
.h210 {
  height: 210px !important;
}
.h250 {
  height: 250px !important;
}
.h265 {
  height: 265px !important;
}
.h285 {
  height: 285px !important;
}
.h300 {
  height: 300px !important;
}
.h320 {
  height: 320px !important;
}
.h340 {
  height: 340px !important;
}
.h350 {
  height: 350px !important;
}
.h390 {
  height: 390px !important;
}
.h400 {
  height: 400px !important;
}
.h415 {
  height: 415px !important;
}
.h455 {
  height: 455px !important;
}
.h460 {
  height: 460px !important;
}
.h470 {
  height: 470px !important;
}
.h500 {
  height: 500px !important;
}
.h600 {
  height: 600px !important;
}
.h700 {
  height: 700px !important;
}
/* margin */
.m0 {
  margin: 0px !important;
}
.m5 {
  margin: 5px !important;
}
.m10 {
  margin: 10px !important;
}
.m15 {
  margin: 15px !important;
}
.m20 {
  margin: 20px !important;
}
.m25 {
  margin: 25px !important;
}
.m30 {
  margin: 30px !important;
}
.m35 {
  margin: 35px !important;
}
.m40 {
  margin: 40px !important;
}
.m45 {
  margin: 45px !important;
}
.m50 {
  margin: 50px !important;
}
.m55 {
  margin: 55px !important;
}
.m60 {
  margin: 60px !important;
}
.m64 {
  margin: 64px !important;
}
.m70 {
  margin: 70px !important;
}
.m75 {
  margin: 75px !important;
}
.mt0 {
  margin-top: 0px !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt45 {
  margin-top: 45px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mt55 {
  margin-top: 55px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mt64 {
  margin-top: 64px !important;
}
.mt70 {
  margin-top: 70px !important;
}
.mt75 {
  margin-top: 75px !important;
}
.mt100 {
  margin-top: 100px !important;
}
.mr0 {
  margin-right: 0px !important;
}
.mr5 {
  margin-right: 5px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.mr25 {
  margin-right: 25px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.mr35 {
  margin-right: 35px !important;
}
.mr40 {
  margin-right: 40px !important;
}
.mr45 {
  margin-right: 45px !important;
}
.mr50 {
  margin-right: 50px !important;
}
.mr55 {
  margin-right: 55px !important;
}
.mr60 {
  margin-right: 60px !important;
}
.mr64 {
  margin-right: 64px !important;
}
.mr70 {
  margin-right: 70px !important;
}
.mr75 {
  margin-right: 75px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb55 {
  margin-bottom: 55px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb64 {
  margin-bottom: 64px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mb75 {
  margin-bottom: 75px !important;
}
.ml0 {
  margin-left: 0px !important;
}
.ml5 {
  margin-left: 5px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.ml25 {
  margin-left: 25px !important;
}
.ml30 {
  margin-left: 30px !important;
}
.ml35 {
  margin-left: 35px !important;
}
.ml40 {
  margin-left: 40px !important;
}
.ml45 {
  margin-left: 45px !important;
}
.ml50 {
  margin-left: 50px !important;
}
.ml55 {
  margin-left: 55px !important;
}
.ml60 {
  margin-left: 60px !important;
}
.ml64 {
  margin-left: 64px !important;
}
.ml70 {
  margin-left: 70px !important;
}
.ml75 {
  margin-left: 75px !important;
}
.mtb0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.mtb5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
.mtb10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.mtb15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}
.mtb20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.mtb25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}
.mtb30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}
.mtb35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}
.mtb40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.mtb45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}
.mtb50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}
.mtb55 {
  margin-top: 55px !important;
  margin-bottom: 55px !important;
}
.mtb60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}
.mtb64 {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}
.mtb70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}
.mtb75 {
  margin-top: 75px !important;
  margin-bottom: 75px !important;
}
.mlr0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.mlr5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.mlr10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.mlr15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}
.mlr20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.mlr25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}
.mlr30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}
.mlr35 {
  margin-left: 35px !important;
  margin-right: 35px !important;
}
.mlr40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}
.mlr45 {
  margin-left: 45px !important;
  margin-right: 45px !important;
}
.mlr50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}
.mlr55 {
  margin-left: 55px !important;
  margin-right: 55px !important;
}
.mlr60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}
.mlr64 {
  margin-left: 64px !important;
  margin-right: 64px !important;
}
.mlr70 {
  margin-left: 70px !important;
  margin-right: 70px !important;
}
.mlr75 {
  margin-left: 75px !important;
  margin-right: 75px !important;
}
/* padding */
.p0 {
  padding: 0px !important;
}
.p5 {
  padding: 5px !important;
}
.p10 {
  padding: 10px !important;
}
.p15 {
  padding: 15px !important;
}
.p20 {
  padding: 20px !important;
}
.p25 {
  padding: 25px !important;
}
.p30 {
  padding: 30px !important;
}
.p35 {
  padding: 35px !important;
}
.p40 {
  padding: 40px !important;
}
.p45 {
  padding: 45px !important;
}
.p50 {
  padding: 50px !important;
}
.p55 {
  padding: 55px !important;
}
.p60 {
  padding: 60px !important;
}
.p64 {
  padding: 64px !important;
}
.p70 {
  padding: 70px !important;
}
.p75 {
  padding: 75px !important;
}
.p100 {
  padding: 100px !important;
}
.pt0 {
  padding-top: 0px !important;
}
.pt5 {
  padding-top: 5px !important;
}
.pt10 {
  padding-top: 10px !important;
}
.pt15 {
  padding-top: 15px !important;
}
.pt20 {
  padding-top: 20px !important;
}
.pt25 {
  padding-top: 25px !important;
}
.pt30 {
  padding-top: 30px !important;
}
.pt35 {
  padding-top: 35px !important;
}
.pt40 {
  padding-top: 40px !important;
}
.pt45 {
  padding-top: 45px !important;
}
.pt50 {
  padding-top: 50px !important;
}
.pt55 {
  padding-top: 55px !important;
}
.pt60 {
  padding-top: 60px !important;
}
.pt64 {
  padding-top: 64px !important;
}
.pt70 {
  padding-top: 70px !important;
}
.pt75 {
  padding-top: 75px !important;
}
.pt100 {
  padding-top: 100px !important;
}
.pr0 {
  padding-right: 0px !important;
}
.pr5 {
  padding-right: 5px !important;
}
.pr10 {
  padding-right: 10px !important;
}
.pr15 {
  padding-right: 15px !important;
}
.pr20 {
  padding-right: 20px !important;
}
.pr25 {
  padding-right: 25px !important;
}
.pr30 {
  padding-right: 30px !important;
}
.pr35 {
  padding-right: 35px !important;
}
.pr40 {
  padding-right: 40px !important;
}
.pr45 {
  padding-right: 45px !important;
}
.pr50 {
  padding-right: 50px !important;
}
.pr55 {
  padding-right: 55px !important;
}
.pr60 {
  padding-right: 60px !important;
}
.pr64 {
  padding-right: 64px !important;
}
.pr70 {
  padding-right: 70px !important;
}
.pr75 {
  padding-right: 75px !important;
}
.pr100 {
  padding-right: 100px !important;
}
.pr120 {
  padding-right: 120px !important;
}
.pb0 {
  padding-bottom: 0px !important;
}
.pb5 {
  padding-bottom: 5px !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pb15 {
  padding-bottom: 15px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.pb25 {
  padding-bottom: 25px !important;
}
.pb30 {
  padding-bottom: 30px !important;
}
.pb35 {
  padding-bottom: 35px !important;
}
.pb40 {
  padding-bottom: 40px !important;
}
.pb45 {
  padding-bottom: 45px !important;
}
.pb50 {
  padding-bottom: 50px !important;
}
.pb55 {
  padding-bottom: 55px !important;
}
.pb60 {
  padding-bottom: 60px !important;
}
.pb64 {
  padding-bottom: 64px !important;
}
.pb70 {
  padding-bottom: 70px !important;
}
.pb75 {
  padding-bottom: 75px !important;
}
.pb100 {
  padding-bottom: 100px !important;
}
.pl0 {
  padding-left: 0px !important;
}
.pl5 {
  padding-left: 5px !important;
}
.pl10 {
  padding-left: 10px !important;
}
.pl15 {
  padding-left: 15px !important;
}
.pl20 {
  padding-left: 20px !important;
}
.pl25 {
  padding-left: 25px !important;
}
.pl30 {
  padding-left: 30px !important;
}
.pl35 {
  padding-left: 35px !important;
}
.pl40 {
  padding-left: 40px !important;
}
.pl45 {
  padding-left: 45px !important;
}
.pl50 {
  padding-left: 50px !important;
}
.pl55 {
  padding-left: 55px !important;
}
.pl60 {
  padding-left: 60px !important;
}
.pl64 {
  padding-left: 64px !important;
}
.pl70 {
  padding-left: 70px !important;
}
.pl75 {
  padding-left: 75px !important;
}
.pl100 {
  padding-left: 100px !important;
}
.ptb0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.ptb5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.ptb10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.ptb15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.ptb20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.ptb25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}
.ptb30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.ptb35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}
.ptb40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.ptb45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}
.ptb50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
.ptb55 {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}
.ptb60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.ptb64 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}
.ptb70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}
.ptb75 {
  padding-top: 75px !important;
  padding-bottom: 75px !important;
}
.ptb100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
.plr0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.plr5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.plr10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.plr15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.plr20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.plr25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}
.plr30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.plr35 {
  padding-left: 35px !important;
  padding-right: 35px !important;
}
.plr40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
.plr45 {
  padding-left: 45px !important;
  padding-right: 45px !important;
}
.plr50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}
.plr55 {
  padding-left: 55px !important;
  padding-right: 55px !important;
}
.plr60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.plr64 {
  padding-left: 64px !important;
  padding-right: 64px !important;
}
.plr70 {
  padding-left: 70px !important;
  padding-right: 70px !important;
}
.plr75 {
  padding-left: 75px !important;
  padding-right: 75px !important;
}
.plr100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}
.radius-2 {
  border-radius: 2px !important;
}
.radius-4 {
  border-radius: 4px !important;
}
.radius-8 {
  border-radius: 8px !important;
}
/* font-size */
.font12 {
  font-size: 12px !important;
}
.font14 {
  font-size: 14px !important;
}
.font16 {
  font-size: 16px !important;
}
.font18 {
  font-size: 18px !important;
}
.font20 {
  font-size: 20px !important;
}
.font22 {
  font-size: 22px !important;
}
.font24 {
  font-size: 24px !important;
}
.font28 {
  font-size: 28px !important;
}
.font30 {
  font-size: 30px !important;
}
.font32 {
  font-size: 32px !important;
}
.font36 {
  font-size: 36px !important;
}
.font50 {
  font-size: 50px !important;
}
.font60 {
  font-size: 60px !important;
}
.font64 {
  font-size: 64px !important;
}
.colorred {
  color: #F00 !important;
}
.color999 {
  color: #999 !important;
}
.cl-f67f00 {
  color: #f67f00 !important;
}
.cl-cad9e5 {
  color: #cad9e5 !important;
}
.cl-0ec5a1 {
  color: #0ec5a1 !important;
}
.cl-fff {
  color: #fff !important;
}
.cl-222 {
  color: #222 !important;
}
.cl-333 {
  color: #333 !important;
}
.cl-666 {
  color: #666 !important;
}
.cl-999 {
  color: #999 !important;
}
.cl-ccc {
  color: #ccc !important;
}
.cl-22ab39 {
  color: #22ab39 !important;
}
.cl-eb7350 {
  color: #eb7350 !important;
}
.cl-dee3eb {
  color: #dee3eb !important;
}
.bold {
  font-weight: bold;
}
.nbold {
  font-weight: normal;
}
.cl-red {
  color: #f00 !important;
}
.cl-white {
  color: #fff !important;
}
.cl-green {
  color: #00a65a !important;
}
.cl-5bc0de {
  color: #5bc0de !important;
}
.bg-red {
  background: #cb1c1c !important ;
}
.bg-orange {
  background-color: #fe6c00 !important;
}
.bg-yellow {
  background: #e9b000 !important ;
}
.bg-green {
  background-color: #539b23 !important;
}
.bg-purple {
  background: #7a27b7 !important ;
}
.bg-pink {
  background: #c63fab !important ;
}
.bg-cyan {
  background: #07a6b7 !important ;
}
.bg-blue {
  background-color: #005ceb !important;
}
.bg-brown {
  background: #6b3012 !important ;
}
.bg-black {
  background: #000 !important ;
}
.bg-f67f00 {
  background: #f67f00 !important;
}
.bg-f2f2f5 {
  background: #f2f2f5 !important;
}
.bg-5bc0de {
  background: #5bc0de !important;
}
.bg-26cad3 {
  background: #26cad3 !important;
}
.bg-white {
  background: #fff !important;
}
.bg-lightorange {
  background-color: #f0ad4e !important;
}
.bg-aqua {
  background-color: #04c1c4 !important;
}
.bg-darkblue {
  background-color: #5867dd !important;
}
.bg-darkred {
  background-color: #d9534f !important;
}
.bg-gray {
  background-color: gray !important;
}
.bg-ccc {
  background: #ccc !important;
}
.bg-ddd {
  background: #ddd !important;
}
.bg-eee {
  background: #eee !important;
}
.bg-999 {
  background: #999 !important;
}
.bg-666 {
  background: #666 !important;
}
.bg-0ec5a1 {
  background: #0ec5a1 !important;
}
.bg-f9f9f9 {
  background: #f9f9f9 !important;
}
.bg-eaedf1 {
  background: #eaedf1 !important;
}
.bg-f7f8fa {
  background: #f7f8fa !important;
}
/* border */
.bd-0 {
  border: 0px !important;
}
.bd-1 {
  border: 1px !important;
}
.bd-2 {
  border: 2px !important;
}
.bd-3 {
  border: 3px !important;
}
.bd-4 {
  border: 4px !important;
}
.bd-5 {
  border: 5px !important;
}
.bd-6 {
  border: 6px !important;
}
.bd-7 {
  border: 7px !important;
}
.bd-8 {
  border: 8px !important;
}
.bd-9 {
  border: 9px !important;
}
.bd-10 {
  border: 10px !important;
}
.bd-20 {
  border: 20px !important;
}
.bd-top-0 {
  border-top: 0px !important;
}
.bd-top-1 {
  border-top: 1px !important;
}
.bd-top-2 {
  border-top: 2px !important;
}
.bd-top-3 {
  border-top: 3px !important;
}
.bd-top-4 {
  border-top: 4px !important;
}
.bd-top-5 {
  border-top: 5px !important;
}
.bd-top-6 {
  border-top: 6px !important;
}
.bd-top-7 {
  border-top: 7px !important;
}
.bd-top-8 {
  border-top: 8px !important;
}
.bd-top-9 {
  border-top: 9px !important;
}
.bd-top-10 {
  border-top: 10px !important;
}
.bd-right-0 {
  border-right: 0px !important;
}
.bd-right-1 {
  border-right: 1px !important;
}
.bd-right-2 {
  border-right: 2px !important;
}
.bd-right-3 {
  border-right: 3px !important;
}
.bd-right-4 {
  border-right: 4px !important;
}
.bd-right-5 {
  border-right: 5px !important;
}
.bd-right-6 {
  border-right: 6px !important;
}
.bd-right-7 {
  border-right: 7px !important;
}
.bd-right-8 {
  border-right: 8px !important;
}
.bd-right-9 {
  border-right: 9px !important;
}
.bd-right-10 {
  border-right: 10px !important;
}
.bd-bottom-0 {
  border-bottom: 0px !important;
}
.bd-bottom-1 {
  border-bottom: 1px !important;
}
.bd-bottom-2 {
  border-bottom: 2px !important;
}
.bd-bottom-3 {
  border-bottom: 3px !important;
}
.bd-bottom-4 {
  border-bottom: 4px !important;
}
.bd-bottom-5 {
  border-bottom: 5px !important;
}
.bd-bottom-6 {
  border-bottom: 6px !important;
}
.bd-bottom-7 {
  border-bottom: 7px !important;
}
.bd-bottom-8 {
  border-bottom: 8px !important;
}
.bd-bottom-9 {
  border-bottom: 9px !important;
}
.bd-bottom-10 {
  border-bottom: 10px !important;
}
.bd-left-0 {
  border-left: 0px !important;
}
.bd-left-1 {
  border-left: 1px !important;
}
.bd-left-2 {
  border-left: 2px !important;
}
.bd-left-3 {
  border-left: 3px !important;
}
.bd-left-4 {
  border-left: 4px !important;
}
.bd-left-5 {
  border-left: 5px !important;
}
.bd-left-6 {
  border-left: 6px !important;
}
.bd-left-7 {
  border-left: 7px !important;
}
.bd-left-8 {
  border-left: 8px !important;
}
.bd-left-9 {
  border-left: 9px !important;
}
.bd-left-10 {
  border-left: 10px !important;
}
.box-shadow {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}
.bd-cl-eee {
  border: 1px solid #eee !important;
}
.bd-20 {
  border: 1px solid #eee !important;
}
.bd-eee {
  border: 1px solid #eee !important;
}
.bd-dee3eb {
  border: 1px solid #dee3eb !important;
}
.bd-t-eee {
  border-top: 1px solid #eee;
}
.bd-bottom-eee {
  border-bottom: 1px solid #eee;
}
.bd-solid {
  border-style: solid;
}
.bd-dashed {
  border-style: dashed;
}
.bd-dotted {
  border-style: dotted;
}
.bd-double {
  border-style: double;
}
.bd-inset {
  border-style: inset;
}
.bd-outset {
  border-style: outset;
}
.bd-ridge {
  border-style: ridge;
}
.bd-radius-3 {
  border-radius: 3px;
}
.bd-radius-4 {
  border-radius: 4px;
}
.bd-radius-5 {
  border-radius: 5px;
}
.bd-radius-50 {
  border-radius: 50%;
}
.bd-shadow {
  border: 1px solid #E5E8ED;
  box-shadow: 0 2px 4px 0 rgba(3, 27, 78, 0.06);
}
.bd-gray {
  border: 1px solid #DEE3EB;
}
.da-service {
  margin: 0 auto;
  width: 100%;
  font-size: 14px;
}
.da-service .grid {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.da-service .grid th {
  border: 1px solid #ff8e00;
  background: #ffefda;
  height: 33px;
  color: #666;
}
.da-service .grid .left-th {
  color: #666;
  font-weight: bold;
}
.da-service .grid td {
  border: 1px solid #fdc277;
  height: 42px;
}
.info-box {
  background: var(--module-background);
  position: absolute;
  box-sizing: border-box;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  min-width: 80px;
  height: auto;
  line-height: 23px;
  font-size: 12px;
  text-align: left;
  cursor: default;
  z-index: 1000000;
  display: none;
}
.tooltip-box {
  background: #2c2c2c;
  position: absolute;
  box-sizing: border-box;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  height: auto;
  padding: 10px;
  line-height: 23px;
  font-size: 12px;
  text-align: left;
  cursor: default;
  z-index: 1000000;
  display: none;
  color: #fff;
}
.tooltip-box .tooltip_wrap {
  color: #fff;
}
.arrow-in {
  position: absolute;
  width: 0;
  height: 0;
}
.top-arrow-out {
  position: absolute;
  width: 0;
  height: 0;
  top: -9px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  border-bottom: 8px solid #cccccc;
}
.top-arrow-in {
  position: absolute;
  width: 0;
  height: 0;
  top: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #2c2c2c;
  z-index: 1000000000;
}
.right-arrow-out {
  position: absolute;
  width: 0;
  height: 0;
  right: -9px;
  bottom: 50px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #cccccc;
}
.right-arrow-in {
  position: absolute;
  width: 0;
  height: 0;
  right: -8px;
  bottom: 50px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #2c2c2c;
  z-index: 1000000000;
}
.bottom-arrow-out {
  position: absolute;
  width: 0;
  height: 0;
  bottom: -9px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #cccccc;
}
.bottom-arrow-in {
  position: absolute;
  width: 0;
  height: 0;
  bottom: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #2c2c2c;
  z-index: 1000000000;
}
.left-arrow-out {
  position: absolute;
  width: 0;
  height: 0;
  left: -9px;
  bottom: 50px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #cccccc;
}
.left-arrow-in {
  position: absolute;
  width: 0;
  height: 0;
  left: -8px;
  bottom: 50px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #2c2c2c;
  z-index: 1000000000;
}
.arrow-icon {
  position: absolute;
  width: 0;
  height: 0;
  left: 4px;
  bottom: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #cccccc;
}
.layer {
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 450px;
  height: 50px;
  -webkit-background-clip: padding;
  z-index: 2;
  border-radius: 2px;
}
.layer .layer-title {
  padding: 0 20px;
  border-bottom: 1px solid var(--default-border);
  height: 49px;
  line-height: 50px;
  color: #333;
  cursor: move;
}
.layer .layer-close {
  position: absolute;
  top: 0;
  right: 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #333;
  cursor: pointer;
  text-align: center;
}
.layer .layer-content {
  background: var(--module-background);
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  color: #333;
  position: relative;
}
.layer .layer-btngroup {
  position: absolute;
  bottom: 0px;
  border-top: 1px solid var(--default-border);
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  color: #333;
  cursor: pointer;
  text-align: right;
}
.layer .layer-btngroup input {
  margin-left: 5px;
}
.tips {
  background: #fff;
  position: fixed;
  border: 1px solid #ddd;
  width: 250px;
  height: 120px;
  line-height: 120px;
  -webkit-background-clip: padding;
  top: 40%;
  left: 50%;
  margin-top: -40px;
  margin-left: -125px;
  font-size: 14px;
  text-align: center;
  z-index: 1024;
}
.layer-del {
  height: 75px;
  line-height: 80px;
  text-align: center;
}
.modal-sm {
  padding: 20px 0;
  height: 75px;
  text-align: center;
}
/*å¼¹å‡ºå±‚*/
.layer-wrap .itemlist {
  padding: 0 30px;
  color: #808080;
}
.layer-wrap .itemlist li {
  position: relative;
  padding: 5px 5px 5px 60px;
}
.layer-wrap .itemlist li label {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
  width: auto;
  font-size: 12px;
  font-weight: normal;
  text-align: right;
  display: inline-block;
}
.layer-wrap .itemlist li input[type='text'] {
  padding: 0 !important;
  width: 70%;
  height: 30px !important;
}
.layer-wrap .itemlist li textarea {
  width: 70%;
}
.layer-wrap .itemlist li p {
  padding: 0 !important;
  margin: 0 !important;
}
/*å¤´åƒè®¾ç½®*/
.setphotos .tabs-btn {
  padding: 10px;
  text-align: center;
}
.setphotos .tabs-btn span {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #ddd;
}
.setphotos .tabs-btn span:nth-child(2) {
  border-left: 0;
  border-right: 0;
}
.setphotos .tabs-con {
  height: 360px;
}
.setphotos .tabs-con .tabsbox {
  height: 360px;
  display: none;
}
.setphotos .tabs-con .tabsbox .box-1 {
  background: #f2f2f5;
  position: relative;
  width: 360px;
  height: 360px;
  float: left;
}
.setphotos .tabs-con .tabsbox .box-1 .con-1 {
  padding: 155px 0;
  text-align: center;
}
.setphotos .tabs-con .tabsbox .upfilebtn {
  background: #ccc;
  margin: 0 auto;
  border: 1px solid #fff;
  width: 120px;
  height: 30px;
  color: #fff;
  cursor: pointer;
  text-align: center;
}
.setphotos .tabs-con .tabsbox input[type='file'] {
  display: none;
}
.setphotos .tabs-con .tabsbox .box-1 .con-2 {
  background: #d8edc7;
  width: 360px;
  height: 360px;
  text-align: center;
  display: none;
}
.setphotos .tabs-con .tabsbox .box-2 {
  background: #f2f2f5;
  width: 158px;
  height: 360px;
  font-size: 10px;
  color: #999;
  float: right;
  text-align: center;
}
.setphotos .tabs-con .tabsbox .box-2 p {
  margin: 0;
  padding: 0;
}
.setphotos .tabs-con .tabsbox .box-2 .canvas {
  border-radius: 50%;
}
.setphotos .tabs-con .tabsbox .box-2 img {
  border-radius: 50%;
}
.setphotos .rotate {
  position: absolute;
  right: 0;
  bottom: -40px;
  display: none;
}
.setphotos .reset-upload {
  position: absolute;
  left: 0;
  bottom: -40px;
  display: none;
}
.uploadfile {
  background: #f2f2f5;
  box-sizing: border-box;
  padding: 100px 0;
  width: 100%;
  height: 100%;
  float: left;
}
.uploadimg {
  background: #f2f2f5;
  box-sizing: border-box;
  padding: 100px 0;
  height: 100%;
  width: 470px;
  float: left;
}
.ablumimg {
  box-sizing: border-box;
  padding: 100px 0;
  width: 100%;
  height: 100%;
  float: left;
}
.ablumimg ul.articlealbum li {
  width: 184px;
}
.ablumimg ul li {
  position: relative;
  margin: 1px;
  width: 120px;
  height: 120px;
  color: #fff;
  text-align: center;
  float: left;
}
.ablumimg ul li.upfile {
  border: 2px dashed #ccc;
  line-height: 120px;
}
.ablumimg ul li img {
  width: 100%;
  height: 100%;
}
.ablumimg ul li .cover {
  background: rgba(0, 0, 0, 0.54);
  display: none;
  width: 100%;
  position: absolute;
  height: 100%;
}
.ablumimg ul li .cover .removeimg {
  position: absolute;
  right: 0;
}
.ablumimg ul li i.icon-icon4 {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 40px;
  height: 18px;
  color: #fff;
  font-size: 14px;
  padding: 2px;
}
.ablumimg ul li:hover .cover {
  display: block !important;
}
.upvideo {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  float: left;
}
.upvideo ul li {
  position: relative;
  margin: 1px;
  padding: 0 5px;
  padding-left: 50px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  color: #333;
}
.upvideo ul li label {
  position: absolute;
  left: 0;
}
.upvideo ul li input[type='text'] {
  width: 100%;
}
.upvideo ul li.upfile {
  border: 1px dashed #ccc;
}
.upvideo ul li img {
  width: 120px;
  height: 120px;
}
.upvideo ul li .cover {
  background: rgba(0, 0, 0, 0.54);
  display: none;
  width: 100%;
  position: absolute;
  height: 100%;
}
.upvideo ul li i.icon-icon4 {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 40px;
  height: 18px;
  color: #fff;
  font-size: 14px;
  padding: 2px;
}
.view {
  background: #f2f2f5;
  box-sizing: border-box;
  padding: 5px 0;
  width: 100px;
  height: 100%;
  font-size: 12px;
  text-align: center;
  float: right;
}
.uploadimg .upfiles,
.uploadfile .upfiles,
.ablumimg .upfiles,
.upvideo .upfiles {
  background: #ccc;
  margin: 0 auto;
  border: 1px solid #fff;
  width: 120px;
  height: 30px;
  color: #fff;
  cursor: pointer;
  text-align: center;
}
.uploadimg input[type='file'],
.uploadfile input[type='file'],
.ablumimg input[type='file'],
.upvideo input[type='file'] {
  display: none;
}
.view p {
  margin: 0;
  padding: 0;
}
.upphotos {
  background: #fff;
  display: inline-block;
  width: 100px;
  border: 1px solid #ccc;
  padding: 5px;
  cursor: pointer;
}
.iconlist {
  margin-bottom: 5px;
  position: relative;
}
.iconlist span {
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  right: 0;
  bottom: 0;
}
.iconlist span.current {
  background: url(../img/icon/is_select.png) no-repeat bottom right;
}
.currentImg {
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../img/icon/choose.gif) no-repeat bottom right;
  width: 15px;
  height: 15px;
}
.iconlist li.current {
  background: url(../img/icon/is_select.png) no-repeat bottom right;
  border: 1px solid #f00;
}
.iconlist p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-text-overflow: ellipsis;
  height: 50px;
}
.albumimg {
  background: #000;
  width: 100%;
  height: 100%;
}
.albumimg .albumdemo {
  position: relative;
  padding: 25px;
  text-align: center;
  width: 100%;
  height: 100%;
  float: left;
}
.albumimg .albumdemo .preg {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 50%;
  height: 100%;
  cursor: url(/source/public/images/pic_prev.cur), auto;
}
.albumimg .albumdemo .next {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 50%;
  height: 100%;
  cursor: url(/source/public/images/pic_next.cur), auto;
}
.albumimg .albumdemo .imgbox {
  width: 100%;
  height: 100%;
}
.albumimg .albumdemo .imgbox img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.albumimg .albumdemo .thumbList {
  background: rgba(46, 46, 46, 0.5);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 25px;
  padding: 10px;
  width: 100%;
}
.albumimg .albumdemo .thumbList li {
  margin: 5px;
  border: 1px solid #ccc;
  width: 50px;
  height: 50px;
  cursor: pointer;
  float: left;
}
.albumimg .albumdemo .thumbList li a {
  opacity: 0.5;
}
.albumimg .albumdemo .thumbList li a.current {
  opacity: 1;
}
.albumimg .albumdemo .thumbList li img {
  width: 100%;
  height: 100%;
}
.albumimg .albuminfo {
  background: #fff;
  box-sizing: border-box;
  width: 290px;
  height: 100%;
  float: left;
}
.albumimg .albuminfo .userinfo {
  position: relative;
  padding: 25px;
  padding-left: 100px;
  height: 100px;
}
.albumimg .albuminfo .userinfo img {
  position: absolute;
  left: 25px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.albumimg .albuminfo .content {
  border-bottom: 1px solid #f1f1f1;
  padding: 5px 25px;
}
.albumimg .albuminfo .tabs .nav-tabs {
  height: 25px;
}
.albumimg .albuminfo .tabs .nav-tabs .tabs-list {
  border: 0;
  border-right: 1px solid #eee;
  padding: 2px;
  width: 25%;
  height: 25px;
  text-align: center;
}
.albumimg .albuminfo .tabs .nav-tabs .tabs-list:last-child {
  border-right: 0;
}
.albumimg .albuminfo .tabs .tab-content {
  padding: 10px;
}
.msgcontent h3 {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
}
.msgcontent .trip {
  position: absolute;
  top: 0;
  padding: 5px;
  width: 450px;
  line-height: 23px;
  color: #999;
}
.msgcontent .errormsg {
  position: absolute;
  top: 0;
  padding: 0 5px;
  color: #f00;
}
/*.msgcontent li{
	position: relative;
	padding: 0px;
	height: 50px;
	line-height: 50px;
}*/
.msgcontent li.textarea {
  position: relative;
  padding: 5px;
  height: 150px;
  line-height: 50px;
}
.msgcontent li i.icon-huiyuan,
.msgcontent li i.icon-mima,
.msgcontent li i.icon-youxiang {
  position: absolute;
  left: 10px;
  color: #ddd;
}
.msgcontent li i.icon-guanbi {
  position: absolute;
  right: 10px;
  font-size: 12px;
  color: #ddd;
  cursor: pointer;
  display: none;
}
.msgcontent li i.icon-guanbi:hover {
  color: #999;
}
.msgcontent li input[type='text'],
.msgcontent li input[type='password'] {
  box-sizing: border-box;
  border: 1px solid #ddd;
  padding: 0 25px;
  width: 100%;
  height: 38px;
  line-height: 38px;
}
.msgcontent li input[type='button'] {
  background: #05c87a;
  border: 0;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
.msgcontent li textarea {
  box-sizing: border-box;
  border: 1px solid #ddd;
  padding: 0 25px;
  width: 100%;
  height: 148px;
  line-height: 38px;
}
.msgcontent .username {
  color: #0cc;
  font-weight: bold;
}
.msgcontent a {
  color: #5bc0de;
}
/*ç³»ç»Ÿåˆ†ç±»*/
.layer-cate {
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-y: auto;
  height: 350px;
  list-style-type: none;
}
.layer-cate li {
  padding: 2px;
  min-height: 25px;
}
.layer-cate li.h1 {
  background: #f9f9f9;
  padding: 10px;
  color: #333;
}
.layer-cate li.h1 span {
  color: #333;
  font-weight: bold;
}
.layer-cate li span {
  display: inline-block;
  padding: 0 10px;
  color: #999;
}
.layer-cate li span:first-child {
  padding-left: 0;
}
.layer-cate li span.redcolor {
  color: #f00;
}
.layer-cate li h4 {
  margin: 0;
  color: #000;
  font-weight: bold;
}
.iconfont {
  line-height: normal;
  margin: 5px;
  color: #999;
}
.icon-youxiang {
  font-size: 24px !important;
}
.icon-zhengque {
  color: #c4ea5f !important;
}
.icon-cuowu {
  color: #fc5959 !important;
}
.icon-fanhui2 {
  font-size: 20px !important;
  color: #adafb2;
}
.set-gray {
  color: #c0c0c0;
}
.icon-down {
  color: #696e78 !important;
  font-size: 12px !important;
}
.icon-add {
  color: #ccc;
}
.icon-iconfontemoji {
  color: #999 !important;
  font-size: 18px !important;
  font-weight: bold;
}
.icon-pic {
  color: #999;
}
.icon-topic {
  color: #999;
  font-size: 14px;
}
.icon-video {
  color: #999;
  font-weight: bold;
}
.icon-shezhi1 {
  color: #999;
  font-size: 18px !important;
}
.icon-youxiang {
  color: #999;
  font-size: 20px !important;
  font-weight: bold;
}
.icon-arrow {
  margin: 10px !important;
  font-size: 12px !important;
}
.icon-channel {
  font-size: 14px !important;
}
.icon-Prompt {
  font-size: 40px !important;
  color: #87c0da;
}
.icon-dot {
  margin: 0;
  font-size: 20px !important;
}
.icon-hot,
.icon-talk,
.icon-dot {
  color: #ccc;
}
.icon-male {
  color: #5fc2fa;
}
.icon-female {
  color: #f586b4;
}
.icon-right {
  color: #8cd52e;
}
.icon-guanbi {
  background: #fff;
  border-radius: 50%;
  font-size: 32px !important;
  color: #000000;
}
.icon-copy,
.icon-url,
.icon-recycle,
.icon-move {
  cursor: pointer;
}
.icon-checkbox {
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 2px;
  font-size: 20px !important;
  color: #999;
  z-index: 100000000000000000000000;
}
.icon-checkbox.current {
  background: #999;
  color: #fff;
}
.move-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 25px;
}
.move-arrow span {
  cursor: pointer;
  display: inline-block;
  width: 25px;
  height: 16px;
  text-align: center;
}
.move-arrow span i {
  color: #ccc;
}
.search {
  background: #fff;
  border: 1px solid #e8eaec;
  position: relative;
  width: 230px;
  font-size: 12px;
  height: 30px;
}
.search .searchinput {
  width: 190px;
  height: 30px;
}
.search .searchinput input {
  outline: none;
  border: 0;
  padding: 0 5px;
  width: 190px;
  height: 28px;
  color: #999;
}
.search .searchbtn {
  background: #f1f3f6;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  width: 40px;
  height: 28px;
}
.search .searchbtn .icon-sousuo {
  margin-top: -8px;
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  color: #ccc;
}
.search .searchbtn a {
  padding: 0;
}
.site_search {
  background: #fff;
  border: 2px solid #0ec5a1;
  position: relative;
  width: 230px;
  font-size: 12px;
  height: 40px;
}
.site_search .searchinput {
  width: 445px;
  height: 36px;
  line-height: 36px;
}
.site_search .searchinput input {
  outline: none;
  border: 0;
  padding: 0 5px;
  width: 190px;
  height: 36px;
  color: #999;
}
.site_search .searchbtn {
  background: #0ec5a1;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  width: 100px;
  height: 36px;
}
.site_search .searchbtn .icon-sousuo {
  margin-top: -8px;
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  color: #ccc;
}
.site_search .searchbtn a {
  padding: 0;
  height: 34px;
  line-height: 34px;
  color: #fff;
}
.site_key {
  padding-top: 5px;
  height: 30px;
  line-height: 30px;
  text-align: left;
}
.site_key a {
  padding: 0 30px 0 0;
  height: 30px;
  font-size: 14px;
  color: #999;
  display: inline;
}
.search-scroll {
  width: 100%;
  /*å•è¡Œæ˜¾ç¤ºï¼Œè¶…å‡ºéšè—*/
  height: 30px !important;
  /*å›ºå®šå…¬å‘Šæ&nbsp;æ˜¾ç¤ºåŒºåŸŸçš„é«˜åº¦*/
  overflow: hidden;
  position: relative;
}
.search-scroll .icons {
  position: absolute;
  top: 0;
  left: 0;
}
.search-scroll .statistics {
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
}
.search-scroll ul {
  height: 30px !important;
}
.search-scroll ul li {
  border: 0 !important;
  width: 100% !important;
  height: 30px !important;
  line-height: 30px !important;
  font-size: 14px !important;
  color: #fff !important;
  /*ä»¥ä¸‹ä¸ºäº†å•è¡Œæ˜¾ç¤ºï¼Œè¶…å‡ºéšè—*/
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left !important;
  overflow: hidden;
}
.search-scroll ul li a {
  height: 30px !important;
  font-size: 14px !important;
}
.site-search {
  background: rgba(255, 255, 255, 0.85);
  position: relative;
  display: flex;
  border-radius: 10px;
  width: 100%;
  font-size: 12px;
  height: 64px;
  line-height: 40px;
}
.site-search .searchinput {
  flex: 1;
  padding: 0;
  height: 64px;
  border-radius: 8px 0 0 8px;
}
.site-search .searchinput.light {
  border: 2px solid #5bc0de;
}
.site-search .searchinput.match {
  border-bottom: 1px solid #e8eaec;
  border-radius: 8px 0 0 0;
}
.site-search .searchinput input {
  background: none;
  border-radius: 10px;
  outline: none;
  border: 0;
  padding: 0 10px;
  width: 100%;
  height: 64px;
  font-size: 16px;
}
.site-search .searchinput input::placeholder {
  color: #999;
}
.site-search .searchinput .close {
  top: 0px;
  right: 125px;
  bottom: 0;
  padding-top: 10px;
}
.site-search .searchbtn {
  border-radius: 0 8px 8px 0;
  padding: 10px;
  width: 120px;
  height: 64px;
  line-height: 45px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.site-search .search-match {
  background: #fbfcff;
  border-radius: 10px;
  top: 67px;
  border-top: 0px;
  width: 580px;
  height: auto;
  display: none;
}
.grid-box {
  /*background: #314659 !important;*/
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  padding: 10px;
  display: grid;
  margin: 0 auto;
  width: 350px;
  height: 330px !important;
  grid-row-gap: 1px;
  grid-column-gap: 1px;
}
.grid {
  flex: 1 1;
  display: flex;
  color: #fff;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  padding: 0 2px;
  overflow: hidden;
}
.grid-green {
  background: rgba(90, 216, 166, 0.4);
  border: 1px solid #5ad8a6;
}
.grid-green-2 {
  background: rgba(90, 216, 166, 0.2);
  border: 1px solid rgba(90, 216, 166, 0.4);
}
.grid-blue {
  background: rgba(91, 143, 249, 0.4);
  border: 1px solid #5b8ff9;
}
.grid-1 {
  background: #70a531;
}
.grid-2 {
  background: #ff9a01;
}
.grid-3 {
  background: #8c4aae;
}
.grid-4 {
  background: #e7759e;
}
.grid-5 {
  background: #aa8659;
}
.grid-6 {
  background: #63a8e8;
}
.grid-7 {
  background: #607d8b;
}
.grid-8 {
  background: #e91e63;
}
.grid-9 {
  background: #9e9e9e;
}
.grid-blue-2 {
  background: rgba(38, 154, 153, 0.4);
  border: 1px solid #269a99;
}
.grid-yellow {
  background: rgba(246, 189, 22, 0.4);
  border: 1px solid #f6bd16;
}
.grid-yellow-1 {
  background: rgba(246, 189, 22, 0.2);
  border: 1px solid rgba(246, 189, 22, 0.4);
}
.grid-red {
  background: rgba(232, 104, 74, 0.4);
  border: 1px solid #e8684a;
}
.grid-red-2 {
  background: rgba(232, 104, 74, 0.2);
  border: 1px solid rgba(232, 104, 74, 0.4);
}
.load7 .loader,
.load7 .loader:before,
.load7 .loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.load7 .loader {
  color: #e1e1e1;
  font-size: 6px;
  margin: 0px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.load7 .loader:before,
.load7 .loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.load7 .loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.load7 .loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
.load1 .loader,
.load1 .loader:before,
.load1 .loader:after {
  background: #ccc;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.load1 .loader {
  color: #ccc;
  text-indent: -9999em;
  margin: 38px auto;
  position: relative;
  font-size: 5px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.load1 .loader:before,
.load1 .loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.load1 .loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.load1 .loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
.login-con {
  background: #eee;
  display: flex;
  margin: 0 auto;
  box-shadow: 1px 1px 5px #666;
  position: relative;
  top: 100px;
  width: 650px;
  height: 350px;
}
.login-con .login-left {
  background: #eee;
  position: relative;
  padding: 50px 75px;
  width: 250px;
  height: 100%;
  text-align: center;
}
.login-con .login-left .username {
  padding-top: 25px;
  width: 100px;
  height: 50px;
  line-height: 50px;
  color: #999;
  text-align: center;
}
.login-con .login-right {
  background: #fff;
  flex: 1;
  height: 100%;
  padding: 10px 25px;
}
.login-con .login-right h1 {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  font-weight: bold;
}
.login-con .login-right .agreement {
  color: #999;
}
.login-con .login-right .agreement a {
  color: #5bc0de;
}
.login-con .login-right ul {
  list-style-type: none;
}
.login-con .login-right ul li {
  position: relative;
  margin: 15px 0;
  height: 40px;
  line-height: 40px;
}
.login-con .login-right ul li i {
  position: absolute;
  left: 5px;
}
.login-con .login-right ul li label {
  font-weight: normal;
}
.login-con .login-right ul li span.codeinput {
  position: absolute;
  left: 0px;
  width: 100px;
}
.login-con .login-right ul li span.codeimg {
  display: inline-block;
  width: 95px;
  float: left;
}
.login-con .login-right ul li span.codeerror {
  display: inline-block;
  width: 100px;
  float: right;
  text-align: center;
}
.login-con .login-right ul li input {
  padding-left: 25px;
  width: 100%;
  height: 40px;
}
.login-con .login-right ul li.li {
  position: relative;
  padding-left: 105px;
  overflow: hidden;
}
.login-con .login-right ul li.li input {
  padding-left: 5px;
}
.login-con .login-right ul li.message {
  height: 20px;
  margin: 0;
  line-height: 20px;
  font-size: 12px;
  color: #f00;
}
.login-con.layer-login {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -400px;
  margin-top: -225px;
  width: 800px;
  height: 450px;
}
.login-con.layer-login .close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.login-con.layer-login .close i {
  font-size: 18px;
  cursor: pointer;
}
.login-con.layer-login .login-left {
  background: #5bc0de;
  position: relative;
  padding: 50px;
  width: 300px;
  height: 450px;
}
.login-con.layer-login .login-left h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}
.login-con.layer-login .login-left h3 span {
  padding: 0 5px;
  color: #f9f9f9;
}
.login-con.layer-login .login-left .title {
  text-align: center;
  color: #f9f9f9;
}
.login-con.layer-login .login-left ul {
  margin-top: 25px;
}
.login-con.layer-login .login-left ul li {
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
}
.login-con.layer-login .login-left ul li i {
  color: #fff;
}
.login-con.layer-login .login-right {
  background: #fff;
  flex: 1;
  height: 100%;
  padding: 10px 25px;
}
@-webkit-keyframes loginflash {
  0% {
    left: 0px;
  }
  100% {
    left: 200px;
  }
}
.logins {
  -webkit-animation: loginflash 1s;
  /* Safari and Chrome */
  -webkit-transform: rotateX(0deg);
  /* Safari and Chrome */
}
.mask {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 101;
}
.editor-wrap .editor-button {
  display: inline-block;
  padding: 4px;
}
.editor-wrap .editor-button li {
  display: inline-block;
  border-radius: 2px;
  min-width: 32px;
  height: 32px;
  margin-right: 8px;
  line-height: 30px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
.editor-wrap .editor-button li:hover {
  background: var(--tool-hover-background);
  border-color: #1890ff;
}
.editor-wrap .editor-button li.current {
  background: var(--tool-hover-background) !important;
  color: #1890ff;
  border-color: #1890ff;
}
.editor-wrap .editor-button .title li {
  display: block;
}
.markdown a {
  color: #3eaf7c;
}
.markdown table {
  overflow-x: auto;
  border-collapse: collapse;
}
.markdown table th {
  background: #ddd;
  border: 1px solid #fff;
  padding: 10px;
}
.markdown table td {
  border: 1px solid #dfe2e5;
  padding: 10px;
}
.progress_bar {
  background: #E9EAEF;
  position: relative;
  top: 8px;
  width: 100%;
  height: 4px;
  cursor: pointer;
}
.progress_bar .time_bar {
  background: #0277bd;
  width: 0%;
  height: 4px;
  cursor: pointer;
}
.progress_bar .box {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #d7d9e0;
  top: -4px;
  cursor: pointer;
}
.sound_bar {
  background: #aaa;
  position: relative;
  top: 8px;
  width: 120px;
  height: 4px;
  cursor: pointer;
}
.sound_bar .sound_innbar {
  background: #0277bd;
  width: 0%;
  height: 4px;
  cursor: pointer;
}
.sound_bar .sound_box {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #0277bd;
  top: -4px;
  cursor: pointer;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.Rotation {
  -webkit-transform: rotate(360deg);
  animation: rotation 3s linear infinite;
  -moz-animation: rotation 3s linear infinite;
  -webkit-animation: rotation 3s linear infinite;
  -o-animation: rotation 3s linear infinite;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }
  /* åˆå§‹çŠ¶æ€ */
  100% {
    transform: rotate(360deg);
  }
  /* ç»“æŸçŠ¶æ€ */
}
.toper {
  background: #f2f2f2;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  color: #999;
}
.toper .toper-wrap {
  position: relative;
  margin: 0 auto;
  padding: 0 200px 0 220px;
  height: 30px;
}
.toper .toper-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 30px;
}
.toper .toper-left a {
  font-size: 12px;
  text-align: left;
}
.toper .toper-content {
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: left;
}
.toper .toper-right {
  position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  text-align: right;
  float: right;
}
.toper .toper-right a {
  display: inline-block;
  padding: 0 10px;
  font-size: 12px;
  text-align: center;
}
.toper ul {
  height: 30px;
  line-height: 30px;
}
.toper ul li {
  display: inline-block;
  height: 30px;
  color: #333;
}
.toper ul li.morenav {
  padding: 0 20px;
}
header {
  background: var(--module-background);
  z-index: 10;
  width: 100%;
  min-height: 75px;
  line-height: 75px;
  font-size: 14px;
  color: #999;
}
header.head-fixed {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
}
header .head-wrap {
  display: flex;
  margin: 0 auto;
  height: 75px;
}
header.customize {
  box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.05);
}
header h1 {
  margin: 0;
}
header h1 .guide {
  background: url(/source/public/images/guide.png);
  background-size: cover;
  top: 75px;
  left: -25px;
  padding: 30px;
  padding-top: 65px;
  width: 455px;
  height: 140px;
  line-height: normal;
}
header h1 .guide p {
  padding-top: 10px;
  font-size: 12px;
  color: #666;
  text-indent: 20px;
}
header h1 .guide p a {
  display: inline;
  font-size: 12px !important;
  color: #f00 !important;
  cursor: pointer;
}
header h1 .guide p a i {
  margin: 0 !important;
}
header h1 .i {
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: normal;
  animation-name: rotate-animation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  /* æ—&nbsp;é™æ¬¡é‡å¤åŠ¨ç”» */
  animation-timing-function: linear;
  /* çº¿æ€§å˜åŒ–é€Ÿåº¦æ›²çº¿ */
}
header h1 .i i {
  color: #5bc0de;
}
header .header-left {
  width: 220px;
  height: 75px;
  line-height: 75px;
}
header .header-left.logo {
  font-weight: bold;
}
header .header-left.logo a {
  padding: 0;
  font-size: 18px;
  color: #fff;
  text-align: left;
}
header .header-content {
  flex: 1;
  height: 75px;
  line-height: 75px;
  text-align: left;
}
header .header-right {
  display: flex;
  justify-content: flex-end;
  width: 250px;
  height: 75px;
  line-height: 75px;
  text-align: right;
}
header .blog-login li,
header .blog-login a {
  color: #fff;
}
header ul {
  display: flex;
  height: 75px;
  line-height: 75px;
}
header ul li {
  display: block;
  height: 75px;
  color: var(--default-font);
}
header ul li.secondary .position-a {
  display: inline;
}
header ul li.secondary.secondary &gt; a:after {
  z-index: 3;
  width: 0;
  content: '';
  position: absolute;
  height: 3px;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
  border-radius: 2px;
}
header ul li.secondary:hover.secondary &gt; a {
  color: #5bc0de;
}
header ul li.secondary:hover.secondary &gt; a:after {
  background-color: #fa4633;
  width: 60%;
  background-color: #5bc0de;
  z-index: 4;
}
header ul li.secondary .secondary-wrap {
  background-color: #fff;
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 75px;
  left: 50%;
  margin-left: -250px;
  border-radius: 4px;
  padding: 20px;
  width: auto;
  height: 300px;
  display: none;
  overflow: hidden;
  z-index: 1;
}
header ul li.secondary .secondary-wrap .title {
  position: relative;
  padding-left: 6px;
  color: #5bc0de;
}
header ul li.secondary .secondary-wrap .title:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 2px;
  height: 12px;
  border-radius: 2px;
  background-color: #5bc0de;
}
header ul li.secondary .secondary-wrap ul {
  display: block;
  height: auto;
}
header ul li.secondary .secondary-wrap ul li {
  width: 100%;
  height: 50px;
}
header ul li.secondary .secondary-wrap a {
  display: block;
  height: 50px;
  line-height: 30px;
  font-size: 14px;
}
header ul li.secondary .secondary-wrap a:hover {
  background: #f8f8fa;
}
header ul li.secondary .search-wrap {
  background-color: #fff;
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 75px;
  right: 0;
  border-radius: 4px;
  width: auto;
  height: 265px;
  display: none;
  overflow: hidden;
}
header ul li.secondary .search-wrap .search-input {
  position: relative;
  margin-bottom: 25px;
  padding: 10px 30px 11px 18px;
  font-size: 16px;
  color: #bababa;
  line-height: 24px;
  border-bottom: 1px solid #5bc0de;
}
header ul li.secondary .search-wrap .search-input i {
  position: absolute;
  top: 14px;
  left: -8px;
  font-size: 18px;
  color: #5bc0de;
}
header ul li.secondary .search-wrap .search-input input {
  width: 100%;
  border: 0;
  line-height: 36px;
}
header ul li.secondary .search-wrap .search-input .search-button {
  position: absolute;
  top: 14px;
  right: 0;
  color: #5bc0de;
  cursor: pointer;
}
header ul li.secondary .search-wrap .hot-search a {
  padding: 5px 10px;
  width: auto;
  height: auto;
  font-size: 12px;
}
header ul li.secondary .search-wrap .hot-search a:hover {
  border: 1px solid #5bc0de;
  color: #5bc0de !important;
}
header ul li.secondary:hover .secondary-wrap {
  display: block;
}
header ul li.more {
  z-index: 100;
  padding: 0 20px;
}
header ul li.more:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: #ff5a00;
  right: 10px;
  top: 50%;
  margin-top: -6px;
}
header ul li.more .morelist {
  background-color: #fff;
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 75px;
  right: -50px;
  border-radius: 4px;
  padding: 20px;
  width: 350px;
  height: auto;
  display: none;
}
header ul li.more .morelist .icon-wrap {
  border-radius: 4px;
  width: 50px;
  height: 50px;
  line-height: 60px;
  display: inline-block;
}
header ul li.more .morelist ul {
  display: block;
  height: auto;
}
header ul li.more .morelist ul li {
  padding: 5px;
  width: 100%;
  height: 50px;
}
header ul li.more .morelist a {
  display: block;
  padding: 0;
  line-height: normal;
  font-size: 14px;
}
header ul li.more .morelist a:hover {
  color: #5bc0de;
}
header ul li.more:hover .morelist {
  display: block;
}
header ul li:hover .menu {
  position: absolute;
  background: #f3f1f4;
  display: block !important;
  height: auto;
  z-index: 10;
}
header ul li:hover .menu .name {
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
header ul li:hover .menu .menu-box {
  padding: 10px;
}
header ul li:hover .menu .menu-box a {
  padding: 5px;
  width: auto;
  height: 40px;
  line-height: 20px;
  font-size: 14px;
  text-align: left;
  float: left;
}
header ul li:hover .nav-box {
  background: var(--link-hover-background);
  transition: all 0.3s;
}
header ul li .nav-box {
  border-radius: 4px;
  padding: 0 10px;
  line-height: 40px;
}
header ul .login {
  width: 80px;
  color: #fff;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 1s;
}
header ul .login i,
header ul .login a {
  color: #5bc0de !important;
}
header ul .register {
  width: 80px;
  text-align: center;
  cursor: pointer;
}
header a {
  padding: 0 16px;
  width: 100%;
  height: 75px;
  font-size: 16px;
  color: var(--default-font);
  text-align: center;
  display: block;
}
header a:hover {
  text-decoration: none;
}
header a.curret {
  color: #c0d2d8;
}
.sliddown {
  position: fixed;
  top: -120px;
  left: 0;
  width: 100%;
  height: 75px;
  font-size: 16px;
  box-shadow: 0 0 5px #888;
  z-index: 100000;
  -webkit-transition: 1s;
}
.sliddown li {
  height: 75px;
}
.sliddown li.logo {
  width: 150px;
  font-size: 24px;
  font-weight: bold;
}
.sliddown li.logo a {
  font-size: 24px;
  padding: 0;
  color: #0ec5a1;
  text-align: left;
}
.sliddown li.title {
  font-size: 16px;
  font-weight: bold;
}
.sliddown li.title h2 {
  font-size: 18px;
}
.sliddown a {
  display: inline-block;
  width: 100%;
  height: 75px;
  line-height: 75px;
  color: #a9a9a9;
  text-align: center;
}
.sliddown a .current {
  background: #f10582;
  color: #333;
}
.sliddown a:hover {
  color: #b10108;
}
.navlist ul li {
  position: relative;
  padding: 0 10px;
  line-height: 25px;
  float: left;
}
.navlist ul li a {
  font-size: 14px;
  color: #666;
}
.navlist ul li a.current {
  color: #ff3514;
  font-weight: bold;
}
.navlist ul li:hover .cover {
  display: block !important;
}
.navlist ul li .cover {
  background: rgba(0, 0, 0, 0.54);
  display: none;
  width: 100%;
  line-height: 140px;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  color: #fff;
  font-size: 16px;
}
.navlist ul li .cover a {
  color: #fff;
}
.navlist ul li:hover .cover1 {
  display: block !important;
  background: rgba(0, 0, 0, 0.6);
  color: #ccc;
}
.navlist ul li:hover .cover1 .title {
  display: block !important;
}
.navlist ul li .cover1 {
  background: rgba(0, 0, 0, 0.3);
  padding-top: 60px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  color: #fff;
  text-align: center;
  font-size: 14px;
}
.navlist ul li .cover1 .title {
  position: absolute;
  bottom: 5px;
  width: 100%;
  line-height: 40px;
}
.navlist ul li .cover1 a {
  color: #fff;
}
.recommend-nav {
  height: auto;
  margin: 0 auto;
  display: flex;
}
.recommend-nav dl {
  border-right: 1px solid #eee;
  display: flex;
  margin: 1px;
  width: 300px;
  height: auto;
  flex: 1;
}
.recommend-nav dl dt {
  width: 100px;
  padding: 0 15px;
  height: 100px;
  text-align: center;
}
.recommend-nav dl dt a {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  padding: 15px 0;
  color: #666;
  font-size: 16px;
  font-weight: 600;
  height: 100px;
}
.recommend-nav dl dt a .icon,
.recommend-nav dl dt a .text {
  flex: 1;
  height: 25px;
}
.recommend-nav dl dt a i {
  font-size: 20px;
}
.recommend-nav dl dd {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
  height: auto;
}
.recommend-nav dl dd a {
  padding: 0 12px;
  width: auto;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  font-size: 14px;
  color: #333;
}
.recommend-nav dl dd a i {
  color: #ccc;
}
.recommend-nav dl dd a i.icon-html {
  color: #e54d26;
}
.recommend-nav dl dd a i.icon-css {
  font-size: 14px;
  color: #0070bd;
}
.recommend-nav dl dd a i.icon-nodejs {
  color: #91c53f;
}
.recommend-nav dl dd a i.icon-webpack {
  color: #94d4f4;
}
.recommend-nav dl dd a i.icon-react {
  color: #62dafc;
}
.recommend-nav dl dd a i.icon-vue {
  color: #43b884;
}
.recommend-nav dl dd a i.icon-antdesign {
  color: #338bff;
}
.recommend-nav dl dd a i.icon-eleme {
  color: #1ca3ff;
}
.recommend-nav dl dd a i.icon-imooc {
  color: #e01a33;
}
.recommend-nav dl:last-child {
  border-right: 0;
}
.slide-wrap {
  display: flex;
  height: 150px !important;
}
.slide-wrap .prevbtn,
.slide-wrap .nextbtn {
  display: flex;
  align-items: center;
  width: 50px;
  height: 150px;
}
.slide-wrap .slide-content {
  display: flex;
  flex: 1;
  overflow: hidden;
  height: 150px;
  color: #fff;
}
.slide-wrap .slide-content li {
  position: relative;
  margin: 0 8px;
  border-radius: 8px;
  flex: 1;
  height: 150px;
  line-height: 150px;
  text-align: center;
  font-size: 24px;
  transition: all 0.3s;
  overflow: hidden;
}
.slide-wrap .slide-content li .background-mask {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.slide-wrap .slide-content li .background-mask img {
  width: 100%;
  height: 100%;
  filter: blur(60px);
}
.slide-wrap .slide-content li a {
  display: block;
  height: 150px;
  color: #fff;
  transition: all 0.3s;
}
.slide-wrap .slide-content li a:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.slide-wrap .slide-content li:nth-child(1) {
  background-color: #689f38;
}
.slide-wrap .slide-content li:nth-child(1) .button {
  color: #689f38;
}
.slide-wrap .slide-content li:nth-child(2) {
  background-color: #3b94ff;
}
.slide-wrap .slide-content li:nth-child(2) .button {
  color: #3b94ff;
}
.slide-wrap .slide-content li:nth-child(3) {
  background-color: #ff4e49;
}
.slide-wrap .slide-content li:nth-child(3) .button {
  color: #ff4e49;
}
.slide-wrap .slide-content li:nth-child(4) {
  background-color: #44b2ec;
}
.slide-wrap .slide-content li:nth-child(4) .button {
  color: #44b2ec;
}
.slide-wrap .slide-content li:nth-child(5) {
  background-color: #edb9d6;
}
.slide-wrap .slide-content li:nth-child(5) .button {
  color: #edb9d6;
}
.slide-wrap .slide-content li:nth-child(6) {
  background-color: #cbb5e2;
}
.slide-wrap .slide-content li:nth-child(6) .button {
  color: #cbb5e2;
}
.slide-wrap .slide-content li .title {
  font-size: 20px;
  font-weight: 600;
}
.slide-wrap .slide-content li .book-author {
  margin-top: 5px;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.slide-wrap .slide-content li .button {
  margin-top: 25px;
  text-align: center;
  background-color: #fff;
  font-weight: 600;
  padding: 8px;
  font-size: 14px;
  border-radius: 20px;
}
.naver {
  width: 100%;
  height: 40px;
  line-height: 30px;
  font-size: 14px;
  color: #999;
}
.naver .naver-wrap {
  position: relative;
  margin: 0 auto;
  height: 40px;
}
.naver .naver-wrap .naverlist {
  height: 40px;
  line-height: 40px;
}
.naver .naver-wrap .naverlist li {
  float: left;
  height: 40px;
}
.naver .naver-wrap .naverlist li a {
  display: block;
  padding: 0 20px;
  font-family: "Microsoft YaHei";
  font-size: 16px;
  color: #333;
  text-align: left;
}
.naver .naver-wrap .naverlist li a:hover {
  background: #5bc0de;
  color: #fff;
}
/*.sidebar{
	background:#000;
	z-index: 10000000000000;
	position:fixed; top:0;
	right:0; bottom:0;
	width:35px;
	.sidebar-wrap{
		position: absolute;
		bottom: 20px;
		right: 0;
		display: none;
		text-align: center;
		img{
			border: none;
			width: 70px;
		}
		ul{
			width: 35px;
			minn-height: 195px;
			li{
				border-bottom: 1px solid #808080;
				padding: 5px;
				width: 35px;
				height: auto;
				i{
					display: block;
					font-size: 16px;
					color: #fff;
				}
				span{
					display: block;
				}
				a{
					color: #fff;
				}
				&amp;:hover{
					background: #0ec5a1;
					color: #fff !important;
					i{
						color: #fff;
					}
					a{
						color: #fff;
					}
				}
				&amp;.wx{
					position: relative;
					.qr{
						position: absolute;
						left: -140px;
						bottom: 0;
						background: #0ec5a1;
						box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.3), 0 0 6px 2px rgba(0, 0, 0, 0.15);
						padding: 20px;
						color: #fff;
						img{
							width: 100px;
						}
					}
				}
				&amp;:last-child{
					border-bottom: 0;
				}
			}
		}
	}

}*/
.left-sidebar {
  width: 150px;
  min-height: 700px;
}
.left-sidebar .sidebar {
  min-height: 500px;
}
.left-sidebar .aside_nav {
  width: 150px;
  min-height: 700px;
}
.left-sidebar .concern {
  padding: 0 32px;
}
.left-sidebar .photoslist {
  width: 100%;
  height: 265px;
}
.left-sidebar .photoslist li {
  padding: 5px !important;
  width: 50%;
  height: 125px;
  line-height: 40px;
  font-size: 14px;
  float: left;
}
.left-sidebar .photoslist li a {
  padding: 0 15px;
  display: block;
  color: #fff;
}
.left-sidebar .photoslist li a i {
  color: #fff !important;
}
.left-sidebar .photoslist li a:hover {
  background: rgba(241, 243, 246, 0.5);
  text-decoration: none;
}
.left-sidebar .photoslist li a.current {
  background: #5bc0de;
  color: #999;
}
.left-sidebar .photoslist li:first-child {
  position: relative;
}
.left-sidebar .photoslist:after {
  content: '';
  clear: both;
}
.left-sidebar li {
  width: auto;
  height: auto;
  line-height: 40px;
  font-size: 14px;
}
.left-sidebar li a {
  padding: 0 15px;
  display: block;
  color: #fff;
}
.left-sidebar li a i {
  color: #fff !important;
}
.left-sidebar li a:hover {
  background: rgba(241, 243, 246, 0.5);
  text-decoration: none;
}
.left-sidebar li a.current {
  background: #5bc0de;
  color: #999;
}
.left-sidebar li:first-child {
  position: relative;
}
.left-sidebar li.brand-infor {
  padding: 10px;
  width: 180px;
}
.main-center {
  width: 1040px;
  height: auto;
  /*margin-left: 190px;*/
}
.module-wrap {
  background: var(--module-background);
  position: relative;
  margin-bottom: 15px;
  border-radius: 4px;
  height: auto;
}
.module-wrap .module-head {
  border-bottom: 1px solid var(--default-border);
  padding: 15px;
  color: var(--default-font);
}
.module-wrap .module-head h3 {
  display: inline-block;
  margin: 0;
  font-size: 14px;
  color: var(--default-font);
}
.module-wrap .module-head h3.bl {
  border-left: 4px solid #5bc0de;
  padding-left: 10px;
}
.module-wrap .module-head a {
  display: block;
}
.module-wrap .module-head .cate {
  float: right;
}
.module-wrap .module-head .cate a {
  display: block;
  padding: 0 10px;
  float: right;
}
.module-wrap .module-head .more {
  float: right;
  margin-top: -20px;
}
.module-wrap .module-head .more a {
  color: #999;
}
.module-wrap .module-head .more a:hover {
  text-decoration: underline;
}
.module-wrap .module-content {
  overflow: hidden;
  padding: 10px 0;
  height: auto;
  font-size: 14px;
  color: var(--default-font);
}
.module-wrap .module-content ul li.aside {
  padding: 0 15px;
  width: auto;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: var(--default-font);
  cursor: pointer;
}
.module-wrap .module-content ul li.aside i {
  color: var(--default-font);
}
.module-wrap .module-content ul li.aside:hover {
  background: var(--link-hover-background);
}
.module-wrap .module-content ul li.list {
  position: relative;
}
.module-wrap .module-content ul li.list .img {
  width: 100%;
}
.module-wrap .module-content ul li.list .img img {
  width: 100%;
}
.module-wrap .module-content ul li.list a {
  display: block;
  padding: 8px 0;
  color: #333;
}
.module-wrap .module-content ul li.list a:hover {
  color: #eb7350;
  text-decoration: none;
}
.module-wrap .module-content ul li.list span {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #eb7350;
}
.module-wrap .module-content ul li.list span i {
  color: #eb7350 !important;
}
.module-wrap .module-content ul li.list-show {
  padding-left: 50px;
  padding-right: 25px;
  line-height: 32px;
}
.module-wrap .module-content ul li.list-show em {
  position: absolute;
  top: 6px;
  left: 10px;
  background: #9a9a9a;
  width: 20px;
  height: 20px;
  padding-top: 4px;
  background-position: -170px -85px;
  color: #fff;
  font: normal 10px/15px Arial;
  text-align: center;
  -webkit-text-size-adjust: none;
}
.module-wrap .module-content ul li.list-show:nth-child(1) em,
.module-wrap .module-content ul li.list-show:nth-child(2) em,
.module-wrap .module-content ul li.list-show:nth-child(3) em {
  background: #ff6600;
}
.module-wrap .module-content ul li.list-show .more {
  display: none;
  margin-left: -40px;
  height: 50px;
  line-height: 25px;
}
.module-wrap .module-content ul li.list-show.hover {
  background: #f7f7f7;
}
.module-wrap .module-content ul li.list-show.hover em {
  background: #222;
}
.module-wrap .module-content ul li.list-show.hover a {
  color: #000;
  font-weight: bold;
}
.module-wrap .module-content ul li.list-show.hover .more {
  display: block;
  padding-left: 40px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.module-wrap .module-content ul li .show-iocn {
  display: none;
}
.module-wrap .module-content ul li:hover {
  transition: all 0.3s;
}
.module-wrap .module-content ul li:hover .show-iocn {
  display: block;
}
.module-wrap .module-content ul li.current {
  background: #ccc;
}
.module-wrap .module-content ul li.current a {
  color: #fff;
}
.module-wrap .module-content a:hover {
  color: #3598db;
  text-decoration: none;
}
.module-wrap .module-content.after {
  content: '';
  clear: both;
}
.module-wrap .module-content .album-head {
  position: relative;
  padding: 15px 8px 15px 50px;
  line-height: 23px;
  font-size: 16px;
}
.module-wrap .module-content .album-head img {
  opacity: 0.65;
  filter: alpha(opacity=40);
  border-radius: 50%;
}
.module-wrap .module-content .album-head .nickname {
  color: #333;
  font-weight: bold;
}
.module-wrap .module-content .album-head a {
  color: #aaa;
}
.module-wrap .module-content .label-box {
  padding: 10px 0;
  height: 40px;
}
.module-wrap .module-content .label-box a {
  margin-right: 10px;
  color: #ccc;
}
.module-wrap .module-foot {
  border-top: 1px solid var(--default-border);
  padding: 10px;
  width: 100%;
  color: #666;
  text-align: center;
}
.media-wrap {
  overflow: hidden;
  margin-bottom: 10px;
  border-bottom: 1px dotted var(--default-border);
  width: 100%;
  line-height: normal;
  font-size: 12px;
}
.media-wrap .media-left {
  float: left;
  padding-right: 15px;
}
.media-wrap .media-body {
  vertical-align: top;
}
.media-wrap .media-body h3 {
  margin: 0px;
}
.media-wrap .media-body p {
  padding-top: 5px;
}
.media-wrap:last-child {
  border-bottom: 0px dotted #ccc;
}
.grid-wrap {
  background: #f2f2f5;
  position: relative;
  padding: 20px 20px 20px 80px;
  height: 170px;
}
.grid-wrap:hover {
  background: #ccc;
}
.grid-wrap .grid-left {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 10px;
  border-right: 1px dotted #ccc;
  padding-top: 25px;
  padding-right: 10px;
  width: auto;
}
.grid-wrap .grid-body p {
  padding-bottom: 10px;
}
.link {
  background: #fff;
  margin-bottom: 25px !important;
}
.link a {
  padding: 5px;
  font-size: 14px;
}
footer {
  background: var(--module-background);
  width: 100%;
  color: #999;
}
footer .foot-wrap {
  position: relative;
  margin: 0 auto;
}
footer .foot-left {
  width: 150px;
  height: 50px;
  line-height: 50px;
  float: left;
}
footer .foot-left.logo {
  font-size: 18px;
  font-weight: bold;
}
footer .foot-left.logo a {
  padding: 0;
  color: #c7c7c7;
  text-align: left;
}
footer .foot-content {
  width: 600px;
  height: 50px;
  line-height: 50px;
  text-align: left;
  float: left;
}
footer .foot-right {
  width: 250px;
  height: 50px;
  line-height: 50px;
  text-align: right;
  float: right;
}
footer .foot-bottom {
  width: 100%;
  height: 150px;
}
footer .foot-link {
  background: #f7f7f7;
  width: 100%;
  height: auto;
}
footer .foot-copyright {
  background: rgba(255, 255, 255, 0.94);
  margin: 0 auto;
  width: 1100px;
  height: 50px;
  line-height: 50px;
}
footer a {
  padding: 5px;
  color: #999;
}
footer ul li {
  padding: 8px 0;
  height: 35px;
}
.page {
  text-align: center;
}
.page li {
  background: #fff;
  box-shadow: rgba(34, 25, 25, 0.2) 0px 1px 3px;
  min-width: 30px;
  margin: 0 5px;
  display: inline-block;
  font-size: 12px;
}
.page li.current {
  background: #cad9e5;
}
.page li.current a {
  color: #fff;
}
.page li a {
  padding: 10px;
  display: block;
}
.page li a:hover {
  background: #cad9e5;
  color: #fff;
}
.page li a:hover i {
  color: #fff;
}
.page li.li-input {
  padding: 1px 10px;
}
.page li input {
  border: 0px;
  padding: 8px 0px;
  width: 25px;
  text-align: center;
}
.page-wrap {
  margin-bottom: 25px;
  text-align: center;
}
.page-wrap li {
  display: inline-block;
  margin: 0 5px;
  padding: 0 5px;
  height: 29px;
  line-height: 30px;
  font-size: 14px;
}
.page-wrap li.current {
  background: #5bc0de !important;
}
.page-wrap li.current a {
  color: #fff;
}
.page-wrap li a {
  display: block;
  min-width: 25px;
  font-size: 14px;
  color: #787d82;
  text-align: center;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.2s;
  -moz-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.page-wrap li:hover {
  background: #2196f3;
}
.page-wrap li:hover a {
  color: #fff !important;
}
.page-wrap li.li-input {
  padding: 1px 10px;
}
.page-wrap li input {
  border: 0px;
  padding: 8px 0px;
  width: 25px;
  text-align: center;
}
.ziyaun-page-wrap {
  margin: 25px 0;
  text-align: center;
}
.ziyaun-page-wrap li {
  display: inline-block;
  margin: 0 8px;
  background-color: #fff;
  border-radius: 6px;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}
.ziyaun-page-wrap li.prev-page,
.ziyaun-page-wrap li.next-page {
  width: 80px;
}
.ziyaun-page-wrap li.current {
  background: #5bc0de !important;
}
.ziyaun-page-wrap li.current a {
  color: #fff;
}
.ziyaun-page-wrap li a {
  display: block;
  min-width: 25px;
  font-size: 14px;
  color: #787d82;
  text-align: center;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.2s;
  -moz-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.ziyaun-page-wrap li:hover {
  background: #5bc0de;
}
.ziyaun-page-wrap li:hover a {
  color: #fff !important;
}
.ziyaun-page-wrap li.li-input {
  padding: 1px 10px;
}
.ziyaun-page-wrap li input {
  border: 0px;
  padding: 8px 0px;
  width: 25px;
  text-align: center;
}
.tag-wrap {
  background: #fff;
  position: relative;
  padding: 15px 0;
  height: auto;
}
.tag-wrap .tag-box {
  background: none;
  border-right: 1px #f78db0 solid;
}
.tag-wrap .tag-box h3 {
  color: #333;
}
.tag-wrap .tag-box .module-head {
  padding-top: 0;
}
.tag-wrap .tag-box:last-child {
  border-right: 0;
}
.tag-wrap .tag-box .module-head {
  padding: 10px 15px 0 15px;
}
.tag-wrap .tag-box .module-content {
  padding: 10px;
}
.tag-wrap a {
  padding: 8px;
  display: block;
  color: #666;
  float: left;
}
.tag-wrap a:hover {
  color: #333;
  text-decoration: underline;
}
.tag-wrap a.current {
  background: #e4e6e7;
  font-size: 12px;
  color: #666;
}
.tagInputContainer {
  background: var(--input-background);
  border: 1px solid var(--default-border);
  width: 100%;
  padding: 5px;
  min-height: 20px;
}
.tagInputContainer .tag-box {
  background: var(--label-background);
  display: inline-block;
  margin-right: 5px;
  padding: 3px 7px;
  width: auto;
  min-height: 16px;
  line-height: 20px;
}
.tagInputContainer .tag-box:hover {
  background: var(--link-hover-background);
}
.tagInputContainer .tag-box:hover span {
  color: #fff;
}
.tagInputContainer .tag-box:hover a {
  color: #fff;
}
.tagInputContainer .cate-box {
  display: inline-block;
  margin: 0 10px 10px 0;
  border: 1px solid var(--color-primary);
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 30px;
}
.tagInputContainer .cate-box.add-ground {
  color: var(--color-primary);
}
.tagInputContainer .cate-box:hover {
  background: var(--color-primary-background);
  color: var(--color-primary);
}
.tagInputContainer input[type=text] {
  height: 30px;
}
.tagListContainer {
  background: #FFFEEB;
  display: none;
  border: 1px solid #eee;
  border-top: 0;
  padding: 10px;
}
.tagListContainer .tagList {
  padding: 10px;
  position: relative;
  padding-left: 60px;
  min-height: 50px;
}
.tagListContainer .tagList span {
  position: absolute;
  top: 15px;
  left: 0;
  padding: 0 5px;
  width: auto;
  min-height: 16px;
  line-height: 20px;
}
.tagListContainer .tag-box {
  background: #f4f4f4;
  display: inline-block;
  margin-right: 5px;
  border: 1px solid #ccc;
  padding: 0 5px;
  width: auto;
  min-height: 16px;
  line-height: 20px;
}
.sourceInputContainer {
  background: #fff;
  border: 1px solid #eee;
  width: 100%;
  padding: 2px 5px;
  min-height: 20px;
}
.sourceInputContainer .source-box {
  background: #f4f4f4;
  display: inline-block;
  margin-right: 5px;
  border: 1px solid #ccc;
  padding: 0 5px;
  width: auto;
  min-height: 16px;
  line-height: 20px;
}
.sourceInputContainer input[type=text] {
  height: 30px;
}
.sourceListContainer {
  background: #FFFEEB;
  display: none;
  border: 1px solid #eee;
  border-top: 0;
  padding: 10px;
}
.sourceListContainer .sourceList {
  padding: 10px;
  position: relative;
  padding-left: 65px;
  min-height: 50px;
}
.sourceListContainer .sourceList span {
  position: absolute;
  top: 15px;
  left: 0;
  padding: 0 5px;
  width: auto;
  min-height: 16px;
  line-height: 20px;
}
.sourceListContainer .source-box {
  background: #f4f4f4;
  display: inline-block;
  margin-right: 5px;
  border: 1px solid #ccc;
  padding: 0 5px;
  width: auto;
  min-height: 16px;
  line-height: 20px;
}
table {
  width: 100%;
}
table td[class*='col-'],
table th[class*='col-'] {
  position: static;
  display: table-cell;
  float: none;
}
table &gt; head &gt; th &gt; td,
table &gt; tbody &gt; tr &gt; td,
table &gt; tr &gt; td {
  padding: 10px 12px;
  color: #666;
}
table &gt; tr.th &gt; td {
  padding: 12px;
  font-weight: bold;
}
table &gt; tr.th &gt; td.sorter {
  padding: 0;
}
table &gt; tr.th &gt; td.sorter .sort {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 45px;
  cursor: pointer;
}
table &gt; tr.th &gt; td.sorter .sort:hover {
  background: #ddd;
}
.table-striped tr:nth-child(odd) {
  background-color: #fafafa;
}
.table-striped tr:nth-child(even) {
  background-color: #fff;
}
.table-hover tr:hover {
  background-color: #f1f1f1;
}
.col-left-1 td {
  text-align: center;
}
.col-left-1 td:nth-child(1) {
  text-align: left;
}
.col-left-12 td {
  text-align: center;
}
.col-left-12 td:nth-child(1),
.col-left-12 td:nth-child(2) {
  text-align: left;
}
.col-left-123 td {
  text-align: center;
}
.col-left-123 td:nth-child(1),
.col-left-123 td:nth-child(2),
.col-left-123 td:nth-child(3) {
  text-align: left;
}
.col-left-2 td {
  text-align: center;
}
.col-left-2 td:nth-child(2) {
  text-align: left;
}
.col-left-23 td {
  text-align: center;
}
.col-left-23 td:nth-child(2),
.col-left-23 td:nth-child(3) {
  text-align: left;
}
.col-left-234 td {
  text-align: center;
}
.col-left-234 td:nth-child(2),
.col-left-234 td:nth-child(3),
.col-left-234 td:nth-child(4) {
  text-align: left;
}
.col-left-3 td {
  text-align: center;
}
.col-left-3 td:nth-child(3) {
  text-align: left;
}
.col-left-34 td {
  text-align: center;
}
.col-left-34 td:nth-child(3),
.col-left-34 td:nth-child(4) {
  text-align: left;
}
.col-left-345 td {
  text-align: center;
}
.col-left-345 td:nth-child(3),
.col-left-345 td:nth-child(4),
.col-left-345 td:nth-child(5) {
  text-align: left;
}
.col-left-346 td {
  text-align: center;
}
.col-left-346 td:nth-child(3),
.col-left-346 td:nth-child(4),
.col-left-346 td:nth-child(6) {
  text-align: left;
}
.col-left-4 td {
  text-align: center;
}
.col-left-4 td:nth-child(4) {
  text-align: left;
}
.col-left-6 td {
  text-align: center;
}
.col-left-6 td:nth-child(6) {
  text-align: left;
}
.col-left-7 td {
  text-align: center;
}
.col-left-7 td:nth-child(7) {
  text-align: left;
}
/*å…¬å‘Šåˆ—è¡¨*/
.col-center td {
  text-align: center;
}
.letter-tabs {
  width: 100%;
  height: auto;
}
.letter-tabs .tabs-button {
  background: var(--color-primary-background);
  display: flex;
  line-height: 25px;
  padding: 15px;
}
.letter-tabs .tabs-button .tabs-list {
  display: inline-block;
  border-radius: 4px;
  padding: 0px 15px;
  min-width: 32px;
  height: 55px;
  margin-right: 8px;
  line-height: 30px;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
}
.letter-tabs .tabs-button .tabs-list i,
.letter-tabs .tabs-button .tabs-list .user {
  color: #fff;
}
.letter-tabs .tabs-button .tabs-list:hover {
  background: var(--tool-hover-background);
  border-radius: 4px;
  border-color: #1890ff;
}
.letter-tabs .tabs-button .tabs-list.current {
  background: var(--tool-hover-background) !important;
  color: #1890ff;
  border-color: #1890ff;
}
.letter-tabs .letter-content {
  padding: 15px 0;
  width: 100%;
  height: auto;
}
.letter-tabs .letter-content .tabsbox {
  width: 100%;
  height: auto;
  display: none;
}
.letter-wrap {
  width: 100%;
  height: 560px;
  display: flex;
}
.letter-wrap li {
  padding-bottom: 5px;
}
.letter-wrap .letter-left {
  width: 150px;
}
.letter-wrap .letter-left .letter-title {
  background: var(--color-primary-background);
  border-bottom: 1px solid #eee;
  padding: 10px;
  height: 70px;
}
.letter-wrap .letter-left .letter-title img {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.letter-wrap .letter-left .letter-content {
  background: var(--color-primary-background);
  border-right: 1px solid #eee;
  padding: 10px;
  height: 520px;
}
.letter-wrap .letter-left .letter-content img {
  margin-right: 10px;
  border-radius: 50%;
}
.letter-wrap .letter-left .letter-content img.gray {
  filter: grayscale(100%);
}
.letter-wrap .letter-right {
  flex: 1;
  height: 560px;
}
.letter-wrap .letter-right .letter-title {
  background: var(--color-primary-background);
  border-bottom: 1px solid #eee;
  padding: 10px;
  height: 70px;
}
.letter-wrap .letter-right .letter-title .close {
  float: right;
}
.letter-wrap .letter-right .letter-content {
  background: #fff;
  padding: 10px;
  height: 430px;
  overflow-y: auto;
}
.letter-wrap .letter-right .letter-content ul {
  height: auto;
}
.letter-wrap .letter-right .letter-content li {
  position: relative;
  padding-bottom: 10px;
}
.letter-wrap .letter-right .letter-content li img {
  margin-right: 10px;
  border-radius: 50%;
}
.letter-wrap .letter-right .letter-content li.other {
  padding-left: 40px;
}
.letter-wrap .letter-right .letter-content li.other img {
  position: absolute;
  left: 0;
}
.letter-wrap .letter-right .letter-content li.other span {
  padding-bottom: 5px;
  color: #aaa;
  font-size: 9px;
  display: block;
}
.letter-wrap .letter-right .letter-content li.other .con {
  display: inline-block;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
}
.letter-wrap .letter-right .letter-content li.my {
  padding-right: 50px;
  text-align: right;
}
.letter-wrap .letter-right .letter-content li.my img {
  position: absolute;
  right: 0;
}
.letter-wrap .letter-right .letter-content li.my span {
  padding-bottom: 5px;
  color: #aaa;
  font-size: 9px;
  display: block;
}
.letter-wrap .letter-right .letter-content li.my .con {
  display: inline-block;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
}
.letter-wrap .letter-right .letter-form {
  border-top: 1px solid var(--default-border);
  border-bottom: 1px solid var(--default-border);
}
.letter-wrap .letter-right .letter-form .send-input-box {
  background: #f7f8fa;
  padding: 6px 11px;
}
.letter-wrap .letter-right .letter-form .send-input-box textarea {
  width: 100%;
  height: 60px;
  margin: 0px;
  padding: 5px;
  border-style: none;
  border-width: 0px;
  font-size: 14px;
  word-wrap: break-word;
  line-height: 18px;
  overflow: hidden;
  outline: none;
}
.letter-wrap .letter-right .operate {
  padding: 10px;
  height: 50px;
}
.letter-wrap .letter-right .operate span {
  margin-left: 15px;
  color: #333;
}
.letter-wrap .letter-right .operate button {
  background: var(--color-primary-background);
  border-radius: 30px;
  color: var(--button-font);
  width: 65px;
  height: 32px;
  text-align: center;
}
.chat-content {
  padding: 8px 18px;
}
.chat-content .avator-box {
  display: inline-block;
}
.chat-content .chat-wrap {
  position: relative;
  display: inline-block;
}
.chat-content .chat-wrap.chat-left {
  padding-left: 13px;
  text-align: left;
}
.chat-content .chat-wrap.chat-right {
  padding-right: 13px;
  text-align: right;
}
.chat-content .chat-wrap .arrow {
  width: 0;
  height: 0;
  z-index: 99;
  border: 5px solid rgba(0, 0, 0, 0);
}
.chat-content .chat-wrap .arrow.arrow-left {
  position: absolute;
  border-top-color: var(--color-primary-background);
  border-right-color: var(--color-primary-background);
  top: 15px;
  left: 3px;
}
.chat-content .chat-wrap .arrow.arrow-right {
  position: absolute;
  border-top-color: var(--color-primary-background);
  border-left-color: var(--color-primary-background);
  top: 15px;
  right: 3px;
}
.chat-content .chat-1 {
  background: var(--color-primary-background);
  display: inline-block;
  position: relative;
  border-radius: 4px;
  max-width: 350px;
  min-height: 40px;
  line-height: 20px;
  padding: 11px 16px;
  text-align: right;
}
.bubble-wrap {
  position: relative;
  display: inline-block;
}
.bubble-wrap.bubble-left {
  padding-left: 13px;
  text-align: left;
}
.bubble-wrap.bubble-right {
  padding-right: 13px;
  text-align: right;
}
.bubble-wrap .arrow {
  width: 0;
  height: 0;
  z-index: 99;
  border: 5px solid rgba(0, 0, 0, 0);
}
.bubble-wrap .arrow.arrow-left {
  position: absolute;
  border-top-color: #4b6880;
  border-right-color: #4b6880;
  bottom: -10px;
  left: 3px;
}
.bubble-wrap .arrow.arrow-right {
  position: absolute;
  border-top-color: #4b6880;
  border-left-color: #4b6880;
  bottom: -10px;
  right: 135px;
}
.bubble-wrap .bubble-1 {
  background: #fff;
  display: inline-block;
  position: relative;
  border-radius: 8px;
  border: 3px solid #4b6880;
  width: 200px;
  height: 80px;
  line-height: 20px;
  padding: 11px 16px;
  text-align: right;
}
.message-wrap {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  width: 300px;
  height: 200px;
}
.message-wrap .module-wrap {
  background: rgba(255, 255, 255, 0.8);
}
.message-wrap .module-wrap .module-head {
  background: var(--color-primary-background);
  color: #fff;
}
.article {
  background: #fff;
  width: 835px;
}
.article .article-head {
  position: relative;
  border-bottom: 1px solid #eee;
  padding: 0 25px 25px 25px;
}
.article .article-head h2 {
  font-size: 32px;
  color: #404040;
}
.article .article-head .author {
  margin-top: 20px;
  font-size: 14px;
  color: #888;
  height: 20px;
  line-height: 20px;
}
.article .article-head .author span {
  display: inline-block;
  margin-right: 10px;
  height: 20px;
  float: left;
}
.article .article-head .author span img {
  margin-top: -7px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
}
.article .article-head .collect {
  background: #fafafa;
  position: absolute;
  top: 25px;
  right: 25px;
  border: 1px solid #e5e5e5;
  padding: 10px;
  color: #a1a1a1;
  cursor: pointer;
  border-radius: 4px;
}
.article .article-head .collect:hover {
  background: #eee;
}
.article .article-head .label {
  margin-top: 20px;
  color: #888;
}
.article .article-head .original_genuine {
  position: absolute;
  top: 25px;
  right: 15px;
  border: 1px solid #5bc0de;
  padding: 2px 5px;
  color: #5bc0de;
  display: none;
}
.article .article-content {
  border-bottom: 1px solid #eee;
  padding: 25px 25px;
  line-height: 30px;
  font-size: 14px;
  color: #3d464d;
}
.article .article-content h2,
.article .article-content h3 {
  margin-bottom: 20px;
}
.article .article-content p {
  margin-top: 20px;
  margin-bottom: 20px;
}
.article .article-content .summary {
  background: #f1f1f1;
  padding: 10px;
  line-height: 30px;
}
.article .article-content img {
  max-width: 835px;
}
.article .post_author {
  margin: 30px 0;
  font-size: 12px;
  color: #888;
  text-align: right;
}
.article .img {
  position: relative;
  text-align: center;
}
.article .img .preg {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 35%;
  height: 100%;
  cursor: url(/source/public/images/pic_prev.cur), auto;
}
.article .img .next {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 35%;
  height: 100%;
  cursor: url(/source/public/images/pic_next.cur), auto;
}
.article .img img {
  width: 100%;
}
.article .related {
  padding: 25px 20px;
  font-size: 16px;
}
.article .related .preg {
  padding: 5px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.article .related .next {
  padding: 5px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.article .related a:hover {
  text-decoration: underline;
}
.article .thumbile {
  margin-bottom: 50px;
  width: 100%;
  text-align: center;
}
.article .thumbile .demo-count,
.article .thumbile .down-count {
  font-size: 16px;
  color: #999;
}
.article .thumbile a {
  display: inline-block;
  font-size: 18px;
  padding: 0 25px;
  height: 45px;
  line-height: 45px;
}
.article .thumbile a i {
  color: #fff !important;
}
.article .thumbile a.down {
  background: #5bc0de;
  font-size: 24px;
  color: #fff;
}
.article .thumbile a.down:hover {
  background: #3eb3d6;
}
.article .thumbile a.demo {
  background: #fc7553;
  font-size: 24px;
  color: #fff;
}
.article .thumbile a.demo:hover {
  background: #e24c26;
}
.article .thumbile a.collect {
  box-shadow: 0px 1px 5px #999;
  background: #5cb85c;
  color: #fff;
}
.article .thumbile a.collect:hover {
  background-color: #5cb85c;
  border: 1px solid #5cb85c;
}
.article .thumbile-count {
  border-bottom: 1px solid #ddd;
  padding-bottom: 50px;
  width: 100%;
  text-align: center;
}
.article .thumbile-count .down-count {
  width: 20%;
  display: inline-block;
  margin-right: 50px;
  color: #1d9ce8;
}
.article .thumbile-count .down-count span {
  color: #fc9700;
}
.article .thumbile-count .demo-count {
  width: 20%;
  display: inline-block;
  color: #1d9ce8;
}
.article .thumbile-count .demo-count span {
  color: #fc9700;
}
.demo {
  background: #58c77f;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.demo a {
  color: #fff;
}
.download {
  background: #5bc0de;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.download a {
  color: #fff;
}
.count {
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #333;
}
.userinfo {
  background: #fff;
  margin-bottom: 15px;
  padding: 15px;
}
.userinfo .stores-model {
  height: auto;
}
.userinfo .stores-model .img {
  position: relative;
  width: 80px;
  height: 80px;
  float: left;
}
.userinfo .stores-model .img .tamll {
  background: #fff;
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 30px;
  height: 30px;
  color: #ff9900;
  text-align: center;
  z-index: 100;
}
.userinfo .stores-model .img img {
  border-radius: 50%;
}
.userinfo .stores-model .name {
  width: 180px;
  height: 80px;
  line-height: 35px;
  font-size: 14px;
  color: #666;
  float: right;
}
.detail {
  line-height: 30px;
  font-size: 14px;
}
.detail p {
  text-indent: 30px;
}
.learn-content h3 {
  margin-top: 25px;
}
.learn-content h3:first-child {
  margin-top: 0;
}
.learn-content p {
  text-indent: 0 !important;
  padding: 5px 0;
}
.learn-content .lang-php {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-left-width: 4px;
  background: #f0f5e1 !important;
  color: #a7e9ff;
}
.learn-content .lang-bsh {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-left-width: 4px;
  background: #333 !important;
  color: #ccc !important;
}
.learn-content .linenums {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-left-width: 4px;
  background: #fbfbfb;
  color: #333;
}
.learn-content pre {
  display: block;
  font-family: monospace;
  white-space: pre;
  margin: 0.5rem 0px 1em 0px;
  line-height: 25px;
  font-family: å¾®è½¯é›…é»‘;
}
.feedback-head {
  background: url(../img/tops1.gif);
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 25px;
  width: auto;
  height: 90px;
  line-height: 35px;
}
.feedback-head .page {
  float: right;
}
.feedback-content-wrap {
  /*background: #fff;*/
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
  width: auto;
  height: auto;
}
.feedback-content-wrap .feedback-content {
  padding-bottom: 20px;
  width: auto;
  height: auto;
}
.feedback-content .feedback-title {
  margin-top: 15px;
  width: auto;
  height: 35px;
  line-height: 35px;
}
.feedback-content .feedback-title .page {
  float: right;
}
.feedback-content .feedback-list .feedback-content .feedback-list p.feedback-user,
.feedback-content .feedback-list p.feedback-label {
  margin: 0;
  font-size: 13px;
  color: #333;
  word-wrap: break-word;
}
.feedback-content .feedback-list .reply_info {
  position: relative;
  margin: 5px 0;
  /*border-bottom:1px dotted #666;*/
  padding-left: 50px;
  height: 50px;
  color: #eee;
}
.feedback-content .feedback-list .reply_info img {
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
}
.feedback-content .feedback-list p.reply_default {
  border: 1px solid #ddd;
  padding: 5px;
  width: 400px;
  display: none;
}
.feedback-content .feedback-list .reply {
  cursor: pointer;
}
.feedback-content .feedback-list .reply_wrap {
  display: none;
}
.reply_wrap .form {
  position: relative;
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  width: 402px;
  min-height: 80px;
}
.reply_wrap .form textarea {
  display: block;
  border: 0px;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
  padding: 5px;
  outline: none;
  width: 400px;
  height: auto;
  min-height: 50px;
}
.reply_wrap .form button {
  background: none;
  border: 0px;
  border-right: 1px solid #ddd;
  width: 60px;
  height: 37px;
}
.reply_wrap .form button[class=cancel] {
  background: none;
  border: 0px;
  width: 60px;
  height: 30px;
  color: #ccc;
}
.reply_wrap .form .countmsg {
  position: absolute;
  right: 5px;
  line-height: 30px;
  color: #ccc;
  font-weight: normal;
}
/*.feedback-list img{
	position: absolute;
	top:10px;
	left: 25px;
	box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.22);
	-webkit-border-radius: 3px;
	border-radius: 3px;
	width: 50px;
	height: 50px;
}*/
.feedback-content-wrap .feedback-form {
  padding: 0 0;
  width: auto;
  /*min-height: 130px;*/
}
.feedback-form .form {
  -webkit-border-radius: 3px;
  border-radius: 3px;
  width: auto;
  min-height: 130px;
  display: none;
}
.feedback-form .form textarea {
  background: #f9f9f9;
  display: block;
  margin-bottom: 0;
  border: 0px;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
  padding: 5px;
  outline: none;
  width: 100%;
  height: auto;
  min-height: 100px;
  color: #333;
}
.feedback-form .form button {
  border: 0px;
  border-left: 1px solid #ddd;
  width: 100px;
  height: 30px;
  color: #fff;
  float: right;
}
.feedback-content .feedback-footer {
  background: #EEE;
  margin-bottom: 15px;
  box-sizing: border-box;
  padding: 0 25px;
  width: auto;
  height: 35px;
  line-height: 35px;
}
.feedback-content .feedback-footer .page {
  float: right;
}
.feedback-content-wrap .feedback-write {
  padding: 20px;
  width: auto;
  min-height: 130px;
}
.feedback-write ul {
  border: 0px solid #ddd;
}
.feedback-write li {
  position: relative;
  padding: 5px 5px 5px 100px;
  min-height: 30px;
  line-height: 30px;
}
.feedback-write li label {
  position: absolute;
  left: 0px !important;
  top: 50%;
  margin-top: -15px;
  font-size: 14px;
  color: #666;
  font-weight: normal;
}
.comment-wrap {
  background: var(--module-background);
  border-top: 1px solid var(--default-border);
  padding: 0;
}
.comment-wrap .input-box {
  position: relative !important;
  padding: 10px 25px 0 80px;
  height: 40px;
}
.comment-wrap .input-box .img-box {
  position: absolute !important;
  top: 10px;
  left: 40px;
  width: 36px;
  height: 36px;
}
.comment-wrap .input-box .img-box img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.comment-wrap .input-box input {
  background: var(--input-background);
  width: 100%;
  border-radius: 50px;
  height: 36px;
}
.comment-wrap .input-box input[type='text']:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
.comment-wrap .operate {
  position: relative !important;
  display: flex;
  justify-content: flex-end;
  padding: 10px 25px 0 80px;
  height: 50px;
}
.comment-wrap .operate .operate-left {
  flex: 1;
  line-height: 30px;
}
.comment-wrap .operate .operate-right {
  background: var(---input-background);
  border-radius: 30px;
  color: #fff;
  border: 1px solid transparent;
  width: 60px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.comment-wrap .content {
  position: relative;
  box-sizing: border-box;
  padding: 0;
  width: auto;
  min-height: 60px;
}
.comment-wrap .content .text {
  padding-left: 40px;
}
.comment-wrap .content .comment-list {
  position: relative;
  box-sizing: border-box;
  padding: 8px 25px;
  padding-left: 100px;
  width: auto;
  min-height: 75px;
}
.comment-wrap .content .comment-list .photos {
  position: absolute;
  top: 10px;
  left: 40px;
}
.comment-wrap .content .comment-list .photos img {
  border-radius: 30px;
  width: 36px;
  height: 36px;
}
.comment-wrap .content .comment-list p {
  font-size: 12px;
  color: #666;
  line-height: 1.5em;
  margin-bottom: 0.5em;
  word-wrap: break-word;
}
.comment-wrap .content .comment-list p:last-child {
  margin-bottom: 0;
}
.comment-wrap .content .comment-list a {
  color: var(--color-primary);
}
.feedback-wrap {
  padding: 0;
}
.feedback-wrap .input-box {
  position: relative !important;
  padding: 10px 25px 0 65px;
  height: 40px;
}
.feedback-wrap .input-box .img-box {
  position: absolute !important;
  top: 10px;
  left: 15px;
  width: 36px;
  height: 36px;
}
.feedback-wrap .input-box .img-box img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.feedback-wrap .input-box input {
  border: 1px solid var(--color-primary);
  width: 100%;
  border-radius: 50px;
  height: 36px;
}
.feedback-wrap .input-box input[type='text']:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
.feedback-wrap .operate {
  position: relative !important;
  display: flex;
  justify-content: flex-end;
  padding: 10px 25px 0 60px;
  height: 50px;
}
.feedback-wrap .operate .operate-left {
  flex: 1;
  line-height: 30px;
}
.feedback-wrap .operate .operate-right {
  background: var(---input-background);
  border-radius: 30px;
  color: #fff;
  border: 1px solid transparent;
  width: 60px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.feedback-wrap .content {
  position: relative;
  box-sizing: border-box;
  padding: 0;
  width: auto;
  min-height: 60px;
}
.feedback-wrap .content .text {
  padding-left: 40px;
}
.feedback-wrap .content .feedback-list {
  position: relative;
  box-sizing: border-box;
  padding: 8px 25px;
  padding-left: 80px;
  width: auto;
  min-height: 75px;
}
.feedback-wrap .content .feedback-list .photos {
  position: absolute;
  top: 10px;
  left: 15px;
}
.feedback-wrap .content .feedback-list .photos img {
  border-radius: 30px;
  width: 50px;
  height: 50px;
}
.feedback-wrap .content .feedback-list p {
  font-size: 12px;
  color: #666;
  line-height: 1.5em;
  margin-bottom: 0.5em;
  word-wrap: break-word;
}
.feedback-wrap .content .feedback-list p:last-child {
  margin-bottom: 0;
}
.feedback-wrap .content .feedback-list .reply_info {
  position: relative;
  margin: 5px 0;
  padding: 10px 0;
  padding-left: 40px;
  min-height: 50px;
  color: #eee;
}
.feedback-wrap .content .feedback-list .reply_info .photos {
  position: absolute;
  top: 10px;
  left: 0;
}
.feedback-wrap .content .feedback-list .reply_info .photos img {
  border-radius: 30px;
  width: 35px;
  height: 35px;
}
.feedback-wrap .content .feedback-list a {
  color: var(--color-primary);
}
.layer-form-wrap {
  display: flex;
  padding: 10px;
}
.layer-form-wrap .input-box {
  background: #f0f1f4;
  border-radius: 4px;
  flex: 1;
  display: flex;
  position: relative !important;
  height: 36px;
}
.layer-form-wrap .input-box img {
  position: absolute !important;
  top: 10px;
  border-radius: 30px;
  left: 40px;
  width: 36px;
  height: 36px;
}
.layer-form-wrap .input-box .expression {
  width: 30px;
  line-height: 36px;
}
.layer-form-wrap .input-box input {
  background: none;
  flex: 1;
  width: 100%;
  height: 36px;
}
.layer-form-wrap .input-box input[type='text']:focus {
  outline: 0;
}
.layer-form-wrap .operate {
  position: relative !important;
  width: 70px;
  height: 36px;
  text-align: right;
}
.layer-form-wrap .operate .operate-left {
  flex: 1;
  line-height: 30px;
}
.layer-form-wrap .operate .operate-right {
  background: var(---input-background);
  border-radius: 30px;
  color: #fff;
  border: 1px solid #fbbd9e;
  width: 60px;
  height: 36px;
  line-height: 30px;
  text-align: center;
}
.layer-form-wrap .content {
  position: relative;
  box-sizing: border-box;
  padding: 0;
  width: auto;
  min-height: 60px;
}
.layer-form-wrap .content .text {
  padding-left: 40px;
}
.layer-form-wrap .content .feedback-list {
  background: #f9f9f9;
  position: relative;
  border-bottom: 1px solid #f1f1f1;
  box-sizing: border-box;
  padding: 8px 13px;
  padding-left: 80px;
  width: auto;
  min-height: 75px;
}
.layer-form-wrap .content .feedback-list .photos {
  position: absolute;
  top: 15px;
  left: 20px;
  border-radius: 30px;
  width: 36px;
  height: 36px;
}
.layer-form-wrap .content .feedback-list p {
  font-size: 12px;
  color: #666;
  line-height: 1.5em;
  margin-bottom: 0.5em;
  word-wrap: break-word;
}
.layer-form-wrap .content .feedback-list p:last-child {
  margin-bottom: 0;
}
.feedback-head {
  background: url(../img/tops1.gif);
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 25px;
  width: auto;
  height: 90px;
  line-height: 35px;
}
.feedback-head .page {
  float: right;
}
.feedback-content-wrap {
  /*background: #fff;*/
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
  width: auto;
  height: auto;
}
.feedback-content-wrap .feedback-content {
  padding-bottom: 20px;
  width: auto;
  height: auto;
}
.feedback-content .feedback-title {
  margin-top: 15px;
  width: auto;
  height: 35px;
  line-height: 35px;
}
.feedback-content .feedback-title .page {
  float: right;
}
.feedback-content .feedback-list .feedback-content .feedback-list p.feedback-user,
.feedback-content .feedback-list p.feedback-label {
  margin: 0;
  font-size: 13px;
  color: #333;
  word-wrap: break-word;
}
.feedback-content .feedback-list .reply_info {
  position: relative;
  margin: 5px 0;
  /*border-bottom:1px dotted #666;*/
  padding-left: 50px;
  height: 50px;
  color: #eee;
}
.feedback-content .feedback-list .reply_info img {
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
}
.feedback-content .feedback-list p.reply_default {
  border: 1px solid #ddd;
  padding: 5px;
  width: 400px;
  display: none;
}
.feedback-content .feedback-list .reply {
  cursor: pointer;
}
.feedback-content .feedback-list .reply_wrap {
  display: none;
}
.reply_wrap .form {
  position: relative;
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  width: 402px;
  min-height: 80px;
}
.reply_wrap .form textarea {
  display: block;
  border: 0px;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
  padding: 5px;
  outline: none;
  width: 400px;
  height: auto;
  min-height: 50px;
}
.reply_wrap .form button {
  background: none;
  border: 0px;
  border-right: 1px solid #ddd;
  width: 60px;
  height: 37px;
}
.reply_wrap .form button[class='cancel'] {
  background: none;
  border: 0px;
  width: 60px;
  height: 30px;
  color: #ccc;
}
.reply_wrap .form .countmsg {
  position: absolute;
  right: 5px;
  line-height: 30px;
  color: #ccc;
  font-weight: normal;
}
.feedback-list .photos a {
  display: block;
}
.feedback-list .photos img {
  border-radius: 5px;
  width: 50px;
  height: 50px;
}
.feedback-list .wb_info {
  padding-bottom: 5px;
}
.feedback-list .wb_info .username {
  font-weight: bold;
}
.feedback-list .wb_from {
  padding-bottom: 5px;
  font-size: 10px;
  color: #808080;
}
.feedback-list .wb_text {
  line-height: 23px;
}
.feedback-list .wb_text .topic {
  color: #eb7350;
}
.feedback-list .wb_text .imglist {
  width: 342px;
}
.feedback-list .wb_text .imglist li {
  margin-top: 4px;
  margin-right: 4px;
  width: 110px;
  height: 110px;
  float: left;
}
/*.feedback-list img{
	position: absolute;
	top:10px;
	left: 25px;
	box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.22);
	-webkit-border-radius: 3px;
	border-radius: 3px;
	width: 50px;
	height: 50px;
}*/
.feedback-content-wrap .feedback-form {
  padding: 0 0;
  width: auto;
  /*min-height: 130px;*/
}
.feedback-form .form {
  -webkit-border-radius: 3px;
  border-radius: 3px;
  width: auto;
  min-height: 130px;
  display: none;
}
.feedback-form .form textarea {
  background: #f9f9f9;
  display: block;
  margin-bottom: 0;
  border: 0px;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
  padding: 5px;
  outline: none;
  width: 100%;
  height: auto;
  min-height: 100px;
  color: #333;
}
.feedback-form .form button {
  border: 0px;
  border-left: 1px solid #ddd;
  width: 100px;
  height: 30px;
  color: #fff;
  float: right;
}
.feedback-content .feedback-footer {
  background: #eee;
  margin-bottom: 15px;
  box-sizing: border-box;
  padding: 0 25px;
  width: auto;
  height: 35px;
  line-height: 35px;
}
.feedback-content .feedback-footer .page {
  float: right;
}
.feedback-content-wrap .feedback-write {
  padding: 20px;
  width: auto;
  min-height: 130px;
}
.feedback-write ul {
  border: 0px solid #ddd;
}
.feedback-write li {
  position: relative;
  padding: 5px 5px 5px 100px;
  min-height: 30px;
  line-height: 30px;
}
.feedback-write li label {
  position: absolute;
  left: 0px !important;
  top: 50%;
  margin-top: -15px;
  font-size: 14px;
  color: #666;
  font-weight: normal;
}
/*18B550bg.gif*/
:root {
  --page-background: #f8f8fa;
  --color-primary: #f67f00;
  --default-font: #666;
  --default-border: #f9f9f9;
  --card-background: #f9f9f9;
  --active-background: #1b1b1b;
  --label-background: #333;
  --label-hover-background: #f67f00;
  --upload-background: #333;
  --datetime-font: #fff;
  --calendar-hover-background: #eee;
  --vertical-line: #333;
  --w-sub: #797979;
  --background: #fff;
  --nav-hover-background: #f2f2f2;
  --nav-hover-font: #333;
  --module-background: #fff;
  --link-hover-background: #f2f2f2;
  --link-hover-font: #333;
  --tabs-button-background: #fff2e5;
  --tabs-button-font: #eb7350;
  --button-background: #ffc09f;
  --button-border: #fbbd9e;
  --button-font: #fff;
  --button-hover: #ffc09f;
  --tool-hover-background: #eee;
}
header {
  z-index: 1000;
}
header.shadow {
  box-shadow: 0 2px 16px rgba(54, 56, 79, 0.6);
}
header li,
header a {
  transition: all 0.3s;
}
header li:hover,
header a:hover {
  color: #5bc0de !important;
}
.tab_ul {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 2px;
  padding: 0 10px;
  width: 100%;
  height: 48px;
  display: flex;
}
.tab_ul li {
  width: 72px;
  line-height: 26px;
  margin: 0 5px 2px 0;
  padding: 10px 0;
  text-align: center;
}
.tab_ul li span {
  display: block;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
}
.tab_ul li:hover span {
  background: #fff2e5;
  border-radius: 30px;
  color: #eb7350;
  cursor: pointer;
}
.tab_ul li.current span {
  background: #fff2e5;
  border-radius: 30px;
  color: #eb7350;
  cursor: pointer;
}
.side-nav a {
  text-align: center;
  border-radius: 5px;
  font-size: 1pc;
  font-weight: 500;
  color: #fff;
  line-height: 50px;
  display: block;
  transition: all 1s;
}
.side-nav li:nth-child(1) {
  background-color: #666;
}
.side-nav li:nth-child(2) {
  background-color: #0cc;
}
.side-nav li:nth-child(3) {
  background-color: #c96;
}
.side-nav li:nth-child(4) {
  background-color: #63c;
}
.aside_ranking {
  width: 350px;
}
.aside_ranking.fixed {
  top: 95px;
}
.nav-cate-item {
  display: flex;
  padding-left: 0;
}
.nav-cate-item .head-name {
  width: 110px;
}
.nav-cate-item .head-name a {
  border-radius: 4px;
  height: 32px !important;
  line-height: 32px !important;
  font-weight: 700;
  text-align: left;
  transition: all 0.3s;
}
.nav-cate-item .head-name a i {
  font-size: 18px;
}
.nav-cate-item .head-name a:hover {
  color: #5bc0de !important;
}
.nav-cate-item ul {
  flex: 1;
}
.nav-cate-item ul li {
  height: 32px !important;
  text-align: center;
  float: left;
}
.nav-cate-item ul li a {
  border-radius: 4px;
  height: 32px !important;
  line-height: 32px !important;
  transition: all 0.3s;
}
.nav-cate-item ul li a:hover {
  color: #5bc0de !important;
}
.nav-cate-item .product-box {
  width: 180px;
}
.nav-cate-item .product-box img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  transition: all 0.3s;
}
.nav-cate-item .product-box:hover img {
  transform: scale(1.1);
}
.nav-cate-item .nav-cate-more {
  padding: 8px 15px;
}
.nav-cate-item .nav-cate-more a {
  color: #ccc;
}
.tabs-index {
  width: 100%;
  height: auto;
}
.tabs-index .nav-tabs {
  border-bottom: 1px solid #ddd;
  justify-content: center;
  height: 42px;
}
.tabs-index .nav-tabs.ul-grey li {
  background: #f3f6f7;
}
.tabs-index .nav-tabs li {
  display: inline-block;
  padding: 10px 45px;
  background: #fff;
  border-radius: 50px;
  margin: 0 25px 10px 0;
  line-height: 35px !important;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  float: none;
}
.tabs-index .nav-tabs li.active {
  background: #5bc0de;
  border-top: 0;
  color: #fff;
}
.tabs-index .nav-tabs li:hover {
  background: #5bc0de;
  color: #fff;
}
.tabs-index .tab-content {
  padding: 15px 0;
  width: 100%;
  height: auto;
}
.tabs-index .tab-content .tabsbox {
  width: 100%;
  height: auto;
  display: none;
}
.art-sidebar {
  background: #fff;
  border-radius: 4px;
  width: 150px;
  height: 500px;
}
.art-sidebar .aside_nav {
  width: 150px;
}
.art-sidebar .art-sidebar-head {
  background: #d60000;
  height: 100px;
  line-height: 100px;
  font-size: 24px;
  color: #fff;
  text-align: center;
}
.art-sidebar li {
  width: auto;
  height: auto;
  line-height: 45px;
  font-size: 16px;
  text-align: center;
}
.art-sidebar li a {
  padding: 0 15px;
  display: block;
  color: #666;
}
.art-sidebar li a:hover {
  background: #d60000;
  color: #fff;
  text-decoration: none;
}
.art-sidebar li a.current {
  background: #fff;
  color: #999;
}
.art-sidebar li a i {
  color: #ccc !important;
}
.funny-cat li {
  height: 60px;
  line-height: 60px;
  font-size: 16px;
}
.funny-cat li a {
  display: block;
  padding: 0 20px;
}
.funny-cat li i {
  color: #eee !important;
}
.funny-cat li:hover {
  border-left: 3px solid #ff7400;
}
.funny-cat li:hover a {
  font-size: 18px;
  color: #333;
  font-weight: 700;
}
.music-list .music-wrap {
  background: #fff;
  box-shadow: 0 1px 3px rgba(27, 95, 160, 0.1);
  border-radius: 4px;
  margin: 10px;
  padding: 20px 15px 10px;
  transition: all .2s;
}
.music-list .music-wrap .sound-content {
  display: flex;
}
.music-list .music-wrap .sound-content .sound-thumbnail {
  width: 100px;
  height: 100px;
}
.music-list .music-wrap .sound-content .sound-thumbnail .round-1 {
  background: #000;
  border-radius: 50%;
  padding: 30px;
  width: 100px;
  height: 100px;
  text-align: center;
}
.music-list .music-wrap .sound-content .sound-thumbnail .round-1.play {
  background: linear-gradient(to top, #666666, #000000);
}
.music-list .music-wrap .sound-content .sound-thumbnail .round-1 .round-2 {
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  padding: 5px;
  width: 40px;
  height: 40px;
}
.music-list .music-wrap .sound-content .sound-thumbnail .round-1 .round-2 .round-3 {
  background: #000;
  display: inline-block;
  border-radius: 50%;
  padding: 5px;
  width: 30px;
  height: 30px;
}
.music-list .music-wrap .sound-content .sound-thumbnail .round-1 .round-2 .round-3 .round-4 {
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.music-list .music-wrap .sound-content .sound-thumbnail .round-1 .round-2 .round-3 .round-4.play {
  background: #f00;
}
.music-list .music-wrap .sound-content .sound-thumbnail img {
  display: inline;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.music-list .music-wrap .sound-content .sound-thumbnail img.play {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.15), #039be5);
}
.music-list .music-wrap .sound-content .sound-info {
  padding-left: 20px;
  width: 100%;
}
.music-list .music-wrap .sound-content .sound-info .sound-tag {
  margin-top: 12px;
}
.music-list .music-wrap .sound-content .sound-info .sound-tag a {
  color: #999;
}
.music-list .music-wrap .sound-content .sound-info .sound-btn {
  display: flex;
  margin-top: 12px;
  height: 30px;
  font-size: 14px;
  color: #999;
}
.music-list .music-wrap .sound-content .sound-info .sound-btn .sound-down,
.music-list .music-wrap .sound-content .sound-info .sound-btn .sound-collect {
  flex: 1;
  cursor: pointer;
}
.music-list .music-wrap .name {
  padding: 10px 0;
  height: 40px;
  font-size: 14px;
}
.music-list .music-wrap:hover {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
.video-list .video-wrap {
  background: #fff;
  box-shadow: 0 1px 3px rgba(27, 95, 160, 0.1) !important;
  margin: 10px;
  padding: 20px 15px 10px;
}
.video-list .video-wrap .video-cover img {
  width: 100%;
  height: 150px;
}
.video-list .video-wrap .video-title {
  padding: 10px 0;
  height: 40px;
  font-size: 14px;
}
.video-list .video-wrap .video-info {
  background: #fff;
  position: relative;
  border-top: 1px solid #eaeaea;
  padding: 15px 8px 15px 40px;
  line-height: 23px;
  font-size: 14px;
  color: #999;
}
.sound-play {
  display: inline-block;
  width: 280px;
  height: 280px;
}
.sound-play .round-1 {
  background: #000;
  border-radius: 50%;
  padding: 90px;
  width: 280px;
  height: 280px;
  text-align: center;
}
.sound-play .round-1.play {
  background: linear-gradient(to top, #666666, #000000);
}
.sound-play .round-1 .round-2 {
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  padding: 10px;
  width: 100px;
  height: 100px;
}
.sound-play .round-1 .round-2 .round-3 {
  background: #000;
  display: inline-block;
  border-radius: 50%;
  padding: 25px;
  width: 80px;
  height: 80px;
}
.sound-play .round-1 .round-2 .round-3 .round-4 {
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.sound-play .round-1 .round-2 .round-3 .round-4.play {
  background: #f00;
}
.sound-play img {
  display: inline;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.sound-play img.play {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.15), #039be5);
}
.demo-content {
  position: fixed;
  top: 51px;
  bottom: 0;
  padding-left: 200px;
  width: 100%;
}
.demo-content .artlist {
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  overflow-y: auto;
}
.demo-content .artlist .nav-name {
  padding: 10px 20px;
  font-size: 24px;
  color: #333;
  font-weight: bold;
}
.demo-content .artlist dl {
  padding: 10px 20px;
}
.demo-content .artlist dl dt {
  font-size: 18px;
  color: #333;
}
.demo-content .artlist dl dd {
  font-size: 12px;
}
.demo-content .artlist dl dd a {
  display: block;
  padding: 5px 0;
  color: #34495e;
  font-size: 14px;
}
.demo-content .left {
  background-color: #eee;
  position: relative;
  width: 50%;
  height: 100%;
  float: left;
}
.demo-content .left .nav {
  box-shadow: 1px 1px 1px #ccc;
  width: 100%;
}
.demo-content .left .demotype {
  position: absolute;
  right: 10px;
  top: 12px;
  color: #ccc;
}
.demo-content .left .demotype:hover {
  color: #666;
}
.demo-content .left textarea,
.demo-content .left form {
  background: #F3F5F6;
  position: absolute;
  top: 42px;
  bottom: 0;
  border: 0;
  border-right: 1px solid #eee;
  padding: 5px;
  outline: none;
  width: 100%;
  height: auto;
  line-height: 25px;
}
.demo-content .right {
  background-color: #fff;
  width: 50%;
  height: 100%;
  float: right;
}
.album-wrap {
  background: #fff;
}
.album-wrap .album {
  padding-left: 60px;
  height: 100px;
}
.album-wrap .album .pic {
  text-align: center;
  width: 50px;
  height: 60px;
}
.album-wrap .album .pic img {
  width: 32px;
  height: 32px;
}
.search-cate {
  display: flex;
  line-height: 40px;
}
.search-cate .search-kind {
  width: 50px;
}
.search-cate .search-content {
  width: 100%;
}
.search-cate .search-content a {
  margin-right: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
  padding: 10px;
  transition: all 0.3s;
}
.search-cate .search-content a.active {
  background: #039be5;
  color: #fff;
}
.search-cate .search-content a:hover {
  background: #039be5;
  color: #fff;
}
.search-cate .search-content a:hover i {
  transform: scale(1.24);
  z-index: 1;
}
.blog_content {
  display: flex;
  margin-bottom: 10px;
  border-bottom: 2px dashed #eee;
  padding-bottom: 25px;
}
.blog_content .content-left {
  width: 60px;
}
.blog_content .content-left .channel_icon {
  margin: 0;
  padding: 0;
}
.blog_content .content-left .channel_icon i {
  font-size: 45px !important;
}
.blog_content .content-left .content-flag {
  background: #e5e7eb;
  margin-top: 15px;
  width: 50px;
  height: 50px;
  line-height: 60px;
  border-radius: 90px;
  text-align: center;
}
.blog_content .content-left .content-flag i {
  font-size: 22px !important;
  color: #f2786b;
}
.blog_content .content-right {
  flex: 1;
}
.blog_content .content-right h3 {
  font-weight: normal;
  height: 60px;
  line-height: 60px;
}
.blog_content .content-right .summary {
  line-height: 30px;
}
.bookmark-list {
  padding-left: 40px;
}
.bookmark-list::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  border-right: 1px solid #eee;
  left: 19px;
  z-index: 1;
}
.bookmark-list .bookmark-content {
  padding: 15px;
  border: 1px solid #eee;
  margin-bottom: 15px;
  background: #eee;
  overflow: hidden;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.bookmark-list .bookmark-content::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #eee;
  border-radius: 4px;
  left: 16px;
  top: 50%;
  margin-top: -2px;
  z-index: 1;
}
.site-item {
  display: flex;
  padding-left: 0;
  height: 35px;
}
.site-item .head-name {
  width: 65px;
  padding: 8px 0 8px 15px;
  color: #333;
}
.site-item ul {
  flex: 1;
}
.site-item ul li {
  padding: 8px;
  text-align: center;
  float: left;
}
.site-item .site-more {
  padding: 8px 15px;
}
.site-item .site-more a {
  color: #ccc;
}
.icon-wrap {
  background: #eee;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
}
</pre></body></html>