@charset "UTF-8";

body {
  font-family: Noto Sans SC, Arial, sans-serif;
}

.bg-lightgrey {
  background-color: #f4f4f4;
}

.bg-efefef {
  background-color: #efefef;
}

.bg-white {
  background-color: white;
}

.bg-f7 {
  background-color: #f7f7f7;
}

.ws-symbol {
  color: #00856f;
}

form .form-control {
  box-shadow: none;
  -webkit-box-shadow: none;
  -webkit-appearance: none;
}

form .form-control:focus {
  border-color: #b6b6b6;
  -webkit-box-shadow: none;
  box-shadow: none;
}

form input {
  box-shadow: none;
  -webkit-box-shadow: none;
  -webkit-appearance: none;
  outline: none;
  border: none;
}

form textarea {
  box-shadow: none;
  -webkit-box-shadow: none;
  -webkit-appearance: none;
}

@media screen and (max-width: 768px) {
  /* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
  #sidebar {
    width: 78vw;
    position: fixed;
    top: 0;
    right: -78vw;
    height: 100vh;
    z-index: 1002;
    padding: 0;
    background: white;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  }
  #sidebar .sidebar-header {
    color: #000;
    padding: 10px 10px 40px 10px;
  }
  #sidebar .sidebar-header > div {
    display: inline-block;
  }
  #sidebar .sidebar-header .sidebar-title {
    font-size: 18px;
    font-weight: bold;
  }
  #sidebar .sidebar-header #sidebarDismiss {
    float: right;
    padding-right: 10px;
  }
  #sidebar .sidebar-header #sidebarDismiss img {
    width: 14px;
    height: 14px;
  }
  #sidebar.active {
    right: 0;
  }
  #sidebarDismiss {
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  #sidebarDismiss:hover {
    background: #fff;
    color: #7386D5;
  }
  .sidebar-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: none;
  }
  #sidebar-content {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media screen and (max-width: 390px) {
  #sidebar {
    width: 95vw;
    right: -95vw;
    border: 1px solid inherit;
  }
}

a.red-link,
button.red-link {
  color: #00856f;
}

a.red-link:hover,
button.red-link:hover {
  cursor: pointer;
  text-decoration: underline;
}

a.red-link:visited,
button.red-link:visited {
  color: #00856f;
  text-decoration: none;
}

a.r-red-link,
button.r-red-link {
  color: #00856f;
}

a.r-red-link:hover,
button.r-red-link:hover {
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 3px 0 -0.1em #00856f;
}

a.r-red-link:visited,
button.r-red-link:visited {
  color: #00856f;
  text-decoration: none;
}

a.round-button,
button.round-button {
  background-color: #00856f;
  text-align: center;
  border-radius: 30px;
  border: 1px solid #00856f;
  color: white;
  font-size: 14px;
  line-height: 18px;
  padding: 7px 15px;
  height: 35px;
  min-width: 132px;
  display: inline-block;
  cursor: pointer;
}

a.round-button.big-round,
button.round-button.big-round {
  font-size: 20.83px;
  padding: 4px 23px;
}

a.round-button:hover, a.round-button:visited, a.round-button:active,
button.round-button:hover,
button.round-button:visited,
button.round-button:active {
  cursor: pointer;
  background-color: #00856f;
  color: white;
  border: 1px solid #00856f;
}

a.round-button.small-round,
button.round-button.small-round {
  padding: 5px;
  height: 30px;
  min-width: 82px;
}

a.round-button.btn-default:active:hover,
button.round-button.btn-default:active:hover {
  cursor: pointer;
  background-color: #00856f;
  color: white;
  border: 1px solid #00856f;
}

a.round-button.circle,
button.round-button.circle {
  background-color: transparent;
  color: #00856f;
  border: 1px solid #00856f;
}

a.round-button.circle:hover,
button.round-button.circle:hover {
  background-color: #00856f;
  color: white;
  border: 1px solid #00856f;
}

a.round-button.circle.grey,
button.round-button.circle.grey {
  color: #666666;
  border: 1px solid #666666;
}

a.round-button.circle.grey:hover,
button.round-button.circle.grey:hover {
  background-color: transparent;
  color: #00856f;
  border: 1px solid #00856f;
}

.r-custom-checkbox {
  position: relative;
  padding: 0 15px 0 25px;
  margin-bottom: 4px;
  margin-top: 0;
  display: inline-block;
  line-height: 0;
}

.r-custom-checkbox input[type="checkbox"] {
  opacity: 0;
  /*将初始的checkbox隐藏起来*/
  position: absolute;
  cursor: pointer;
  z-index: 2;
  margin: -6px 0 0 0;
  top: 13px;
  left: 3px;
}

.r-custom-checkbox label span {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  margin-top: 0;
  width: 19px;
  height: 18px;
  display: inline-block;
  border-radius: 2px;
  border: 1px solid;
  background: white;
}

.r-custom-checkbox input[type="checkbox"]:checked + label span {
  border: 1px solid transparent;
}

.r-custom-checkbox input[type="checkbox"]:checked + label span {
  background-image: url(../images/r-icon_correct.png);
  background-size: cover;
  top: 5px;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  border: 1px solid #00856f;
  content: '';
  position: absolute;
  left: 0;
  width: 19px;
  height: 18px;
  display: inline-block;
  border-radius: 2px;
}

.r-custom-checkbox:not(.check-item) label {
  cursor: pointer;
  line-height: 1.2;
  font-weight: normal;
  /*改变了rememberme的字体*/
  margin-bottom: 0;
  text-align: left;
  padding-left: 5px;
}

.r-custom-checkbox:not(.check-item) label a {
  color: #333;
}

.r-custom-checkbox input[type="checkbox"]:checked + label {
  color: #00856f;
}

.r-custom-checkbox input[type="checkbox"]:checked + label a {
  color: #00856f;
}

.r-custom-checkbox.active label {
  color: #00856f;
}

.result-list .r-custom-checkbox:not(.check-item) label a {
  overflow: hidden;
  vertical-align: text-bottom;
  max-width: 650px;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.r-icon-download,
.r-icon-share,
.r-icon-collect {
  position: relative;
  margin: 0 25px;
  color: #909090;
}

.r-icon-download span,
.r-icon-share span,
.r-icon-collect span {
  position: absolute;
  background: url("../images/r-download.png") no-repeat;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='./images/r-download.png', sizingMethod='scale');
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 2px;
  left: -20px;
  display: inline-block;
}

.r-icon-download.active, .r-icon-download:hover,
.r-icon-share.active,
.r-icon-share:hover,
.r-icon-collect.active,
.r-icon-collect:hover {
  color: #00856f;
}

.r-icon-download.active span, .r-icon-download:hover span,
.r-icon-share.active span,
.r-icon-share:hover span,
.r-icon-collect.active span,
.r-icon-collect:hover span {
  background: url("../images/r-download-a.png") no-repeat;
  background-size: cover;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='./images/r-download-a.png', sizingMethod='scale');
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .r-icon-download,
  .r-icon-share,
  .r-icon-collect {
    margin: 0;
  }
  .r-icon-download:before,
  .r-icon-share:before,
  .r-icon-collect:before {
    top: 0;
  }
}

.r-icon-share span {
  background: url("../images/r-share.png") no-repeat;
  background-size: cover;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='./images/r-share.png', sizingMethod='scale');
  display: inline-block;
  width: 12px\9;
  height: 12px\9;
}

.r-icon-share.active span,
.r-icon-share:hover span {
  background: url("../images/r-share-a.png") no-repeat;
  background-size: cover;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='./images/r-share-a.png', sizingMethod='scale');
  display: inline-block;
}

.r-icon-collect span {
  background: url("../images/r-heart.png") no-repeat;
  background-size: cover;
  /*下一行为关键设置*/
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='./images/r-heart.png', sizingMethod='scale');
  display: inline-block;
}

.r-icon-collect.active span,
.r-icon-collect:hover span {
  background: url("../images/r-heart-a.png") no-repeat;
  background-size: cover;
  /*下一行为关键设置*/
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='./images/r-heart-a.png', sizingMethod='scale');
  display: inline-block;
}

.block-section {
  /*padding-bottom: 40px;*/
  position: relative;
}

.block-section .section-title {
  font-size: 28px;
  padding: 40px 0;
  font-weight: bold;
  color: #00856f;
  text-align: center;
}

.block-section .section-title.md {
  padding: 15px 0;
}

.block-section .section-content {
  margin: 0 auto;
  padding-bottom: 40px;
}

.block-section .section-desc {
  font-size: 16px;
  color: #00856f;
  text-align: center;
}

.block-section .section-button {
  text-align: center;
  padding-bottom: 20px;
}

.block-section .half-up {
  z-index: -1;
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  background-color: #f4f4f4;
}

.block-section .half-down {
  z-index: -1;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: white;
}

.block-section.full .section-content {
  width: 100%;
}

.block-section.no-bottom {
  padding-bottom: 0;
}

.block-section.no-bottom .section-content {
  padding-bottom: 0;
}

.block-section.switch-video .feature-block.case .swiper-slide {
  width: 33.3%;
}

.block-section.switch-video .feature-block.case .swiper-slide:last-child .feature-item {
  margin-right: 0;
}

.block-section.switch-video .feature-block.case .feature-item {
  width: 96%;
  margin: 0 0 0 1%;
}

@media screen and (min-width: 1200px) {
  .block-section .section-content {
    width: 1200px;
  }
}

@media screen and (max-width: 768px) {
  .block-section {
    padding-bottom: 10px;
  }
  .block-section .section-title {
    font-size: 28px;
    padding: 20px 0 0 0;
  }
  .block-section .section-content {
    width: 100%;
    padding-bottom: 10px;
  }
  .block-section .section-button {
    text-align: center;
    padding-bottom: 20px;
  }
  .block-section .section-button button {
    padding: 10px 35px;
  }
  .block-section.switch-video .feature-block.case .swiper-slide {
    width: 100%;
  }
  .block-section.switch-video .feature-block.case .feature-item {
    width: 100%;
    margin: 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 969px) {
  .block-section .section-content {
    width: 100%;
  }
}

.common-swiper {
  position: relative;
}

.common-swiper .swiper-button-prev {
  left: -50px;
  background-size: cover;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  background-image: url("../images/i-arrow-l.png");
}

.common-swiper .swiper-button-prev:hover {
  background-image: url("../images/i-arrow-lr.png");
}

.common-swiper .swiper-button-next {
  right: -50px;
  background-size: cover;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  background-image: url("../images/i-arrow-r.png");
}

.common-swiper .swiper-button-next:hover {
  background-image: url("../images/i-arrow-rr.png");
}

.common-swiper .swiper-pagination {
  position: absolute;
  z-index: 20;
  bottom: 70px;
  width: 100%;
  text-align: center;
}

.common-swiper .swiper-pagination-switch {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d6d6d6;
  margin: 0 5px;
  cursor: pointer;
}

.common-swiper .swiper-active-switch {
  background: #00856f;
  width: 12px;
  height: 12px;
  border-radius: 6px;
}

.bg-lightgrey .common-swiper .swiper-pagination-switch {
  background: #FFFFFF;
}

.bg-lightgrey .common-swiper .swiper-active-switch {
  background: #00856f;
}

@media screen and (max-width: 768px) {
  .common-swiper .swiper-button-next,
  .common-swiper .swiper-button-prev {
    display: none;
  }
  .common-swiper .swiper-pagination {
    bottom: 10px;
  }
}

.common-breadcrumb {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 0;
}

.common-breadcrumb .breadcrumb {
  background-color: transparent;
  width: 1200px;
  margin: 0 auto;
  font-size: 16px;
  padding: 8px 0;
}

.common-breadcrumb .breadcrumb li:not(:first-child):before {
  content: ">";
  padding: 0 15px;
}

.common-breadcrumb .breadcrumb li a {
  color: #f5f5f5;
}

.common-breadcrumb .breadcrumb li a img {
  margin-top: -4px;
}

.common-breadcrumb .breadcrumb li a:hover {
  color: white;
}

.common-breadcrumb .breadcrumb li.active a {
  color: #FFFFFF;
}

.common-breadcrumb .breadcrumb .dropdown-toggle.active {
  color: white;
}

.common-breadcrumb .breadcrumb .dropdown-menu {
  left: 75%;
  border-radius: 0;
  background-color: #f7f7f7;
  min-width: 300px;
  padding: 10px;
  font-size: 14px;
}

.common-breadcrumb .breadcrumb .dropdown-menu .menu-row {
  width: 100%;
  display: inline-block;
}

.common-breadcrumb .breadcrumb .dropdown-menu .menu-row a {
  padding-right: 15px;
  color: #515151;
  white-space: nowrap;
  padding: 7px 10px;
  display: inline-block;
}

.common-breadcrumb .breadcrumb .dropdown-menu .menu-row a:hover {
  color: #00856f;
}

.common-breadcrumb.self {
  position: relative;
  background-color: white;
}

.common-breadcrumb.self .breadcrumb li:not(:first-child):before {
  color: #4b4b4b;
}

.common-breadcrumb.self .breadcrumb li a {
  color: #4b4b4b;
}

.common-breadcrumb.self {
  position: relative;
  background-color: white;
}

.common-breadcrumb.self .breadcrumb li:not(:first-child):before {
  color: #4b4b4b;
}

.common-breadcrumb.self .breadcrumb li a {
  color: #4b4b4b;
}

@media screen and (max-width: 1200px) {
  .common-breadcrumb .breadcrumb {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .common-breadcrumb {
    display: none;
  }
}

.banner-content-block {
  background-color: #384454;
  position: relative;
  overflow: hidden;
}

.banner-content-block img.block-img-pc {
  width: 1920px;
  max-width: 1920px;
  position: relative;
  left: 50%;
  margin-left: -960px;
  overflow: hidden;
}

.banner-content-block .block-wrapper {
  max-height: 400px;
  padding: 70px 100px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.banner-content-block .block-wrapper .wrapper-container {
  width: 1200px;
  margin: 0 auto;
}

.banner-content-block .block-wrapper .wrapper-container .block-title {
  font-size: 46px;
  padding-bottom: 10px;
  font-weight: bold;
  color: white;
}

.banner-content-block .block-wrapper .wrapper-container .block-content {
  min-height: 70px;
  font-size: 24px;
  letter-spacing: 2px;
  padding-bottom: 10px;
  color: #fff;
}

.banner-content-block .block-wrapper .wrapper-container .block-content li {
  margin-left: 15px;
  padding-bottom: 10px;
  font-size: 16px;
  list-style: disc;
}

.banner-content-block .block-wrapper .wrapper-container button {
  padding: 8px 35px;
}

@media screen and (max-width: 1200px) {
  .banner-content-block .block-wrapper .wrapper-container {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .banner-content-block img {
    width: 100%;
  }
  .banner-content-block .block-img-pc {
    display: none;
  }
  .banner-content-block .block-wrapper {
    padding: 20% 5%;
  }
  .banner-content-block .block-wrapper .wrapper-container {
    width: 100%;
  }
  .banner-content-block .block-wrapper .wrapper-container .block-title {
    font-size: 36px;
  }
  .banner-content-block .block-wrapper .wrapper-container .block-content {
    font-size: 24px;
    min-height: 50px;
  }
  .banner-content-block .block-wrapper .wrapper-container button {
    padding: 8px 20px;
  }
}

@media screen and (max-width: 600px) {
  .banner-content-block .block-wrapper {
    padding: 15% 5%;
  }
  .banner-content-block .block-wrapper .wrapper-container .block-title {
    font-size: 24px;
  }
  .banner-content-block .block-wrapper .wrapper-container .block-content {
    font-size: 16px;
  }
}

@media screen and (max-width: 320px) {
  .banner-content-block .block-wrapper {
    padding: 5% 5%;
  }
}

@media screen and (min-width: 769px) {
  .banner-content-block .block-img-mb {
    display: none;
  }
}

.img-content-block {
  padding: 0;
  height: 400px;
  background-color: #384454;
  position: relative;
}

.img-content-block img {
  width: 100%;
  height: 400px;
}

.img-content-block .content-wrapper {
  position: absolute;
  top: 0;
  min-height: 400px;
  padding: 70px 100px;
}

.img-content-block .content-wrapper .block-title {
  font-size: 34px;
  padding-bottom: 20px;
  font-weight: bold;
  color: white;
}

.img-content-block .content-wrapper .block-content {
  font-size: 16px;
  padding-bottom: 15px;
  color: #fff;
}

.img-content-block .content-wrapper .block-content li {
  margin-left: 15px;
  padding-bottom: 10px;
  font-size: 16px;
  list-style: disc;
  height: 32px;
}

.img-content-block .content-wrapper .block-content li a {
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.img-content-block .content-wrapper .block-content li a:hover {
  color: #babdc1;
}

@media screen and (max-width: 768px) {
  .img-content-block img.pc {
    display: none;
  }
  .img-content-block .content-wrapper {
    padding: 50px;
  }
  .img-content-block .content-wrapper .block-title {
    font-size: 20px;
  }
  .img-content-block .content-wrapper .block-content {
    min-height: 126px;
    font-size: 16px;
    padding-bottom: 10px;
    color: #fff;
  }
  .img-content-block .content-wrapper .block-content li {
    margin-left: 15px;
    padding-bottom: 10px;
    font-size: 16px;
    list-style: disc;
    list-style-position: inside;
    position: relative;
  }
  .img-content-block .content-wrapper .block-content li a {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: calc(100vw - 120px);
    display: block;
    position: absolute;
    top: 0;
    left: 10px;
  }
  .img-content-block button {
    padding: 8px 30px;
  }
  .img-content-block:first-child {
    margin-top: 20px;
  }
}

@media screen and (min-width: 769px) and (min-width: 969px) {
  .img-content-block img.mb {
    display: none;
  }
  .img-content-block .content-wrapper {
    padding: 70px 0 0 70px;
    width: 90%;
    left: 0;
  }
}

@media screen and (min-width: 970px) {
  .img-content-block img.mb {
    display: none;
  }
  .img-content-block:first-child .content-wrapper {
    padding: 70px 70px 0 0;
    width: 90%;
    right: 0;
    left: initial;
  }
  .img-content-block:last-child .content-wrapper {
    padding: 70px 0 0 70px;
    width: 90%;
    left: 0;
    right: initial;
  }
}

@media screen and (min-width: 1200px) {
  .img-content-block:first-child .content-wrapper {
    width: 600px;
  }
  .img-content-block:last-child .content-wrapper {
    width: 600px;
  }
}

.link-list-block {
  padding: 0;
}

.link-list-block .block-title {
  font-size: 24px;
  padding-bottom: 20px;
  font-family: Source Sans Pro, Arial, sans-serif;
  font-weight: bold;
  color: #00856f;
}

.link-list-block .block-content {
  padding-bottom: 10px;
  font-size: 16px;
}

.link-list-block .block-content .link-item {
  width: 100%;
  display: inline-block;
  padding: 5px 0 5px 10px;
  margin-left: 10px;
}

.link-list-block .block-content .link-item a:hover {
  color: #00856f;
}

.link-list-block .block-content .link-item:before {
  position: absolute;
  content: "●";
  left: 0;
  font-size: 12px;
}

.link-list-block .block-content .link-item .link-title {
  display: inline-block;
  padding-left: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 0;
}

.link-list-block .block-content .link-item .link-time {
  display: inline-block;
}

.link-list-block .block-content .link-item .link-download {
  display: inline-block;
  line-height: 16px;
  color: #00856f;
}

.link-list-block .block-content .link-item .link-download:hover {
  text-decoration: none;
  cursor: pointer;
}

.link-list-block .block-content .link-item .link-download img {
  height: 16px;
  margin-left: 10px;
  margin-bottom: 3px;
}

.link-list-block .block-content li {
  margin-left: 15px;
  padding-bottom: 15px;
  font-size: 16px;
  list-style: disc;
}

@media screen and (max-width: 768px) {
  .link-list-block {
    padding: 20px 20px;
  }
  .link-list-block .block-title {
    padding-bottom: 20px;
    font-weight: bold;
  }
  .link-list-block .block-content {
    padding-bottom: 10px;
  }
  .link-list-block .block-content .link-item:before {
    left: 20px;
  }
  .link-list-block .block-content .link-item .link-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .link-list-block .block-content .link-item .link-time {
    display: none;
  }
  .link-list-block .block-content .link-item .link-download {
    line-height: 24px;
    color: #00856f;
    text-align: center;
  }
  .link-list-block .block-content .link-item .link-download:hover {
    text-decoration: underline;
    cursor: pointer;
  }
  .link-list-block .block-content .link-item .link-download img {
    height: 16px;
    margin-left: 10px;
    margin-bottom: 3px;
  }
  .link-list-block .block-content .link-item li {
    margin-left: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    list-style: disc;
  }
  .link-list-block button {
    padding: 8px 30px;
  }
}

@media screen and (min-width: 769px) and (max-width: 969px) {
  .link-list-block {
    margin-left: 20px;
  }
  .link-list-block:first-child {
    padding-bottom: 40px;
  }
}

.product-present-block {
  width: 1200px;
  margin: 0 auto;
}

.product-present-block .present-title {
  font-size: 28px;
  line-height: 1;
  padding: 70px 0 10px;
  font-weight: bold;
  color: #00856f;
}

.product-present-block .present-left {
  height: 100%;
}

.product-present-block .present-left ul {
  margin-bottom: 10px;
  /*padding-left: 20px;*/
}

.product-present-block .present-left ul li {
  padding: 10px 0;
  list-style-type: none;
  font-size: 16px;
  line-height: 30px;
}

.product-present-block .present-left .left-buttons {
  padding: 20px 0 0 0px;
}

.product-present-block .present-left .left-buttons a.round-button {
  margin-bottom: 10px;
}

.product-present-block .present-left .left-buttons a.round-button:not(:last-child) {
  margin-right: 10px;
}

.product-present-block .present-right {
  height: 100%;
}

.product-present-block .present-right .video img:hover {
  cursor: pointer;
}

.product-present-block .present-right .video .video-container {
  position: relative;
}

.product-present-block .present-right .video .video-container .item-image {
  width: 100%;
}

.product-present-block .present-right .video .video-container .play-button {
  position: absolute;
  width: 80px;
  height: 80px;
  padding: 0;
  left: 50%;
  top: 50%;
  margin: -40px 0 0 -40px;
}

.opened-fold,
.left-link.close-btn {
  display: none;
}

.left-link {
  display: inline-block;
  font-size: 16px;
}

.left-link:hover,
.left-link :active,
.left-link :focus,
.left-link :visited {
  color: #00856f;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .product-present-block {
    width: 100%;
  }
  .product-present-block .present-title {
    font-size: 28px;
    padding: 20px;
    text-align: center;
  }
  .product-present-block .present-body {
    padding: 0 10px;
  }
  .product-present-block .present-body .present-left {
    height: 100%;
  }
  .product-present-block .present-body .present-left ul {
    padding-left: 20px;
  }
  .product-present-block .present-body .present-left ul li {
    padding-left: 0;
    list-style-type: disc;
    font-size: 16px;
  }
  .product-present-block .present-body .present-left .left-buttons {
    padding: 10px 0;
  }
  .product-present-block .present-body .present-left .left-buttons a.round-button {
    width: 40%;
    margin: 2% 5%;
    padding: 8px;
    display: inline-block;
  }
  .product-present-block .present-body .present-right {
    width: 100%;
    height: 100%;
    /*padding-bottom: 40px;*/
  }
  .product-present-block .present-body .present-right .video {
    padding: 0;
    display: inline-block;
    text-align: center;
    width: 100%;
  }
  .product-present-block .present-body .present-right .video img {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .product-present-block {
    width: 100%;
  }
  .product-present-block .present-left {
    width: 50%;
  }
  .product-present-block .present-left .left-buttons a.round-button {
    width: 132px;
  }
  .product-present-block .present-right {
    width: 50%;
    padding: 0 5%;
    float: right;
  }
}

.content-block {
  max-width: 1200px;
  margin: 0 auto;
}

.content-block:after {
  content: '';
  left: 0;
  bottom: 0;
  right: auto;
  top: auto;
  height: .1rem;
  width: 100%;
  background-color: #808080;
  display: block;
  z-index: 15;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

.content-block.no-after::after {
  content: none;
}

.content-block .content-title {
  font-size: 46px;
  line-height: 1;
  padding: 70px 0 24px;
  font-weight: bold;
  color: #325078;
  /*padding-bottom: 15px;*/
  /*margin-top: 50px;*/
}

.content-block .content-detail {
  font-size: 17px;
  /*padding-bottom: 30px;*/
  /*line-height: 1.7em;*/
  line-height: 29px;
}

.content-block .content-detail .content-img {
  text-align: center;
  padding: 40px;
}

@media screen and (max-width: 768px) {
  .content-block {
    padding: 20px;
  }
  .content-block .content-title {
    font-size: 26px;
    text-align: center;
  }
  .content-block .content-img {
    padding: 40px 20px;
  }
  .content-block .content-img img {
    width: 100%;
  }
}

.single-list-block {
  font-size: 16px;
  color: #505050;
}

.single-list-block .block-title {
  font-size: 24px;
  padding-bottom: 10px;
  font-weight: bold;
  color: #00856f;
}

.single-list-block .list-item-container {
  padding-bottom: 20px;
}

.single-list-block .list-item-container .list-item .item-title {
  font-size: 18px;
  padding-bottom: 10px;
  font-weight: bold;
  color: #00856f;
}

.single-list-block .list-item-container .list-item .item-children .col-md-4 {
  padding-left: 0;
}

.single-list-block .list-item-container .list-item .item-children .col-md-4 img {
  margin-top: -2px;
}

.single-list-block .list-item-container .list-item .item-children a {
  padding-bottom: 10px;
  color: #333;
}

.single-list-block .list-item-container .list-item .item-children a:hover {
  color: #00856f;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .single-list-button {
    margin-left: 15px;
  }
}

@media screen and (max-width: 768px) {
  .single-list-block {
    padding: 0 25px;
  }
  .single-list-block:first-child {
    padding: 20px 25px 0 20px;
  }
  .single-list-block .list-item-container {
    padding-bottom: 20px;
  }
  .single-list-block .list-item-container .list-item .item-children a {
    display: block;
  }
  .single-list-button {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
  .single-list-button.round-button {
    width: 70%;
    margin-left: 25px;
  }
}

.feature-block {
  background-color: #f0f0f0;
}

.feature-block .feature-title {
  padding-top: 30px;
  font-size: 46px;
  font-weight: bold;
  color: #325078;
  text-align: center;
}

.feature-block .feature-detail {
  padding-top: 15px;
  font-size: 25px;
  color: #325078;
  text-align: center;
}

.feature-block .feature-item-container {
  max-width: 1200px;
  margin: 0 auto;
}

.feature-block .feature-item-container .feature-item-wrapper a:hover {
  cursor: pointer;
  color: #00856f;
}

.feature-block .feature-item-container .feature-item-wrapper .feature-item .item-img {
  text-align: center;
  padding: 0 0 10px 0;
}

.feature-block .feature-item-container .feature-item-wrapper .feature-item .item-note {
  font-size: 17px;
  line-height: 29px;
}

.feature-block .feature-item-container .feature-item-wrapper .feature-item .item-note .note-title {
  font-weight: bold;
  color: #505050;
}

.feature-block .feature-item-container .feature-item-wrapper .feature-item .item-note .note-subtitle {
  color: #898989;
}

.feature-block .feature-item-container .feature-item-wrapper .feature-item .item-note ul {
  padding-left: 5px;
}

.feature-block .feature-item-container .feature-item-wrapper .feature-item .item-link {
  padding: 0 10px 20px;
  font-size: 17px;
  color: #00856f;
}

@media screen and (max-width: 768px) {
  .feature-block {
    padding: 20px 0px;
  }
  .feature-block .feature-title {
    font-size: 26px;
    text-align: center;
  }
  .feature-block .feature-detail {
    padding: 15px 20px;
    font-size: 18px;
  }
  .feature-block .feature-item-container {
    display: inline-block;
    justify-content: center;
    width: 100%;
    padding-bottom: 0;
  }
  .feature-block .feature-item-container .mb-view {
    width: 25% !important;
    border-right: none;
    margin: 0 5% 30px 5%;
  }
  .feature-block .feature-item-container .feature-item {
    width: 90%;
    border-right: none;
    margin: 0 5% 30px 5%;
  }
  .feature-block .feature-item-container .feature-item .item-note {
    padding: 25px;
  }
  .feature-block .feature-button {
    padding-bottom: 20px;
  }
  .feature-block .feature-button a {
    font-size: 22px;
    width: 180px;
    height: 40px;
  }
}

@media screen and (min-width: 769px) {
  .feature-block.challenge .feature-item {
    width: 33%;
  }
  .feature-block.challenge .feature-item:not(:last-child) {
    border-right: .1rem solid #a2a2a2;
  }
  .feature-block.challenge .feature-item .item-note {
    padding: 0 25px;
  }
}

@media screen and (min-width: 769px) and (max-width: 969px) {
  .feature-block .feature-item-container {
    max-width: 100%;
  }
  .feature-block .feature-item-container .feature-item-wrapper .feature-item .item-img img {
    height: 150px;
  }
  .feature-block .feature-item-container .feature-item-wrapper .feature-item .item-note .note-subtitle {
    min-height: 60px;
  }
}

.feature-block.case {
  background-color: transparent;
}

.feature-block.case .case a:hover {
  cursor: pointer;
  color: #333333;
}

.feature-block.case .feature-title {
  padding-top: 0;
}

.feature-block.case .feature-item {
  display: block;
  border-right: none;
  padding: 0;
  margin: 0 5px;
}

.feature-block.case .feature-item .item-img {
  padding: 0 0 10px 0;
}

.feature-block.case .feature-item .item-img a {
  display: block;
}

.feature-block.case .feature-item .item-img img {
  width: 100%;
  max-height: initial;
}

@media (max-width: 768px) {
  .feature-block.case .feature-item .item-img img {
    height: auto;
  }
}

.feature-block.case .feature-item .item-note {
  padding: 16px 18px 24px;
  height: 159px;
}

.feature-block.case .feature-item .item-note .note-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 13px;
  height: 61px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feature-block.case .feature-item .item-note .note-subtitle {
  font-size: 16px;
  line-height: 1.5;
  height: 45px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.feature-block.case .feature-item .item-note .note-subtitle.ws-solution {
  height: auto;
}

.feature-block.case .feature-item .item-note .note-subtitle ul {
  padding-left: 20px;
}

.feature-block.case .feature-item .item-note .note-subtitle ul li {
  padding-top: 0;
  list-style-type: disc;
}

.feature-block.case .feature-item .item-link {
  padding: 0 16px 20px;
  font-size: 16px;
  color: #00856f;
}

.feature-block.case.video .swiper-pagination {
  bottom: 0;
}

.feature-block.case.video .feature-item .video-container {
  position: relative;
}

.feature-block.case.video .feature-item .video-container .play-button {
  position: absolute;
  width: 80px;
  height: 80px;
  padding: 0;
  left: 50%;
  top: 50%;
  margin: -40px 0 0 -40px;
}

.feature-block.case.video .feature-item .video-container img {
  width: 100%;
  height: 215px;
}

@media (max-width: 768px) {
  .feature-block.case.video .feature-item .video-container img {
    height: auto;
  }
}

.feature-block.case.video .feature-item .item-note {
  padding-top: 10px;
}

.feature-block.case.video .feature-item .item-note .note-title {
  min-height: 0;
}

@media screen and (max-width: 768px) {
  .feature-block.case .feature-item {
    margin: 0 5% 20px;
  }
  .feature-block.case .feature-item:not(:last-child) {
    border-bottom: none;
    box-shadow: 0 10px 10px -13px #000;
    padding-bottom: 30px;
  }
  .feature-block.case .feature-item .item-note .note-title {
    min-height: auto;
  }
  .feature-block.case .feature-item a {
    font-size: 16px;
  }
  .feature-block.case.video .feature-item {
    width: 100%;
    max-height: 300px;
    margin: 0;
    padding: 0 20px;
  }
  .feature-block.case.video .feature-item .item-note {
    padding: 10px 0;
  }
}

@media screen and (min-width: 769px) {
  .feature-block.case.video .feature-item {
    min-height: 281px;
  }
}

.feature-block.case.link-case .feature-item {
  border: 1px solid #dddddd;
}

.feature-block.case.link-case .feature-item:hover {
  color: #00856f;
  cursor: pointer;
}

.feature-block.case.link-case .feature-item:hover .note-link-title,
.feature-block.case.link-case .feature-item:hover .note-subtitle {
  color: #00856f;
  font-size: 18px;
  min-height: 65px;
}

.feature-block.case.link-case .feature-item .item-img {
  padding: 0 0 10px 0;
}

.feature-block.case.link-case .feature-item .item-img a {
  display: block;
}

.feature-block.case.link-case .feature-item .item-img img {
  width: 100%;
  max-height: initial;
}

.feature-block.case.link-case .feature-item .item-note {
  padding: 0 10px 20px 10px;
}

.feature-block.case.link-case .feature-item .item-note .note-title {
  font-size: 21px;
  padding-bottom: 5px;
}

.feature-block.case.link-case .feature-item .item-note .note-link-title {
  min-height: 63px;
  font-size: 18px;
  padding: 0 20px 5px;
}

.feature-block.case.link-case .feature-item .item-note .note-subtitle {
  font-size: 18px;
}

.feature-block.case.link-case .feature-item .item-note .note-subtitle ul {
  padding-left: 20px;
}

.feature-block.case.link-case .feature-item .item-note .note-subtitle ul li {
  padding-top: 0;
  list-style-type: disc;
}

@media screen and (max-width: 768px) {
  .feature-block.case.case-link .feature-item:not(:last-child) {
    border-bottom: none;
    box-shadow: 0px 10px 10px -13px #000;
    padding-bottom: 30px;
  }
  .feature-block.case.case-link .feature-item .item-note {
    padding: 0 0 25px 0;
  }
  .feature-block.case.case-link .feature-item a {
    font-size: 17px;
  }
  .feature-block.case.case-link.video .feature-item:not(:last-child) {
    padding-bottom: 0;
    box-shadow: none;
  }
}

@media screen and (min-width: 769px) and (max-width: 969px) {
  .feature-block.case.link-case .feature-item .item-note .note-link-title {
    font-size: 18px;
    min-height: 62px;
  }
  .feature-block.case.link-case .feature-item .item-note .note-subtitle {
    font-size: 16px;
  }
}

.feature-block.case.solution .feature-item-container .feature-item-wrapper {
  float: left;
  width: 100%;
}

.feature-block.case.solution .feature-item-container .feature-item-wrapper .feature-item .note-title {
  min-height: 0;
  font-size: 20px;
}

.feature-block.case.solution .feature-item-container .feature-item-wrapper .feature-item .note-subtitle {
  position: relative;
  font-size: 16px;
}

.feature-block.case.solution .feature-item-container .feature-item-wrapper .feature-item .note-subtitle .feature-list {
  padding-left: 5%;
  display: block;
  width: 95%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.feature-block.case.solution .feature-item-container .feature-item-wrapper .feature-item .note-subtitle .feature-list:before {
  position: absolute;
  content: "●";
  left: 0;
  font-size: 12px;
  transform: scale(0.7);
}

@media screen and (min-width: 769px) {
  .feature-block.case.solution .feature-item-container {
    /* one item */
    /* two items */
    /* three items */
    /* four items */
  }
  .feature-block.case.solution .feature-item-container .feature-item-wrapper:first-child:nth-last-child(1) {
    text-align: center;
    display: block;
    width: 35%;
    margin: 0 32.5%;
  }
  .feature-block.case.solution .feature-item-container .feature-item-wrapper:first-child:nth-last-child(1) .feature-item {
    text-align: initial;
  }
  .feature-block.case.solution .feature-item-container .feature-item-wrapper:first-child:nth-last-child(2),
  .feature-block.case.solution .feature-item-container .feature-item-wrapper:first-child:nth-last-child(2) ~ .feature-item-wrapper {
    text-align: center;
    display: block;
    width: 35%;
    margin: 0 7%;
  }
  .feature-block.case.solution .feature-item-container .feature-item-wrapper:first-child:nth-last-child(2) .feature-item,
  .feature-block.case.solution .feature-item-container .feature-item-wrapper:first-child:nth-last-child(2) ~ .feature-item-wrapper .feature-item {
    text-align: initial;
  }
  .feature-block.case.solution .feature-item-container .feature-item-wrapper:first-child:nth-last-child(3),
  .feature-block.case.solution .feature-item-container .feature-item-wrapper:first-child:nth-last-child(3) ~ .feature-item-wrapper {
    display: block;
    width: 32%;
    margin-right: 2%;
  }
  .feature-block.case.solution .feature-item-container .feature-item-wrapper:first-child:nth-last-child(3):last-child,
  .feature-block.case.solution .feature-item-container .feature-item-wrapper:first-child:nth-last-child(3) ~ .feature-item-wrapper:last-child {
    margin-right: 0;
  }
  .feature-block.case.solution .feature-item-container .feature-item-wrapper:first-child:nth-last-child(n+4),
  .feature-block.case.solution .feature-item-container .feature-item-wrapper:first-child:nth-last-child(n+4) ~ .feature-item-wrapper {
    display: block;
    width: 24.6%;
  }
  .feature-block.case.solution .feature-item-container .feature-item-wrapper:first-child:nth-last-child(n+4) .feature-item,
  .feature-block.case.solution .feature-item-container .feature-item-wrapper:first-child:nth-last-child(n+4) ~ .feature-item-wrapper .feature-item {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 769px) and (max-width: 969px) {
  .feature-block.case.solution .feature-item-container .feature-item-wrapper .feature-item .note-subtitle .feature-list {
    min-height: 60px;
  }
}

.form-block {
  padding: 0 0 40px 0;
  box-shadow: 0 2px 5px 1px lightgrey;
  background-color: #f7f7f7;
}

.form-block .form-title {
  font-size: 28px;
  padding: 40px 0;
  font-weight: bold;
  color: #00856f;
  text-align: center;
}

.form-block .form-group .control-label {
  font-size: 16px;
  color: #505050;
}

.form-block .form-group .form-control {
  border-radius: 0;
}

.form-block .form-group .error-message {
  color: #00856f;
  font-size: 14px;
  padding-top: 7px;
}

.form-block .form-group .col-sm-3 {
  padding-left: 15px;
  padding-right: 15px;
}

.form-block .form-group img {
  display: inline-block;
}

.form-block .form-group span {
  color: #00856f;
}

@media (max-width: 768px) {
  .form-block .form-group img {
    width: 100%;
    max-height: 40px;
    min-height: 30px;
  }
  .form-block .form-group .col-xs-5 {
    padding-left: 0px;
  }
  .form-block .form-group .col-sm-5 {
    padding-left: 0px;
  }
  .form-block .form-group .col-sm-3 {
    padding-left: 0px;
  }
}

@media screen and (max-width: 768px) {
  .form-block {
    padding: 20px 40px;
  }
}

.value-block .value-title {
  padding-top: 30px;
  padding-top: 100px;
  font-size: 46px;
  font-weight: bold;
  color: #325078;
  text-align: center;
}

.value-block .value-detail {
  padding-top: 15px;
  font-size: 25px;
  color: #325078;
  text-align: center;
}

.value-block .value-item-container {
  max-width: 1200px;
  margin: 0 auto;
}

.value-block .value-item-container .values-style {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.value-block .value-item-container .values-style .values-style .mb-view {
  width: 24%;
  margin: 0 5px;
  display: flex;
  flex-direction: column;
}

.value-block .value-item-container .values-style .values-style .mb-view .value-item {
  border: 1px solid #535353;
}

.value-block .value-item-container .value-item {
  position: relative;
}

.value-block .value-item-container .value-item .item-img {
  text-align: center;
  padding: 0 0 10px 0;
  width: 100%;
}

.value-block .value-item-container .value-item .item-note {
  font-size: 17px;
  padding: 0 25px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.value-block .value-item-container .value-item .item-note .item-button {
  position: absolute;
  bottom: 0;
  padding-bottom: 15px;
}

.value-block .value-item-container .value-item .item-note .note-title {
  font-size: 21px;
  font-weight: bold;
}

.value-block .value-item-container .value-item .item-note .note-subtitle {
  font-size: 21px;
}

.value-block .value-item-container .value-item .item-note ul {
  padding-left: 5px;
  font-size: 14px;
  padding: 10px 0;
}

.value-block .value-item-container .value-item .item-note ul li {
  padding-left: 0;
  line-height: 18px;
  padding-bottom: 20px;
}

.value-block .value-item-container .value-item .item-note .note-button {
  width: 90px;
  height: 27px;
  padding: 4px;
  font-size: 14px;
}

.modal-video-block .modal-content {
  margin-top: 35%;
  border-radius: 0;
}

.modal-video-block .modal-content .modal-title {
  position: absolute;
  color: #fff;
  top: 20px;
  left: 50%;
  z-index: 2;
  width: 90%;
  margin-left: -45%;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.modal-video-block .modal-content .video-close {
  position: absolute;
  z-index: 1000;
  right: 10px;
  top: 10px;
}

.modal-video-block .modal-content .video-close img {
  height: 25px;
  width: 25px;
}

.modal-video-block .modal-content .modal-body {
  padding: 2px;
}

.modal-video-block .video-js {
  width: 100%;
  height: 450px;
}

.modal-video-block .video-js .vjs-big-play-button {
  background-color: rgba(255, 255, 255, 0.6);
  height: 3em;
  width: 3em;
  border-radius: 3em;
  top: 50%;
  left: 50%;
  margin-left: -1.5em;
  margin-top: -1.5em;
  border: .06666em solid transparent;
}

.modal-video-block .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  position: absolute;
  top: .35em;
  color: black;
  font-size: 2em;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

@media screen and (min-width: 769px) {
  .value-block .value-item-container.m {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .value-block {
    padding: 20px 0px;
  }
  .value-block .value-title {
    font-size: 26px;
    padding: 30px 60px 0 60px;
  }
  .value-block .value-item-container.mobile {
    display: inline-block;
    width: 100%;
    padding: 20px 0;
  }
  .value-block .value-item-container.mobile .value-item {
    width: 90%;
    margin: 10px 5%;
  }
  .value-block .value-item-container.mobile .value-item .item-note {
    padding: 25px;
  }
  .value-block .value-item-container.mobile .value-item .item-note .note-title,
  .value-block .value-item-container.mobile .value-item .item-note .note-subtitle {
    text-align: center;
  }
  .value-block .value-item-container.mobile .value-item .item-button {
    display: flex;
    justify-content: center;
  }
  .value-block .value-item-container.mobile .value-item .item-button a.note-button {
    margin: 15px 0;
    padding: 6px;
    font-size: 22px;
    width: 180px;
    height: 40px;
  }
  .value-block .value-item-container.mobile .swiper-pagination {
    width: 100%;
  }
  .value-block .value-item-container.mobile .swiper-pagination .swiper-pagination-switch {
    background: #989292;
  }
  .value-block .value-item-container.mobile .swiper-pagination .swiper-active-switch {
    background: #00856f;
  }
}

.files-block {
  padding: 40px 0;
  background-color: transparent;
}

.files-block .files-title {
  padding-top: 30px;
  font-size: 46px;
  font-weight: bold;
  color: #325078;
  text-align: center;
}

.files-block .files-item-container {
  display: block;
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.files-block .files-item-container .files-item {
  width: 49%;
  display: inline-block;
  padding: 5px;
}

.files-block .files-item-container .files-item .item-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0f0f0;
  border-radius: 5px;
  padding: 10px 20px;
}

.files-block .files-item-container .files-item .item-container .item-img {
  padding-right: 20px;
}

.files-block .files-item-container .files-item .item-container .item-img img {
  max-height: 150px;
}

.files-block .files-item-container .files-item .item-container .item-des {
  border-right: 2px solid #505050;
  padding-right: 20px;
}

.files-block .files-item-container .files-item .item-container .item-des .item-date {
  font-size: 14px;
  padding-top: 10px;
}

.files-block .files-item-container .files-item .item-container a {
  padding: 0 0 0 20px;
}

.files-block .files-button {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 769px) {
  .files-block .files-item-container .files-item .item-des {
    font-size: 17px;
  }
  .files-block .files-item-container .files-item a {
    width: 20%;
    padding: 0 0 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .files-block {
    padding: 20px 0px;
  }
  .files-block .files-title {
    font-size: 26px;
    padding: 0px 60px;
  }
  .files-block .files-item-container {
    display: inline-block;
    width: 100%;
    padding: 20px 0;
  }
  .files-block .files-item-container .files-item {
    width: 90%;
    margin: 10px 5%;
  }
  .files-block .files-item-container .files-item .item-img {
    height: 50px;
  }
  .files-block .files-item-container .files-item .item-des {
    font-size: 16px;
  }
  .files-block .files-item-container .files-item a {
    width: 30%;
    font-size: 18px;
  }
  .files-block .files-button {
    display: flex;
    justify-content: center;
  }
  .files-block .files-button a {
    margin: 15px 0;
    padding: 6px;
    font-size: 22px;
    width: 180px;
    height: 40px;
  }
}

.action-block {
  background-color: transparent;
}

.action-block .action-item-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}

.action-block .action-item-container .action-item {
  width: 50%;
  float: left;
  padding-left: 15%;
  padding-right: 2%;
}

.action-block .action-item-container .action-item > * {
  padding-bottom: 10px;
}

.action-block .action-item-container .action-item .item-title {
  font-size: 33px;
  font-weight: bold;
  color: #505050;
}

.action-block .action-item-container .action-item .item-subtitle {
  padding-bottom: 20px;
  font-size: 17px;
}

@media screen and (min-width: 769px) {
  .item-image-m {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .action-block {
    padding: 20px 0px;
  }
  .action-block .action-item-container {
    display: inline-block;
    width: 100%;
    padding: 0;
  }
  .action-block .action-item-container .action-item {
    width: 90%;
    margin: 10px 5%;
    padding: 5px 0;
  }
  .action-block .action-item-container .action-item .item-title {
    height: 80px;
    font-size: 30px;
  }
  .action-block .action-item-container .action-item .item-subtitle {
    font-size: 16px;
  }
  .action-block .action-item-container .action-item .item-image {
    display: none;
  }
  .action-block .action-item-container .action-item .item-image-m {
    padding-top: 0;
    padding-right: 20px;
    height: 40px;
  }
}

.isp-login-block {
  background-color: #f5f5f5;
}

.isp-login-block .login-container {
  padding-top: 10%;
  padding-bottom: 10%;
  text-align: center;
}

.isp-login-block .login-container .login-text {
  line-height: 2;
  font-size: 15px;
  text-align: left;
  padding: 0 20px;
}

.isp-login-block .login-container > a,
.isp-login-block .login-container .login-link {
  text-align: center;
  margin-top: 30px;
}

.product-filter-block {
  padding-top: 40px;
}

.product-filter-block .filter-left .panel-group .panel {
  margin-top: 0;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
}

.product-filter-block .filter-left .panel-group .panel .panel-body {
  padding: 0;
  border: none;
}

.product-filter-block .filter-left .panel-group .panel .panel-body.panel-body-wrapper {
  padding: 15px;
}

.product-filter-block .filter-left .panel-group .panel .panel-body.panel-body-wrapper a {
  color: #333;
  font-size: 14px;
}

.product-filter-block .filter-left .panel-group .panel .panel-body.panel-body-wrapper.active {
  background-color: #325078;
}

.product-filter-block .filter-left .panel-group .panel .panel-body.panel-body-wrapper.active a {
  color: #ffffff;
}

.product-filter-block .filter-left .panel-group .panel:last-child {
  border-bottom: 1px solid #bfbfbf;
}

.product-filter-block .filter-left .panel-group .panel-heading {
  background-color: #325078;
  color: white;
  padding: 20px 25px;
  font-size: 16px;
  position: relative;
  border-radius: 0;
  cursor: pointer;
  border-color: #325078;
}

.product-filter-block .filter-left .panel-group .panel-heading a {
  color: #ffffff;
}

@media screen and (min-width: 769px) {
  .product-filter-block .filter-left .panel-group .panel-heading span {
    background: url("../images/icons_arrow_down.png") no-repeat;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='./images/icons_arrow_down.png', sizingMethod='scale');
    height: 6.5px;
    width: 11px;
    background-size: cover;
    position: absolute;
    right: 25px;
    top: 30px;
    display: inline-block;
  }
}

.product-filter-block .filter-left .panel-group .panel-heading.collapsed {
  background-color: white;
  color: #222222;
  border: 1px solid #bfbfbf;
  border-bottom: 0;
}

.product-filter-block .filter-left .panel-group .panel-heading.collapsed a {
  color: #222222;
}

@media screen and (min-width: 769px) {
  .product-filter-block .filter-left .panel-group .panel-heading.collapsed span {
    background: url("../images/icons_arrow_right.png") no-repeat;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='./images/icons_arrow_right.png', sizingMethod='scale');
    height: 12px;
    width: 10px;
    right: 28px;
    top: 27px;
    display: inline-block;
    background-size: cover;
  }
}

.product-filter-block .filter-left .panel-group .panel-heading a {
  font-size: 16px;
  display: block;
}

.product-filter-block .filter-left .panel-group .panel-collapse {
  border: 1px solid #bfbfbf;
  border-bottom: 0;
}

.product-filter-block .filter-right {
  padding: 0;
}

.product-filter-block .filter-right .filter-content {
  display: none;
  padding-left: 20px;
}

.product-filter-block .filter-right .filter-content.default {
  display: block;
}

.product-filter-block .filter-right .filter-content .isp-login-content {
  display: block;
}

.product-filter-block .filter-right .filter-content .panel {
  border: none;
}

.product-filter-block .filter-right .filter-content .panel .panel-heading {
  background-color: #737373;
  color: white;
  padding: 10px 25px;
  font-size: 18px;
  position: relative;
  border-radius: 0;
}

.product-filter-block .filter-right .filter-content .panel .panel-heading:after {
  background-image: url("../images/arrow-up-line.png");
  content: "";
  height: 35px;
  width: 35px;
  right: 8px;
  top: 7px;
  background-size: cover;
  position: absolute;
}

.product-filter-block .filter-right .filter-content .panel .panel-heading.collapsed {
  background-color: #ECECEC;
  color: #222222;
}

.product-filter-block .filter-right .filter-content .panel .panel-heading.collapsed:after {
  background-image: url("../images/arrow-down-line.png");
  height: 35px;
  width: 35px;
  right: 8px;
  top: 7px;
}

.product-filter-block .filter-right .filter-content .panel .panel-heading a {
  font-size: 16px;
}

.product-filter-block .filter-right .filter-content .panel .treeview li.expandable {
  border-bottom: 1px solid #bfbfbf;
}

.product-filter-block .filter-right .filter-content .panel .view-all ul {
  border-bottom: none;
}

@media screen and (min-width: 1200px) {
  .product-filter-block {
    width: 1200px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .product-filter-block {
    padding-top: 0;
  }
  .product-filter-block .switch-container {
    display: block;
    position: relative;
    height: 50px;
  }
  .product-filter-block .switch-container .switch-expand {
    position: absolute;
    background-image: url("../images/switch-expand.png");
    background-size: cover;
    width: 70px;
    height: 30px;
    top: 0;
    left: 50%;
    margin-left: -35px;
  }
  .product-filter-block .switch-container .switch-collapse {
    position: absolute;
    background-image: url("../images/switch-collapse.png");
    background-size: cover;
    width: 70px;
    height: 30px;
    top: 0;
    left: 50%;
    margin-left: -35px;
  }
  .product-filter-block .filter-left {
    width: 100%;
    padding: 0;
    display: none;
  }
  .product-filter-block .filter-left .panel-group .panel,
  .product-filter-block .filter-left .panel-group .panel:last-child {
    border: none;
  }
  .product-filter-block .filter-left .panel-group .panel-heading {
    background-color: #325078;
    padding: 20px 0;
    margin: 0 20px;
    font-size: 20px;
    position: relative;
    border-radius: 0;
    padding-left: 20px;
    border-bottom: 1px solid #bfbfbf;
  }
  .product-filter-block .filter-left .panel-group .panel-heading span {
    background-image: url("../images/files-minus.png");
    height: 25px;
    width: 25px;
    background-size: cover;
    position: absolute;
    right: 15px;
    top: 23px;
    font-size: 33px;
  }
  .product-filter-block .filter-left .panel-group .panel-heading.collapsed {
    background-color: white;
    color: #222222;
    padding-left: 0;
    border: 0;
    border-bottom: 1px solid #bfbfbf;
  }
  .product-filter-block .filter-left .panel-group .panel-heading.collapsed span {
    background-image: url("../images/plus.png");
    height: 25px;
    width: 25px;
    right: 15px;
    top: 23px;
  }
  .product-filter-block .filter-left .panel-group .panel-heading a {
    font-size: 20px;
  }
  .product-filter-block .filter-left .panel-group .panel-collapse {
    margin: 0 20px;
    border: 0;
  }
  .product-filter-block .filter-left .panel-group .panel-collapse .panel-body.panel-body-wrapper {
    background-color: #f5f5f5;
  }
  .product-filter-block .filter-right {
    width: 100%;
    padding: 0;
  }
  .product-filter-block .filter-right .filter-content {
    padding-left: 0;
  }
  .product-filter-block .filter-right .filter-content .panel-group .panel + .panel {
    margin-top: 2px;
  }
  .product-filter-block .filter-right .filter-content .select-content {
    display: none;
    margin-top: -50px;
  }
  .product-filter-block .filter-right .filter-content .select-content .select-title {
    font-size: 20px;
    border-bottom: 1px solid #b5b5b5;
    padding: 0 15px 15px 15px;
  }
  .product-filter-block .filter-right .filter-content .select-content .select-list {
    padding: 15px;
    font-size: 20px;
  }
  .product-filter-block .filter-right .filter-content .select-content .select-list .check-container {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #6f6f6f;
  }
  .product-filter-block .filter-right .filter-content .select-content .select-list .check-container .option-btns {
    padding: 0 0 10px 10px;
    font-size: 14px;
  }
  .product-filter-block .filter-right .filter-content .select-content .select-list .check-container .option-btns > div {
    display: inline-block;
    color: #cfcfcf;
  }
  .product-filter-block .filter-right .filter-content .select-content .select-list .check-container .r-custom-checkbox {
    font-size: 14px;
  }
  .product-filter-block .filter-right .filter-content .select-content .select-list .check-container .r-custom-checkbox label {
    line-height: 1.8;
  }
  .product-filter-block .filter-right .filter-content .select-content .select-list .check-container .r-custom-checkbox label:before {
    top: 15px;
  }
  .product-filter-block .filter-right .filter-content .select-content .select-list .check-container .r-custom-checkbox input[type=checkbox] {
    top: 15px;
  }
  .product-filter-block .filter-right .filter-content .select-content .select-list .check-container .r-custom-checkbox input[type=checkbox]:checked + label:after {
    top: 7px;
  }
  .product-filter-block .filter-right .filter-content .select-content .select-list .check-container .r-icon-collect,
  .product-filter-block .filter-right .filter-content .select-content .select-list .check-container .r-icon-download,
  .product-filter-block .filter-right .filter-content .select-content .select-list .check-container .r-icon-share {
    font-size: 14px;
  }
  .product-filter-block .filter-right .filter-content .select-content .select-list .check-container .r-icon-collect:before,
  .product-filter-block .filter-right .filter-content .select-content .select-list .check-container .r-icon-download:before,
  .product-filter-block .filter-right .filter-content .select-content .select-list .check-container .r-icon-share:before {
    top: 5px;
  }
  .product-filter-block .filter-right .select-all-container .check-container .r-custom-checkbox {
    margin: 0;
  }
  .product-filter-block .filter-right .result-list .r-custom-checkbox:not(.check-item) label a {
    max-width: none;
    white-space: unset;
    text-overflow: unset;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 48px;
  }
}

.select-all-container {
  padding: 30px 0;
}

.select-all-container .check-container .checkbox {
  font-size: 16px;
}

.select-all-container .check-container .checkbox > label {
  color: #7a7a7a;
}

.select-all-container .check-container .check-item {
  display: inline-block;
}

.select-all-container .check-container .r-custom-checkbox {
  padding: 0 0 0 25px;
  margin: 0 25px;
}

.select-all-container .check-container .r-custom-checkbox label {
  line-height: 1.6;
}

.select-all-container .check-container .r-custom-checkbox label:before {
  top: 4px;
}

.select-all-container .check-container .r-custom-checkbox input[type=checkbox] {
  top: 4px;
}

.select-all-container .check-container .r-custom-checkbox input[type=checkbox]:checked + label:after {
  top: 4px;
}

.select-all-container .check-container .r-icon-collect:before,
.select-all-container .check-container .r-icon-download:before,
.select-all-container .check-container .r-icon-share:before {
  top: 0;
}

@media screen and (max-width: 768px) {
  .select-all-container {
    background-color: #f6f6f6;
    padding: 15px;
  }
  .select-all-container .check-container .check-item {
    width: 24%;
    padding-left: 25px;
  }
}

.select-all-container.fixed-bottom {
  z-index: 1001;
  position: fixed;
  bottom: 0;
  right: 0;
  width: auto;
  background: white;
}

@media screen and (max-width: 768px) {
  .select-all-container.fixed-bottom {
    bottom: 80px;
    width: 100%;
    box-shadow: 0px -5px 10px -13px #000;
    background-color: #f6f6f6;
  }
}

.filter-panel-block > div {
  padding-left: 20px;
}

.filter-panel-block .panel-breadcrumb {
  background-color: #f5f5f5;
  margin-bottom: 8px;
}

.filter-panel-block .panel-breadcrumb .breadcrumb li a,
.filter-panel-block .panel-breadcrumb .breadcrumb li:not(:first-child):before {
  color: #00856f;
}

.filter-panel-block .panel-checklist {
  background-color: #f5f5f5;
  padding-top: 20px;
  padding-bottom: 20px;
}

.filter-panel-block .panel-checklist .checklist-container {
  color: #00856f;
  line-height: 3;
  font-size: 13px;
}

.filter-panel-block .panel-checklist .checklist-container > div {
  display: inline-block;
}

.filter-panel-block .panel-checklist .checklist-container .list-title {
  font-size: 18px;
  font-weight: bold;
}

.filter-panel-block .panel-checklist .checklist-container .r-custom-checkbox label {
  line-height: 1.6;
}

.filter-panel-block .panel-checklist .checklist-container .r-custom-checkbox label span {
  top: 1px;
}

.filter-panel-block .panel-checklist .checklist-container .r-custom-checkbox input[type=checkbox] {
  top: 8px;
}

.filter-panel-block .panel-checklist .checklist-container .r-custom-checkbox input[type=checkbox]:checked + label span {
  top: 1px;
}

.filter-panel-block .panel-checklist .checklist-container.hide-container {
  height: 40px;
  overflow: hidden;
}

.filter-panel-block .panel-checklist .operation-btns {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 20px 0 5px 0;
}

.filter-panel-block .panel-checklist .operation-btns > a:first-child {
  margin-right: 15px;
  color: #00856f;
  border-color: #00856f;
}

.filter-panel-block .panel-result-detail {
  padding-top: 20px;
}

.filter-panel-block .panel-result-detail .result-header {
  padding-bottom: 20px;
}

.filter-panel-block .panel-result-detail .result-header .header-title {
  font-size: 18px;
  padding-left: 0;
  line-height: 2;
}

.filter-panel-block .panel-result-detail .result-header .header-sort {
  padding-top: 10px;
}

.filter-panel-block .panel-result-detail .result-header .header-sort .filter-condition {
  padding: 0;
  width: 100%;
}

.filter-panel-block .panel-result-detail .result-header .header-sort .filter-condition > div {
  float: right;
}

.filter-panel-block .panel-result-detail .result-header .header-sort .dropdown .dropdown-toggle {
  display: inline-block;
  position: relative;
  padding-right: 15px;
}

.filter-panel-block .panel-result-detail .result-header .header-sort .dropdown .dropdown-toggle:hover {
  cursor: pointer;
}

.filter-panel-block .panel-result-detail .result-header .header-sort .dropdown .dropdown-toggle span {
  display: inline-block;
  content: " ";
  height: 8px;
  width: 8px;
  border-width: 0 2px 2px 0;
  border-color: #454545;
  border-style: solid;
  transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=0.707, M12=-0.707, M21=0.707, M22=0.707);
  transform-origin: center;
  transition: transform .3s;
  position: absolute;
  top: 4px;
  right: 1px;
}

@media screen and (max-width: 768px) {
  .filter-panel-block .panel-result-detail .result-header .header-sort .dropdown .dropdown-toggle span {
    top: 13px;
  }
}

.filter-panel-block .panel-result-detail .result-header .header-sort .dropdown .dropdown-menu {
  min-width: 100px;
}

.filter-panel-block .panel-result-detail .result-header .header-sort .dropdown.open .dropdown-toggle span {
  transform-origin: center;
  transform: rotate(-135deg);
  filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=-0.707, M12=0.707, M21=-0.707, M22=-0.707);
  transition: transform .3s;
  top: 8px;
}

@media screen and (max-width: 768px) {
  .filter-panel-block .panel-result-detail .result-header .header-sort .dropdown.open .dropdown-toggle span {
    top: 17px;
  }
}

.filter-panel-block .panel-result-detail .result-header .header-sort .dropdown .dropdown-menu {
  border-radius: 0;
}

.filter-panel-block .panel-result-detail .result-list .check-container .container-top {
  font-size: 16px;
}

.filter-panel-block .panel-result-detail .result-list .check-container .container-top .r-custom-checkbox label {
  line-height: 1.6;
}

.filter-panel-block .panel-result-detail .result-list .check-container .container-top .time {
  color: #7a7a7a;
  line-height: 1.6;
  text-align: right;
}

.filter-panel-block .panel-result-detail .result-list .check-container .option-btns {
  margin-left: 37px;
  padding-top: 5px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #dfdfdf;
}

.filter-panel-block .panel-result-detail .result-list .check-container .option-btns .download-times {
  display: inline-block;
  color: #cfcfcf;
  margin-right: 25px;
}

@media screen and (max-width: 768px) {
  .filter-panel-block .panel-breadcrumb {
    background-color: transparent;
    margin-bottom: 2px;
    display: block;
    padding: 0 20px 10px;
    height: auto;
    margin-top: -10px;
  }
  .filter-panel-block .panel-breadcrumb .breadcrumb li a {
    font-size: 18px;
    color: #272727;
  }
  .filter-panel-block .panel-breadcrumb .breadcrumb li:not(:last-child),
  .filter-panel-block .panel-breadcrumb .breadcrumb li:not(:first-child):before {
    display: none;
  }
  .filter-panel-block .panel-checklist {
    background-color: #f5f5f5;
    padding: 0;
  }
  .filter-panel-block .panel-checklist .checklist-container {
    padding: 0 10px;
    color: #00856f;
    line-height: 3;
    font-size: 13px;
  }
  .filter-panel-block .panel-checklist .checklist-container > div {
    display: inline-block;
    width: 49%;
    padding: 0 0 0 20px;
  }
  .filter-panel-block .panel-checklist .checklist-container .list-title {
    display: block;
    color: #000;
    padding-left: 0;
  }
  .filter-panel-block .panel-checklist .checklist-container .r-custom-checkbox label {
    line-height: 1.6;
  }
  .filter-panel-block .panel-checklist .operation-btns {
    position: absolute;
    bottom: 0;
    padding: 0;
    width: 100%;
  }
  .filter-panel-block .panel-checklist .operation-btns > a {
    display: inline-block;
    padding: 0;
    margin: 0;
    border: none;
    color: white;
    border-radius: 0;
    height: 45px;
    line-height: 45px;
    font-size: 17px;
  }
  .filter-panel-block .panel-checklist .operation-btns > a:hover {
    color: white;
    border: none;
  }
  .filter-panel-block .panel-checklist .operation-btns > a:first-child {
    margin-right: 0;
    color: white;
    background-color: #676767;
  }
  .filter-panel-block .panel-checklist .operation-btns > a:last-child {
    background-color: #00856f;
  }
  .filter-panel-block .panel-result-detail {
    padding: 0;
  }
  .filter-panel-block .panel-result-detail .result-header {
    position: relative;
    padding: 0 0 0 10px;
    margin-bottom: 40px;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
  }
  .filter-panel-block .panel-result-detail .result-header .header-title {
    position: absolute;
    right: 15px;
    top: 50px;
    font-size: 14px;
    color: #6f6f6f;
    padding-right: 0;
  }
  .filter-panel-block .panel-result-detail .result-header .header-sort {
    padding: 0;
    line-height: 2.8;
  }
  .filter-panel-block .panel-result-detail .result-header .header-sort .filter-condition {
    width: auto;
    float: left;
  }
  .filter-panel-block .panel-result-detail .result-header .header-sort .dropdown {
    margin-left: 30px;
  }
  .filter-panel-block .panel-result-detail .result-header .header-sort .dropdown .dropdown-toggle {
    color: #00856f;
  }
  .filter-panel-block .panel-result-detail .result-header .header-sort .dropdown .dropdown-toggle:after {
    top: 12px;
    right: -5px;
  }
  .filter-panel-block .panel-result-detail .result-header .header-sort .dropdown.open .dropdown-toggle:after {
    top: 16px;
  }
  .filter-panel-block .panel-result-detail .result-header .header-sort .filter-btn-container {
    padding: 0;
    background-color: #dedede;
    text-align: center;
  }
  .filter-panel-block .panel-result-detail .result-header .header-sort .filter-btn-container .filter-btn:hover {
    cursor: pointer;
  }
  .filter-panel-block .panel-result-detail .result-header .header-sort .filter-btn-container .filter-btn span {
    position: relative;
  }
  .filter-panel-block .panel-result-detail .result-header .header-sort .filter-btn-container .filter-btn span:after {
    content: "";
    position: absolute;
    background: url(../images/filter.png);
    background-size: cover;
    width: 16px;
    height: 16px;
    top: -1px;
    right: -20px;
  }
  .filter-panel-block .panel-result-detail .result-list {
    padding: 0 20px;
  }
  .filter-panel-block .panel-result-detail .result-list .check-container .container-top .r-custom-checkbox {
    padding-right: 0;
  }
  .filter-panel-block .panel-result-detail .result-list .check-container .container-top .r-custom-checkbox input[type=checkbox] {
    top: 14px;
  }
  .filter-panel-block .panel-result-detail .result-list .check-container .container-top .r-custom-checkbox label:before {
    top: 14px;
  }
  .filter-panel-block .panel-result-detail .result-list .check-container .container-top .r-custom-checkbox input[type=checkbox]:checked + label:after {
    top: 6px;
  }
  .filter-panel-block .panel-result-detail .result-list .check-container .container-top .time {
    display: none;
  }
  .filter-panel-block .panel-result-detail .result-list .check-container .option-btns {
    padding-left: 15px;
    margin-left: 0;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .filter-panel-block .panel-result-detail .result-list .check-container .option-btns .download-times {
    float: right;
    margin-right: 5px;
  }
  .filter-panel-block .panel-result-detail .result-list .view-more-mb {
    display: inline-block;
    text-align: center;
    padding: 5px 0 25px 0;
  }
  .filter-panel-block .panel-result-detail .pagination-container {
    display: none;
  }
  .filter-panel-block .panel-result-detail .select-all-container .check-container .check-item {
    width: 24%;
    padding-left: 25px;
  }
}

@media screen and (min-width: 769px) {
  .filter-panel-block .panel-result-detail .result-header .header-sort .sort-right {
    float: right;
    width: auto;
    padding: 0;
  }
  .filter-panel-block .check-container .option-btns > div {
    width: auto;
  }
  .filter-panel-block .check-container .option-btns .download-times {
    float: left;
  }
  .filter-panel-block .panel-checklist .operation-btns > a:first-child {
    width: auto;
    float: none;
  }
}

.simple-login-block {
  background-color: #fbf2f2;
}

.simple-login-block .simple-login-container {
  padding: 15px 0;
  text-align: center;
  position: relative;
}

.simple-login-block .simple-login-container .login-text {
  font-size: 16px;
  display: inline-block;
}

.simple-login-block .simple-login-container .login-button {
  font-size: 16px;
  display: inline-block;
  color: #00856f;
}

.simple-login-block .simple-login-container .close-button {
  background-image: url("../images/close_icon.png");
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/close_icon.png', sizingMethod='scale');
  display: inline-block;
  background-size: cover;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 18px;
}

.simple-login-block .simple-login-container .close-button:hover {
  cursor: pointer;
}

@media screen and (min-width: 1200px) {
  .simple-login-block .simple-login-container {
    width: 1200px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .simple-login-block .simple-login-container .close-button {
    right: 25px;
  }
}

.simple-search-block .search-left .image-container {
  background-size: cover;
  height: 100px;
  text-align: center;
  margin: 10px 0;
  position: relative;
}

.simple-search-block .search-left .image-container .link-container {
  position: absolute;
  bottom: 5px;
  width: 100%;
  color: white;
  text-align: center;
}

.simple-search-block .search-left .image-container .link-container .link-text:after {
  content: ">";
  padding-left: 5px;
}

.simple-search-block .search-right .input-group {
  width: 95%;
  padding: 43px 35px;
}

.simple-search-block .search-right .input-group .form-control {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.simple-search-block .search-right .input-group .input-group-addon {
  width: 80px;
  background-color: #325078;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border: transparent;
  position: relative;
  background: #325078 url(../images/case-search-icon.png) no-repeat center;
}

.simple-search-block .search-right .input-group .input-group-addon.addon-search:hover {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .simple-search-block .search-left .image-container {
    margin: 20px;
  }
  .simple-search-block .search-left .image-container .link-container {
    font-size: 19px;
  }
  .simple-search-block .search-left .image-container .link-container .link-text:after {
    content: none;
  }
  .simple-search-block .search-right .input-group {
    padding: 0 20px 30px 20px;
    width: 100%;
  }
  .simple-search-block .search-right .input-group .input-group-addon {
    width: 50px;
  }
  .simple-search-block .search-right .input-group .input-group-addon.addon-search:after {
    left: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .simple-search-block {
    width: 1200px;
    margin: 0 auto;
  }
}

.r-tab-block .nav-tabs > li > a {
  font-size: 18px;
  color: #7d7d7d;
}

.r-tab-block .nav-tabs > li > a,
.r-tab-block .nav-tabs > li > a:focus,
.r-tab-block .nav-tabs > li > a:hover {
  background-color: #fff;
  border-color: transparent;
}

.r-tab-block .nav-tabs > li.active > a,
.r-tab-block .nav-tabs > li.active > a:focus,
.r-tab-block .nav-tabs > li.active > a:hover {
  color: #00856f;
  cursor: pointer;
  background-color: #fff;
  border: none;
  border-bottom: 3px solid #00856f;
}

.r-tab-block .tab-content {
  padding-top: 30px;
}

a:focus,
a:hover {
  text-decoration: none;
}

/*导航栏中的登录与注册的位置*/
.r-header-top {
  top: 0;
}

/*menu*/
/*每页的banner图部分和面包屑部分*/
.sol-banner .swiper-container {
  width: 100%;
  height: auto;
}

.sol-banner .swiper-slide {
  position: relative;
}

.sol-banner .swiper-pagination {
  bottom: 24%;
  margin: 0 auto;
  width: 100%;
  position: absolute;
  text-align: center;
}

.mobile-pic {
  display: none;
}

.sol-pic img {
  width: 100%;
}

.swiper-pagination-switch {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #FFF;
  margin: 0 5px;
  cursor: pointer;
}

.swiper-active-switch {
  color: #fff;
  background: #00856f;
  width: 16px;
  height: 16px;
  border-radius: 8px;
}

.banner-content {
  width: 1200px;
  color: #fff;
  position: absolute;
  top: 15%;
  left: 50%;
  margin-left: -600px;
}

.banner-title {
  font-size: 48px;
  font-weight: bold;
}

.banner-content p {
  font-size: 25px;
  margin-top: 15px;
}

.sol-more {
  margin-top: 35px;
  display: block;
  width: 152px;
  height: 39px;
  background: #00856f;
  text-align: center;
  border-radius: 20px;
  padding: 9px;
  font-size: 18px;
  color: #fff;
}

.sol-more span {
  margin-left: 15px;
}

.sol-more:hover,
.sol-breadnav .on:hover {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.sol-breadnav {
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 30;
  padding: 20px 0;
  color: #fff;
  box-sizing: border-box;
}

.sol-breadnav-nav {
  position: absolute;
  top: -60px;
}

.sol-breadnav p {
  width: 1200px;
  margin: 0 auto;
}

.sol-breadnav img {
  margin-top: -5px;
}

.sol-breadnav span {
  margin: 0 15px;
  color: #b1b1b1;
}

/*breadnav*/
.breadnav-style {
  max-width: 1200px;
  margin: 0 auto;
}

.sol-breadnav .left-nav {
  /*width: 40%;*/
  /*common-modifty*/
  width: auto;
  float: left;
}

.sol-breadnav .right-nav {
  width: auto;
  float: right;
}

.right-nav .nav-item {
  float: left;
}

.right-nav a {
  color: #fff;
  line-height: 20px;
  float: left;
  margin-left: 40px;
}

.right-nav a.on,
.right-nav a:hover {
  color: #FFFFFF;
}

.sol-breadnav a {
  font-size: 16px;
  color: #f5f5f5;
}

.sol-breadnav a.on {
  color: #FFFFFF;
}

.sol-breadnav .right-nav a.on {
  padding-bottom: 2px;
  border-bottom: 2px #fff solid;
}

@media screen and (max-width: 842px) {
  .sol-breadnav {
    background: #f0f0f0;
    color: #4d4d4d;
  }
  .sol-breadnav a {
    color: #4d4d4d;
  }
  .sol-breadnav .right-nav {
    float: none;
    width: 100%;
    padding: 0 4.5%;
    text-align: center;
  }
  .sol-breadnav .right-nav a.on {
    color: #00856f;
    border-bottom: 1px solid #00856f;
  }
}

@media (max-width: 1080px) {
  .right-nav a {
    margin-left: 20px;
  }
}

/*title*/
.solution-title {
  font-weight: bold;
  font-size: 46px;
  line-height: 1;
  color: #00856f;
  padding: 95px 0 58px 0;
  text-align: center;
}

@media screen and (max-width: 1280px) {
  .solution-title {
    font-size: 35px;
    padding: 60px 0 40px;
  }
}

/*@media screen and (max-width: 756px) {
	.solution-title {
		font-size: 35px;
		padding: 60px 0 40px;
	}
}*/
@media screen and (max-width: 768px) {
  .solution-title {
    font-size: 23px;
    padding: 60px 0 40px;
  }
  .right-nav .nav-item {
    padding: 5px 15px;
    float: left;
    height: 33px;
  }
  .right-nav .nav-item a {
    padding: 0;
    margin: 0;
  }
}

@media screen and (max-width: 480px) {
  .solution-title {
    /*font-size: 30px;*/
    /*padding: 45px 0 30px;*/
    padding: 1.5em 0 1em;
  }
}

/*案例中心和产品首页的公共搜索框*/
.case-search {
  background: #efefef;
  padding: 1.9% 0;
}

.cs-search {
  width: 66%;
  margin: 0 auto;
  box-sizing: border-box;
  height: 45px;
  position: relative;
}

.cs-search input {
  position: absolute;
  font-size: 18px;
  height: 100%;
}

.cs-search input[type="text"] {
  width: 88%;
  color: #8e8e8e;
  border: 1px solid #c9c9c9;
  border-right: none;
  padding-left: 1.1em;
  border-radius: 1.25em 0 0 1.25em;
}

.cs-search input[type="button"] {
  width: 12%;
  background: #00856f url(../images/case-search-icon.png) no-repeat 45% center;
  border: none;
  border-radius: 0 1.25em 1.25em 0;
  right: 0;
}

@media (max-width: 1400px) {
  .banner-content {
    top: 5%;
  }
}

@media screen and (max-width: 1280px) {
  .banner-content,
  .sol-breadnav .breadnav-style {
    padding: 0 2%;
  }
  .banner-title {
    font-size: 36px;
  }
  .sol-more {
    font-size: 14px;
    width: 120px;
    height: 34px;
  }
  .banner-content p {
    font-size: 20px;
  }
  .swiper-pagination-switch {
    width: 13px;
    height: 13px;
  }
  .swiper-active-switch {
    width: 14px;
    height: 14px;
  }
  .case-search .com-content {
    padding: 0 2%;
  }
}

@media screen and (max-width: 1200px) {
  .banner-content,
  .sol-breadnav p {
    width: 100%;
    left: 0;
    margin-left: 10%;
  }
  .sol-breadnav p {
    margin-left: 0;
  }
  /* .sol-breadnav {
    height: 50px;
    top: -50px;
    padding: 15px 0;
  }*/
}

@media screen and (max-width: 1110px) {
  .banner-title {
    font-size: 34px;
  }
  .sol-more {
    font-size: 12px;
    width: 100px;
    height: 28px;
    padding: 7px;
    margin-top: 19px;
  }
  .banner-content p {
    font-size: 18px;
  }
  /*.sol-breadnav {
    height: 30px;
    top: -30px;
    padding: 4px 0;
  }*/
  .sol-breadnav p {
    font-size: 12px;
  }
  .swiper-pagination-switch {
    width: 11px;
    height: 11px;
  }
  .swiper-active-switch {
    width: 12px;
    height: 12px;
  }
}

@media screen and (max-width: 1024px) {
  .sol-banner {
    margin-top: 0;
  }
  .cs-search {
    width: 100%;
    height: 40px;
  }
  .cs-search input {
    font-size: 12.5px;
  }
  .cs-search input[type="text"] {
    width: 86%;
    border: 1px solid #dcdcdc;
    padding-left: 35px;
    background-image: url(../images/product-mb-search-icon.png);
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: auto 50%;
    border-radius: 20px 0 0 20px;
  }
  .cs-search input[type="button"] {
    width: 14%;
    border-radius: 0 20px 20px 0;
  }
}

@media screen and (max-width: 842px) {
  .swiper-container {
    height: auto;
  }
  .sol-banner {
    margin-top: 0;
  }
  .mobile-pic {
    display: block;
    width: 100%;
  }
  .pc-pic,
  .sol-breadnav .left-nav {
    display: none;
  }
  .sol-banner .swiper-pagination {
    bottom: 20px;
  }
}

@media screen and (min-width: 600px) and (max-width: 842px) {
  .banner-content {
    top: 20%;
    margin-left: 3%;
  }
  .banner-title {
    font-size: 53px;
  }
  .sol-more {
    font-size: 24px;
    width: 180px;
    height: 50px;
    padding: 11px;
    border-radius: 25px;
    margin-top: 15%;
  }
  .banner-content p {
    font-size: 40px;
    margin-top: 15px;
  }
}

@media (max-width: 599px) {
  .banner-content {
    top: 20%;
    margin-left: 3%;
  }
}

@media screen and (max-width: 480px) {
  .banner-title {
    font-size: 29px;
  }
  .sol-more {
    font-size: 13px;
    width: 100px;
    height: 28px;
    padding: 6px;
    border-radius: 14px;
    margin-top: 11%;
  }
  .banner-content p {
    font-size: 16px;
  }
  .swiper-pagination-switch {
    width: 11px;
    height: 11px;
  }
  .swiper-active-switch {
    width: 12px;
    height: 12px;
  }
  .banner-content {
    top: 17%;
    margin-left: 3%;
  }
}

@media (max-width: 450px) {
  .cs-search input[type=button] {
    background-image: url(../images/case-search-icon-mb.png);
    background-size: 14px auto;
  }
}

@media (max-width: 360px) {
  .banner-content {
    top: 17%;
  }
}

@media (max-width: 350px) {
  .sol-banner .swiper-pagination {
    bottom: 10px;
  }
}

/*******标题和查看更多*******/
.wsp-pagetitle {
  font-size: 46px;
  color: #00856f;
  font-weight: bold;
  text-align: center;
}

.wsp-view-more {
  display: inline-block;
  color: #00856f;
  font-size: 16px;
}

.wsp-view-more:hover,
.wsp-view-more:focus {
  color: #00856f;
  text-decoration: none;
}

/*按钮*/
.wsp-whitebc-btn {
  font-size: 20px;
  border: 1px solid #00856f;
  color: #00856f;
  border-radius: 25px;
}

.wsp-whitebc-btn:hover {
  background-color: #00856f;
  color: #ffffff;
}

.wsp-redbc-btn {
  font-size: 20px;
  border: 1px solid #00856f;
  color: #ffffff;
  background-color: #00856f;
  border-radius: 25px;
}

.wsp-redbc-btn:hover {
  color: #555555;
}

@media (max-width: 1120px) {
  .wsp-pagetitle {
    font-size: 35px;
  }
}

@media (max-width: 768px) {
  .wsp-pagetitle {
    font-size: 21px;
  }
  /*按钮*/
  .wsp-whitebc-btn {
    font-size: 14px;
  }
  .wsp-redbc-btn {
    font-size: 14px;
  }
}

/*******标题和查看更多*******/
/***新闻标题***/
.ws-com-news-title {
  font-weight: bold;
  font-size: 21px;
  color: #505050 !important;
  line-height: 1.33;
  height: 2.67em;
  max-height: 2.67em;
  margin-bottom: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ws-com-news-des {
  font-size: 16px;
  color: #898989 !important;
  line-height: 1.875;
  height: 3.75em;
  max-height: 3.75em;
  margin-bottom: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ws-com-news-des:hover {
  color: #656565 !important;
}

a.ws-com-news-view-more {
  display: inline-block;
}

.ws-com-news-view-more {
  font-size: 17px;
  color: #00856f !important;
  line-height: 1;
}

.ws-com-news-view-more:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .ws-com-news-title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .ws-com-news-des {
    font-size: 20px;
    line-height: 1.53;
    margin-bottom: 20px;
  }
  .ws-com-news-view-more {
    font-size: 20px;
  }
}

@media (max-width: 375px) {
  .ws-com-news-title,
  .ws-com-news-des {
    height: auto;
  }
  .ws-com-news-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .ws-com-news-des {
    font-size: 13px;
    line-height: 1.53;
    margin-bottom: 20px;
  }
  .ws-com-news-view-more {
    font-size: 15px;
  }
}

@media (max-width: 375px) {
  .ws-com-news-des {
    max-height: 3em;
  }
}

/*公共样式内容*/
.ws-com-content-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #454545;
  text-align: center;
  padding: 0 100px;
}

.row {
  margin: 0;
  
}
.row-x{
    text-align: center;
}

.col-sm-4,
.col-xs-12 {
  padding: 0;
}

.ws-list-li-title {
  font-size: 23px;
  color: #00856f;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 20px;
}

.ws-list-li-desc {
  font-size: 16px;
  line-height: 1.875em;
  color: #717171;
  text-align: center;
  margin-bottom: 15px;
  height: 200px;
}

.ws-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    text-align: center!important;
}

.ws-img-desc {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.list-a {
  display: block;
  text-align: center;
}

@media (max-width: 1280px) {
  .ws-com-content-desc {
    padding: 0 5%;
  }
}

@media (max-width: 1024px) {
  .ws-list-li-title {
    font-size: 20px;
  }
  .ws-com-content-desc {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  /*.ws-list-li-title,
  .ws-img-desc {
    font-size: 15px;
  }*/
  /*.ws-com-content-desc,
  .ws-list-li-desc {
    font-size: 12.5px;
  }*/
  .ws-com-content-desc {
    padding: 0;
  }
  .ws-list-li-desc {
    padding: 0 3%;
  }
}

/* fix for IE6 */
* html .hitarea {
  display: inline;
  float: none;
}

.treeview li {
  font-size: 19px;
  color: #7a7a7a;
  margin: 0;
  padding: 3px 0pt 3px 16px;
}

.treeview a {
  font-size: 19px;
  text-decoration: none;
}

.treeview a.selected,
.treeview a:focus {
  color: #00856f;
}

#treecontrol {
  margin: 1em 0;
  display: none;
}

.treeview {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
  /*background: url(images/treeview-black-line.gif) 0 0 no-repeat;*/
  /*.treeview li { background: url(images/treeview-default-line.gif) 0 0 no-repeat; }*/
}

.treeview .mb-view-all {
  display: none;
}

.treeview ul {
  padding: 0;
  margin: 0;
  list-style: none;
  /*background: url(images/treeview-black-line.gif) 0 0 no-repeat;*/
}

.treeview ul li {
  position: relative;
}

.treeview ul li.active {
  color: #00856f;
}

.treeview ul li:hover {
  cursor: pointer;
}

.treeview li:hover {
  cursor: pointer;
}

.treeview ul {
  margin-top: 4px;
}

.treeview ul .split-line {
  width: 1px;
  height: auto;
  position: absolute;
  background: #b5b5b5;
  left: 7px;
  bottom: -5px;
  top: 7px;
  z-index: 0;
}

.treeview .hitarea {
  height: 20px;
  width: 20px;
  margin-left: -27px;
  float: left;
  cursor: pointer;
  z-index: 1;
  position: absolute;
}

.treeview .hover {
  color: #00856f;
  cursor: pointer;
}

.treeview .hitarea.collapsable-hitarea {
  background-image: url(../images/treeview-collapse.png);
}

.treeview .hitarea.expandable-hitarea {
  background-image: url(../images/treeview-expand.png);
}

.treeview li.collapsable,
.treeview li.expandable {
  background-position: 0 -176px;
}

.treeview li.collapsable {
  color: #000000;
}

.treeview li.last {
  background-position: 0 -1766px;
}

.treeview li.lastCollapsable {
  background-position: 0 -111px;
}

.treeview li.lastExpandable {
  background-position: -32px -67px;
}

.treeview li div.noChild-li {
  background-image: url(../images/treeview-nochild.png);
  height: 20px;
  background-size: cover;
  width: 20px;
  margin-left: -27px;
  float: left;
  cursor: pointer;
  position: absolute;
  z-index: 1;
}

.treeview li.active div.noChild-li, .treeview li.selected > div.noChild-li {
  background-image: url(../images/treeview-nochildactive.png);
}

.treeview div.lastCollapsable-hitarea,
.treeview .treeview div.lastExpandable-hitarea {
  background-position: 0;
}

.treeview-red li {
  background-image: url(../images/treeview-red-line.gif);
}

.treeview-red .hitarea,
.treeview-red li.lastCollapsable,
.treeview-red li.lastExpandable {
  background-image: url(../images/treeview-red.gif);
}

.treeview-black li {
  background-image: url(../images/treeview-black-line.gif);
}

.treeview-black .hitarea,
.treeview-black li.lastCollapsable,
.treeview-black li.lastExpandable {
  background-image: url(../images/treeview-black.gif);
}

.treeview-gray li {
  background-image: url(../images/treeview-gray-line.gif);
}

.treeview-gray .hitarea,
.treeview-gray li.lastCollapsable,
.treeview-gray li.lastExpandable {
  background-image: url(../images/treeview-gray.gif);
}

.treeview-famfamfam li {
  background-image: url(../images/treeview-famfamfam-line.gif);
}

.treeview-famfamfam .hitarea,
.treeview-famfamfam li.lastCollapsable,
.treeview-famfamfam li.lastExpandable {
  background-image: url(../images/treeview-famfamfam.gif);
}

.treeview .placeholder {
  background: url(../images/ajax-loader.gif) 0 0 no-repeat;
  height: 16px;
  width: 16px;
  display: block;
}

.filetree li {
  padding: 5px 0 5px 25px;
  font-size: 14px;
}

.filetree span.folder,
.filetree span.file {
  padding: 1px 0 1px 16px;
  display: block;
}

.filetree span.folder {
  background: url(../images/folder.gif) 0 0 no-repeat;
}

.filetree li.expandable span.folder {
  background: url(../images/folder-closed.gif) 0 0 no-repeat;
}

.filetree span.file {
  background: url(../images/file.gif) 0 0 no-repeat;
}

.treeview.selectable {
  padding-left: 10px;
}

.treeview.selectable ul .split-line,
.treeview.selectable ul .noChild-li {
  display: none;
}

.treeview.selectable ul li {
  font-size: 16px;
  line-height: 18px;
}

.treeview.selectable ul li a {
  font-size: 16px;
}

.treeview.selectable ul li .check-container {
  margin-left: -25px;
}

.treeview.selectable ul li .check-container .operation-btn {
  float: right;
}

.treeview.selectable ul li .check-container .operation-btn img {
  width: 15px;
  margin-right: 5px;
  margin-top: -4px;
}

.treeview.selectable .r-custom-checkbox label:before {
  top: 9px;
}

.treeview.selectable .r-custom-checkbox input[type=checkbox] {
  top: 9px;
}

.treeview.selectable .r-custom-checkbox input[type=checkbox]:checked + label:after {
  top: 1px;
}

@media screen and (max-width: 768px) {
  .treeview ul {
    padding: 5px;
  }
  .treeview ul .split-line {
    display: none;
  }
  .treeview .hitarea,
  .treeview li div.noChild-li {
    height: 20px;
    width: 20px;
    right: 4px;
    cursor: pointer;
    position: absolute;
    z-index: 1;
  }
  .treeview .hitarea.collapsable-hitarea {
    background-image: url(../images/minus.png);
    background-size: cover;
  }
  .treeview > li > .hitarea.collapsable-hitarea {
    background-image: url(../images/return.png);
    right: 5px;
  }
  .treeview .collapsable .mb-view-all {
    padding: 15px 0;
    font-size: 14px;
    color: #00856f;
    display: block;
  }
  .treeview > li > ul {
    border-top: 1px solid #bfbfbf;
    border-bottom: 1px solid #bfbfbf;
  }
  .treeview .hitarea.expandable-hitarea {
    background-image: url(../images/plus.png);
    background-size: cover;
  }
  .treeview > li > .hitarea.expandable-hitarea {
    background-image: url(../images/simple-next.png);
    background-size: cover;
  }
  .filetree li {
    padding: 5px 0;
  }
  .filetree li ul {
    padding: 5px 0 5px 5px;
  }
  .filetree li ul li {
    font-size: 16px;
  }
  .filetree li ul .noChild-li {
    display: none;
  }
}

.ws-mb-nav {
  display: none;
}

@media (max-width: 768px) {
  .ws-mb-nav {
    display: block;
    background-color: #ececec;
    letter-spacing: -100px;
    border-bottom: 3px solid #ffffff;
  }
  .ws-mb-nav .ws-mb-title {
    letter-spacing: 1px;
    float: left;
    width: 95%;
    padding: 20px 0;
    font-size: 16px;
    color: #333333;
  }
  .ws-mb-nav .ws-mb-img {
    letter-spacing: 1px;
    float: right;
    width: 5%;
    margin-top: 20px;
    text-align: right;
  }
  .ws-mb-nav .ws-mb-img img {
    width: 100%;
  }
  .ws-mb-nav .ws-mb-img img:last-child {
    display: none;
  }
}

.scroll-news {
  position: absolute;
  width: 50%;
  top: 0;
  right: 0;
  height: 39px;
  overflow: hidden;
}

.scroll-news .scroll-news-content .infoList {
  float: left;
  width: 80%;
}

.scroll-news .scroll-news-content .infoList li a {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 39px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.scroll-news .scroll-news-content .infoList li:not(:first-child):before {
  content: "";
  padding: 0;
}

.scroll-news .scroll-news-content .icon-laba {
  float: left;
  height: 39px;
  padding: 8px 5px;
}

.link-view-more {
  display: inline-block;
  font-size: 16px;
  color: #00856f;
}

.link-view-more:hover {
  color: #00856f;
}

.aline {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.twoline {
  position: relative;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.twoline-after:after {
  content: "...";
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 10px;
}

@media screen and (min-width: 769px) {
  .product-filter-block .filter-right {
    min-height: 500px;
  }
}
