/**
 * @Author   swcn-tlj
 * @Date    2024-02-29
 */
/**
 * @Author   swcn-tlj
 * @Date     2024-01-09
 */
.sw-lay-newdet {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: white;
}

.sw-lay-LR {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-top: calc(6.8rem + 1px);
}

.sw-lay-LR .sw-lay-L {
  flex: 1;
  position: relative;
  transition: .3s ease-out;
}

.sw-lay-LR .sw-lay-R {
  position: relative;
  flex-shrink: 0;
  width: 28.56%;
  transition: .3s ease-out;
}

.sw-lay-LR .sw-lay-R::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
}

.sw-lay-LR.sw-close-R {
  transition: .3s ease-out;
}

.sw-lay-LR.sw-close-R .sw-lay-R {
  width: 0;
}

.sw-lay-LR.sw-close-R .sw-lay-R::after {
  width: 0;
}

.sw-lay-LR.sw-close-R .sw-lay-fix.sw-lay-fixT {
  display: block;
}

.sw-lay-fix {
  position: absolute;
  z-index: 200;
  right: 3rem;
}

.sw-lay-fix.sw-lay-fixT {
  top: 3rem;
  display: none;
}

.sw-lay-fix.sw-lay-fixM {
  top: 50%;
  transform: translateY(-50%);
}

.sw-lay-fix.sw-lay-fixB {
  bottom: 5rem;
}

@media (max-width: 1439px) {
  .sw-lay-LR .sw-lay-R {
    width: 33.6rem;
  }
}

@media (max-width: 959px) {
  .sw-lay-LR {
    height: 100%;
    flex-direction: column;
  }
  .sw-lay-LR .sw-lay-L {
    flex-shrink: 0;
    height: 100%;
  }
  .sw-lay-LR .sw-lay-R {
    width: 100%;
    height: 0;
  }
  .sw-lay-LR .sw-lay-R::after {
    width: 0;
  }
  .sw-lay-LR.sw-close-R .sw-lay-L {
    height: 30%;
  }
  .sw-lay-LR.sw-close-R .sw-lay-R {
    width: 100%;
    height: 70%;
  }
  .sw-lay-fix {
    position: fixed;
  }
  .sw-lay-fix.sw-lay-fixT {
    top: 10rem;
    display: block;
  }
}

.sw-menu-line {
  display: none;
}

.sw-head .active {
  position: relative;
}

.sw-head .active .sw-menu-link::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);
  width: 20px !important;
  height: 4px;
  border-radius: 2px;
  background-color: var(--m-color);
}

.sw-btn-media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  color: #111f2c;
  border-radius: 50%;
  background-color: #f7f7f7;
  cursor: pointer;
  transition: background-color .3s, color .3s;
}

.sw-btn-media:hover {
  color: rgba(17, 31, 44, 0.56);
}

.sw-btn-media.sw-btn-disable {
  cursor: not-allowed;
}

.sw-btn-media.sw-btn-disable .sw-icon {
  opacity: .3;
}

.sw-btn-public {
  position: absolute;
  left: 3rem;
  top: 3rem;
  z-index: 101;
}

.sw-btn-public.sw-btn-back {
  display: none;
}

.sw-btn-public.sw-btn-close {
  display: flex;
}

.sw-btn-openrec .sw-title {
  display: none;
}

.sw-btn-switch- {
  position: relative;
  width: 4rem;
  margin: 0 auto;
}

.sw-btn-switch-::after {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  content: '';
  width: 4rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f7f7f7;
  border-radius: 2rem;
  transition: .3s ease-out;
}

.sw-btn-switch-:hover::after {
  background-color: #f2f2f2;
}

.sw-btn-switch- > a {
  position: relative;
  z-index: 2;
  display: block;
  width: 4rem;
  height: 4rem;
  color: rgba(17, 31, 44, 0.56);
}

.sw-btn-switch- > a:hover {
  color: #111f2c;
}

.sw-btn-group .sw-icon-col + .sw-icon-col {
  margin-top: 2rem;
}

.sw-btn-group .icon-name {
  padding-top: .3em;
}

.sw-art-backtop {
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  cursor: pointer;
}

.sw-art-backtop .sw-btn-media {
  transform: translateY(6rem);
  transition: .3s ease-out;
}

.sw-art-backtop .sw-icon {
  color: #111f2c;
}

.sw-art-backtop.sw-show .sw-btn-media {
  transform: translateY(0);
}

.sw-art-backtop:hover .sw-icon {
  color: rgba(17, 31, 44, 0.56);
}

.sw-share-detail {
  position: absolute;
  right: 8rem;
  bottom: calc(50% - 10.7rem);
  z-index: 200;
  min-width: 20rem;
  padding-right: 1.5rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}

.sw-share-detail.sw-show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: all .3s;
}

.sw-share-detail .sw-share {
  position: relative;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sw-share-detail .sw-share::before, .sw-share-detail .sw-share::after {
  position: absolute;
  content: '';
  right: -20px;
  bottom: 40px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
}

.sw-share-detail .sw-share::before {
  border-left-color: rgba(0, 0, 0, 0.2);
}

.sw-share-detail .sw-share::after {
  border-left-color: white;
}

.sw-share-list {
  padding: 2rem 0;
}

.sw-share-list a {
  display: block;
}

.sw-share-list a:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.sw-share-list a > div {
  padding: .8rem 2rem;
}

.sw-share-list .sw-icon {
  width: 3rem;
  height: 3rem;
  color: white;
  background-color: #666a8c;
  border-radius: 50%;
  margin-right: 1rem;
}

.sw-share-list .sw-des {
  color: rgba(17, 31, 44, 0.7);
}

.sw-weixin {
  position: relative;
}

.sw-weixin .sw-img-box {
  position: absolute;
  right: calc(100% - 15px);
  top: 50%;
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}

.sw-weixin .sw-img-box > div {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.sw-weixin .sw-img-box .sw-img {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
}

.sw-tips {
  position: absolute;
  z-index: 999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}

.sw-tips.sw-show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: all .3s;
}

@media (max-width: 959px) {
  .sw-share-box {
    position: fixed;
    width: 100%;
  }
  .sw-share-box .sw-share::before, .sw-share-box .sw-share::after {
    display: none;
  }
  .sw-share-detail {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 400;
    width: 100%;
    padding-right: 0;
  }
  .sw-share-detail .sw-share {
    border-radius: 12px 12px 0 0;
  }
  .sw-share-list {
    display: flex;
    flex-wrap: wrap;
    padding: 3rem 5%;
  }
  .sw-share-list a {
    width: 25%;
  }
  .sw-share-list a:hover {
    background-color: transparent;
  }
  .sw-share-list a > div {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
  .sw-share-list .sw-icon {
    width: 4.6rem;
    height: 4.6rem;
    font-size: 1.6rem;
    margin-right: 0;
    margin-bottom: .5rem;
  }
  .sw-share-list .sw-des {
    font-size: 15px;
  }
  .sw-share-list .sw-weixin .sw-img-box {
    left: 50%;
    right: auto;
    bottom: 15rem;
    transform: translateX(-50%);
  }
  .sw-share-list .sw-weixin .sw-img-box > div {
    transform: translateY(-128%);
  }
}

.sw-art-mark {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.sw-art-mark.sw-show {
  display: block;
}

.sw-art-title {
  text-align: justify;
  padding-top: 5rem;
}

.sw-art-title .sw-title {
  color: #111f2c;
  line-height: 1.4;
}

.sw-art-title .sw-des {
  margin-top: .5em;
  color: rgba(17, 31, 44, 0.7);
}

.sw-art-title .sw-des span {
  padding: 0 .5rem;
}

.sw-page-ptitle {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  padding: 10rem 4rem 4rem 4rem;
  margin-top: 0;
  background: linear-gradient(180deg, transparent, black);
}

.sw-page-ptitle .sw-title {
  color: rgba(255, 255, 255, 0.9);
}

.sw-page-ptitle .sw-des {
  color: rgba(255, 255, 255, 0.6);
}

.sw-more {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  padding-bottom: 5rem;
  background: linear-gradient(180deg, transparent 40%, white 80%);
}

.sw-more .sw-btn {
  padding-left: 30px;
  padding-right: 30px;
}

.sw-article-box {
  max-width: calc(680px + 22rem);
  padding-left: 11rem;
  padding-right: 11rem;
  margin: 0 auto;
}

.sw-edit-box {
  font-size: 18px;
  line-height: 1.667;
  letter-spacing: 1px;
  text-align: justify;
  word-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  padding: 4rem 0;
}

.sw-edit-box p {
  margin-top: 5px;
  margin-bottom: 5px;
}

.sw-type-page .sw-article-box {
  height: 100%;
  cursor: pointer;
}

.sw-type-page .sw-article-rel {
  position: relative;
  height: 100%;
}

.sw-type-page .sw-art-scroll {
  position: relative;
  overflow: hidden !important;
  padding-right: 6px;
}

.sw-type-page .sw-more {
  display: flex;
}

.sw-type-page .sw-btn-public.sw-btn-back {
  display: flex;
}

.sw-type-page .sw-btn-public.sw-btn-close {
  display: none;
}

.sw-type-img.sw-type-page .sw-art-img {
  display: block;
}

.sw-type-img.sw-type-page .sw-article-box {
  max-width: calc(680px + 22rem + 8rem);
}

.sw-type-img.sw-type-page .sw-edit-outbox {
  color: #f0f0f0;
  background-color: #687271;
}

.sw-type-img.sw-type-page .sw-edit-box {
  padding-left: 4rem;
  padding-right: 4rem;
}

.sw-type-img.sw-type-page .sw-edit-box img {
  display: none;
}

.sw-type-img.sw-type-page .sw-more {
  display: flex;
  background: linear-gradient(180deg, transparent 40%, #687271 80%);
}

.sw-type-img.sw-type-page .sw-more:hover .sw-btn {
  color: white;
}

.sw-type-img.sw-type-page .sw-art-img + .sw-art-title {
  display: none;
}

.sw-type-img .sw-art-img {
  display: none;
  position: relative;
  padding-top: 55%;
}

.sw-type-img .sw-more {
  display: none;
}

@media (max-width: 959px) {
  .sw-art-title {
    margin-top: 3rem;
  }
  .sw-art-title .sw-title {
    font-size: 2.3rem;
  }
  .sw-art-title .sw-des {
    font-size: 1.3rem;
  }
  .sw-edit-box {
    padding: 2rem 0;
  }
}

.sw-video-box .sw-page-ptitle,
.swiper-album .sw-page-ptitle {
  bottom: 0rem;
  padding: 10rem 11rem 8rem 11rem;
  width: 100%;
}

.sw-video-box .sw-page-ptitle .sw-title,
.swiper-album .sw-page-ptitle .sw-title {
  font-size: 2.2rem;
}

.sw-video-box .sw-title-limit,
.swiper-album .sw-title-limit {
  padding-left: 3rem;
  padding-right: 3rem;
  margin: 0 auto;
}

.sw-video-box .sw-title-limit.sw-show,
.swiper-album .sw-title-limit.sw-show {
  display: block;
}

.sw-video-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: .3s ease-out;
}

.sw-video-box .sw-title-limit {
  display: none;
}

.sw-video-box .sw-video {
  position: static !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100% !important;
  padding-top: 0 !important;
  background-color: #1f2021 !important;
}

.sw-video-box .sw-poster {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.swiper-album {
  width: 100%;
  height: 100%;
  background-color: #1f2021;
}

.swiper-album .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  height: 100%;
  background-size: cover;
}

.swiper-album .swiper-wrapper .swiper-slide::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.swiper-album .swiper-wrapper .swiper-slide img {
  position: relative;
  z-index: 9;
  max-width: 100%;
  max-height: 100%;
}

.swiper-album .swiper-button-next,
.swiper-album .swiper-button-prev {
  background-image: none;
}

.swiper-album .swiper-button-next::after,
.swiper-album .swiper-button-prev::after {
  display: none;
}

.swiper-album .swiper-button-next.img-disabled,
.swiper-album .swiper-button-prev.img-disabled {
  pointer-events: auto;
  cursor: not-allowed;
  opacity: .8;
}

.swiper-album .swiper-button-next {
  right: 13rem !important;
}

.swiper-album .swiper-button-prev {
  left: 13rem !important;
}

.swiper-album .swiper-pagination {
  display: flex;
  transition: 0s;
  bottom: 0;
  height: 10px;
}

.swiper-album .swiper-pagination .swiper-pagination-bullet {
  display: block;
  position: relative;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100% !important;
  max-width: 100%;
  border-radius: 0 !important;
  background: transparent !important;
  opacity: 1 !important;
  margin: 0;
}

.swiper-album .swiper-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: '';
  left: 2px;
  right: 2px;
  top: 50%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  transform: translate3d(0, -50%, 0);
  transition: .3s ease-out;
}

.swiper-album .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-album .swiper-pagination .swiper-pagination-bullet-active::before {
  background: white;
  opacity: 1;
}

.swiper-album .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 1;
}

.swiper-album .swiper-pagination .swiper-pagination-bullet:hover::before, .swiper-album .swiper-pagination .swiper-pagination-bullet:hover:hover::before {
  height: 6px;
  background-color: white;
  opacity: 1;
}

@media (max-width: 959px) {
  .sw-video-box .sw-page-ptitle,
  .swiper-album .sw-page-ptitle {
    padding-left: 0;
    padding-right: 0;
  }
  .sw-video-box {
    height: calc(100vh - 5.28rem);
  }
}

.sw-recom {
  height: 100%;
}

.sw-rec-head {
  position: relative;
  padding: 0 3rem;
}

.sw-rec-head::after {
  position: absolute;
  content: '';
  left: 3rem;
  right: 3rem;
  bottom: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.05);
}

.sw-tab-list {
  padding: 3rem;
}

.list-aside-new {
  margin-bottom: 2rem;
}

.list-aside-new .list-item {
  display: block;
}

.list-aside-new .list-item:nth-child(1) .sw-mark {
  color: #a82e2e;
}

.list-aside-new .list-item:nth-child(2) .sw-mark {
  color: #f04142;
}

.list-aside-new .list-item:nth-child(3) .sw-mark {
  color: #ff9a03;
}

.list-aside-new a > div {
  font-size: 16px;
  padding: 12px 0;
}

.list-aside-new .sw-mark {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 8px;
  width: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  font-family: "Microsoft Yahei light";
  color: #999;
  text-align: center;
}

.list-aside-case .list-item {
  font-size: 16px;
  display: block;
  margin-bottom: 20px;
}

.list-aside-case .sw-bgimg-box {
  width: 24%;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 1rem;
}

.list-aside-case .sw-bgimg-box .sw-bgimg {
  padding-top: 75%;
}

.list-aside-case .sw-title {
  font-size: 18px;
}

.list-aside-case .sw-des {
  color: rgba(17, 31, 44, 0.56);
}

.sw-menu-tab .sw-tab-item {
  padding: 1.4rem 0;
  margin: 0 1.6rem;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  margin-top: 2px;
}

.sw-menu-tab .sw-tab-item:first-child {
  margin-left: 0;
}

.sw-menu-tab .active {
  border-color: var(--m-color);
}

.sw-btn-close-tab {
  color: rgba(17, 31, 44, 0.56);
  cursor: pointer;
}

.sw-btn-close-tab:hover {
  color: #111f2c;
}

.sw-tab-pane {
  display: none;
  height: 100%;
}

.sw-tab-pane.active {
  display: block;
}

@media (max-width: 959px) {
  .sw-recom {
    width: 100%;
    max-width: calc(680px + 22rem);
    padding-left: 11rem;
    padding-right: 11rem;
    margin: 0 auto;
  }
  .sw-rec-head {
    padding: 0;
  }
  .sw-tab-list {
    padding-left: 0;
    padding-right: 0;
  }
}

.sw-fixed-R {
  left: 3rem;
  right: auto;
  bottom: 8rem;
  transform: translateX(0rem);
}

.sw-fixed-R .sw-backtop {
  display: none;
}

.sw-ser-detail {
  left: calc(5.6rem + 10px);
  right: auto;
  bottom: 10rem;
}

.sw-ser-detail .sw-down-con {
  margin-right: 0;
  margin-left: 3rem;
}

@media (max-width: 959px) {
  .sw-fixed-R {
    left: 0;
    bottom: 0;
    transform: translateY(8rem);
  }
  .sw-fixed-R .sw-backtop {
    display: block;
  }
}

.sw-type-black .sw-lay-LR .sw-lay-R::after {
  background-color: rgba(255, 255, 255, 0.08);
}

.sw-type-black .sw-recom {
  background-color: #1f2021;
}

.sw-type-black .sw-rec-head {
  color: rgba(255, 255, 255, 0.9);
}

.sw-type-black .sw-rec-head::after {
  background-color: rgba(255, 255, 255, 0.05);
}

.sw-type-black .sw-btn-close-tab {
  color: rgba(255, 255, 255, 0.5);
}

.sw-type-black .sw-btn-close-tab:hover {
  color: rgba(255, 255, 255, 0.9);
}

.sw-type-black .list-aside-new .list-item, .sw-type-black .list-aside-case .list-item {
  color: rgba(255, 255, 255, 0.8);
}

.sw-type-black .list-aside-new .list-item:hover, .sw-type-black .list-aside-case .list-item:hover {
  color: white;
}

.sw-type-black .list-aside-new .sw-des, .sw-type-black .list-aside-case .sw-des {
  color: rgba(255, 255, 255, 0.5);
}

.sw-type-black .sw-btn-group .icon-name {
  color: white;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.sw-type-black .sw-btn-media {
  color: rgba(255, 255, 255, 0.5);
  background-color: rgba(61, 62, 63, 0.8);
}

.sw-type-black .sw-btn-media:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: #3d3e3f;
}

@media (max-width: 575px) {
  .sw-btn-openrec .sw-icon {
    display: none;
  }
  .sw-btn-openrec .sw-title {
    display: block;
  }
  .sw-art-title .sw-title {
    font-size: 2rem;
  }
  .sw-video-box .sw-page-ptitle .sw-title,
  .swiper-album .sw-page-ptitle .sw-title {
    font-size: 1.6rem;
  }
  .sw-video-box,
  .swiper-album {
    height: calc(100% - 5rem);
  }
  .sw-video-box .sw-title-limit,
  .swiper-album .sw-title-limit {
    padding-left: 0;
    padding-right: 0;
  }
  .sw-video-box .sw-video {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sw-video-box .sw-video video {
    position: static !important;
    height: auto !important;
  }
  .sw-video-box .sw-poster {
    display: block;
  }
  .swiper-album .sw-btn-media {
    display: none;
  }
  .sw-more {
    padding-bottom: 2.5rem;
    background: linear-gradient(180deg, transparent 40%, white 70%);
  }
  .sw-head .active .sw-menu-link::after {
    display: none;
  }
  .sw-close-R .sw-video-box {
    height: calc(30vh);
  }
  .sw-lay-newdet .sw-article-box,
  .sw-lay-newdet .sw-recom {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .sw-lay-newdet .sw-btn-public,
  .sw-lay-newdet .sw-lay-fixT,
  .sw-lay-newdet .sw-btn-group {
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  .sw-lay-newdet .sw-btn-public .sw-btn-media,
  .sw-lay-newdet .sw-lay-fixT .sw-btn-media,
  .sw-lay-newdet .sw-btn-group .sw-btn-media {
    background-color: transparent;
  }
  .sw-lay-newdet .sw-art-scroll {
    height: calc(100% - 5rem);
    margin-bottom: 5rem;
  }
  .sw-lay-newdet .sw-btn-media {
    width: 100%;
    margin: 0 auto;
  }
  .sw-lay-newdet .sw-btn-media:hover {
    color: #111f2c;
  }
  .sw-lay-newdet .sw-btn-media .sw-icon {
    font-size: 1.4rem;
  }
  .sw-lay-newdet .sw-btn-public {
    position: fixed;
    left: 0;
    top: auto;
    bottom: 0;
    width: 20vw;
  }
  .sw-lay-newdet .sw-lay-fix {
    top: auto;
    right: auto;
    bottom: 0;
    transform: translate(0);
  }
  .sw-lay-newdet .sw-lay-fix.sw-lay-fixT {
    left: 40vw;
    width: 20vw;
    z-index: 101;
  }
  .sw-lay-newdet .sw-lay-fix.sw-lay-fixM {
    left: 0;
    width: 100vw;
  }
  .sw-lay-newdet .sw-lay-fix.sw-lay-fixB {
    left: auto;
    right: 1.2rem;
    bottom: 7rem;
  }
  .sw-lay-newdet .sw-btn-group {
    display: flex;
  }
  .sw-lay-newdet .sw-btn-group .sw-icon-col {
    width: 20vw;
  }
  .sw-lay-newdet .sw-btn-group .sw-icon-col .sw-icon {
    transform: rotate(275deg);
  }
  .sw-lay-newdet .sw-btn-group .sw-icon-col:first-child {
    margin-left: 20vw;
    margin-right: 20vw;
  }
  .sw-lay-newdet .sw-btn-group .sw-icon-col.sw-btn-share .sw-icon {
    transform: rotate(0);
  }
  .sw-lay-newdet .sw-btn-group .sw-icon-col + .sw-icon-col {
    margin-top: 0;
  }
  .sw-lay-newdet .sw-btn-group .icon-name {
    display: none;
  }
  .sw-lay-newdet .sw-page-ptitle {
    padding-bottom: 2rem;
  }
  .sw-type-page .sw-art-scroll {
    padding-right: 0;
  }
  .sw-type-page .sw-article-box {
    padding-left: 0;
    padding-right: 0;
  }
  .sw-type-page .sw-lay-fix {
    right: 1.2rem;
  }
  .sw-type-page .sw-lay-fix.sw-lay-fixM {
    top: auto;
    bottom: 0;
    transform: translate(0);
  }
  .sw-type-img.sw-type-page .sw-btn-public,
  .sw-type-img.sw-type-page .sw-lay-fixT,
  .sw-type-img.sw-type-page .sw-btn-group {
    background-color: #687271;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .sw-type-img.sw-type-page .sw-btn-media {
    color: rgba(255, 255, 255, 0.9);
  }
  .sw-type-img.sw-type-page .sw-more {
    background: linear-gradient(180deg, transparent 40%, #687271 70%);
  }
  .sw-type-img.sw-type-page .sw-lay-L {
    background-color: #687271;
  }
  .sw-type-page .sw-art-title,
  .sw-type-page .sw-edit-box,
  .sw-type-page.sw-type-img .sw-edit-box,
  .sw-type-page .sw-recom {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .sw-type-black .sw-btn-public,
  .sw-type-black .sw-lay-fixT,
  .sw-type-black .sw-btn-group {
    background-color: #1f2021;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .sw-type-black .sw-btn-media, .sw-type-black .sw-btn-media:hover {
    color: rgba(255, 255, 255, 0.9);
  }
  .sw-type-black .sw-lay-L {
    background-color: #1f2021;
  }
}
