/*------------------------
    加载进度样式
------------------------*/
.loader-wrap {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
}

.cssload-loader {
  position: relative;
  width: 12px;
  height: 12px;
  left: 46%;
  left: calc(50% - 6px);
  left: -o-calc(50% - 6px);
  left: -ms-calc(50% - 6px);
  left: -moz-calc(50% - 6px);
  top: 50%;
  border-radius: 12px;
  background-color: #ECC731;
  transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  animation: cssload-loader 0.5s ease-in-out infinite;
  -o-animation: cssload-loader 0.5s ease-in-out infinite;
  -ms-animation: cssload-loader 0.5s ease-in-out infinite;
  -webkit-animation: cssload-loader 0.5s ease-in-out infinite;
  -moz-animation: cssload-loader 0.5s ease-in-out infinite;
}

.cssload-loader:before {
  content: "";
  position: absolute;
  background-color: #ECC731;
  top: 0px;
  left: -25px;
  height: 12px;
  width: 12px;
  border-radius: 12px;
}

.cssload-loader:after {
  content: "";
  position: absolute;
  background-color: #ECC731;
  top: 0px;
  left: 25px;
  height: 12px;
  width: 12px;
  border-radius: 12px;
}

@keyframes cssload-loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@-webkit-keyframes cssload-loader {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
  }
}

/*------------------------
    全局样式
------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.75;
  color: #111111;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
}

h1,
.h1 {
  font-size: 6.4rem;
}

h2,
.h2 {
  font-size: 4.8rem;
}

h3,
.h3 {
  font-size: 3.6rem;
}

h4,
.h4 {
  font-size: 2.4rem;
}

h5,
.h5 {
  font-size: 1.8rem;
}

h6,
.h6 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 30px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #ECC731;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
a:focus, a:visited, a:active {
  outline: none;
  color: #ECC731;
}
a:hover {
  color: #993025;
  text-decoration: none;
}

.section {
  position: relative;
}

.section-padding {
  padding: 80px 0;
}
.section-padding.bottom-0 {
  padding-bottom: 0;
}

.offwhite-bg {
  background-color: #f7f7fa;
}

.theme-bg {
  background-color: #ECC731;
  color: #ffffff;
}

.text-white {
  color: #ffffff;
}
.text-white .section-subtext {
  color: #ffffff;
}

.overlay-black {
  background-color: rgba(17, 17, 17, 0.9);
}

.section-header {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 60px;
}
.section-header:before {
  content: "";
  width: 370px;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: rgba(192, 57, 43, 0.11);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section-header:after {
  content: "";
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: #ECC731;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section-header.style-2 {
  padding-bottom: 0;
  margin-bottom: 30px;
}
.section-header.style-2:before, .section-header.style-2:after {
  content: none;
}
.section-header.style-2 .section-subtext {
  margin-top: 22px;
}

.section-title {
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1;
  margin: 0;
}

.section-subtext {
  color: #000000;
  margin-top: 15px;
}

.mock {
  display: inline-block;
  float: none;
  margin: 0 auto;
  position: relative;
}
.mock img {
    position: relative;
    width: 500px;
    height: 350px;
    border-radius:5px;
}
.mock .back-mock {
  position: absolute;
  bottom: 0;
  left: 120px;
}
.mock.right-style {
  text-align: right;
  margin-right: 0;
  float: right;
}
.mock.right-style .back-mock {
  left: -120px;
}

.steller-parallax {
  background-repeat: no-repeat;
}

/*** Form and Inputs ***/
form {
  position: relative;
}
form *:focus,
form *:active {
  outline: none;
}
form p {
  margin-bottom: 15px;
}

input:not([type=radio]):not([type=checkbox]):not([type=range]),
textarea {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  line-height: 2;
  padding: 8px 30px;
  background-color: rgba(17, 17, 17, 0.15);
  border: none;
}

textarea {
  resize: none;
}

[type=submit] {
  margin-top: 15px;
}

/*** Pages ***/
.page-header {
    background-position: center center;
    background-size: cover;
    margin: 0;
    padding: 200px 0 100px;
    border: none;
    border-radius: 0;
    position: relative;
}
.page-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 17, 17, 0.8);
  z-index: 0;
}
.page-header > .container {
  z-index: 1;
  position: relative;
}

.page-title {
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
}

.breadcrumb {
  background-color: transparent;
  margin-top: 0px;
  margin-bottom: 0;
  padding: 0;
  color: #ffffff;
}
.breadcrumb a {
  color: #ffffff;
}
.breadcrumb .active {
  color: #ffffff;
}

/*----------------------------------------
Buttons Styles
----------------------------------------*/
.btn {
    font-size: 1.4rem;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    background-color: #ECC731;
    color: #ffffff;
    border: 1px solid #ECC731;
    line-height: 39px;
    padding: 0 39px;
    letter-spacing: 1.3px;
    border-radius: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn i {
  margin-right: 10px;
}
.btn:focus, .btn:visited, .btn:active {
  outline: none;
  color: #ffffff;
  background-color: #ECC731;
}
.btn:hover {
    background-color: #C7A20C;
    color: #ffffff;
}
.btn.btn-sm {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 30px;
  padding: 0 30px;
  text-transform: none;
  letter-spacing: 0;
}
.btn.btn-lg {
  padding: 0 45px;
  line-height: 50px;
  border-radius: 26px;
}
.btn.btn-border {
  background-color: transparent;
  color: #111111;
}
.btn.btn-border:focus, .btn.btn-border:visitedm .btn.btn-border:active {
  color: #111111;
  background-color: transparent;
}
.btn.btn-border:hover {
  background-color: #ECC731;
  color: #ffffff;
}
.btn + .btn {
  margin-left: 26px;
}

.btn2 {
    font-size: 1.4rem;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    background-color: #FFFFFF;
    color: #ECC731;
    border: 1px solid #FFFFFF;
    line-height: 39px;
    padding: 0 39px;
    letter-spacing: 1.3px;
    border-radius: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn2:focus, .btn2:visited, .btn2:active {
    outline: none;
    color: #ECC731;
    background-color: #FFFFFF;
}
.btn2:hover {
    background-color: #FFFFFF;
    color: #ECC731;
}

/*-----------------------------------
Navbar Styles
-----------------------------------*/
.navbar-default {
  min-height: 100px;
  border-radius: 0;
  border: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  margin-bottom: 0;
  z-index: 995;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar-default2 {
    background-color: #000;
}
.navbar-default .navbar-brand {
  margin-top: 20px;
  margin-bottom: 20px;
}
.navbar-brand {
    padding: 2px 5px;
}
.navbar-default .navbar-nav {
  margin-top: 25px;
  margin-bottom: 25px;
}
.navbar-default .navbar-nav > li > a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}
.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a a:visited {
  color: #ffffff;
}
.navbar-default .navbar-nav > li > a:hover {
  color: #ECC731;
}
.navbar-default .navbar-nav > li.active a {
  background-color: transparent;
  color: #ECC731;
}
.navbar-default .navbar-nav > li.active a:focus, .navbar-default .navbar-nav > li.active a:hover, .navbar-default .navbar-nav > li.active a:visited {
  color: #ECC731;
  background-color: transparent;
}
.navbar-default.affix {
  background-color: #111111;
  min-height: 60px;
}
.navbar-default.affix .navbar-brand {
  margin-top: 5px;
  margin-bottom: 5px;
}
.navbar-default.affix .navbar-nav {
  margin-top: 5px;
  margin-bottom: 5px;
}

.navbar-right .dropdown-menu {
  right: auto;
  left: 0;
}
.navbar-right > .dropdown:last-child > .dropdown-menu, .navbar-right > .dropdown:nth-last-child(2) > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropdown-menu {
  display: block;
  padding: 20px 10px;
  z-index: 996;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.dropdown-menu .dropdown-menu {
  left: 100%;
  top: 0;
}
.dropdown-menu > li > a {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
}
.dropdown-menu > li > a:hover {
  color: #ffffff;
  background-color: #ECC731;
}
.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-title{font-size:26px; height:40px; line-height:40px; color:#ffffff; font-weight:bold}

@media (max-width:768px){
    .nav-title{font-size:20px; height:40px; line-height:40px; color:#ffffff; font-weight:bold; margin-left:10px}
}

/*----------------------------------------
Banner Styles
----------------------------------------*/
.banner-item {
  height: 768px;
  background-position: center top;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  color: #ffffff;
  overflow: hidden;
}
.banner-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(17, 17, 17, 0.8);
  z-index: 1;
}

.banner-content {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 50px;
}
.banner-content .banner-text-content {
  margin-top: 100px;
}
.banner-content .banner-title {
  font-size: 4.8rem;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}
.banner-content .banner-text {
  font-size: 2.2rem;
  margin-top: 22px;
  margin-bottom: 0;
}
.banner-content .button-group {
  margin-top: 34px;
}
.banner-content .btn-border {
  color: #ffffff;
}
.banner-content .banner-registration {
  background-color: rgba(17, 17, 17, 0.55);
  max-width: 400px;
  float: right;
  width: 100%;
  padding: 40px;
}
.banner-content .banner-registration input:not([type=radio]):not([type=checkbox]):not([type=range]),
.banner-content .banner-registration textarea {
  line-height: 30px !important;
  background-color: rgba(192, 57, 43, 0.22);
}
.banner-content .banner-registration .btn {
  width: 100%;
}

.banner.style-2 .banner-content {
  top: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.banner.style-2 .banner-hero-image {
  margin-top: 50px;
}
.banner.style-3 .banner-text-content {
  margin-top: 0;
}

.right-part {
  text-align: right;
}

/*------------------------
Plan Styles
------------------------*/
.plan-item {
  text-align: center;
  padding: 30px 35px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.plan-item:hover {
    border-color: #ECC731;
}
.plan-item a {
    color: #000;
}

.plan-icon {
    font-size: 50px !important;
    line-height: 30px;
    color: #ECC731;
}

.plan-title {
    color: #ECC731;
    font-size: 2.2rem;
    margin-top: 25px;
    margin-bottom: 15px;
}
.plan-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-align: left;
    width: 100%;
    height: 140px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*------------------------
Features Styles
------------------------*/
.feature {
    float: left;
    width: 100%;
    margin-bottom: 65px;
}

.feature-icon {
  font-size: 2.5rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #ECC731;
  line-height: 68px;
  text-align: center;
  color: #ECC731;
  margin-right: 30px;
  float: left;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.feature:hover .feature-icon {
  background-color: #ECC731;
  color: #ffffff;
}
.col-sm-4:first-child .feature-icon {
  float: right;
  margin-right: 0;
  margin-left: 30px;
}

.feature-content {
  float: left;
  width: calc(100% - 100px);
}
.col-sm-4:first-child .feature-content {
  float: right;
  text-align: right;
}

.feature-title {
  font-size: 2.2rem;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #ECC731;
}

/*** More Features ***/
.more-feature-section .mock {
  margin-left: 25px;
}
.more-feature-section .section-header {
  margin-top: 50px;
}

.icon-list {
  line-height: 2.3;
  margin: 0;
  padding: 0;
  list-style: none;
}
.icon-list li span {
  font-size: 1.7rem;
  color: #ECC731;
  margin-right: 10px;
}

/*----------------------------------------
News Styles
----------------------------------------*/
.news-tabs .nav-tabs {
  border: none;
}
.news-tabs .nav-tabs > li {
  margin-bottom: 0;
  width: 16.666666%;
  padding: 0 15px;
}
.news-tabs .nav-tabs > li > a {
  border: 1px solid #ECC731;
  border-radius: 0;
  margin: 0;
  text-align: center;
  color: #000000;
  display: block;
  line-height: 1.75;
  padding: 37px 10px 28px;
  position: relative;
}
.news-tabs .nav-tabs > li > a span {
  font-size: 4rem;
  line-height: 1;
  display: block;
  margin-bottom: 7px;
}
.news-tabs .nav-tabs > li > a:hover {
  background-color: transparent;
  color: #ECC731;
}
.news-tabs .nav-tabs > li > a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 13px solid #ECC731;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -13px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.news-tabs .nav-tabs > li.active a {
  background-color: #ECC731;
  color: #ffffff;
}
.news-tabs .nav-tabs > li.active a:after {
  opacity: 1;
  visibility: visible;
}
.news-tabs .pane-content {
  padding: 65px 15px 0;
  width: 100%;
  float: left;
}
.news-tabs .installation-steps {
  float: left;
  width: 100%;
  margin-bottom: -45px;
}
.news-tabs .installation-step {
  width: 50%;
  display: inline-block;
  float: left;
  padding-right: 15px;
  margin-bottom: 45px;
}
.news-tabs .installation-steps a{
   color:#000;
}
.news-tabs .installation-step:nth-child(2n) {
  padding-right: 0;
  padding-left: 15px;
}
.news-tabs .installation-step .step-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-tabs .installation-step .step-content {
    font-size: 1.6rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-align: left;
    width: 100%;
    height: 80px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-tabs .more {
    width: 100%;
    display: inline-block;
    height: 80px;
    line-height: 80px;
}

/*------------------------
Client Logo Styles
------------------------*/
.flexLogo {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items:center;
}
.flexLogo .item {
    width:120px;
    height:120px;
    margin:15px 8px 0px 8px;
}

/*------------------------
Contact Styles
------------------------*/

.contact-list li {
    width: 100%;
    padding:10px 0px;
    color: #fff;
}
.contact-list li a {
    color: #fff;
}
.contact-list li a:active {
    color: #fff;
}

.form-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.form-wrap .section-header.style-2 {
  margin-bottom: 80px;
}
.form-wrap .section-header.style-2 .section-subtext {
  margin-top: 5px;
}

.contact-form input:not([type=radio]):not([type=checkbox]),
.contact-form textarea {
  background-color: rgba(255, 255, 255, 0.15);
 color:#fff;
 font-size:16px;
}
.contact-form ::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.contact-form ::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.contact-form :-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.contact-form :-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}

.input-success,
.input-error,
.newsletter-success,
.newsletter-error {
  margin-top: 15px;
  margin-bottom: 0;
  display: none;
  background-color: #ffffff;
  padding: 2px 20px;
  float: left;
  width: 100%;
  clear: both;
  text-align: left;
}

.input-success,
.newsletter-success {
  color: #16a085;
}

.input-error,
.newsletter-error {
  color: #e74c3c;
}

.newsletter-success,
.newsletter-error {
  clear: both;
  width: 100%;
}

/*------------------------
Footer Styles
------------------------*/
.logo-footer {
  display: inline-block;
  margin: 0 auto;
}

.socials {
  margin-top: 30px;
}
.socials a {
  display: inline-block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 38px;
  border: 1px solid #ECC731;
  font-size: 1.4rem;
  color: #ECC731;
}
.socials a + a {
  margin-left: 16px;
}
.socials a:hover {
  background-color: #ECC731;
  color: #ffffff;
}

.copyright-footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 21px 0;
}
.copyright-footer .copyright {
    font-size: 1.5rem;
    padding: 10px 0;
}
.copyright-footer .copyright a {
    color: #FFFFFF;
}
.copyright-footer .copyright a:hover {
    color: #ECC731;
}

.footer-nav {
  text-align: right;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav li {
  display: inline;
  margin-left: 36px;
}
.footer-nav li a {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

/*****************************
 *   05. portfolio-area
 ***************************** */
.single-portfolio {
    margin: 20px 0;
}

.single-portfolio .inner .portfolio-img {
    position: relative;
}

.single-portfolio .inner .portfolio-img img {
    width: 100%;
}

.single-portfolio .inner .portfolio-img .hover-content {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    visibility: hidden;
}

.single-portfolio .inner .portfolio-img .hover-content .button {
    background-color: #fff;
    border-color: #fff !important;
}

.single-portfolio .inner .portfolio-img .hover-content .button:hover {
    background-color: #222;
    color: #fff;
    border-color: #222 !important;
}

.single-portfolio .inner .portfolio-img:hover .hover-content {
    opacity: 1;
    visibility: visible;
}

.single-portfolio .inner .portfolio-content {
    text-align: center;
    padding-top: 25px;
    color: #6d7784;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.single-portfolio .inner .portfolio-content a {
    display: block;
}

.single-portfolio .inner .portfolio-content h3 {
    font-weight: 400;
    margin: 0;
    font-size: 24px;
}

.pagination > li > a, .pagination > li > span{ margin-top:30px; color:#ECC731;}