html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing:border-box;
  margin:0;
  padding:0;
  list-style:none;
  border:none;
}

body {
font-family: "Arial",Helvetica,Arial,sans-serif;
	font-size: 14px;
	line-height: 1.428571429;
	color: #333;
	background-color: #fff

}

a {
  color: #acb7c0;
  text-decoration: none;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}


h1, h2 {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: bold;
  font-size: 24px;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
header {
  height: 200px;
  line-height: 200px;
  text-align: center;
  background: #303e49;
}
header h1 {
  color: #ffffff;
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (min-width: 1170px) {
  header {
    height: 300px;
    line-height: 300px;
  }
  header h1 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

#cd-timeline {
  position: relative;
  padding: 2em 0;
  margin-top: 2em;
  margin-bottom: 2em;
}
#cd-timeline::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: #d7e4ed;
}
@media only screen and (min-width: 1170px) {
  #cd-timeline {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  #cd-timeline::before {
    left: 50%;
    margin-left: -2px;
  }
}

.cd-timeline-block {
  position: relative;
  margin: 2em 0;
}
.cd-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-block:first-child {
  margin-top: 0;
}
.cd-timeline-block:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-block {
    margin: 4em 0;
  }
  .cd-timeline-block:first-child {
    margin-top: 0;
  }
  .cd-timeline-block:last-child {
    margin-bottom: 0;
  }
}

.cd-timeline-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #ffffff, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}
.cd-timeline-img img {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
}
.cd-timeline-img.cd-picture {
  background: #75ce66;
}
.cd-timeline-img.cd-movie {
  background: #c03b44;
}
.cd-timeline-img.cd-location {
  background: #f0ca45;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-img {
    width: 60px;
    height: 60px;
    left: 50%;
    margin-left: -30px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  .cssanimations .cd-timeline-img.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-img.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    -moz-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
}

@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -moz-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -moz-transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.cd-timeline-content {
  position: relative;
  margin-left: 60px;
  background: #ffffff;
  border-radius: 0.25em;
  padding: 1em;
  box-shadow: 0 3px 0 #d7e4ed;
}
.cd-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-content h2 {
  color: #303e49;
}
.cd-timeline-content p, .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
  font-size: 13px;
  font-size: 0.8125rem;
}
.cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
  display: inline-block;
}
.cd-timeline-content p {
  margin: 1em 0;
  line-height: 1.6;
}
.cd-timeline-content .cd-read-more {
  float: right;
  padding: .8em 1em;
  background: #acb7c0;
  color: #ffffff;
  border-radius: 0.25em;
}
.no-touch .cd-timeline-content .cd-read-more:hover {
  background-color: #bac4cb;
}
.cd-timeline-content .cd-date {
  float: left;
  padding: .8em 0;
  opacity: .7;
}
.cd-timeline-content::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid #ffffff;
}
@media only screen and (min-width: 768px) {
  .cd-timeline-content h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .cd-timeline-content p {
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-content {
    margin-left: 0;
    padding: 1.6em;
    width: 45%;
  }
  .cd-timeline-content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: #ffffff;
  }
  .cd-timeline-content .cd-read-more {
    float: left;
  }
  .cd-timeline-content .cd-date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: 6px;
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: #ffffff;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
    left: auto;
    right: 122%;
    text-align: right;
  }
  .cssanimations .cd-timeline-content.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    -moz-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
}

@media only screen and (min-width: 1170px) {
  /* inverse bounce effect on even content blocks */
  .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    -moz-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }
}
@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
 .about-con{
        margin-bottom:0;
    }
	
	about-con{
    width:100%;
    float:left;
    margin-bottom:40px;
}

.about-con p{
    font-size:14px;
    color:#333333;
    
    line-height:28px;
}




.mt10 {
    margin-top: 0.5rem
}

.mt15 {
    margin-top: 0.75rem
}

.mt20 {
    margin-top: 1rem
}

.mb20 {
    margin-bottom: 1rem
}

.mt30 {
    margin-top: 1.5rem
}

.mt40 {
    margin-top: 2rem
}

.relative {
    position: relative
}

.img_100 {
    width: 100%;
    height: auto
}

.img_all_100 {
    width: 100%;
    height: 100%
}

.img_responsive {
    max-width: 100%;
    height: auto
}

.center_block {
    display: block;
    margin: auto
}

.vertical_center {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%!important
}

.top_center {
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    top: 50%;
    left: 50%
}

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

.ellipsis-2 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal!important;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.ellipsis-3 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal!important;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.f12 {
    font-size: 0.6rem
}

.f14 {
    font-size: 0.7rem
}

.f16 {
    font-size: 0.8rem
}

.f18 {
    font-size: 0.9rem
}

.f20 {
    font-size: 1rem
}

.f22 {
    font-size: 1.1rem
}

.f30 {
    font-size: 1.5rem
}

.f36 {
    font-size: 1.8rem
}

.lh185 {
    line-height: 1.85;
}

.lh35 {
    line-height: 1.75rem;
}

.lh2 {
    line-height: 2;
}

.fb {
    font-weight: bold
}

.cred {
    color: #c8000b
}

.cff {
    color: #fff
}

.c33 {
    color: #333
}

.c77 {
    color: #777
}

.cblue {
    color: #2660ac
}

.bgf7 {
    background: #f7f7f7
}

.bgff {
    background: #fff
}

.navbar {
    background: rgba(0, 0, 0, 0.7);
    border: 0;
    z-index: 99;
    border-radius: 0;
    margin-bottom: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    right: 0
}
.navbar.opend{
    height:100%;
}
.navbar .navbar-header {
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}


.nr_tit1{
    border-bottom:1px solid #CCC;
    font-size: 14px;
    text-align: center;
    color: #888888;
    line-height: 40px;
    padding:1px 0px 10px 0px;
}
.nr_tit1 p {
    font-size: 30px;
    color: #333c4e;
    line-height: 60px;
}

.author_nr_tit1 p {
    font-size:20px;
    color: #333c4e;
    line-height: 60px;
}
.author_nr_tit1 ul li{ list-style:disc; list-style-position:inside; line-height:1.7em;}
.nr_title3 {
    background: url(../images/n_bg14.webp) no-repeat center;
    width: 30px;
    text-align: center;
    color: #FFF;
    font-size: 12px;
    display: block;
    float: left;
    margin-right: 15px;
}
.suojin{text-indent:2em;}
.yuandian{width: 20px;height: 20px;background-size: 20px;    margin-right: 10px; margin-top: 10px;}
.yincang{display: none}
.zhengwen{float:none;margin: 0 auto;}
.n_bo13 p img{width: 100%;height: auto;}

.n_m2_r1{
    float: none;
    margin: 0 auto;
    width: 800px;
}
.nr_tit3 {
    line-height: 40px;
    padding: 20px 0px;
    border-bottom: 1px solid #CCC;
    font-size: 26px;
}
.n_bo13 {
    font-size: 16px;
    padding: 10px 0px;
    line-height: 32px;
}
.jjfa-case .one{
    display: inline-block;
    width:280px;
    text-align:center;
    margin:10px 15px;
    height:156px;
    cursor:pointer;
    font-size: 12px;
}
.jjfa-case  .one .nr_bo6_p6{margin-top: 5px}
.jjfa-case  .one .nr_bo6_p6 a{display: inline-block}
.jjfa-case  .one img{
    max-height:56px;
    max-width:280px;
}
.jjfa-case  .one .case-desc{
    text-align: left;
    text-indent: 2em;
    min-height: 60px;
}
.one .nr_bo6_p6 a {
    display: inline-block;
}


.meiti-con .h2-p{
    width:100%;
    font-size: 14px;
    line-height: 60px;
    text-align:center;
    color:#999;
}
.news_content{
    margin-top:40px;
    margin-bottom:30px;
}

.about-con{
    width:100%;
    float:left;
    margin-bottom:40px;
}
.about-con p{
    font-size:15.5px;
    color:#333333;
    line-height:28px;
}
.cd-timeline-content p{
    font-size:16px;
    color:#333;
}

.cd-timeline-content .cd-date{
    top: -16px;
    color:#6ab512;
    font-weight:bold;
    font-size: 1.9rem;
}

.core-li{
    width:100%;
    background:#fff;
    border-radius:10px;
    box-shadow: 0 0 5px #e0e0e0;
    padding-top:40px;
    height:400px;
    text-align:center;
}
.core-li .ico img{
    max-width:50%;
}
.core-li .line{
    margin:10px 0;
}
.core-li h2{
    color:#6ab512;
}

.core-li .info{
    color:#333;
    font-size:14px;
    margin-top:15px;
}
.core-li .info span{
    padding:0 10px;
}
.core-li .info span img{
    vertical-align:middle;
    margin-right:3px;
}
.core-ul{
    margin-bottom:40px;
}
.huodong-img{
    width:100%;
    margin-top:30px;
}







.faq-page {
  width: 100%;
  
  padding-top: 30px;
}
.faq-page .bread-link {

  margin: 0 auto 30px;
  color: #999999;
}
.faq-page .bread-link > a {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  letter-spacing: 1px;
}
.faq-page .bread-link > a:hover {
  color: #008CFF;
}
.faq-page .bread-link .current {
  color: #666666;
}
.faq-page .faq-component {
 
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

img {
	vertical-align: middle;
	
	max-width: 100%;
	
	margin:0 auto;
}

.faq_box .post-meta_top p.author{ line-height:1.9em; font-size:14px; padding:10px 0px;}
.faq_box .post-meta_top p.category{ line-height:1.9em; font-size:14px; padding:10px 0px;}

.faq_box .post-meta_top a{font-size:12px;}




.faq-page .faq-component p{ line-height:1.9em; font-size:17px; }
.faq-page .faq-component .left {
	background: white;
	padding: 30px 34px 24px 50px;
	border-right-width: thin;
	border-right-style: dotted;
	border-right-color: #4FD7AE;
}
.faq-page .faq-component .left > h4 {
  font-size: 22px;
  color: #1a1a1a;
  letter-spacing: 1px;
  margin-bottom:22px;
  font-weight: 400;
}
.faq-page .faq-component .left > ul {
 

}
.faq-page .faq-component .left > ul > li {
  padding-left: 10px;
  position: relative;
}
.faq-page .faq-component .left > ul > li:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #1A1A1A;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
}
.faq-page .faq-component .left > ul > li:not(:last-child) {
  margin-bottom: 30px;
}
.faq-page .faq-component .left > ul > li:hover:before {
  background-color: #008CFF;
}
.faq-page .faq-component .left > ul > li:hover > a {
  color: #008CFF;
}
.faq-page .faq-component .left > ul > li a {
  font-size: 14px;
  color: #666666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
  display: block;
}
.faq-page .faq-component .left > ul .active > a {
  color: #008CFF;
   
  
}
.faq-page .faq-component .left > ul .active:before {
  background-color: #008CFF;
}
.faq-page .faq-component .right {
  background: white;
  padding: 5px 5px 56px;
  
}
.faq-page .faq-component .right h1{ text-align:center; line-height:1.3em; font-size:33px;}
.faq-page .faq-component .right h3{   font-size:24px; line-height:1.9em; color:#333333;}
.faq-page .faq-component .right .title-data > a {
  color: #008cff;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.faq-page .faq-component .right .title-data > a:hover {
  color: rgba(0, 140, 255, 0.8);
}
.faq-page .faq-component .absoulte-card {
  position: absolute;
}
.faq-page .faq-component .fixed-card {
  position: fixed;
  top: 0;
}

.faq-page .help-component > h3 {
  font-size: 30px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 2px;
  text-align: center;
}
.faq-page .help-component > div {
  width: 1200px;
  margin: 60px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.faq-page .help-component > div > a {
  display: block;
  width: 570px;
  height: 164px;
  background: white;
  -webkit-box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  border: 1px solid #f8f8f8;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.faq-page .help-component > div > a:hover {
  -webkit-box-shadow: 0px 19px 46px -9px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 19px 46px -9px rgba(0, 0, 0, 0.14);
  -webkit-transform: translateY(-0.4rem);
  transform: translateY(-0.4rem);
  -webkit-transition-duration: 0.45s;
  transition-duration: 0.45s;
}
.faq-page .help-component > div > a:hover > i {
  color: #008CFF;
}
.faq-page .help-component > div > a > i {
  font-size: 52px;
  color: #333333;
  margin-left: 50px;
  margin-right: 40px;
}
.faq-page .help-component > div > a > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.faq-page .help-component > div > a > div > h4 {
  font-size: 22px;
  color: #333333;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.faq-page .help-component > div > a > div > p {
  width: 392px;
  height: 48px;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  letter-spacing: 1px;
}

.hts-toggle{position:relative;margin-bottom:20px}.hts-toggle.hts-toggle--active .hts-toggle__title:before{background-image:url(../images/plus-circle.svg)}
.hts-toggle ul li{ line-height:1.9em; list-style:disc; list-style-position: inside;}
 .hts-toggle__content p{ padding-top:15px;}
.hts-toggle.hts-toggle--active .hts-toggle__content{max-height:9999px;opacity:1}
.hts-toggle .hts-toggle__title{background:#f0f2f5;padding:15px 15px 15px 45px;font-size:15px;font-weight:700;line-height:1;color:#333;position:relative;}
.hts-toggle .hts-toggle__title::before{position:absolute;top:50%;left:12px;margin-top:-10px;background-image:url(../images/plus-circle.svg);background-repeat:no-repeat;background-position:center center;background-size:20px;display:block;width:20px;height:20px;content:''}
 #follow-us{ margin:10px 0 20px 0; }

    #share-facebook,
    #share-twitter,
    #share-google,
    #share-youtube{ display: inline-block; margin-right:5px; width:64px; height: 64px; background-image: url(../images/icon/share.webp); }

    #share-twitter{ background-position: -64px 0; }
    #share-google{ background-position: -128px 0; }
    #share-youtube{ background-position: -192px 0; }

    #share-facebook:hover{ background-position: 0 -64px; }
    #share-twitter:hover{ background-position: -64px -64px; }
    #share-google:hover{ background-position: -128px -64px; }
    #share-youtube:hover{ background-position: -192px -64px; }
