@charset "UTF-8";

/**
 * 这里是 08cms 团队内置的常用样式变量
 */

/* 宽度相关 */

/* 高度相关 */

/**
 * 宽度设置，内置最小宽度为当前设置宽度功能
 * 参数1 $width = 1200px 默认1200px；整站内容宽度，可自定义传值进来设置其他宽度
*/

/* 颜色变量 */

/* 行为相关颜色 */

/* 文字基本颜色 */

/* 背景颜色 */

/* 边框颜色 */

/* 文字尺寸 */

/* Border Radius */

/* 阴影 */

/* 按钮相关 */

/**
 * 这里是 08cms 团队常用 mixin 代码块
 *
 * 调用方式 scss 中用 @include xxx  即可
 */

/**
 * 1px边框，包括上、下、左、右以及全部
 * 参数1 $direction = all 边框方向，默认全边框
 * 参数2 $size = 1px 边框宽度，默认1px
 * 参数3 $style = solid 边框样式，默认实心solid
 * 参数4 $color = dddddd 边框颜色，默认dddddd
 * 参数3 $radius = 2px 边框圆角，仅全边框时起作用，默认2px
*/

/**
 * 单行省略
 * 参数1 $lineHeight = 行高 如 24px
 */

/**
 * 多行省略
 * 参数1 $lineLimit = 行数，如 2
 * 参数2 $lineHeight = 行高 如 24px
 * 参数3 $fixedHeight = 是否固定高度，布尔值，默认 false, 可传true
 */

/*图片水平垂直居中*/

/*块元素百分比下居中*/

@-webkit-keyframes skeleton {
  0% {
    background-position-x: 400%;
  }

  50% {
    background-position-x: 0%;
  }

  100% {
    background-position-x: -400%;
  }
}

@keyframes skeleton {
  0% {
    background-position-x: 400%;
  }

  50% {
    background-position-x: 0%;
  }

  100% {
    background-position-x: -400%;
  }
}

.cms-header-container {
  background: linear-gradient(180deg, #DD2222 0%, #BD0000 100%);
  min-width: 1200px;
  height: 40px;
  color: #ffffff;
}

.cms-header-container .cms-header-content {
  display: flex;
  justify-content: space-between;
}

.cms-header-container .cms-header-content .cms-navs {
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
}

.cms-header-container .cms-header-content .cms-navs .cms-navs-item {
  white-space: nowrap;
  margin-right: 25px;
  vertical-align: top;
  position: relative;
}

.cms-header-container .cms-header-content .cms-navs .cms-navs-item .cms-navs-item-content {
  position: absolute;
  top: 40px;
  left: 0;
}

.cms-header-container .cms-header-content .cms-navs .cms-navs-item .cms-navs-item-title {
  color: #ffffff;
  justify-content: center;
  display: flex;
  width: 100%;
  height: 100%;
  font-size: 14px;
}

.cms-header-container .cms-header-content .cms-navs .cms-navs-item.active .cms-navs-item-title {
  font-weight: bold;
}

.cms-header-container .cms-header-content .cms-navs .cms-navs-item:last-child {
  margin-right: 0;
}

.cms-header-container .cms-header-content .cms-header-info {
  display: flex;
  word-spacing: nowrap;
}

.cms-header-container .cms-header-content .cms-header-info .cms-header-qrcode {
  float: left;
  display: flex;
  align-items: center;
  height: 40px;
}

.cms-header-container .cms-header-content .cms-header-info .cms-header-qrcode .left-item {
  margin-right: 30px;
  cursor: pointer;
  display: block;
}

.cms-header-container .cms-header-content .cms-header-info .cms-login-out {
  color: #ffffff;
  line-height: 40px;
  height: 40px;
}

.cms-header-container .cms-header-content .cms-header-info .cms-login-out .icon-class {
  margin-right: 4px;
}

.cms-header-container .cms-header-content .cms-header-info .cms-login-out .item-login-out {
  color: #ffffff;
  cursor: pointer;
}

.cms-header-container .cms-header-content .cms-header-info .cms-login-out .userinfo {
  display: flex;
  align-items: center;
  color: #ffffff;
  cursor: pointer;
}

.cms-header-container .cms-header-content .cms-header-info .cms-login-out .userinfo .userinfo-avatar {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  margin-right: 10px;
}

::v-deep .left-item-text {
  text-align: center;
  font-size: 12px;
}

.cms-navs-second-ul {
  min-width: 120px;
}

.cms-navs-second-ul.hidden {
  display: none;
}

.cms-navs-second-ul .cms-navs-second-drop {
  padding: 0;
  line-height: 32px;
}

.cms-navs-second-ul .cms-navs-second-item {
  font-size: 14px;
  text-align: center;
  display: block;
}

.cms-navs-second-ul .cms-navs-second-item:hover {
  color: #DD2222;
  background: #ffffff;
}

.cms-navs-second-ul .cms-navs-second-item.secondActive {
  color: #DD2222;
}

.cms-header-middle {
  height: 70px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.cms-header-middle .cms-header-logo {
  display: flex;
  align-items: center;
}

.cms-header-middle .cms-header-logo .cms-logo {
  height: 45px;
  display: block;
}

.cms-header-middle .cms-header-logo .cms-logo .cms-image {
  background: none;
}

.cms-header-middle .cms-header-search .search-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 70px;
}

.cms-header-middle .cms-header-search .search-container .cms-button {
  border: 1px solid #eeeeee;
}

.cms-header-middle .cms-header-search .search-container .cms-button .text {
  font-size: 14px;
}

.cms-header-middle .cms-header-search .search-content {
  border: 1px solid #eeeeee;
  border-radius: 4px;
  height: 38px;
  width: 498px;
  margin-right: 10px;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  background-color: #f8f8f8;
  position: relative;
  color: #999999;
}

.cms-header-middle .cms-header-search .search-content .search-choose-line {
  width: 1px;
  height: 20px;
  position: absolute;
  left: 100px;
  top: 10px;
  background-color: #cccccc;
  z-index: 10;
}

.cms-header-middle .cms-header-search .search-content .search-input {
  width: 50%;
  flex-grow: 2;
  padding-left: 15px;
  line-height: 38px;
}

.cms-header-middle .cms-header-search .search-content .search-return-data {
  width: 100px;
  padding: 0 15px;
  line-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cms-header-middle .cms-header-search .search-content .search-icon {
  background: #DD2222;
  width: 80px;
  flex-shrink: 0;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  border-radius: 0 40px 40px 0;
  height: 38px;
  margin-top: -1px;
  border: 1px solid #DD2222;
  border-radius: 0 40px 40px 0;
}

.cms-header-middle .cms-header-search .search-content .search-icon .icon-text {
  font-size: 14px;
  margin-left: 5px;
  color: #ffffff;
}

.cms-footer {
  background: #f9f9f9;
  background-size: 1920px 218px;
  min-width: 1200px;
  min-height: 100px;
}

.cms-footer .cms-footer-about {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eeeeee;
  line-height: 40px;
  height: 40px;
  font-size: 12px;
}

.cms-footer .cms-footer-about .about-item {
  padding-right: 30px;
}

.cms-footer .cms-footer-about .cms-footer-about-tel {
  color: #666666;
  font-size: 12px;
}

.cms-footer .cms-footer-about .cms-footer-about-tel .tel {
  color: #333333;
  font-size: 20px;
}

.cms-footer .cms-footer-link {
  margin-top: 20px;
  border-bottom: 1px solid #eeeeee;
}

.cms-footer .cms-footer-link .footer-tab-header {
  display: flex;
}

.cms-footer .cms-footer-link .footer-tab-header .tab-item {
  width: 90px;
  height: 30px;
  line-height: 30px;
  background: #eeeeee;
  text-align: center;
  margin-right: 15px;
  cursor: pointer;
  color: #999999;
  font-size: 12px;
}

.cms-footer .cms-footer-link .footer-tab-header .tab-item:last-child {
  margin-right: 0;
}

.cms-footer .cms-footer-link .footer-tab-header .tab-item.active {
  background: #dddddd;
  color: #333333;
}

.cms-footer .cms-footer-link .footer-tab-content {
  padding-top: 10px;
  padding-bottom: 10px;
}

.cms-footer .cms-footer-link .footer-tab-content .tab-content-item {
  margin-right: 15px;
  line-height: 26px;
  display: inline-block;
  color: #666666;
  font-size: 12px;
}

.cms-footer .cms-footer-link .footer-tab-content .tab-content-item:hover {
  color: #DD2222;
}

.cms-footer .union-site-content {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  display: none;
}

.cms-footer .union-site-content.actived {
  display: block;
}

.cms-footer .union-site-content .union-site-item {
  margin-right: 15px;
  line-height: 26px;
  display: inline-block;
  color: #666666;
  font-size: 12px;
}

.cms-footer .union-site-content .union-site-item:hover {
  color: #DD2222;
}

.cms-footer .cms-footer-copyright {
  padding-top: 15px;
  line-height: 19px;
  font-size: 12px;
  color: #666666;
}

.cms-footer .cms-footer-copyright ::v-deep a {
  text-decoration: none;
  color: #666666;
}

.cms-footer .cms-footer-copyright ::v-deep a:hover {
  color: #DD2222;
}

.cms-footer .cms-footer-gongan {
  padding-bottom: 15px;
  padding-top: 15px;
  line-height: 19px;
  display: flex;
  align-items: center;
  font-size: 12px;
}

.cms-footer .cms-footer-gongan a {
  color: #666666;
}

.cms-footer .cms-footer-gongan a:hover {
  color: #DD2222;
}

.cms-footer .cms-footer-gongan .xukezheng {
  display: flex;
  align-items: center;
}

.cms-footer .cms-footer-gongan .xukezheng .cms-image {
  margin-left: 15px;
  margin-right: 5px;
}

.cms-button {
  border: 0;
  box-sizing: border-box;
  border-radius: 4px;
  background: transparent;
  color: #333333;
  cursor: pointer;
  display: inline-block;
  outline: 0;
  padding: 0 12px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 0;
}

.cms-button .hover-in {
  display: none;
}

.cms-button .text {
  vertical-align: middle;
  display: inline-block;
}

.cms-button .button-icon-l {
  margin-right: 5px;
}

.cms-button .button-icon-r {
  margin-left: 5px;
}

.cms-button.default {
  height: 30px;
  line-height: 28px;
}

.cms-button.default .text {
  font-size: 14px;
}

.cms-button.default.radius {
  border-radius: 15px;
}

.cms-button.small {
  height: 20px;
  line-height: 18px;
}

.cms-button.small .text {
  font-size: 12px;
}

.cms-button.small.radius {
  border-radius: 10px;
}

.cms-button.big {
  height: 40px;
  line-height: 38px;
}

.cms-button.big .text {
  font-size: 16px;
}

.cms-button.big.radius {
  border-radius: 20px;
}

.cms-button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cms-button.block {
  display: block;
  width: 100%;
}

.cms-button.block .text {
  font-size: 16px;
}

.cms-button.background {
  background: #ffffff;
}

.cms-button.background-grey {
  background: #f9f9f9;
}

.cms-button.background-white {
  background: #ffffff;
}

.cms-button.background-white-border {
  background: #ffffff;
  color: #666666;
  border: 1px solid #eeeeee;
  border-radius: 4px;
}

.cms-button.background-red {
  background: #DD2222;
  color: #ffffff;
}

.cms-button.background-blue {
  background: linear-gradient(270deg, #239be8 0%, #47b8ff 100%);
  color: #ffffff;
}

.cms-button.background-linear {
  background: linear-gradient(90deg, #fe5e4a 0%, #DD2222 100%);
  color: #ffffff;
}

.cms-button.background-linear2 {
  background: linear-gradient(180deg, #DD2222 0%, #C20000 100%);
  color: #ffffff;
}

.cms-button.border {
  border: 1px solid #DD2222;
  border-radius: 4px;
  color: #DD2222;
}

.cms-button.hover:hover {
  color: #ffffff;
  background: #DD2222;
  border-color: #DD2222 !important;
}

.cms-button.hover-on {
  color: #ffffff;
  background: #DD2222;
}

.cms-button:hover .hover-default {
  display: none;
}

.cms-button:hover .hover-in {
  display: inline-block;
}

@-webkit-keyframes turnToTop {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-200%);
    opacity: 0;
    display: none;
  }
}

@keyframes turnToTop {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-200%);
    opacity: 0;
    display: none;
  }
}

.cms-right-aside {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.cms-right-aside .cms-right-aside-container {
  position: relative;
  height: 100%;
}

.cms-right-aside .cms-right-aside-container .cms-right-aside-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}

.cms-right-aside .cms-right-aside-container .cms-right-aside-content .aside-item-content {
  position: relative;
  margin-top: 5px;
}

.cms-right-aside .cms-right-aside-container .cms-right-aside-content .aside-item-content:first-child {
  margin-top: 0;
}

.cms-right-aside .cms-right-aside-container .cms-right-aside-content .aside-item-content .aside-item-tips {
  position: absolute;
  top: 0;
  height: 50px;
  line-height: 50px;
  background: #DD2222;
  color: #ffffff;
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  transform: translateX(-100%);
  padding: 0 20px;
}

.cms-right-aside .cms-right-aside-container .cms-right-aside-content .aside-item-content .aside-item {
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  width: 50px;
}

.cms-right-aside .cms-right-aside-container .cms-right-aside-content .aside-item-content .aside-item:hover {
  background: #000000;
}

.cms-right-aside .cms-right-aside-container .cms-right-aside-content .aside-item-content ::v-deep .is-fixed {
  transform: translate(70%, -10%);
}

.cms-right-aside .cms-right-aside-container .cms-to-top {
  position: absolute;
  bottom: 10px;
  left: 0;
  text-align: center;
  width: 100%;
  cursor: pointer;
  display: none;
  opacity: 0;
}

.cms-right-aside .cms-right-aside-container .cms-to-top.go-up {
  display: block;
  -webkit-animation: turnToTop 0.5s;
          animation: turnToTop 0.5s;
}

.cms-right-aside .cms-right-aside-container .cms-to-top.show {
  opacity: 1;
  display: block;
}

.cms-right-aside .cms-right-aside-container .chat-icon {
  position: absolute;
  bottom: 70px;
  text-align: center;
  width: 100%;
  cursor: pointer;
}

.cms-right-aside .cms-right-aside-container .chat-icon > div {
  display: inline-block;
}

.cms-right-aside-center {
  width: 50px;
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
}

.cms-right-aside-center .cms-right-aside-center-top {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.cms-right-aside-center .aside-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: relative;
}

.cms-right-aside-center .aside-item.aside-item-bottom {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  height: 30px;
  margin-top: 10px;
  background: #ffffff;
  border-radius: 4px !important;
}

.cms-right-aside-center .aside-item .aside-item-title {
  line-height: 14px;
  font-size: 12px;
  color: #333333;
  margin-top: 5px;
}

.cms-right-aside-center .aside-item:first-child {
  border-radius: 4px 0px 0px 0px;
}

.cms-right-aside-center .aside-item:last-child {
  border-radius: 0px 0px 0px 4px;
}

.cms-right-aside-center .aside-item:hover {
  background: #DD2222;
}

.cms-right-aside-center .aside-item:hover .aside-item-title {
  color: #ffffff;
}

.cms-right-aside-center .aside-item .aside-item-tips {
  width: 170px;
  height: 50px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: absolute;
  left: -182px;
  top: 0;
  border-radius: 4px;
}

.cms-right-aside-center .aside-item .aside-item-tips .aside-item-tips-text {
  width: 100%;
  height: 100%;
  line-height: 50px;
  color: #000000;
  font-size: 14px;
  text-align: center;
  position: relative;
}

.cms-right-aside-center .aside-item .aside-item-tips .aside-item-tips-text .aside-item-tips-sanjiao {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 12px solid #ffffff;
  border-bottom: 10px solid transparent;
  position: absolute;
  right: -12px;
  top: 50%;
  margin-top: -10px;
}

.cms-right-aside-bottom {
  width: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 90;
  border-radius: 4px 0px 0px 4px;
}

.cms-right-aside-bottom .aside-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 70px;
  background: #8694B1;
  cursor: pointer;
  border-radius: 4px 0px 0px 4px;
  position: relative;
  margin-bottom: 5px;
}

.cms-right-aside-bottom .aside-item .aside-item-title {
  line-height: 14px;
  font-size: 12px;
  color: #ffffff;
  margin-top: 5px;
}

.cms-right-aside-bottom .aside-item:hover {
  background: #DD2222;
}

.cms-right-aside-bottom .aside-item .aside-item-tips {
  width: 170px;
  height: 70px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: absolute;
  left: -182px;
  top: 0;
  border-radius: 4px;
}

.cms-right-aside-bottom .aside-item .aside-item-tips .aside-item-tips-text {
  width: 100%;
  height: 100%;
  line-height: 70px;
  color: #000000;
  font-size: 16px;
  text-align: center;
  position: relative;
}

.cms-right-aside-bottom .aside-item .aside-item-tips .aside-item-tips-text .aside-item-tips-sanjiao {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 12px solid #ffffff;
  border-bottom: 10px solid transparent;
  position: absolute;
  right: -12px;
  top: 50%;
  margin-top: -10px;
}

.cms-right-aside-special {
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 90;
}

.cms-right-aside-special .aside-item {
  width: 40px;
  height: 40px;
  background: #4d4d4d;
  margin-bottom: 1px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.cms-right-aside-special .aside-item .aside-item-text {
  font-size: 12px;
  margin-top: -5px;
}

.cms-right-aside-special .aside-item .aside-item-content {
  display: none;
  width: 180px;
  height: 40px;
  position: absolute;
  left: -181px;
  top: 0;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  background: #39ac6a;
}

.cms-right-aside-special .aside-item .aside-item-content .aside-item-content-sanjiao {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 6px solid #39ac6a;
  border-bottom: 5px solid transparent;
  position: absolute;
  right: -6px;
  top: 50%;
  margin-top: -5px;
}

.cms-right-aside-special .aside-item .aside-item-content-code {
  width: 100px;
  height: 120px;
  left: -101px;
  top: 50%;
  margin-top: -60px;
  background: #ffffff;
}

.cms-right-aside-special .aside-item .aside-item-content-code .aside-item-content-sanjiao {
  border-left: 6px solid #ffffff;
}

.cms-right-aside-special .aside-item .aside-item-content-code .aside-item-content-code-text {
  color: #333333;
  font-size: 12px;
  line-height: 10px;
}

.cms-right-aside-special .aside-item:hover .aside-item-content {
  display: block;
}

.cms-ad-container.hidden {
  display: none;
}

.cms-ad-container .cms-ad-item-title {
  display: inline-block;
  min-width: 200px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  background: blue;
  margin-bottom: 5px;
  margin-top: 15px;
}

.cms-ad-container .cms-ad-item {
  margin-bottom: 5px;
  width: 100%;
  height: auto;
  position: relative;
  cursor: pointer;
  min-height: 20px;
  display: flex;
}

.cms-ad-container .cms-ad-item.hidden {
  display: none;
}

.cms-ad-container .cms-ad-item:last-child {
  margin-bottom: 0;
}

.cms-ad-container .cms-ad-item .cms-ad-desc {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 0 4px 0 0;
}

.cms-ad-container .cms-ad-item .cms-ad-img {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 36px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: cover;
}

.cms-ad-container .cms-ad-item .cms-ad-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

.cms-ad-container .cms-ad-item .cms-ad-close:hover {
  opacity: 1;
}

.newslist-ul .list-li {
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  align-items: center;
}

.newslist-ul .list-li:last-child {
  margin-bottom: 0;
  border: 0;
}

.newslist-ul .list-li .img {
  margin-right: 20px;
  display: block;
  flex-shrink: 0;
  width: 180px;
  overflow: hidden;
}

.newslist-ul .list-li .right-text {
  width: 50%;
  flex-grow: 2;
}

.newslist-ul .list-li .right-text .h3 {
  color: #000000;
  font-size: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 26px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 26px;
}

.newslist-ul .list-li .right-text .h3 .h3-category {
  display: inline-block;
  line-height: 26px;
  padding-right: 10px;
  margin-right: 10px;
  color: #DD2222;
  border-right: 3px solid #000000;
}

.newslist-ul .list-li .right-text .h3:hover {
  color: #DD2222;
}

.newslist-ul .list-li .right-text .h3:hover .h3-category {
  border-right-color: #DD2222;
}

.newslist-ul .list-li .right-text p {
  margin-top: 15px;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
  max-height: 44px;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.newslist-ul .list-li .right-text p.min-height {
  min-height: 44px;
}

.newslist-ul .list-li .right-text .ranking-active {
  display: flex;
  align-items: center;
}

.newslist-ul .list-li .right-text .ranking-active .ranking-active-text {
  font-size: 14px;
  color: #DD2222;
  margin-left: 10px;
}

.newslist-ul .list-li .right-text .bottom {
  margin-top: 18px;
  font-size: 14px;
  color: #999999;
  height: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newslist-ul .list-li .right-text .bottom.no-abstract {
  margin-top: 80px;
}

.newslist-ul .list-li .right-text .bottom .bottom-left {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.newslist-ul .list-li .right-text .bottom .bottom-left i {
  color: #999999;
  margin: 0 10px;
}

.newslist-ul .list-li .right-text .bottom .bottom-left .bottom-left-tag {
  display: flex;
  flex-wrap: wrap;
  height: 19px;
  overflow: hidden;
  flex: 1;
}

.newslist-ul .list-li .right-text .bottom .bottom-left .bottom-left-tag .cms-tag {
  height: 16px;
  line-height: 16px;
  margin-left: 10px;
}

.newslist-ul .list-li .right-text .bottom .bottom-right {
  font-size: 0;
  width: 150px;
  flex-shrink: 0;
  margin-left: 10px;
  white-space: nowrap;
}

.newslist-ul .list-li .right-text .bottom .bottom-right .text {
  vertical-align: middle;
  font-style: normal;
}

.newslist-ul .list-li .right-text .bottom .bottom-right span {
  color: #999999;
  font-size: 14px;
  vertical-align: middle;
  margin-right: 15px;
}

.newslist-ul .list-li .right-text .bottom .bottom-right span .icon {
  vertical-align: middle;
  cursor: pointer;
}

.newslist-ul .list-li .right-text .bottom .bottom-right span:last-child {
  margin-right: 0;
}

.cms-tag {
  border: 1px solid #eeeeee;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  font-size: 12px !important;
  padding: 1px 6px;
  border-radius: 2px;
  color: #666666;
  background: transparent;
  border-color: #eeeeee;
  height: 20px;
  line-height: 16px;
  box-sizing: border-box;
}

.cms-tag.type1 {
  color: #DD2222;
  background: #FFE6E4;
  border-color: #FFE6E4;
}

.cms-tag.type2 {
  color: #7A90B6;
  background: #F5F6F9;
  border-color: #F5F6F9;
}

.cms-tag.type3 {
  color: #FF8800;
  background: #FFE5BF;
  border-color: #FFE5BF;
}

.cms-tag.type4 {
  color: #666666;
  background: transparent;
  border-color: #eeeeee;
}

.cms-title {
  height: 31px;
  line-height: 31px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.cms-title.grey {
  background-color: #f9f9f9;
  height: 49px;
  line-height: 49px;
  margin-bottom: 0;
  padding: 0 20px;
}

.cms-title.grey .cms-title-left .cms-title-name {
  font-size: 20px;
}

.cms-title .cms-title-left {
  width: 50%;
  flex-grow: 2;
  display: flex;
  align-items: center;
}

.cms-title .cms-title-left .cms-title-name {
  font-size: 24px;
  color: #000000;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 31px;
}

.cms-title .cms-title-left .cms-title-icon {
  display: inline-block;
  vertical-align: middle;
}

.cms-title .cms-title-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.cms-title .cms-title-right .cms-button {
  margin-right: 10px;
}

.cms-title .cms-title-right .cms-button:last-child {
  margin-right: 0;
}

.right .news-ad-right {
  margin-bottom: 30px;
}

.right .recommend-view-zhou {
  margin-top: 0;
}

.right .read-list ul {
  padding-top: -5px;
  padding-bottom: 15px;
}

.right .read-list ul li {
  line-height: 36px;
  font-size: 16px;
  color: #333333;
  cursor: pointer;
}

.right .read-list ul li:hover {
  color: #DD2222;
}

.right .read-list ul li .index-number {
  position: relative;
  margin-right: 10px;
}

.right .read-list ul li .index-number i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #ffffff;
}

.right .read-list ul li .name {
  display: inline-block;
  width: 215px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.2;
  vertical-align: middle;
}

.right .news-house {
  padding-bottom: 20px;
  display: flex;
}

.right .news-house .news-house-image {
  flex-shrink: 0;
  width: 110px;
  height: 76px;
  margin-right: 10px;
}

.right .news-house .news-house-info {
  width: 50%;
  flex-grow: 2;
}

.right .news-house .news-house-info .news-house-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 19px;
}

.right .news-house .news-house-info .news-house-address {
  margin-top: 5px;
  height: 22px;
  overflow: hidden;
  font-size: 0;
  width: 100%;
}

.right .news-house .news-house-info .news-house-address .tag {
  display: inline-block;
  margin-right: 10px;
}

.right .news-house .news-house-info .news-house-price {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 16px;
  font-size: 12px;
  margin: 9px 0;
}

.cms-aside-panel {
  background: #f9f9f9;
  padding-bottom: 15px;
}

.cms-aside-panel .panel-title {
  min-height: 50px;
  line-height: 30px;
  font-size: 18px;
  color: #000000;
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 15px;
  box-sizing: border-box;
}

.cms-aside-panel .panel-content {
  border-top: 1px solid #ffffff;
  padding: 15px 15px 0;
  box-sizing: border-box;
}

.house-right {
  width: 285px;
}

.house-right .new-yuyue {
  margin-bottom: 30px;
}

.house-right .new-yuyue .panel-content {
  padding: 15px 10px 0 10px;
  overflow: hidden;
}

.house-right .new-yuyue .yuyue-list {
  height: auto;
  max-height: none !important;
  position: relative;
  top: 0;
}

.house-right .new-yuyue .yuyue-list .yuyue-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333333;
  line-height: 34px;
}

.house-right .new-yuyue .yuyue-list .yuyue-item .xiaoqu {
  flex: 1;
  line-height: 34px;
  color: #DD2222;
  cursor: pointer;
  padding-right: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 34px;
}

.house-right .new-yuyue .yuyue-list .yuyue-item .red-color {
  color: #DD2222;
  margin: 0 5px;
}

.house-right .new-yuyue .yuyue-list .yuyue-item .hid-text {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 34px;
}

.house-right .new-yuyue .yuyue-list .yuyue-item .text-margin {
  margin-left: 5px;
}

.house-right .new-yuyue .yuyue-list .yuyue-item-view {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.house-right .new-yuyue .yuyue-list .yuyue-item-view .yuyue-item-rows {
  color: #333333;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.house-right .new-yuyue .yuyue-list .yuyue-item-view .yuyue-item-rows .yuyue-item-rows-name {
  max-width: 120px;
  color: #DD2222;
  margin: 0 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 24px;
}

.house-right .new-yuyue .yuyue-list .yuyue-item-view:first-child {
  padding-top: 0;
}

.house-right .new-yuyue .yuyue-list .yuyue-item-view:last-child {
  border-bottom: none;
}

.house-right .form-view {
  margin-bottom: 30px;
}

.house-right .recommend-view {
  margin: 30px 0px;
  padding-bottom: 0;
  border: 1px solid #eeeeee;
  border-radius: 0px;
  box-sizing: border-box;
}

.house-right .recommend-view:last-child {
  margin-bottom: 0;
}

.house-right .recommend-view .cms-title.grey {
  padding: 0 15px;
  border-bottom: 1px solid #eeeeee;
}

.house-right .recommend-view .recommend-content {
  padding: 20px 20px 0;
  box-sizing: border-box;
  background: #ffffff;
}

.cms-remarks {
  width: 100%;
  display: flex;
  line-height: 22px;
  padding: 10px;
  box-sizing: border-box;
  font-size: 12px;
  margin-top: 30px;
  margin-bottom: 30px;
  border: 1px dashed #eeeeee;
  border-radius: 4px;
}

.cms-remarks .cms-remarks-title {
  font-weight: bold;
  width: 60px;
  flex-shrink: 0;
}

.cms-remarks .cms-remarks-content {
  color: #666666;
}

.page-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 30px;
}

.page-content .page-item {
  background-color: #f5f5f5;
  font-size: 12px;
  font-weight: 400;
  color: #666666;
  min-width: 30px;
  border-radius: 2px;
  margin: 0 5px;
  padding: 0 4px;
  height: 28px;
  line-height: 28px;
  box-sizing: border-box;
  text-align: center;
  display: block;
}

.page-content .page-item:not(.disabled).active {
  background-color: #333333;
  color: #ffffff;
}

.loupan-title-view {
  background: #f9f9f9;
  height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #DD2222;
}

.loupan-title-view .loupan-title-view-left {
  display: flex;
  align-items: center;
}

.loupan-title-view .loupan-title-view-left .loupan-title {
  width: 100px;
  height: 45px;
  line-height: 44px;
  text-align: center;
  color: #333333;
  font-size: 16px;
  cursor: pointer;
}

.loupan-title-view .loupan-title-view-left .loupan-title.active,
.loupan-title-view .loupan-title-view-left .loupan-title:hover {
  background: #DD2222;
  color: #ffffff;
  font-weight: bold;
}

.loupan-title-view .loupan-title-view-left .loupan-title .loupan-title-number {
  font-weight: 400;
}

.loupan-title-view .sort-view {
  margin-right: 15px;
  display: inline-block;
}

.list-container .more-plot {
  margin-bottom: 30px;
}

.list-container .nav-field .nav-ul {
  box-sizing: border-box;
  margin-bottom: 30px;
  width: 1200px;
  background-color: #eeeeee;
  height: 50px;
  line-height: 50px;
  word-wrap: nowrap;
  color: #252d31;
  overflow: hidden;
}

.list-container .nav-field .nav-ul .el-tabs__nav-wrap::after {
  height: 0px;
}

.list-container .nav-field .nav-ul .el-tabs__item {
  height: 30px;
  line-height: 30px;
  color: #333333;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  padding: 0 20px;
  box-sizing: border-box;
  list-style: none;
  font-weight: 500;
  position: relative;
}

.list-container .nav-field .nav-ul .el-tabs__item.is-active {
  border-radius: 4px;
  background-color: #DD2222;
}

.list-container .nav-field .nav-ul .el-tabs__item.is-active a {
  color: #ffffff;
}

.list-container .nav-field .nav-ul .el-tabs__item.is-active .actived {
  color: #ffffff;
}

.list-container .nav-field .nav-ul .el-tabs__active-bar {
  height: 0px;
}

.list-container .nav-field .nav-ul .el-tabs__header {
  margin-bottom: 0px;
}

.list-container .nav-field .nav-ul .el-tabs__content {
  display: none;
}

.list-container .nav-field .nav-ul .el-tabs--top .el-tabs__item.is-top:nth-child(2) {
  padding-left: 20px;
}

.list-container .nav-field .nav-ul .el-tabs--top .el-tabs__item.is-top:last-child {
  padding-right: 20px;
}

.list-container .nav-field .nav-ul .el-tabs__nav-prev {
  background-color: #DD2222;
  color: #ffffff;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
}

.list-container .nav-field .nav-ul .el-tabs__nav-next {
  background-color: #DD2222;
  color: #ffffff;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
}

.list-container .nav-field .nav-content .nav-swiper {
  width: 584px;
  margin-right: 32px;
  float: left;
  height: 386px;
  position: relative;
}

.list-container .nav-field .nav-content .nav-swiper .swiper-div {
  cursor: pointer;
}

.list-container .nav-field .nav-content .nav-swiper .indicators {
  width: 100%;
  position: absolute;
  bottom: 0px;
  z-index: 10;
  height: 50px;
  line-height: 50px;
  background: rgba(0, 0, 0, 0.3);
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.list-container .nav-field .nav-content .nav-swiper .indicators .indicators-text {
  flex: 1;
  font-size: 20px;
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.list-container .nav-field .nav-content .nav-swiper .indicators .indicators-dian {
  margin-left: 10px;
}

.list-container .nav-field .nav-content .nav-swiper .indicators .indicators-dian span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  margin-right: 5px;
  vertical-align: middle;
}

.list-container .nav-field .nav-content .nav-swiper .indicators .indicators-dian span:last-child {
  margin-right: 0;
}

.list-container .nav-field .nav-content .nav-swiper .indicators .indicators-dian span.active {
  background-color: #DD2222;
}

.list-container .nav-field .nav-content .nav-swiper .el-carousel__arrow {
  height: 80px;
  width: 50px;
  border-radius: 0;
  background: rgba(16, 29, 55, 0.4);
}

.list-container .nav-field .nav-content .nav-swiper .el-carousel__arrow .el-icon-arrow-left,
.list-container .nav-field .nav-content .nav-swiper .el-carousel__arrow .el-icon-arrow-right {
  font-size: 32px;
}

.list-container .nav-field .nav-content .nav-swiper .el-carousel__arrow.el-carousel__arrow--left {
  left: 0;
}

.list-container .nav-field .nav-content .nav-swiper .el-carousel__arrow.el-carousel__arrow--right {
  right: 0;
}

.list-container .nav-field .nav-content .nav-content-list {
  width: 584px;
  float: right;
}

.list-container .nav-field .nav-content .nav-content-list .list-ul .list-li {
  height: 81px;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
}

.list-container .nav-field .nav-content .nav-content-list .list-ul .list-li:last-child {
  margin-bottom: 0;
}

.list-container .nav-field .nav-content .nav-content-list .list-ul .list-li .img {
  float: left;
  display: block;
  margin-right: 20px;
}

.list-container .nav-field .nav-content .nav-content-list .list-ul .list-li .right-text .h3 {
  color: #000000;
  font-size: 16px;
  display: block;
  line-height: 26px;
  height: 52px;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.list-container .nav-field .nav-content .nav-content-list .list-ul .list-li .right-text p {
  margin-top: 10px;
  color: #999999;
  font-size: 14px;
}

.list-container .nav-field .nav-content .nav-content-list .list-ul .list-li .right-text p i {
  color: #dddddd;
  margin: 0 10px;
}

.list-container .nav-field .nav-content .nav-content-list .list-ul .list-li:hover .right-text .h3 {
  color: #DD2222;
}

.list-container .container-view {
  margin-top: 30px;
}

.list-container .container-view .container-left .loupan-title-view {
  border-bottom: 1px solid #e8eded;
  background: transparent;
}

.list-container .container-view .container-left .loupan-title-view .loupan-title-view-left .loupan-title.active {
  background: none;
  color: #1d2428;
  font-size: 24px;
  border-bottom: 1px solid #e8eded;
  font-weight: normal;
}

.guide-menu .el-dropdown-menu__item {
  font-size: 14px;
  line-height: 32px;
}

.guide-menu .el-dropdown-menu__item:hover {
  background: transparent !important;
  color: #DD2222;
}

.guide-menu .el-dropdown-menu__item.actived {
  color: #DD2222;
}

.container-view {
  padding-bottom: 30px;
}

.container-view .container-left {
  box-sizing: border-box;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  position: relative;
}

.container-view .container-left.has-news-house-navs {
  padding-top: 50px;
}

.container-view .container-left .news-house-navs {
  height: 40px;
  position: absolute;
  top: -4px;
  left: -10px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}

.container-view .container-left .news-house-navs .news-house-navs-content {
  display: flex;
  align-items: flex-end;
}

.container-view .container-left .news-house-navs .news-house-navs-title {
  color: #ffffff;
  background-color: #DD2222;
  line-height: 40px;
  padding: 0 15px;
  font-size: 16px;
}

.container-view .container-left .news-house-navs .news-house-navs-item {
  margin-top: 14px;
  margin-bottom: 10px;
  height: 16px;
  line-height: 16px;
  font-size: 16px;
  padding: 0 15px;
  color: #666666;
  border-right: 1px solid #eeeeee;
}

.container-view .container-left .news-house-navs .news-house-navs-item:hover {
  cursor: pointer;
  color: #DD2222;
}

.container-view .container-left .news-house-navs .news-house-navs-item:last-child {
  border-right-width: 0;
}

.container-view .container-left .news-house-navs .news-house-navs-sanjiao {
  width: 0;
  height: 0;
  border-top: 10px solid #DD2222;
  border-left: 10px solid transparent;
}

.container-view .container-left .title-field h3 {
  font-size: 26px;
  color: #222;
}

.container-view .container-left .title-field h3 ::v-deep .cms-image {
  background: transparent;
  display: inline-block;
  vertical-align: -8px;
}

.container-view .container-left .title-field .sub-title {
  font-size: 14px;
  color: #999999;
  margin-top: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
}

.container-view .container-left .title-field .sub-title i {
  color: #dddddd;
  margin: 0 10px;
}

.container-view .container-left .title-field .sub-title .sub-title-tag {
  margin-left: 10px;
}

.container-view .container-left ::v-deep .el-carousel__button {
  width: 8px;
  height: 8px;
  border-radius: 4px;
}

.container-view .container-left ::v-deep .el-carousel__indicators--outside button {
  background-color: #DD2222;
}

.container-view .container-left .text-field {
  margin-top: 20px;
  line-height: 32px;
  font-size: 16px;
  color: #333333;
  text-align: justify;
}

.container-view .container-left .text-field ::v-deep img {
  max-width: 100%;
}

.container-view .container-left .text-field ::v-deep video {
  max-width: 100%;
}

.container-view .container-left .text-field ::v-deep table {
  margin: 10px 0;
  border: none;
}

.container-view .container-left .text-field ::v-deep table td,
.container-view .container-left .text-field ::v-deep table th {
  border: 1px solid #dedede;
  height: 35px;
  line-height: 35px;
}

.container-view .container-left .text-field ::v-deep .classTableDiv {
  width: 100%;
  max-height: 600px;
  overflow: auto;
}

.container-view .container-left .text-field ::v-deep .classTableDiv .table.classTable {
  font-size: 12px;
}

.container-view .container-left .text-field ::v-deep .classTableDiv .table.classTable tbody tr td,
.container-view .container-left .text-field ::v-deep .classTableDiv .table.classTable tbody tr th {
  padding: 5px;
  padding-left: 15px;
  width: 300px;
  min-width: 300px;
  line-height: 21px;
  vertical-align: top;
  text-align: left;
}

.container-view .container-left .text-field ::v-deep .classTableDiv .table.classTable tbody tr td:first-child,
.container-view .container-left .text-field ::v-deep .classTableDiv .table.classTable tbody tr th:first-child {
  text-align: center;
  padding-left: 5px;
  width: 30px;
  min-width: 30px !important;
}

.container-view .container-left .text-field ::v-deep .classTableDiv::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.container-view .container-left .text-field ::v-deep .classTableDiv::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c1c1c1;
}

.container-view .container-left .text-field ::v-deep .classTableDiv::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  background: #ededed;
}

.container-view .container-left .text-field ::v-deep .card_view {
  display: flex;
  margin: 10px 0;
  text-align: left;
}

.container-view .container-left .text-field ::v-deep .card_view:hover .card_view_r .card_view_r_title {
  color: #d22;
}

.container-view .container-left .text-field ::v-deep .card_view:hover .card_view_r .card_view_r_text {
  color: #333333;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_a .card_view_l .card_view_l_img {
  width: 220px;
  height: 152px;
  margin-right: 20px;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r {
  flex: 1;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r .card_view_a {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r .card_view_a .card_view_r_title {
  font-size: 20px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-bottom: 5px;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r .card_view_a .card_view_r_text {
  display: -webkit-box;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 5px;
  font-size: 14px;
  height: 24px;
  line-height: 24px;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r .card_view_a .card_view_r_text .card_view_r_text_tip {
  margin: 0 5px;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r .card_view_a .card_view_r_text .card_view_r_text_red {
  color: #d22;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r .card_view_a .card_view_r_text .card_view_r_text_tag {
  border-radius: 4px;
  font-size: 12px;
  padding: 1px 6px;
  border-radius: 2px;
  color: #666;
  background: transparent;
  border: 1px solid #eee;
  line-height: 18px;
  box-sizing: border-box;
  margin-right: 5px;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r .card_view_r_price {
  color: #666;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r .card_view_r_price .card_view_r_price_number {
  font-weight: bold;
  font-size: 20px;
  color: #d22;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r .card_view_r_price .card_view_r_btn {
  font-size: 14px;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r .card_view_r_price .card_view_r_btn .card_view_r_btn_phone {
  display: inline-block;
  background: #fff;
  color: #f80;
  border: 1px solid #f80;
  border-radius: 4px;
  width: 100px;
  height: 35px;
  text-align: center;
  box-sizing: border-box;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r .card_view_r_price .card_view_r_btn .card_view_r_btn_phone .img-div {
  width: 160px;
  height: 160px;
  padding: 5px;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: -180px;
  left: 50%;
  margin-left: -80px;
  z-index: 1;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r .card_view_r_price .card_view_r_btn .card_view_r_btn_phone .img-div .img-div-img {
  width: 150px;
  height: 150px;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r .card_view_r_price .card_view_r_btn .card_view_r_btn_phone .img-div .codeUrl-div-sanjiao {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: -10px;
}

.container-view .container-left .text-field ::v-deep .card_view .card_view_r .card_view_r_price .card_view_r_btn .card_view_r_btn_from {
  display: inline-block;
  background: #fff;
  color: #d22;
  border: 1px solid #d22;
  border-radius: 4px;
  width: 100px;
  height: 35px;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
}

.container-view .container-left .key-word {
  margin-top: 30px;
}

.container-view .container-left .key-word .keys {
  font-size: 0;
  float: left;
  line-height: 40px;
}

.container-view .container-left .key-word .keys .buttonclass {
  margin-right: 15px;
}

.container-view .container-left .key-word .keys .buttonclass:last-child {
  margin-right: 0;
}

.container-view .container-left .buttons {
  text-align: center;
  margin-top: 30px;
}

.container-view .container-left .buttons .button-item {
  display: inline-block;
  margin-right: 111px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.container-view .container-left .buttons .button-item:last-child {
  margin-right: 0;
}

.container-view .container-left .buttons .button-item:hover .share-item-view {
  display: block;
}

.container-view .container-left .buttons .button-item .share-item-view {
  display: none;
  width: 160px;
  position: absolute;
  right: 0;
  bottom: -170px;
  height: 160px;
  transform: translateX(50%);
}

.container-view .container-left .buttons .button-item .button-name {
  display: block;
  margin-top: 5px;
  color: #333333;
  font-size: 14px;
}

.container-view .container-left .buttons .button-item .button-name.active {
  color: #DD2222;
}

.container-view .container-left .buttons .button-item:hover .button-name {
  color: #DD2222;
}

.container-view .container-left .news-change a {
  display: block;
  color: #333333;
  font-size: 14px;
  cursor: pointer;
  width: 45%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 19px;
}

.container-view .container-left .news-change a:hover {
  color: #DD2222;
}

.container-view .container-left .news-change .prev {
  float: left;
}

.container-view .container-left .news-change .next {
  float: right;
}

.container-view .container-left .commment-publish {
  margin-top: 30px;
}

.container-view .container-left .commment-publish .form-view {
  margin-top: 20px;
}

.container-view .container-left .commment-publish .form-view ::v-deep .cms-form-wrap {
  position: relative;
}

.container-view .container-left .commment-publish .form-view ::v-deep .cms-form-wrap .el-textarea__inner {
  border-radius: 4px;
  border-bottom-width: 1px;
}

.container-view .container-left .commment-publish .form-view ::v-deep .cms-form-wrap .cms-button.block {
  width: auto;
  margin-top: 15px;
}

.container-view .container-left .qrimg {
  border: 1px solid #dddddd;
  padding: 20px 0;
  display: flex;
}

.container-view .container-left .qrimg .qritem {
  flex: 1;
  text-align: center;
  border-right: 1px solid #dddddd;
  color: #333333;
}

.container-view .container-left .qrimg .qritem:last-child {
  border-right: none;
}

.container-view .container-left .qrimg .qritem .qrcon {
  margin: 15px auto;
  width: 120px;
}

.container-view .container-left .qrimg .qritem .qrcon.appcon {
  width: 104px;
  margin: 24px auto;
}

.container-view .container-left .qrimg .qritem .qrtip {
  width: 120px;
  text-align: center;
  margin: 0 auto;
}

.container-view .container-left .more-news {
  margin-top: 30px;
}

.container-view .container-left .comment-list {
  margin-top: 30px;
}

.container-view .container-left .comment-list ul {
  margin-top: 20px;
}

.container-view .container-left .comment-list li {
  font-size: 0;
  padding-left: 65px;
  position: relative;
  border-bottom: 1px dashed #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.container-view .container-left .comment-list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.container-view .container-left .comment-list li .user {
  font-size: 16px;
  color: #000000;
}

.container-view .container-left .comment-list li .date {
  color: #cccccc;
  margin-top: 5px;
  font-size: 14px;
}

.container-view .container-left .comment-list li .answer {
  margin-top: 12px;
  position: relative;
}

.container-view .container-left .comment-list li .answer .content-text {
  font-size: 14px;
  color: #333333;
  margin-bottom: 15px;
  text-align: justify;
  white-space: pre-line;
  line-height: 22px;
}

.container-view .container-left .comment-list li .answer .content-text.content-text-ellipsis {
  line-height: 22px;
  max-height: 44px;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.container-view .container-left .comment-list li .answer .content-text-btn {
  width: 56px;
  position: absolute;
  bottom: -20px;
  right: 0;
}

.container-view .container-left .comment-list li .answer .content-text-btn .content-text-btn-show {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  line-height: 28px;
  cursor: pointer;
}

.container-view .container-left .comment-list li .answer .content-text-btn .content-text-btn-show .full-text {
  margin-right: 3px;
  font-size: 14px;
}

.container-view .container-left .comment-list li .answer .content-text-btn .content-text-btn-show .full-text:hover {
  color: #DD2222;
}

.container-view .container-left .comment-list li .user-img {
  position: absolute;
  top: 0;
  left: 0;
}

.container-view .container-left .comment-list li .contact {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 0;
}

.container-view .container-left .comment-list li .contact .phone {
  float: left;
  margin-right: 14px;
}

.container-view .container-left .comment-list li .contact .phone .phone-content {
  line-height: 40px;
}

.container-view .container-left .comment-list li .contact .phone .phone-content span {
  color: #DD2222;
  font-weight: bold;
  font-size: 20px;
  vertical-align: middle;
}

.container-view .container-left .comment-list li .contact .phone .phone-content .split {
  font-size: 14px;
  color: #333333;
}

.container-view .container-left .comment-list li .contact .btn {
  float: right;
}

.container-view .container-left .comment-list li ::v-deep .tag {
  border-radius: 15px;
}

.container-view .container-left .comment-list .comment-more-btn {
  height: 50px;
  line-height: 50px;
  background: #f9f9f9;
  color: #333333;
  font-size: 16px;
  text-align: center;
  border-radius: 4px;
}

.container-view .container-left .comment-list .comment-more-btn:hover {
  cursor: pointer;
  color: #DD2222;
}

