@charset "UTF-8";
body,
a,
ul,
li,
button,
input,
select,
textarea {
  /* for ie */
  /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
  font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif, Tahoma, Helvetica, "\5b8b\4f53", sans-serif;
  /* 用 ascii 字符表示，使得在任何编码下都无问题 */
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
fieldset,
lengend,
button,
input,
textarea,
th,
td {
  /* table elements 表格元素 */
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.container, .header-box .nav-box {
  width: 1200px;
  box-sizing: border-box;
  margin: 0 auto;
}

.loading-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  padding: 20px 0 0 0;
  box-sizing: border-box;
}

.loading-box .text, .loading-box .header-box .nav-box .login-box .logout, .header-box .nav-box .login-box .loading-box .logout {
  color: #bfbfbf;
  font-size: 16px;
  line-height: 36px;
  font-weight: normal;
  padding: 20px 0 0 0;
}

.loading-box #loading {
  position: relative;
  width: 50px;
  height: 50px;
}

.loading-box .demo {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #d9d9d9;
  position: absolute;
  animation: demo linear 0.8s infinite;
  -webkit-animation: demo linear 0.8s infinite;
}

.loading-box .demo:nth-child(1) {
  left: 24px;
  top: 2px;
  animation-delay: 0s;
}

.loading-box .demo:nth-child(2) {
  left: 40px;
  top: 8px;
  animation-delay: 0.1s;
}

.loading-box .demo:nth-child(3) {
  left: 47px;
  top: 24px;
  animation-delay: 0.1s;
}

.loading-box .demo:nth-child(4) {
  left: 40px;
  top: 40px;
  animation-delay: 0.2s;
}

.loading-box .demo:nth-child(5) {
  left: 24px;
  top: 47px;
  animation-delay: 0.4s;
}

.loading-box .demo:nth-child(6) {
  left: 8px;
  top: 40px;
  animation-delay: 0.5s;
}

.loading-box .demo:nth-child(7) {
  left: 2px;
  top: 24px;
  animation-delay: 0.6s;
}

.loading-box .demo:nth-child(8) {
  left: 8px;
  top: 8px;
  animation-delay: 0.7s;
}

@keyframes demo {
  0%,
  40%,
  100% {
    transform: scale(1);
  }
  20% {
    transform: scale(3);
  }
}

@-webkit-keyframes demo {
  0%,
  40%,
  100% {
    transform: scale(1);
  }
  20% {
    transform: scale(3);
  }
}

.header-box {
  width: 100%;
  height: 80px;
  line-height: 80px;
  background: #57be6a;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
}

.header-box .nav-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header-box .nav-box .nav-box-left {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}

.header-box .nav-box .nav-box-left .nav-import {
  color: #f5f5f5;
  font-size: 18px;
  line-height: inherit;
  font-weight: normal;
  letter-spacing: 1px;
  margin-right: 40px;
}

.header-box .nav-box .nav-box-left .nav-import:hover {
  color: #fff;
}

.header-box .nav-box .nav-box-left .nav-item-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.header-box .nav-box .nav-box-left .nav-item-box .nav-item {
  color: #f5f5f5;
  font-size: 14px;
  line-height: inherit;
  font-weight: normal;
  cursor: pointer;
  margin-right: 40px;
}

.header-box .nav-box .nav-box-left .nav-item-box .nav-item:hover {
  color: #fff;
}

.header-box .nav-box .nav-box-left .dropdown-nav-item {
  color: #f5f5f5;
  font-size: 16px;
  line-height: inherit;
  font-weight: normal;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
  margin-right: 40px;
}

.header-box .nav-box .nav-box-left .dropdown-nav-item:hover {
  color: #fff;
}

.header-box .nav-box .nav-box-left .dropdown::after {
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: url("../images/icon-dropdown.png") no-repeat;
  background-position: center;
  background-size: 14px;
  top: 0px;
  bottom: 0;
  right: 0px;
  margin: auto 0;
}

.header-box .nav-box .nav-box-left .dropup::after {
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: url("../images/icon-dropdown.png") no-repeat;
  background-position: center;
  background-size: 14px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  margin: auto 0;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
}

.header-box .nav-box .nav-box-left .download-app {
  color: #fff;
  font-size: 16px;
  line-height: 36px;
  font-weight: normal;
  cursor: pointer;
  position: relative;
}

.header-box .nav-box .nav-box-left .download-app:hover {
  color: #fff;
}

.header-box .nav-box .nav-box-left .download-app:hover .code-box {
  opacity: 1;
  height: 146px;
}

.header-box .nav-box .nav-box-left .download-app .code-box {
  box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -webkit-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -moz-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -ms-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  position: absolute;
  top: 58px;
  left: -40px;
  background: #fff;
  padding: 0 15px 0px 15px;
  box-sizing: border-box;
  width: 150px;
  height: 0;
  overflow: hidden;
}

.header-box .nav-box .nav-box-left .download-app .code-box .code {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 120px;
  height: 120px;
}

.header-box .nav-box .nav-box-left .download-app .code-box .text, .header-box .nav-box .nav-box-left .download-app .code-box .login-box .logout, .header-box .nav-box .login-box .nav-box-left .download-app .code-box .logout {
  color: #1a1a1a;
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
  padding-bottom: 10px;
}

.header-box .nav-box .search-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  transition: background 0.4s ease 0s;
  -webkit-transition: background 0.4s ease 0s;
  -moz-transition: background 0.4s ease 0s;
  -ms-transition: background 0.4s ease 0s;
  background: rgba(0, 0, 0, 0.1);
  height: 40px;
  width: 250px;
  border-radius: 40px;
  margin-left: 28px;
}

.header-box .nav-box .search-box:hover {
  background: rgba(0, 0, 0, 0.15);
}

.header-box .nav-box .search-box:focus {
  background: rgba(0, 0, 0, 0.15);
}

.header-box .nav-box .search-box .search-input {
  background: none;
  outline: none;
  border: 0px;
  -webkit-appearance: none;
  position: relative;
  padding-left: 32px;
  box-sizing: border-box;
  background: url(../images/icon-search.png) no-repeat;
  line-height: 20px;
  caret-color: #fff;
  color: #fff;
}

.header-box .nav-box .search-box .search-input::-webkit-input-placeholder {
  color: #eee;
}

.header-box .nav-box .search-box .search-input:-moz-placeholder {
  color: #eee;
}

.header-box .nav-box .search-box .search-input::-moz-placeholder {
  color: #eee;
}

.header-box .nav-box .search-box .search-input:-ms-input-placeholder {
  color: #eee;
}

.header-box .nav-box .login-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 180px;
  cursor: pointer;
  white-space: nowrap;
}

.header-box .nav-box .login-box .avatar {
  width: 40px;
  min-width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 40px;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}

.header-box .nav-box .login-box .text, .header-box .nav-box .login-box .logout {
  color: #fff;
  font-size: 16px;
  line-height: 36px;
  font-weight: normal;
  padding: 0 0 0 10px;
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-box .nav-section-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  background: #57be6a;
  overflow: hidden;
  height: 0;
}

.header-box .nav-section-box .nav-section {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 800px;
  padding-bottom: 20px;
}

.header-box .nav-section-box .nav-section .item {
  color: #fff;
  font-size: 18px;
  line-height: 36px;
  font-weight: normal;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 8px;
  width: 160px;
  box-sizing: border-box;
}

.header-box .nav-section-box .nav-section .item .pic {
  width: 24px;
  height: 24px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 24px;
  overflow: hidden;
  margin-right: 8px;
}

.header-box .nav-section-box-show {
  height: 102px;
}

.header-box-scroll {
  height: 60px;
  line-height: 60px;
}

.footer-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 80px;
  padding: 80px 0 60px 0;
  border-bottom: 1px solid #e6e6e6;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.footer-box .left {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  width: 50%;
}

.footer-box .left .item-box {
  margin: 0 44px;
}

.footer-box .left .item-box .title {
  color: #3d3d3d;
  font-size: 18px;
  line-height: 36px;
  font-weight: normal;
  padding-bottom: 16px;
}

.footer-box .left .item-box .list-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.footer-box .left .item-box .list-box .item-list {
  margin-right: 16px;
}

.footer-box .left .item-box .list-box .item-list .item {
  color: #666;
  font-size: 14px;
  line-height: 30px;
  font-weight: normal;
  display: block;
}

.footer-box .right {
  width: 50%;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.footer-box .right .code-box {
  margin: 0 32px;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.footer-box .right .code-box .title {
  color: #3d3d3d;
  font-size: 18px;
  line-height: 36px;
  font-weight: normal;
  padding-bottom: 16px;
}

.footer-box .right .code-box .code {
  background-position: center;
  background-size: cover;
  width: 120px;
  height: 120px;
}

.bottom-info {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding: 20px 0 20px 0;
}

.bottom-info .info {
  text-align: center;
  color: #999;
  font-size: 12px;
  line-height: 36px;
  font-weight: normal;
}

.bottom-info .info .link {
  color: #999;
  font-size: 12px;
  line-height: 30px;
  font-weight: normal;
  margin-right: 6px;
}

.float-box {
  position: fixed;
  top: 360px;
  bottom: 0;
  right: 0;
  margin: auto 0;
  width: 50px;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.float-box .item {
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  width: 50px;
  height: 50px;
  border-radius: 4px 0 0 4px;
  background: #7A6E6E;
  cursor: pointer;
  margin: 1px 0;
  letter-spacing: 1px;
  box-sizing: border-box;
}

.float-box .fankui {
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  font-weight: normal;
  padding: 12px 10px;
  text-align: center;
}

.float-box .fankui:hover {
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  font-weight: normal;
  background: #57be6a;
  width: 100px;
  line-height: 50px;
  padding: 0;
}

.float-box .scrolltop {
  height: 0;
  opacity: 0;
  position: relative;
}

.float-box .scrolltop::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url("../images/icon-scrolltop.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

.float-box .scrolltop .text, .float-box .scrolltop .header-box .nav-box .login-box .logout, .header-box .nav-box .login-box .float-box .scrolltop .logout {
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  font-weight: normal;
  opacity: 0;
}

.float-box .scrolltop:hover {
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  font-weight: normal;
  background: #57be6a;
  width: 130px;
  line-height: 50px;
}

.float-box .scrolltop:hover .text, .float-box .scrolltop:hover .header-box .nav-box .login-box .logout, .header-box .nav-box .login-box .float-box .scrolltop:hover .logout {
  opacity: 1;
  line-height: 50px;
  text-align: center;
  padding-right: 30px;
}

.float-box .scrolltop:hover::after {
  background-position: 93px center;
  background-size: 24px;
}

.float-box .showscrolltop {
  height: 50px;
  opacity: 1;
}

.popup-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  overflow: hidden auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.popup-box .login-box {
  box-shadow: 2px 3px 20px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 2px 3px 20px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 3px 20px 0 rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 2px 3px 20px 0 rgba(0, 0, 0, 0.2);
  width: 396px;
  height: 500px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  top: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 7;
  padding: 64px 56px 20px 56px;
  box-sizing: border-box;
}

.popup-box .login-box .close {
  cursor: pointer;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 20px !important;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.popup-box .login-box .comeback-login {
  color: gray;
  font-size: 12px;
  line-height: 36px;
  font-weight: normal;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 20px;
  left: 20px;
  white-space: nowrap;
  letter-spacing: 1px;
  padding: 0 10px;
  display: none;
}

.popup-box .login-box .active {
  display: block;
}

.popup-box .login-box .login-container {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.popup-box .login-box .login-container .login, .popup-box .login-box .login-container .register, .popup-box .login-box .login-container .find-password {
  transition: opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -ms-transition: opacity 0.1s ease 0s;
  width: 100%;
  margin-top: 20px;
}

.popup-box .login-box .login-container .register .input-box {
  margin-bottom: 23px;
}

.popup-box .login-box .login-container .find-password .input-box {
  margin-bottom: 28px;
}

.popup-box .login-box .login-container .active {
  display: block;
  opacity: 1;
}

.popup-box .login-box .login-container .input-box {
  width: 100%;
  margin-bottom: 38px;
  position: relative;
}

.popup-box .login-box .login-container .input-box .input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #dcdcdc;
  border-radius: 0;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  line-height: 36px;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
}

.popup-box .login-box .login-container .input-box .input::-webkit-input-placeholder {
  text-overflow: inherit;
  line-height: initial;
  white-space: pre;
  overflow-wrap: normal;
  -webkit-user-modify: read-only !important;
  overflow: hidden;
  color: #ccc;
  letter-spacing: 1px;
}

.popup-box .login-box .login-container .input-box .btn-yzm {
  color: gray;
  font-size: 16px;
  line-height: 36px;
  font-weight: normal;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  cursor: pointer;
}

.popup-box .login-box .login-container .input-box .am-btn {
  position: absolute;
  top: 0;
  bottom: 5px;
  right: 0;
  margin: auto 0;
  cursor: pointer;
  outline: none;
  border: none;
  box-sizing: border-box;
  overflow: hidden;
}

.popup-box .login-box .login-container .password {
  margin-bottom: 20px;
}

.popup-box .login-box .login-container .form-links {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: gray;
  cursor: pointer;
  margin-bottom: 30px;
}

.popup-box .login-box .login-container .forget-password {
  text-align: right;
}

.popup-box .login-box .login-container .form-action .btn-login {
  color: #fff;
  font-size: 16px;
  line-height: 36px;
  font-weight: normal;
  background: #57be6a;
  text-align: center;
  border-radius: 36px;
  outline: none;
  border: none;
  display: block;
  cursor: pointer;
  width: 200px;
  margin: 0 auto;
  margin-bottom: 20px;
  box-shadow: 5px 5px 10px rgba(87, 190, 106, 0.25);
}

.popup-box .login-box .login-container .form-action .btn-login:hover {
  background: #64d078;
}

.popup-box .login-box .login-container .small-title {
  position: relative;
  color: #b3b3b3;
  text-align: center;
  font-size: 10px;
}

.popup-box .login-box .login-container .small-title::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 32%;
  background: #f2f2f2;
  top: 50%;
  left: 0;
}

.popup-box .login-box .login-container .small-title::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 32%;
  background: #f2f2f2;
  top: 50%;
  right: 0;
}

.popup-box .login-box .login-container .other-login-methods {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 20px 20px 0 20px;
  box-sizing: border-box;
}

.popup-box .login-box .login-container .other-login-methods .method {
  cursor: pointer;
  display: block;
  width: 40px;
  height: 40px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.nomore {
  color: #999;
  font-size: 14px;
  line-height: 36px;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  letter-spacing: 1px;
  width: 100%;
}

#popup-video {
  position: fixed;
  right: 0px;
  bottom: 0px;
  min-width: 100%;
  min-height: 100%;
  height: auto;
  width: auto;
  z-index: 6;
  display: none;
  /*加滤镜*/
  /*-webkit-filter: grayscale(100%);*/
  /*filter:grayscale(100%);*/
}

source {
  min-width: 100%;
  min-height: 100%;
  height: auto;
  width: auto;
}

.title-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: nowrap;
  width: 100%;
  letter-spacing: 1px;
}

.title-box .title {
  color: #222;
  font-size: 22px;
  line-height: 22px;
  font-weight: normal;
  margin-right: 20px;
}

.title-box .des {
  color: #bfbfbf;
  font-size: 16px;
  line-height: 16px;
  font-weight: normal;
}

.main-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 20px 0 0 0;
}

.main-box .section-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -webkit-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -moz-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -ms-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  width: 930px;
  height: 260px;
  padding: 20px;
  box-sizing: border-box;
}

.main-box .section-box .item-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 180px;
}

.main-box .section-box .item-box .item {
  display: block;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.main-box .section-box .item-box .item:hover .pic {
  opacity: .85;
}

.main-box .section-box .item-box .item .pic {
  transition: all 0.1s linear 0s;
  -webkit-transition: all 0.1s linear 0s;
  -moz-transition: all 0.1s linear 0s;
  -ms-transition: all 0.1s linear 0s;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 4px;
  background: #eee;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main-box .section-box .item-box .item .item-right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  width: 125px;
  height: 80px;
  box-sizing: border-box;
  padding-left: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-box .section-box .item-box .item .item-right .title {
  color: #333;
  font-size: 16px;
  line-height: 28px;
  font-weight: normal;
}

.main-box .section-box .item-box .item .item-right .info {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  color: #57be6a;
}

.main-box .section-box .item-box .item .item-right .info .info-1 {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  color: #999;
  font-size: 12px;
  line-height: 14px;
  font-weight: normal;
  margin: 0 0 2px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-box .section-box .item-box .item .item-right .info .info-1 .total {
  margin-right: 10px;
}

.main-box .section-box .item-box .item .item-right .info .info-2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.main-box .section-box .item-box .item .item-right .info .info-2 .new {
  color: #999;
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
  margin-right: 4px;
}

.main-box .section-box .item-box .item .item-right .info .info-2 .link {
  color: #57be6a;
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
}

.main-box .section-box .item-box .item .item-right .info .info-3 {
  color: #bfbfbf;
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
}

.main-box .login-box {
  box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -webkit-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -moz-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -ms-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 250px;
  height: 260px;
  padding: 20px;
  box-sizing: border-box;
}

.main-box .login-box .input-box {
  width: 100%;
}

.main-box .login-box .input-box .input-main {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  height: 92px;
  margin: 0px 0 20px 0;
}

.main-box .login-box .input-box .input-main .input {
  border: 0px;
  -webkit-appearance: none;
  position: relative;
  box-sizing: border-box;
  line-height: 36px;
  caret-color: #222;
  color: #222;
  outline: none;
  border-bottom: 1px solid #e6e6e6;
  width: 100%;
}

.main-box .login-box .input-box .input-main .input::-webkit-input-placeholder {
  color: #ccc;
}

.main-box .login-box .input-box .input-main .input:-moz-placeholder {
  color: #ccc;
}

.main-box .login-box .input-box .input-main .input::-moz-placeholder {
  color: #ccc;
}

.main-box .login-box .input-box .input-main .input:-ms-input-placeholder {
  color: #ccc;
}

.main-box .login-box .btn-login {
  color: #fff;
  font-size: 16px;
  line-height: 36px;
  font-weight: normal;
  background: #57be6a;
  text-align: center;
  border-radius: 36px;
  outline: none;
  border: none;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  width: 120px;
  margin: 0 auto;
  box-shadow: 0px 2px 10px 0px rgba(87, 190, 106, 0.3);
}

.main-box .login-box .btn-login:hover {
  background: #64d078;
}

.main-box .login-box .method-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}

.main-box .login-box .method-box .login-method {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.main-box .login-box .method-box .login-method .wechat {
  color: #999;
  font-size: 12px;
  line-height: 20px;
  font-weight: normal;
  padding-left: 24px;
  background: url("../images/icon-wechat.png") no-repeat;
  margin-right: 20px;
  cursor: pointer;
}

.main-box .login-box .method-box .login-method .phone {
  color: #999;
  font-size: 12px;
  line-height: 20px;
  font-weight: normal;
  padding-left: 24px;
  background: url("../images/icon-phone.png") no-repeat;
  cursor: pointer;
}

.main-box .login-box .method-box .sign-box {
  cursor: pointer;
}

.main-box .login-box .method-box .sign-box .sign {
  color: #57be6a;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
}

.main-box .login-box .islogin-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
}

.main-box .login-box .islogin-box .userinfo {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.main-box .login-box .islogin-box .userinfo .avatar {
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 64px;
  background: #eee;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.main-box .login-box .islogin-box .userinfo .info {
  padding-left: 10px;
  box-sizing: border-box;
}

.main-box .login-box .islogin-box .userinfo .info .name {
  color: #222;
  font-size: 18px;
  line-height: 36px;
  font-weight: normal;
  max-width: 128px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-box .login-box .islogin-box .userinfo .info .other {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.main-box .login-box .islogin-box .userinfo .info .other .level {
  width: 76px;
  height: 20px;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  background-size: auto 20px !important;
}

.main-box .login-box .islogin-box .userinfo .info .other .logout {
  color: #bfbfbf;
  font-size: 14px;
  line-height: 36px;
  font-weight: normal;
  cursor: pointer;
}

.main-box .login-box .islogin-box .operation-container {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}

.main-box .login-box .islogin-box .operation-container .item {
  color: #666;
  font-size: 14px;
  line-height: 28px;
  font-weight: normal;
  width: 60px;
  height: 28px;
  padding-top: 36px;
  display: block;
  background-position: top center !important;
  background-repeat: no-repeat !important;
  background-size: 36px !important;
  text-align: center;
  cursor: pointer;
}

.main-box .login-box .islogin-box .btn-publish {
  color: #fff;
  font-size: 16px;
  line-height: 36px;
  font-weight: normal;
  background: #57be6a;
  text-align: center;
  border-radius: 36px;
  outline: none;
  border: none;
  display: block;
  cursor: pointer;
  width: 120px;
  margin: 0 auto;
}

.main-box .login-box .islogin-box .btn-publish:hover {
  background: #64d078;
}

.main-box .select-box {
  width: 930px;
  margin: 0;
}

.main-box .select-box:hover .switch-prev {
  opacity: 1;
}

.main-box .select-box:hover .switch-next {
  opacity: 1;
}

.main-box .select-box .select-item {
  box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -webkit-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -moz-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -ms-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
  background: #eee;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.main-box .select-box .select-item:hover {
  opacity: .9;
}

.main-box .select-box .select-item:hover .main {
  height: 80px;
}

.main-box .select-box .select-item:hover .main .title {
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  display: -webkit-box;
  display: box;
}

.main-box .select-box .select-item .main {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  transition: all 0.2s linear 0s;
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  -ms-transition: all 0.2s linear 0s;
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  padding: 8px;
  box-sizing: border-box;
}

.main-box .select-box .select-item .main .title {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  display: -webkit-box;
  display: box;
  letter-spacing: 1px;
}

.main-box .select-box .select-item .main .info {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}

.main-box .select-box .select-item .main .info .userinfo {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.main-box .select-box .select-item .main .info .userinfo .avatar {
  width: 16px;
  height: 16px;
  border-radius: 16px;
  border: 1px solid #4d4d4d;
  overflow: hidden;
  margin-right: 10px;
  background: #eee;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main-box .select-box .select-item .main .info .userinfo .name {
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: normal;
  letter-spacing: 1px;
}

.main-box .select-box .select-item .main .info .action-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: normal;
}

.main-box .select-box .select-item .main .info .action-box .like {
  padding-left: 18px;
  position: relative;
  margin-right: 10px;
}

.main-box .select-box .select-item .main .info .action-box .like::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: 14px;
  height: 14px;
  background: url("../images/icon-like.png") no-repeat;
}

.main-box .select-box .select-item .main .info .action-box .comment {
  padding-left: 18px;
  position: relative;
}

.main-box .select-box .select-item .main .info .action-box .comment::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: 14px;
  height: 14px;
  background: url("../images/icon-comment.png") no-repeat;
}

.main-box .select-box .switch-prev {
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  opacity: 0;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto 0;
  z-index: 9;
  cursor: pointer;
}

.main-box .select-box .switch-prev::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icon-arrow.png") no-repeat center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 4px;
  margin: auto;
}

.main-box .select-box .switch-next {
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  opacity: 0;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
  z-index: 9;
  cursor: pointer;
}

.main-box .select-box .switch-next::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icon-arrow.png") no-repeat center;
  transform: rotate(180deg);
  top: 0;
  bottom: 0;
  left: 0;
  right: 4px;
  margin: auto;
}

.main-box .select-box .switch-disabled {
  opacity: .75;
}

.main-box .select-box .switch-hide {
  display: none;
}

.main-box .active-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -webkit-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -moz-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -ms-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  width: 250px;
  height: 300px;
  padding: 20px;
  box-sizing: border-box;
}

.main-box .active-box:hover .switch-prev-active {
  opacity: 1;
}

.main-box .active-box:hover .switch-next-active {
  opacity: 1;
}

.main-box .active-box .user-box {
  height: 222px;
  width: 100%;
}

.main-box .active-box .user-box .item {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  transition: all 0.1s ease 0s;
  -webkit-transition: all 0.1s ease 0s;
  -moz-transition: all 0.1s ease 0s;
  -ms-transition: all 0.1s ease 0s;
  width: 100%;
  height: 64px;
  margin: 10px 0 0px 0 !important;
}

.main-box .active-box .user-box .item:hover .avatar {
  opacity: .9;
}

.main-box .active-box .user-box .item .avatar {
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  min-width: 64px;
  width: 64px;
  height: 64px;
  border-radius: 64px;
  overflow: hidden;
  background: #eee;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-box .active-box .user-box .item .userinfo {
  flex-grow: 1;
  max-width: 146px;
  padding-left: 10px;
  box-sizing: border-box;
}

.main-box .active-box .user-box .item .userinfo .name {
  color: #222;
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 1px;
}

.main-box .active-box .user-box .item .userinfo .tiezi {
  color: #999;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  display: block;
  letter-spacing: 1px;
}

.main-box .active-box .switch-prev-active {
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  opacity: 0;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 24px;
  position: absolute;
  top: 0px;
  bottom: 36px;
  left: 0;
  margin: auto 0;
  z-index: 9;
  cursor: pointer;
}

.main-box .active-box .switch-prev-active::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icon-arrow.png") no-repeat center;
  top: 0;
  bottom: 0px;
  left: -1px;
  right: 0px;
  margin: auto;
}

.main-box .active-box .switch-next-active {
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  opacity: 0;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 24px;
  position: absolute;
  top: 0;
  bottom: 36px;
  right: 0px;
  margin: auto 0;
  z-index: 9;
  cursor: pointer;
}

.main-box .active-box .switch-next-active::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icon-arrow.png") no-repeat center;
  transform: rotate(180deg);
  top: 0px;
  bottom: 0;
  left: 1px;
  right: 0;
  margin: auto;
}

.post-box {
  box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -webkit-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -moz-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  -ms-box-shadow: 2px 3px 20px 0 rgba(230, 230, 230, 0.5);
  width: 930px;
  box-sizing: border-box;
  padding: 20px;
}

.post-box .top-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.post-box .top-box .tab-switch-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.post-box .top-box .tab-switch-box .item {
  color: #666;
  font-size: 18px;
  line-height: 36px;
  font-weight: normal;
  transition: all 0.05s linear 0s;
  -webkit-transition: all 0.05s linear 0s;
  -moz-transition: all 0.05s linear 0s;
  -ms-transition: all 0.05s linear 0s;
  cursor: pointer;
  letter-spacing: 2px;
}

.post-box .top-box .tab-switch-box .item:hover {
  color: #57be6a;
}

.post-box .top-box .tab-switch-box .line {
  color: #ededed;
  font-size: 14px;
  line-height: 36px;
  font-weight: normal;
  padding: 0 15px;
}

.post-box .top-box .tab-switch-box .active {
  color: #57be6a;
  font-size: 22px;
  line-height: 36px;
  font-weight: normal;
}

.post-box .top-box .btn-publish {
  color: #fff;
  font-size: 16px;
  line-height: 36px;
  font-weight: normal;
  background: #57be6a;
  text-align: center;
  border-radius: 36px;
  outline: none;
  border: none;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  padding: 0 20px;
}

.post-box .top-box .btn-publish:hover {
  background: #64d078;
}

.post-box .list-box .bl {
  border-bottom: 1px solid #f5f5f5;
}

.post-box .list-box .item {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  padding: 20px 0;
  box-sizing: border-box;
}

.post-box .list-box .item:hover .item-right .title {
  color: #57be6a;
  font-size: 18px;
  line-height: 36px;
  font-weight: normal;
}

.post-box .list-box .item:hover .pic {
  opacity: .9;
}

.post-box .list-box .item .pic {
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  position: relative;
  width: 150px;
  height: 120px;
  min-width: 150px;
  background: #eee;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

.post-box .list-box .item .pic .typecount {
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: normal;
  height: 20px;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  bottom: 4px;
  right: 4px;
  border-radius: 20px;
  padding: 0 8px;
  box-sizing: border-box;
}

.post-box .list-box .item .pic .typepic {
  position: absolute;
  padding-left: 24px;
}

.post-box .list-box .item .pic .typepic::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 6px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: url("../images/icon-pic.png");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
}

.post-box .list-box .item .pic .typevideo {
  position: absolute;
  padding-left: 24px;
}

.post-box .list-box .item .pic .typevideo::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("../images/icon-video.png");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
}

.post-box .list-box .item .item-right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  width: 740px;
  height: 120px;
  box-sizing: border-box;
  padding: 0 0 0 20px;
}

.post-box .list-box .item .item-right .title {
  color: #333;
  font-size: 18px;
  line-height: 36px;
  font-weight: normal;
  transition: all 0.2s ease 0s;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 1px;
  width: 100%;
  cursor: pointer;
}

.post-box .list-box .item .item-right .des {
  color: #999;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  letter-spacing: 1px;
  display: -webkit-box;
  display: box;
}

.post-box .list-box .item .item-right .bottom {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  color: #bfbfbf;
  font-size: 12px;
  line-height: 24px;
  font-weight: normal;
  padding-top: 10px;
  width: 100%;
}

.post-box .list-box .item .item-right .bottom .bottom-left, .post-box .list-box .item .item-right .bottom .bottom-right {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.post-box .list-box .item .item-right .bottom .bottom-left .user, .post-box .list-box .item .item-right .bottom .bottom-right .user {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.post-box .list-box .item .item-right .bottom .bottom-left .user .avatar, .post-box .list-box .item .item-right .bottom .bottom-right .user .avatar {
  width: 16px;
  height: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.post-box .list-box .item .item-right .bottom .bottom-left .user .name, .post-box .list-box .item .item-right .bottom .bottom-right .user .name {
  padding: 0 0 0 8px;
}

.post-box .list-box .item .item-right .bottom .bottom-left .date, .post-box .list-box .item .item-right .bottom .bottom-right .date {
  margin: 0 0 0 20px;
  letter-spacing: 1px;
}

.post-box .list-box .item .item-right .bottom .bottom-left .from, .post-box .list-box .item .item-right .bottom .bottom-right .from {
  margin: 0 0 0 20px;
}

.post-box .list-box .item .item-right .bottom .bottom-right .view {
  letter-spacing: 1px;
}

.post-box .list-box .item .item-right .bottom .bottom-right .like {
  letter-spacing: 1px;
  margin: 0 0 0 20px;
}

.post-box .list-box .item .item-right .bottom .bottom-right .comment {
  letter-spacing: 1px;
  margin: 0 0 0 20px;
}

.post-box .pagecount-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding: 20px 0;
}

.post-box .pagecount-box .pagecount {
  color: #333;
  font-size: 14px;
  line-height: 40px;
  font-weight: normal;
  width: 64px;
  box-sizing: border-box;
  border: 1px solid #f2f2f2;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 10px;
}

.post-box .pagecount-box .nowpage {
  color: #333;
  font-size: 16px;
  line-height: 40px;
  font-weight: normal;
  padding: 0 10px;
  text-align: center;
}

.post-box .pagecount-box .pageswitch {
  color: #333;
  font-size: 14px;
  line-height: 40px;
  font-weight: normal;
  width: 64px;
  box-sizing: border-box;
  border: 1px solid #f2f2f2;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 10px;
}

.post-box .pagecount-box .pageswitchdisable {
  color: #bfbfbf;
  font-size: 14px;
  line-height: 40px;
  font-weight: normal;
}

.other-box {
  width: 250px;
}

.other-box .guide-box {
  width: 100%;
  display: block;
}

.other-box .guide-box .guide {
  display: block;
  width: 100%;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
}

.other-box .guide-box .guide:hover {
  opacity: .9;
}

.loadmore {
  color: #3d3d3d;
  font-size: 18px;
  line-height: 36px;
  font-weight: normal;
  text-align: center;
  cursor: pointer;
  letter-spacing: 1px;
  padding: 10px 0;
  background: #fff;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.loadmore:hover {
  background: #f5f5f5;
}


.div-reply{
  color: #3d3d3d;
  font-size: 18px;
  line-height: 36px;
  font-weight: normal;
  text-align: center;
  cursor: pointer;
  letter-spacing: 1px;
  padding: 10px 0;
  background: #fff;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.div-reply:hover {
  background: #f5f5f5;
}



.remind-box {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  transition: all 0.1s linear 0s;
  -webkit-transition: all 0.1s linear 0s;
  -moz-transition: all 0.1s linear 0s;
  -ms-transition: all 0.1s linear 0s;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.remind-box .alert-box {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  font-weight: normal;
  transition: all 0.2s linear 0s;
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  -ms-transition: all 0.2s linear 0s;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  padding: 18px 24px;
  text-align: left;
  letter-spacing: 1px;
  max-width: 300px;
  box-sizing: border-box;
}

.remind-enter-active {
  animation: remind-in .3s;
}

.remind-leave-active {
  animation: remind-in .3s reverse;
}

@keyframes remind-in {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.arc_ewm_bg{
	width:250px; height:250px; margin-top:10px; background:url('../images/ewm_bg.png') no-repeat;background-size:250px; margin:0px auto; position: relative;
}
.arc_ewm_img{
	width:133px;height:133px;position: absolute;bottom:13px;right:2px
}|
.arc_ewm_txt{
	color:#00AF66; font-weight:600
}
