body {
  background: #f5f5f5;
}
.main-content {
  padding-top: 26px;
  padding-bottom: 166px;
  display: flex;
}

.layout-side-left {
  width: 122px;
}

.side-nav {
  width: 100px;
  position: fixed;
}

.side-nav .side-nav-list {
  padding-bottom: 24px;
}

.side-nav .side-nav-list>li.active {
  color: #fff;
  background-color: #155bd4;
}

.side-nav .side-nav-list>li {
  display: block;
  width: 100%;
  height: 36px;
  line-height: 36px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  border-radius: 4px;
  margin-bottom: 8px;
  cursor: pointer;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
}

.side-nav .side-nav-list>li:hover {
  background-color: #f2f3f5;
}

.side-nav .side-nav-list>li.active:hover {
  background: #155bd4;
}

.side-nav .side-nav-list>li>a {
  display: block;
  width: 100%;
  height: 100%;
  font: inherit;
}

.layout-content {
  /* width: 1078px; */
  width: 100%;
}

.article-box {
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.article-box:first-child {
  margin-top: 0;
}

.article-box .img-box {
  width: 210px;
  height: 140px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
}

.article-box .img-box .play {
  width: 45px;
  height: 45px;
  background: url(../images/play.png) no-repeat center/100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.article-box .img-box img {

	width: 100%;
    height: 100%;
    transition: all .3s;
    border-radius: 10px;
}

.article-box .img-box img:hover {
  transform: scale(1.01);
}

.article-box .text-box {
  width: calc(100% - 230px);
  height: 140px;
  position: relative;
}

.article-box .text-box .title {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-box .text-box .title:hover {
  color: #004BE1;
}

.article-box .text-box .desc {
  font-size: 14px;
  color: #666;
  line-height: 20px;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.article-box .text-box .time {
  font-size: 10px;
  margin-top: 10px;
  color: #A0A0A0;
}

.article-box .text-box .bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 10px;
}

.article-box .text-box .bottom .tags span {
  display: inline-block;
  font-size: 13px;
  color: #A0A0A0;
  line-height: 20px;
  padding: 0 8px;
  background-color: #EFEFEF;
  border-radius: 10px;
  margin-right: 10px;
}

.article-box .text-box .bottom .tags span:hover,
.article-box .text-box .bottom .authour:hover {
  color: #004BE1;
}

.article-box .text-box .bottom .authour {
  font-size: 13px;
  color: #A0A0A0;
  line-height: 20px;
}

.article-box .text-box .bottom .views {
  font-size: 13px;
  color: #A0A0A0;
  margin-right: 10px;
}

.article-box .text-box .bottom .views .iconfont {
  margin-right: 3px;
}

.login-box .free-trial {
  line-height: 70px;
  color: #004BE1;
  font-size: 14px;
  margin-right: 10px;
}

.banner {
  height: auto;
  background: none;
}

.float-right .rec-authors {
  margin-top: 20px;
}

.float-right .rec-authors .title {
  width: 100%;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  color: #333;
  position: relative;
  border-bottom: 1px solid #EFEFEF;
}

.float-right .rec-authors .title::before {
  content: '';
  display: block;
  width: 63px;
  height: 6px;
  background: linear-gradient(90deg, #4591FF, #004BE1);
  border-radius: 6px 6px 0px 0px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.float-right .rec-authors .item {
  width: 100%;
  height: 115px;
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding-left: 14px;
  padding-right: 22px;
  border: 1px solid #EBF0F3;
  border-radius: 4px;
}

.float-right .rec-authors .item:hover {
  box-shadow: -1px 2px 10px 0px rgba(53, 101, 128, 0.13);
}

.float-right .rec-authors .item .profile-photo {
  width: 64px;
  height: 64px;
  border-radius: 0 !important;
  overflow: hidden;
  margin-right: 14px;
  flex-shrink: 0;
}

.float-right .rec-authors .item .profile-photo img {
  width: 100%;
  height: 100%;
}

.float-right .rec-authors .item .text-box {
  width: auto !important;
}

.float-right .rec-authors .item .text-box .name {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.float-right .rec-authors .item .text-box .name:hover {
  color: #004BE1;
}

.float-right .rec-authors .item .text-box .intro {
  font-size: 14px;
  color: #666;
  line-height: 20px;
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: box;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.float-right .rec-authors .item .btn {
  border: 1px solid #004BE1;
  border-radius: 2px;
  padding: 0 7px;
  font-size: 14px;
  line-height: 20px;
  color: #004BE1;
  margin-left: 5px;
  cursor: pointer;
}

.float-right .rec-authors .item .btn.followed {
  color: #fff;
  background: #8590A6;
  border-color: #8590A6;
}

.float-right .official-account {
  margin-top: 20px;
  width: 100%;
  height: 148px;
  overflow: hidden;
}

.float-left {
  width: calc(100% - 368px);
  float: left;
}

.float-left .swiper-container {
	margin-bottom: 26px;
	width: 100%;
	border-radius: 15px;
	background: #FFFFFF;
}
/* 公用右侧样式 */
.public-right {
  width: 346px;
  float: right;
}

.public-right .right-block {
  margin-top: 20px;
  border-radius: 2px;
}

.public-right .right-block:first-child {
  margin-top: 0;
}

.public-right .right-block .top {
  height: 56px;
  box-sizing: border-box;
  border-bottom: 1px solid #EFEFEF;
  padding-left: 14px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.public-right .right-block .top .title {
  line-height: 56px;
  font-size: 16px;
  color: #374567;
  position: relative;
}

.public-right .right-block .top .title::after {
  content: '';
  width: 100%;
  height: 6px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, #4591FF 0%, #004BE1 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.public-right .right-block .top .more {
  font-size: 14px;
  color: #004BE1;
}

.public-right .right-block .top .subtitle {
  font-size: 12px;
  color: #999999;
}

.public-right .right-block .details {
  background: #fff;
}

.public-right .recommended-product .details {
  padding: 16px 20px;
}

.public-right .recommended-product .details .product-swiper {
  padding-bottom: 26px;
}

.public-right .recommended-product .details .product-swiper .swiper-slide {
  height: 149px;
  padding: 28px 20px;
  box-sizing: border-box;
}

.public-right .recommended-product .details .product-swiper .swiper-slide .title {
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  color: #F8F8F8;
}

.public-right .recommended-product .details .product-swiper .swiper-slide .subtitle {
  font-size: 15px;
  color: #F8F8F8;
  margin-top: 2px;
  line-height: 22px;
}

.public-right .recommended-product .details .product-swiper .swiper-slide .btn {
  display: inline-block;
  width: 95px;
  height: 30px;
  background: #fff;
  border-radius: 6px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  margin-top: 12px;
}

.public-right .recommended-product .details .product-swiper .product-swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}

.public-right .recommended-product .details .product-swiper .product-swiper-pagination .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: rgba(0, 75, 225, 0.3) !important;
}

.public-right .recommended-product .details .product-swiper .product-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 20px !important;
  border-radius: 20px !important;
  background: #004BE1 !important;
}

.public-right .related .details {
  padding-bottom: 12px;
}

.public-right .related .details .article a {
  /*margin-top: 30px;*/
  display: flex;
  align-items: center;
  padding-right: 15px;
  cursor: pointer;
}

.public-right .related .details .article .img-box {
  width: 120px;
  height: 80px;
  margin-right: 16px;
  flex-shrink: 0;
}

.public-right .related .details .article a:hover .title {
  color: #004BE1;
}

.public-right .related .details .article .title {
  height: 73px;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: box;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}

.public-right .private-domain-operation .details {
  padding: 20px;
}

.public-right .private-domain-operation .details .school-video {
  display: block;
  width: 306px;
  height: 149px;
  margin-top: 20px;
}

.public-right .private-domain-operation .details .school-video:first-child {
  margin-top: 0;
}

.public-right .wechat-group .details {
  padding: 20px 14px;
}

.public-right .wechat-group .details .group {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.public-right .wechat-group .details .group img {
  width: 96px;
  height: 96px;
  margin-right: 18px;
}

.public-right .wechat-group .details .group .title {
  font-size: 16px;
  color: #000000;
  line-height: 22px;
}

.public-right .wechat-group .details .group .desc {
  font-size: 12px;
  margin-top: 5px;
  color: #666;
}

.public-right .wechat-group .details .group .btn {
  width: 54px;
  height: 22px;
  margin-top: 8px;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  border: 1px solid #B7C8FA;
  background: #EDF4FF;
  border-radius: 2px;
  text-align: center;
  color: #2D55C7;
}

.public-right .wechat-group .details .group .btn.desable {
  border: 1px solid #A2A2A2;
  color: #979797;
}

.public-right .wechat-group .details .group:first-child {
  margin-top: 0;
}

.public-right .mobile-reading {
  background: #FAFAFA;
  border: 1px solid #EBF0F3;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  align-items: center;
}

.public-right .mobile-reading .code-box {
  width: 96px;
  height: 96px;
  margin-right: 18px;
  flex-shrink: 0;
}

.public-right .mobile-reading .title {
  color: #000000;
  font-size: 16px;
}

.public-right .mobile-reading .desc {
  font-size: 16px;
  color: #666666;
  margin-top: 18px;
}

.public-right .tags .details {
  padding: 14px 14px 24px 4px;
}

.public-right .tags .details .tag {
	display: inline-block;
    line-height: 20px;
    padding: 2px 8px;
    background: #EDF4FF;
    font-size: 14px;
    color: #004BE1;
    margin-left: 10px;
    margin-top: 10px;
    border-radius: 4px;
}

.public-right .tags .details .tag:hover {
  color: #fff;
  background: #004BE1;
}

.public-right .marketingtools .details {
  padding: 24px 14px;
}

.public-right .marketingtools .details .tool {
  margin-top: 16px;
}

.public-right .marketingtools .details .tool:first-child {
  margin-top: 0;
}

.public-right .marketingtools .details .tool a {
  display: flex;
  align-items: center;
}

.public-right .marketingtools .details .tool a:hover .title {
  color: #004BE1;
}

.public-right .marketingtools .details .tool .img {
  width: 42px;
  height: 42px;
  margin-right: 16px;
  flex-shrink: 0;
}

.public-right .marketingtools .details .tool .text-bxo {
  width: calc(100% - 58px);
}

.public-right .marketingtools .details .tool .title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 19px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-right .marketingtools .details .tool .subtitle {
  font-size: 14px;
  color: #818999;
  overflow: hidden;
  line-height: 19px;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 6px;
}

.public-right .questions .details {
  padding: 24px 14px;
}

.public-right .questions .details .question {
  margin-top: 16px;
  font-size: 14px;
  color: #333;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: box;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.public-right .questions .details .question:hover {
  color: #004BE1;
}

.public-right .questions .details .question:first-child {
  margin-top: 0;
}

.public-right .advertising {
  margin-top: 20px;
  cursor: pointer;
}

.public-right .advertising img {
	transition: all .3s;
    border-radius: 10px;
}

.public-right .advertising img:hover {
  transform: scale(1.01);
}
/* 公用右侧样式 */