/*

------------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio


/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
	position: relative;
	background: #fbfbfb;
	font-family: "Georgia", "Xin Gothic", "Hiragino Sans GB", "Droid Sans Fallback", "Microsoft YaHei", "Microsoft JhengHei", "STHeiti",  sans-serif;
	z-index:-9;
	height:100%;
}

::selection {
  background: #03a4ed;
  color: #fff;
}

::-moz-selection {
  background: #03a4ed;
  color: #fff;
}


a{
	color: #333;
	text-decoration: none;
	-webkit-backface-visibility: hidden;
}


a:hover,a:active {
    text-decoration: none;
    color: #ff695f;
}




.fs-7{
	font-size:15px;
}
.fs-8{
	font-size:14px;
}
.fs-9{
	font-size:13px;
}
.fs-10{
	font-size:12px;
}
.lh-md{
	line-height:1.8;
}




/* 文本溢出 */
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.truncate-clip { text-overflow: clip; }
.truncate-ellipsis { text-overflow: ellipsis; }
.truncate-line-1 { display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.truncate-line-2 { display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.truncate-line-3 { display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.truncate-line-4 { display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }





.section {
	padding:4rem 0;
}

.section-heading{
	position: relative;
	text-align: center;
	margin-bottom: 3rem;
}

.section-heading h6 {
	color: #797878;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.5em;
	letter-spacing: 4px;
}

.section-heading h2 {
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 1px;
}


.section-heading p {
	line-height: 1.5em;
	letter-spacing: 1px;
	margin-top:3rem;
}

.section-heading i.shape{
	display:block;
	position: absolute;
	left:calc(50% - 200px);
	top:-50%;
	width:200px;
	height:200px;
	background-color:#ffcdbc;
	border-radius: 40% 60% 30% 40%;
	z-index:-1;
}

.section-heading.text-start i.shape{
	left:-50px
}

.section-heading.text-end i.shape{
	left:auto;
	right:50px
}

.section-heading i.shape.a{
	border-radius: 20% 80% 30% 60%;
}
.section-heading i.shape.b{
	border-radius: 90% 40% 70% 30%;
}
.section-heading i.shape.c{
	border-radius: 70% 30% 90% 50%;
}
.section-heading i.shape.d{
	border-radius: 70% 30% 90% 50%;
}

.main-blue-button a {
  display: inline-block;
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-blue-button-hover a {
  display: inline-block;
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  transition: all .3s;
}

.main-blue-button-hover a:hover {
  background-color: #ff695f;
}

.main-red-button a {
  display: inline-block;
  background-color: #ff695f;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-red-button-hover a {
  display: inline-block;
  background-color: #ff695f;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  transition: all .3s;
}

.main-red-button-hover a:hover {
  background-color: #03a4ed;
}

.main-white-button a {
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 400;
  color: #ff695f;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}





/* 
---------------------------------------------
keyframes
--------------------------------------------- 
*/

.item-bounce {
  -webkit-animation: bounce 3s infinite ease-in-out;
  animation: bounce 3s infinite ease-in-out;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

.item-round {
  -webkit-animation: round 3s infinite linear;
  animation: round 3s infinite linear;
}

@-webkit-keyframes round {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes round {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.item-zoom-inout {
  -webkit-animation: zoom-inout 3s infinite ease-in-out;
  animation: zoom-inout 3s infinite ease-in-out;
}

@-webkit-keyframes zoom-inout {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom-inout {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}



/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    position: relative;
    width: 142px;
    height: 40px;
    background: #fff;
}

.preloader-inner .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    background: #ff695f;
    border-radius: 50%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dot 2.8s infinite;
    animation: dot 2.8s infinite;
}

.preloader-inner .dots {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    -webkit-animation: dots 2.8s infinite;
    animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #ff695f;
    border-radius: 50%;
}




/* 
---------------------------------------------
header
--------------------------------------------- 
*/
.header{
	border-bottom:1px solid #eee;
	box-shadow: 0 6px 20px #eee;
	z-index:9;
}


/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	padding:3rem 0 1rem;
}

.main-banner:after {
  content: '';
  background-image: url(../../images/baner-dec-left.png);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 100px;
  width: 267px;
  height: 532px;
}
/**
.main-banner:before {
  content: '';
  background-image: url(../../images/banner-right-image.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 819px;
  height: 656px;
}
**/
.main-banner .item {
  margin-right: 45px;
}

.main-banner .item h6 {
  text-transform: uppercase;
  font-size: 18px;
  color: #ff695f;
  margin-bottom: 15px;
}

.main-banner .item h2 {
  font-size: 50px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 72px;
}

.main-banner .item h2 em {
  color: #03a4ed;
  font-style: normal;
}

.main-banner .item h2 span {
  color: #ff695f;
}

.main-banner .item p {
  margin: 20px 0px;
}

.main-banner .item .down-buttons {
  display: inline-flex;
}

.main-banner .item .down-buttons .call-button i {
  margin-right: 5px;
  width: 46px;
  height: 46px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  background: rgb(255,104,95);
  background: linear-gradient(105deg, rgba(255,104,95,1) 0%, rgba(255,144,104,1) 100%);
  color: #fff;
  font-size: 20px;
}

.main-banner .item .down-buttons .call-button a {
  color: #ff695f;
  font-size: 15px;
  font-weight: 500;
  margin-left: 30px;
}

.main-banner .owl-dots {
  margin-top: 20px;
  counter-reset: dots;
}

.main-banner .owl-dot:before {
  counter-increment:dots;
  content: counter(dots);
  font-size: 20px;
  font-weight: 500;
  margin-left: 10px;
  color: #2a2a2a;
  width: 15px;
  display: inline-block;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: all .5s;
}

.main-banner .active:before {
  color: #ff685f;
  border-bottom: 3px solid #ff685f;
}


.banner-images{
	position: relative;
}



.banner-images::after{
	content: '';
	background-image: url(../../images/shape-1.png);
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	right: 120px;
	bottom: 0;
	width: 169px;
	height: 149px;

	-webkit-animation: zoom-inout 3s infinite ease-in-out;
	animation: zoom-inout 3s infinite ease-in-out;
}




/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/


.our-services {
	position: relative;
}

.our-services .item {
	position: relative;
	display:block;
	text-align: center;
	margin: 15px;
	border-radius: 20px;
	background-color: #fff;
	padding: 30px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.05);
	transition: all .5s;
}
.our-services .item:hover{
	background-color: #fff3f0;
}


.our-services .item i {
	font-size:4rem;
	color: #ff695f;
}

.our-services .item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 30px;
}

.our-services .item p {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  font-size:14px;
}

.our-services .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.our-services .owl-dots .owl-dot {
  width: 6px;
  height: 6px;
  background-color: #ff695f;
  border-radius: 50%;
  opacity: 0.3;
  margin: 0px 5px;
}

.our-services .owl-dots .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
/* 
---------------------------------------------
NEWS
--------------------------------------------- 
*/
.part-news{
	position: relative;
}
.part-news .card-item {

}

/* 
---------------------------------------------
About
--------------------------------------------- 
*/

.about-us {
}


.about-us .fact-item .icon {
  width: 45px;
  height: 45px;
}

.about-us .fact-item {
  margin-top: 45px;
}

.about-us .fact-item .count-digit {
  font-size: 48px;
  font-weight: 700;
  color: #2a2a2a;
  margin-top: 5px;
}

.about-us .fact-item .count-title {
  font-size: 15px;
  color: #ff695f;
}

.about-us .fact-item p {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}


.our-games {
	position: relative;
}
.our-games .card-game{
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    transition: all .5s;
	border-color: #eee;
}

.card-game .card-title{
	min-height:52px;
}


/* 
---------------------------------------------
Portfolio
--------------------------------------------- 
*/


.our-portfolio {
	position: relative;
}


.our-portfolio .item .thumb {
  position: relative;
}

.our-portfolio .item .thumb img {
  border-radius: 20px;
  transition: all .3s;
}

.our-portfolio .item .thumb:hover img {
  opacity: 0.7;
}


.our-portfolio .item:hover .hover-effect {
  bottom: 30px;
}


.our-portfolio .item .hover-effect {
  position: absolute;
  background-image: url(../../images/hover-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  transition: all .5s;
  bottom: -240px;
  right: 30px;
  width: 239px;
  height: 210px;
}

.our-portfolio .item .hover-effect .inner-content {
  position: absolute;
  right: 30px;
  left:20px;
  bottom: 30px;
  text-align: right;
}

.our-portfolio .item .hover-effect .inner-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.our-portfolio .item .hover-effect .inner-content span {
  font-size: 15px;
  color: #fff;
}



/* 
---------------------------------------------
Pricing
--------------------------------------------- 
*/


.pricing-tables {
  z-index: 2;
  position: relative;
}

.pricing-tables .item {
  position: relative;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px;
  text-align: center;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  border-radius: 45px;
}

.pricing-tables .item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
}

.pricing-tables .item em {
  color: #ff695f;
  font-size: 15px;
  display: block;
  margin-top: 25px;
  text-decoration: line-through;
  font-style: normal;
}

.pricing-tables .item span {
  font-size: 44px;
  color: #ff695f;
  font-weight: 700;
  display: block;
  margin-top: -5px;
}

.pricing-tables .item ul {
  margin-top: 30px;
}

.pricing-tables .item ul li {
  display: block;
  font-size: 15px;
  color: #7a7a7a;
  margin-bottom: 20px;
}

.pricing-tables .item .main-blue-button {
  margin-top: 40px;
}

.pricing-tables .first-item {
  background-image: url(../../images/first-plan-bg.png);
}

.pricing-tables .second-item {
  background-image: url(../../images/second-plan-bg.png);
}

.pricing-tables .third-item {
  background-image: url(../../images/third-plan-bg.png);
}



/* 
---------------------------------------------
contact
--------------------------------------------- 
*/

.contact-dec img {
  position: absolute;
  z-index: 1;
  width: 459px;
  height: 702px;
  right: 0;
  bottom: -400px;
}

.contact-left-dec img {
  position: absolute;
  z-index: 1;
  width: 174px;
  height: 319px;
  left: 0;
  top: 120px;
}

.contact-us {
  z-index: 2;
  position: relative;
  padding-top: 120px;
  margin-top: 0px;
}



.contact-us #baidu-map {
	width:100%;
	height:360px;
	border-radius: 23px;
	position: relative;
	z-index: 2;
}

.contact-us .info {
  margin-top: 30px;
  position: relative;
  z-index: 5;
  display: inline-flex;
}

.contact-us .info span {
  opacity: 1;
  display: inline-flex;
  margin-right: 30px;
}

.contact-us .info span i {
  float: left;
  width: 46px;
  height: 46px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  background: rgb(255,104,95);
  background: linear-gradient(105deg, rgba(255,104,95,1) 0%, rgba(255,144,104,1) 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  margin-left: 30px;
  margin-right: 15px;
}

.contact-us .info span a {
  color: #ff685f;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  text-transform: none;
}

form#contact {
  margin-left: -100px;
  position: relative;
  z-index: 2;
  background-image: url(../../images/contact-form-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  padding: 60px 120px;
  border-radius: 20px;
}

form#contact input {
  width: 100%;
  height: 46px;
  border-radius: 0px;
  background-color: transparent;
  border-bottom: 1px solid #9bdbf8;
  border-top: none;
  border-left: none;
  border-right: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 0px 0px;
  margin-bottom: 15px;
}

form#contact input::placeholder {
  color: #afafaf;
}

form#contact button {
  display: inline-block;
  background-color: #ff695f;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  margin-top:10px;
  border: none;
  outline: none;
  transition: all .3s;
}

form#contact button:hover {
  background-color: #03a4ed;
}

form#contact textarea {
	background-color: transparent;
	border: 1px solid #9bdbf8;
}

form#contact textarea::placeholder {
  color: #afafaf;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/


footer {
	border-top:2px solid #eee;
	padding-top: 50px;
	position: relative;
	background-color: #f8f8f8;
	z-index: 9;
	box-shadow: 0 -6px 20px #eee;
}

footer .footer-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 30px;
}

footer .about .logo img {
  width: 89px;
  margin-bottom: 30px;
}

footer .about a {
  color: #afafaf;
  font-weight: 300;
}

footer .about ul {
  margin-top: 20px;
}

footer .about ul li {
  display: inline-block !important;
  margin-right: 5px;
}

footer .about ul li a {
  width: 32px;
  height: 32px;
  background-color: #03a4ed;
  color: #fff !important;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  line-height: 32px;
  font-size: 15px;
}

footer .about ul li a:hover {
  background-color: #ff695f;
}

footer .footer-item ul li {
  display: block;
  margin-bottom: 12px;
}

footer .footer-item ul li:last-child {
  margin-bottom: 0px;
}

footer .footer-item ul li a {
  font-size: 15px;
  color: #afafaf;
  transition: all .3s;
}

footer .footer-item ul li a:hover {
  color: #ff695f;
}

footer .footer-item p {
  font-size: 15px;
  color: #afafaf;
  margin-top: -5px;
}

footer .footer-item form {
  background-color: #03a4ed;
  height: 46px;
  border-radius: 23px;
  position: relative;
  margin-top: 15px;
}

footer .footer-item form input {
  line-height: 46px;
  background-color: transparent;
  border: none;
  font-size: 14px;
  padding: 0px 20px;
  outline: none;
}

footer .footer-item form input::placeholder {
  color: #fff;
}

footer .footer-item form button {
  position: absolute;
  right: 20px;
  top: 10px;
  color: #fff;
  background-color: transparent;
  border: none;
  outline: none;
}

footer .copyright p {
  text-align: center;
  border-top: 1px solid #eee;
  color: #afafaf;
  font-weight: 300;
}

footer .copyright p a {
  color: #ff695f;
}

/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/


@media (max-width: 992px) {
  .main-banner::before {
    display: none;
  }
  .main-banner .item {
    margin-right: 0px;
  }
  .main-banner  {
    padding: 3rem 0px 1rem;
  }

  .fact-item {
    text-align: center;
  }
  .fact-item .icon {
    margin: 0 auto;
  }

  .pricing-tables .item {
    margin-bottom: 30px;
  }
  .subscribe .inner-content {
    padding: 60px 30px;
  }
  .our-videos ul.nacc {
    margin-bottom: 30px;
  }
  .our-videos .naccs .menu div img {
    border-radius: 50px;
  }
  .our-videos .menu .thumb .inner-content {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  .our-videos ul.nacc li {
    transform: translateX(0px);
    transform: translateY(-50px);
  }
  .our-videos .nacc .thumb iframe {
    height: 500px;
  }
  form#contact {
    margin-left: 0px;
    margin-top: 60px;
  }
  form#contact {
    padding: 45px 30px;
  }
  .footer-item {
    margin-bottom: 45px;
  }
  .subscribe-newsletters {
    margin-bottom: 0px;
  }
}

@media (max-width: 767px) {
  
  .main-banner  {
    padding: 1rem 0 1rem;
  }
	.banner-images::after{
		width: 200px;
		height: 70px;
	}
	.banner-images::before{
		width: 95px;
		height: 120px;
	}
  .subscribe .inner-content:after {
    z-index: -1;
  }
  .subscribe .inner-content {
    padding: 60px 30px 100px 30px;
  }
  .subscribe .inner-content form input {
    width: 49%;
  }
  .subscribe .inner-content form button {
    width: 100%;
    background-color: #ff695f;
    margin-top: 30px;
  }
  .our-videos ul.nacc li {
    transform: translateX(0px);
    transform: translateY(-50px);
  }
  .contact-left-dec {
    display: none;
  }
  .contact-us .info {
    display: inline-block;
  }
  .contact-us .info span {
    margin-bottom: 20px;
  }
}


.jsmind-container{
	position: relative;
	width:100%;
	height:calc(100vh - 80px);
	min-height:500px;
}



.heroes-area {
    padding: 4rem 0;
    background-image: linear-gradient(45deg, #eaf6ff, #fff3f2);
}

.heroes-area h1 {
    font-size: 50px;
    font-weight: 700;
    color: #233253;
}

.heroes-area p{
    color: #777777;
    font-size: 12px;
}



.part-breadcrumb{
	padding:0.5rem 1rem;
	background-color: #fff;
	border-bottom:1px solid #f0f0f0;
}
.part-breadcrumb .breadcrumb{
	margin:0;
}
.part-breadcrumb .breadcrumb-item{
	font-size:12px;
}


.card-white{
	border:1px solid #f0f0f0;
}


.card-white .card-header {
    background-color: #fff;
    border:none;
}
.card-white .card-header:before{
	content:'';
	border-left: 4px solid #E63600;
	padding-right:0.5rem;

	font-size: 14px;
    font-weight: 400;
    color: #2A2A2A;
}



.article-list{
	list-style:none;
	padding:0;
}
.article-list .item{
	border-bottom: 1px dotted #ddd;
    padding-bottom: 1rem;
	margin-bottom:1rem;
}
.article-list-image{
	position:relative;
}
.article-list-cateurl {
	display:block;
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 0.2rem 1rem;
    color: #eee;
    font-size: 12px;
    border-radius: 4px;
    background: rgba(0,0,0,0.5);
}



.article-list-thumb{
	display:block;
}
.article-list-thumb img:hover {
	opacity: 0.8;
}

.article-list-title{
	display:block;
}
.article-list-title h5{
    font-size: 16px;
    line-height: 1.4em;
    font-weight: 500;
}
.article-list-title p{
    font-size: 13px;
    line-height: 1.8em;
    font-weight: 200;
}


.article-list-info  {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}


.article-list-info cite {
	font-size: 12px;
    color: #999;
    font-weight: 200;
	margin-right:1rem;
	font-style:normal;
}
.article-list-info-name em{
	font-size: 12px;
	font-style:normal;
    color: #444;	
}



.article{
	background-color:#fff;
	padding:0.5rem 1rem;
}
.article-title{
	line-height:2;
    font-size: 1.4rem;
    font-weight: 500;
	text-align:center;

}
.article-content{
	margin:1rem 0;
	padding:1rem 0;
	border-top:1px solid #eee;
	border-bottom:1px solid #eee;
	
	line-height:2;
	font-weight: 400;

}
.article-content img{
	max-width:100%;
}


.article-download{
	margin-top:1rem;
	padding:1rem;
	border:1px solid #ddd;
	background-color:#efefef;
	font-size:0.875rem;
	color:#777;
}
.article-download ul li{
	line-height:2;
}

.article-download .btn-vip{
	display:block;
	text-align:center;
	color:#f00
}
.article-download .btn-vip i{
	font-size:5rem;
	line-height: 1;
}
.article-download .btn-vip p{
	font-size:1.2rem;
	margin:0.2rem 0;
}


.article-download .btn-login{
	display:block;
	text-align:center;
	color:#3f51b5
}
.article-download .btn-login i{
	font-size:5rem;
	line-height: 1;
}
.article-download .btn-login p{
	font-size:1.2rem;
	margin:0.2rem 0;
}





.article-copyright{
	padding: 1rem;
    background: #FAFAFA;
}
.article-copyright p {
	padding:0;
	margin:0;
    font-size: 12px;
    line-height: 2;
    color: #666;
    font-weight: 300;
}

.article-bottom{
	padding:2rem 0;
}

.article-bottom a{
	display:block;
	margin:0 2rem;
	text-align:center;
}

.article-bottom a.active{
	color:#FF5722
}

.article-bottom a i{
	font-size:4rem;
}

.article-bottom a p{
	font-size:0.875rem;
}



.heros-section{
	position:relative;
	padding:7rem 0;
	color:#fff;
	background-size: cover;
    background-position: center;
	z-index: 1;
}
.heros-section-overlay{
	position:absolute;
	width:100%;height:100%;
	left:0;top:0;
	background-color:rgba(0,0,0,0.5);
	z-index: -1;
}
.heros-section h1{
	color: #fff;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 6px;
}