

body.single section.content{font-size:16px;line-height:1.7;}
  .detail-pagetitle{
    height: 500px;
    white-space: nowrap;
    z-index:2;
  }
  @media only screen and (max-width: 767px) {
    .detail-pagetitle{
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px){
    .detail-pagetitle{
        height: 400px;
      }
  }
  .detail-pagetitle .center {
    display: inline-block;
    clear: both;
    white-space: normal;
    width: 100%;
    vertical-align: middle;
    white-space: normal;
    position: relative;
    padding:0px 15px;
  }
  .detail-pagetitle:after{
    content:"";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  .detail-pagetitle-bg{ 
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; 
    margin-top:0px;
    background-color: #212121;
    
  }
  .detail-pagetitle-bg.light-overlay::before{
    content:"";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.80);
  }
  .detail-pagetitle-bg.dark-overlay::before{
    content:"";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.80);
  }

  
  .detail-pagetitle{
    text-align: center;
    position: relative;
  }
  
  .detail-pagetitle .detail-category{
    display: inline-block;
    background-color: rgba(0,0,0,0.36);
    padding: 4px 22px;
    color: #fff;
    font-size: 13px;
  -webkit-border-radius: 25px;
     -moz-border-radius: 25px;
          border-radius: 25px;
  }
  
  .detail-pagetitle .detail-category a,
  .detail-pagetitle .detail-category a:link,
  .detail-pagetitle .detail-category a:active,
  .detail-pagetitle .detail-category a:visited{
    color: #FFF;
  }
  .detail-pagetitle .detail-title{
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  @media only screen and (max-width: 767px) {
    .detail-pagetitle .detail-title{
      font-size:28px !important;
    }
 
  }

  .detail-pagetitle .detail-info{
    text-align: center;
    margin: 0;
    padding: 0;
  }
  .detail-pagetitle .detail-info .lnr,
  .detail-pagetitle .detail-info .fa{
    margin-right:7px;
    font-size:15px;
  }
  .detail-pagetitle .detail-info,
  .detail-pagetitle .detail-info a,
  .detail-pagetitle .detail-info a:link,
  .detail-pagetitle .detail-info a:active,
  .detail-pagetitle .detail-info a:visited{
    color: #FFFFFF;
  }
  
  .detail-pagetitle .detail-info li{
    display: inline-block;
    padding: 0px 9px;
  }
.page-title-arrow {
    position: absolute;
    left: 50%;
    bottom: 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    text-align: center;
    z-index: 99;
	transform: translate3d(-50%, 0, 0);
	-ms-transform: translate3d(-50%, 0, 0); 	/* IE 9 */
	-moz-transform: translate3d(-50%, 0, 0); 	/* Firefox */
	-webkit-transform: translate3d(-50%, 0, 0); /* Safari 和 Chrome */
	-o-transform: translate3d(-50%, 0, 0); 	/* Opera */
}
@media only screen and (max-width: 767px) {
	.page-title-arrow.mobile_hide{
		display: none;
	}
}
@keyframes arrow-movement {
    0% { 
        opacity: 0;
        top: 0;
    }
    70% {
        opacity: 1;
    }
    100% { 
        opacity: 0;
    }
}

.page-title-arrow .arrow {
	opacity: 0;
    position: absolute;
    left: 12%;
    top: 15px;
    transform-origin: 50% 50%;
	transform: translate3d(-50%, -50%, 0);
	-ms-transform: translate3d(-50%, -50%, 0); 	/* IE 9 */
	-moz-transform: translate3d(-50%, -50%, 0); 	/* Firefox */
	-webkit-transform: translate3d(-50%, -50%, 0); /* Safari 和 Chrome */
	-o-transform: translate3d(-50%, -50%, 0); 	/* Opera */
}

.page-title-arrow .arrow-first {
    animation: arrow-movement 1.5s ease-in-out infinite;
}
.page-title-arrow .arrow-second {
    animation: arrow-movement 1.5s 0.75s ease-in-out infinite;
}

.page-title-arrow .arrow:before,
.page-title-arrow .arrow:after {
    background: #666;
    content:"";
    display: block;
    height: 3px; 
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
}

.page-title-arrow .arrow:before {
    transform: rotate(45deg) translateX(-15%);
    transform-origin: top left;
}

.page-title-arrow .arrow:after {
    transform: rotate(-45deg) translateX(15%);
    transform-origin: top right;
}
.page-title.light .page-title-arrow .arrow:before,
.page-title.light .page-title-arrow .arrow:after {
    background: #fff;
}

  
  .detail-pagetitle .page-title-arrow .arrow:before, 
  .detail-pagetitle .page-title-arrow .arrow:after{
    background-color: #FFFFFF;
  }
  
  
  
  .detail-pagetitle.color-dark .detail-category{ 
    background-color: rgba(0,0,0,0.42);
  }
  .detail-pagetitle.color-dark .detail-title{
    color: #1e1e1e;
  }
  .detail-pagetitle.color-dark .detail-info,
  .detail-pagetitle.color-dark .detail-info a,
  .detail-pagetitle.color-dark .detail-info a:link,
  .detail-pagetitle.color-dark .detail-info a:active,
  .detail-pagetitle.color-dark .detail-info a:visited{
    color: #333333;
  }
  .detail-pagetitle.color-dark .page-title-arrow .arrow:before, 
  .detail-pagetitle.color-dark .page-title-arrow .arrow:after{
    background-color: #1e1e1e;
  }
  
  

  .detail-pagetitle .detail-category a,
  .detail-pagetitle .detail-category a:link,
  .detail-pagetitle .detail-category a:active,
  .detail-pagetitle .detail-category a:visited,
  .detail-pagetitle .detail-info,
  .detail-pagetitle .detail-info a,
  .detail-pagetitle .detail-info a:link,
  .detail-pagetitle .detail-info a:active,
  .detail-pagetitle .detail-info a:visited{
    font-size: 13px;
  }
  
  .detail-pagetitle.size-large .detail-title{
    font-size: 36px;
  }
  .detail-pagetitle.size-middle .detail-title{
    font-size: 32px;
  }
  .detail-pagetitle.size-small .detail-title{
    font-size: 28px;
  }
  
  .detail-pagetitle.size-large .detail-category{
    margin-bottom: 34px;
  }
  .detail-pagetitle.size-middle .detail-category,
  .detail-pagetitle.size-small .detail-category{
    margin-bottom: 25px;
  }
  
  .detail-pagetitle.size-large .detail-title + .detail-info{
    margin-top: 37px;
  }
  .detail-pagetitle.size-middle .detail-title + .detail-info{
    margin-top: 26px;
  }
  .detail-pagetitle.size-small .detail-title + .detail-info{
    margin-top: 21px;
  }

.blog-detail .detail-port-nav{
  padding-top: 35px !important;
  padding-bottom: 35px !important;
  background-color: #f9f9f9 !important;
}
@media only screen and (max-width: 991px){
  .blog-detail .detail-port-nav{
    padding-top: 21px !important;
    padding-bottom: 21px !important;
  }
}

  .body .blog-detail .detail-social{
    font-size: 14px;
  }
  .body .blog-detail .detail-author-info .title a,
  .body .blog-detail .detail-port-nav a{
    color: #333333;
  }
  .body .blog-detail .detail-info a:hover,
  .body .blog-detail .list-info a:hover,
  .body .blog-detail .detail-recent .title a:hover,
  .body .blog-detail .detail-port-nav a:hover, 
  .body .portfolio-detail .detail-port-nav a:hover,
  .body .comments-area a:hover,
  .body .detail-author-info .title a:hover{
    color:#20a3f0;
  }
  .body .dg-blockquote.left-border{
    border-left-color:#20a3f0;
  }
  .body .comment-respond .form-submit .submit {
    border-color: #20a3f0;
    background-color: #20a3f0;
  }
  .blog-detail .detail-port-nav a:hover .arrow-next span::after,
  .blog-detail .detail-port-nav a:hover .arrow-prev span::after{
    border-color: #20a3f0 !important;
  }
  .blog-detail .detail-port-nav a:hover .arrow-next span::before,
  .blog-detail .detail-port-nav a:hover .arrow-prev span::before{
    border-color: #20a3f0 !important;
  }
