.img-bg-1{
  display: block;
  margin:0 auto;
  margin-top: 70px;
}
@media(max-width:768px){
  .img-bg-1{
    width: 100%;
  }
}
.cd-tabs {
  position: relative;
  width: 100%;
  /* height: 500px; */
  max-width: 960px;
  margin: 0px auto;
  border: 1px solid white;
  box-shadow: 2px 20px 60px 10px rgba(74, 74, 74, 0.4);
  margin-bottom: 50px;
  /* border: 1px solid red; */
}
@media(max-width:768px){
  .cd-tabs{
    margin:-50px auto;
  }
}
.cd-tabs:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabs::after {
  /* subtle gradient layer on top right - to indicate it's possible to scroll */
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 50px;
  z-index: 1;
  pointer-events: none;
  background: -webkit-linear-gradient( right , #f8f7ee, rgba(248, 247, 238, 0));
  background: linear-gradient(to left, #f8f7ee, rgba(248, 247, 238, 0));
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.no-cssgradients .cd-tabs::after {
  display: none;
}
.cd-tabs.is-ended::after {
  /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-tabs nav {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #f8f7ee;
  box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
}
@media only screen and (min-width: 768px) {
  .cd-tabs::after {
    display: none;
  }
  .cd-tabs nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    box-shadow: inset -2px 0 3px rgba(203, 196, 130, 0.06);
    z-index: 1;
  }
}


.cd-tabs-navigation {
  width: 360px;
  /* border: 1px solid red; */
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cd-tabs-navigation {
    left: 50%;
    width: 340px;
  }
}
.cd-tabs-navigation:after {
  content: "";
  display: table;
  clear: both;
}

.cd-tabs-navigation li {
  float: left;
}
.cd-tabs-navigation a {
  position: relative;
  display: block;
  height: 80px;
  width: 70px;
  text-align: center;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  color: #c3c2b9;
  padding-top: 20px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .cd-tabs-navigation a {
    margin-left: 30px;
    /* border: 1px solid black; */
    margin-bottom: 20px;
  }
}
.no-touch .cd-tabs-navigation a:hover {
  color: #29324e;
  background-color: rgba(233, 230, 202, 0.3);
}
.cd-tabs-navigation a.selected {
  background-color: #ffffff !important;
  box-shadow: inset 0 5px 0 #f05451;
  color: #29324e;
}

@media only screen and (min-width: 768px) {
  .cd-tabs-navigation {
    /* move the nav to the left on medium sized devices */
    width: 120px;
    float: left;
  }
  .cd-tabs-navigation a {
    height: 80px;
    width: 120px;
    font-size: 14px;
    padding-top: 20px;
  }
  .cd-tabs-navigation a.selected {
    box-shadow: inset 5px 0 0 #f05451;
  }
  .cd-tabs-navigation a::before {
    top: 22px;
  }
}


.cd-tabs-content {
  background: white;
}
.cd-tabs-content li {
  display: none;
  /* padding: 1.4em; */
}
@media(max-width:768px) {
  .cd-tabs-content li img{
    width: 100%;
  }

}
.cd-tabs-content li.selected {
  display: block;
  -webkit-animation: cd-fade-in 0.5s;
  -moz-animation: cd-fade-in 0.5s;
  animation: cd-fade-in 0.5s;
}

.cd-tabs-content li p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #8493bf;
  margin-bottom: 2em;
}
@media only screen and (min-width: 768px) {
  .cd-tabs-content {
    min-height: 500px;
  }
  .cd-tabs-content li {
    /* padding: 2em 2em 2em 7em; */
    /* border: 1px solid red; */
  }
  .cd-tabs .cd-tabs-content .selected .zhanwei{
    width: 80%;
    margin-left: 20%; 
    /* border: 1px solid black; */
   }
}


@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
