body {
  width: 100%;
}
.container {
  width: 100%;
  overflow: hidden;
}
.target-box {
  width: 100%;
}
.target-box > ul {
  transition: 0.3s;
}
/* 头部样式开始 */
.header {
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 100px;
}
.header-logo {
  float: left;
  margin-left: 100px;
}
.banner-nav-box {
  float: right;
}
.header-nav {
  display: inline-block;
}
.header-nav-box {
  text-align: right;
}
.header-nav-box-button {
  display: none;
}
.header-nav > li {
  font-size: 14px;
  float: left;
  padding: 0 20px;
  font-weight: bold;
}
.header-nav > li:hover {
  background-color: #f0f0f0;
}
.header-nav > li > a {
  color: #333;
}
/* .header-nav > li:hover > a {
  color: #000;
} */
.header-nav-button {
  display: none;
  float: right;
  cursor: pointer;
}
.header-nav-button > img {
  width: 20px;
}
/* 头部样式结束 */

/* 首页视频样式开始 */
.video {
  width: 100%;
  overflow: hidden;
  font-size: 0;
  position: relative;
  padding-bottom: 56.25%;
}
.video video {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  z-index: 1;
}
/* 首页视频样式结束 */

/* 首页产品样式开始 */
.product {
  width: 100%;
  overflow: hidden;
}
.prduct-item {
  display: block;
  width: 100%;
  position: relative;
}
.products-img {
  display: block;
  width: 100%;
}
.products-text {
  position: absolute;
  z-index: 1;
  left: 35%;
  top: 23%;
}
.products-text span {
  display: block;
  float: right;
  color: white;
  font-size: 14px;
  width: 14px;
  margin: 5px;
  word-break: break-word;
  text-align: center;
  line-height: 1.2;
}

/* 首页产品样式结束 */

/* 首页专家样式开始 */
.master {
  width: 100%;
  padding: 8% 0;
}
.master-test {
  width: 40%;
  float: left;
  box-sizing: border-box;
  padding-left: 5%;
  padding-top: 4%;
}
.master-title {
  font-size: 48px;
  font-weight: bold;
}
.master-section {
  margin-top: 15%;
  font-size: 16px;
}
.master-content {
  width: 60%;
  float: left;
  position: relative;
}
.master-content > .index-master-box > ul {
  width: 166.6%;
  transition: 0.3s;
}
.master-content-item {
  width: 20%;
  display: block;
  float: left;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  padding-right: 1%;
}
.master-content-item > a {
  display: block;
  position: relative;
  padding-bottom: 180%;
  overflow: hidden;
  height: 0;
  font-size: 0;
}
.master-content-img {
  width: 100%;
}
.master-content-bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000;
  top: 0;
  left: 0;
  opacity: 0.7;
  display: none;
}
.master-content-text {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: -100%;
  left: 0;
  color: #fff;
  transition: 0.3s;
  padding-bottom: 10px;
}
.master-content-text>p{
  padding-left: 20px;
}
.master-content-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.master-content-introduction {
  font-size: 18px;
  margin-bottom: 15px;
}
.master-content-more {
  font-size: 14px;
}
.master-content-item:hover .master-content-text {
  bottom: 0;
}
.master-content-item:hover .master-content-bg {
  display: block;
}
.master-button {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -280px;
}
.master-button > .next,
.master-button > .prev {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../image/icon-arrow-a.png);
  background-size: 100% 100%;
  cursor: pointer;
}
.master-button > .next {
  margin-left: 40px;
}
.master-button > .prev {
  transform: rotate(180deg);
}
.master-button > .next:hover,
.master-button > .prev:hover {
  background: url(../image/icon-arrow-b.png);
  background-size: 100% 100%;
}
.index-master-box {
  width: 100%;
}
/* 首页专家样式结束 */

/* 首页博物馆样式开始 */
.museum {
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 45%;
  height: 0;
  position: relative;
  overflow: hidden;
}
.museum-text {
  position: absolute;
  z-index: 1;
  top: 15%;
  left: 5%;
  width: 46%;
  box-sizing: border-box;
}
.museum-title {
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10%;
}
.museum-content {
  font-size: 14px;
  color: #a8a8a8;
  line-height: 30px;
  margin-bottom: 10%;
}
.museum-more {
  position: relative;
  width: 24%;
  display: block;
  color: #fff;
  border: #fff 1px solid;
  text-align: center;
  height: 40px;
  line-height: 40px;
  transition: 0.3s;
  transform-origin: left;
}
.museum-more:hover {
  color: #fff;
}
.museum-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  height: 100%;
}
.museum::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.museummore-box{
  width: 100%;
  overflow: hidden;
}
.museummore{
  width: 1920px;
  float: left;
  margin-left: 50%;
  transform: translateX(-50%);
}
.museummore img{
  width: 100%;
}
/* 首页博物馆样式结束 */

/* 首页新闻样式开始 */
.news {
  width: 100%;
  box-sizing: border-box;
  padding: 8% 0 6% 0;
}
.news-text {
  box-sizing: border-box;
  width: 47%;
  float: left;
  padding-left: 5%;
  padding-right: 13%;
}
.news-title {
  font-size: 34px;
  margin-bottom: 20%;
}
.news-section {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10%;
}
.news-introduce {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 5%;
}
.news-more {
  position: relative;
  width: 34%;
  display: block;
  color: #000;
  border: #000 1px solid;
  text-align: center;
  height: 40px;
  line-height: 40px;
}
.news-more:hover {
  color: #000;
}

.news-content {
  box-sizing: border-box;
  width: 53%;
  float: left;
  padding-top: 5%;
  padding-right: 13%;
}
.news-img {
  overflow: hidden;
  width: 100%;
}

.news-img > ul {
  width: 230%;
  font-size: 0;
}

.news-img-item {
  width: 33.3%;
  box-sizing: border-box;
  padding-left: 0.5%;
}
.news-img-item > a {
  width: 100%;
}
.news-img-item.p1 img {
  width: 100%;
  height: 100%;
}
.news-img-item img {
  box-sizing: border-box;
  width: 90%;
  height: 70%;
}
.news-button {
  text-align: center;
  line-height: 34px;
}
.news-prev,
.news-next {
  box-sizing: border-box;
  display: inline-block;
  width: 20px;
  height: 15px;
  line-height: 34px;
  background-image: url(../image/icon-right-a.png);
  background-size: 100% 100%;

}
.news-prev:hover,
.news-next:hover {
  background-image: url(../image/icon-right-b.png);
  background-size: 100% 100%;
  cursor:pointer
}
.news-next {
}
.news-prev {
  transform: rotate(180deg);
}
.news-num {
  color: #666;
  font-size: 16px;
  display: inline-block;
}

/* 首页新闻样式结束 */

/* 尾部样式开始 */
.footer {
  width: 100%;
  box-sizing: border-box;
  background-color: #2c2c2c;
  color: #fff;
}
.footer-nav {
  padding: 3% 12.5%;
}
.footer-nav-item {
  padding-right: 3%;
  box-sizing: border-box;
}
.footer-nav-item > a {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}
.footer-content {
  padding: 0% 12.5% 3%;
}
.footer-information {
  float: left;
}
.footer-information-item {
  display: block;
  font-size: 16px;
  line-height: 40px;
  color: #a0a0a0;
}
.footer-wechat {
  width: 360px;
  float: right;
}
.footer-wechat > ul {
  width: 100%;
  font-size: 0;
}
.footer-wechat-item {
  display: inline-block;
  width: 180px;
  vertical-align: top;
}
.footer-wechat-img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 10%;
}
.footer-wechat-text {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
.footer-copy {
  border-top: 1px #3f3f3f solid;
  line-height: 70px;
  text-align: center;
  font-size: 14px;
  color: #a8a8a8;
}
.footer-copy a{
  color: #a8a8a8;
}
.footer-copy span{
  display: inline-block;
}





/* 尾部样式结束 */

/* 分页banner开始 */
.banner {
  width: 100%;
}
.banner-link {
  display: block;
  width: 100%;
}
.banner-img {
  width: 100%;
}
/* 分页banner结束 */

/* 产品中心内容开始 */
.content-product {
  box-sizing: border-box;
  overflow: hidden;
}
.content-product-img {
  display: block;
  width: 30%;
  margin: 15% auto 8%;
}
.content-product-section {
  margin: 5% 0;
}
.product-list-header {
  border-bottom: 1px solid #000;
  margin: 0 0 5%;
  position: relative;
}
.product-list-header>*{
  display: inline-block;
  vertical-align: middle;
}
.product-list-more{
  position: absolute;
  right: 0;
  bottom: 0;
}
.product-list-title {
  line-height: 100px;
  font-size: 26px;
  font-weight: bold;
  color: #3f241a;
  width: 300px;
  box-sizing: border-box;
  padding-right: 50px ;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.product-list-describe {
  font-size: 14px;
  max-width: 700px;
}
.product-list-section-img {
  width: 48%;
  display: block;
  margin: 0 auto 13%;
}

.product-list-b-box > .ki-content-2 {
  padding: 0 2.5%;
}
.product-list-b-box > .ki-content-3 {
  padding: 0 2%;
}
.product-list-b-box > .ki-content-4 {
  padding: 0 1%;
}

.product-pc .product-list-b-box > .ki-content-3 {
  padding: 0;
}
.product-pc .product-list-b-box > .ki-content-3{
  width: calc((100% / 3) - 10px);
}
.product-pc .product-list-b-box > .ki-content-3{
  margin-right: 15px ;
}
.product-pc .product-list-b-box > .ki-content-3:nth-child(3n){
  margin-right: 0 ;
}
.product-pc img{
  width: 100%;
  height: 100%;
}
.product-details-tt{
  position: relative;
}
.product-details-tt a{
  position: absolute;
  top: 10px;
  right: 10px;
  line-height: 30px;
  font-size: 14px;
}
.product-details-tt a img{
  width: 8px;
}
.product-list-box {
  width: 100%;
}
.product-list-box-img {
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.product-list-box-img > img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
}
.product-jpxl .product-list-box-img {
  padding-bottom: 76.7%;
}
.product-cxxl .product-list-box-img {
  padding-bottom: 100%;
}
.product-bwhzxl .product-list-box-img {
  padding-bottom: 98.6%;
}
.product-gdjxl .product-list-box-img {
  padding-bottom: 100%;
}
.product-zcxl .product-list-box-img {
  padding-bottom: 98.7%;
}

.product-pc .product-list-box-img {
  padding-bottom: 100%;
}


/*.product-list-box:hover .product-list-box-img > img {*/
/*  width: 102%;*/
/*  left: -1%;*/
/*  top: -1%;*/
/*}*/
.product-list-box-text {
  margin: 20px 0;
  overflow: hidden;
}
.product-list-box-style {
  font-size: 14px;
  color: #a8a8a8;
  line-height: 20px;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-list-box-name {
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

}
/* 产品中心内容结束 */

/* 产品中心工艺开始 */
.technology {
  width: 100%;
  box-sizing: border-box;
  padding: 4% 0;
  overflow: hidden;
  background-color: rgb(239, 239, 239);
  position: relative;
}
.technology-box {
  max-width: 1200px;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
}
.technology-box > .target-box > ul {
  width: 200%;
}
.technology-header {
  margin: 0 0 4%;
}
.technology-header > h2 {
  font-size: 26px;
  font-weight: bold;
  color: #333;
}
.technology-img {
  float: left;
  width: 46%;
  padding-bottom: 31%;
  height: 0;
  overflow: hidden;
}
.technology-img img {
  width: 100%;
}
.technology-text {
  box-sizing: border-box;
  padding-left: 7.5%;
  float: left;
  width: 54%;
}
.technology-num {
  font-size: 26px;
  line-height: 40px;
}
.technology-title {
  font-size: 26px;
  font-weight: bold;
  line-height: 100px;
}
.technology-describe {
  font-size: 14px;
  line-height: 30px;
}
.technology-button {
  position: absolute;
  z-index: 1;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
}
.technology-button > button {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 3px;
  background-color: #999;
  border: none;
  border-radius: 50%;
}
.technology-button > .locking {
  background-color: #666;
}
/* 产品中心工艺结束 */

/* 产品中心视频赏析开始 */
.product-video {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 4% 0;
  overflow: hidden;
  position: relative;
}
.product-video-header {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 4%;
}
.product-video-list .ki-content-2 {
  padding: 0 1%;
  overflow: hidden;
}
.product-video-box {
  height: 0;
  padding-bottom: 62.5%;
}
.product-video-box > img {
  width: 100%;
}
.product-video-text-box > p {
  font-size: 18px;
  line-height: 80px;
  height: 80px;
  overflow: hidden;
}
/* 产品中心视频赏析结束 */

/* 公司概况开始 */
.company-list {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.company-title {
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.6;
  margin: 5% 0;
}
.company-content > p {
  font-size: 14px;
  line-height: 25px;
  margin: 10px 0;
}
.company-return {
  border-bottom: 2px solid #777;
  margin-bottom: 10%;
}
.company-return-button {
  display: inline-block;
  padding: 8% 0 10px 10px;
}
.company-return-button > * {
  display: inline-block;
  vertical-align: middle;
}
.company-return-img {
  width: 10px;
  margin-right: 16px;
}
/* 公司概况结束 */

/* 新闻详情开始 */

.news-list {
  width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.news-list-header {
  padding-top: 3%;
  border-bottom: 1px solid #000;
}
.news-list-header-left {
  float: left;
}
.news-list-header-right {
  float: right;
}
.news-list-title {
  width: 100%;
  display: inline-block;
  text-align: left;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.6;
}
.news-list-time {
  display: inline-block;
  margin: 3.5% 0;
}
.news-list-header-return {
  display: inline-block;
  width: 100px;
  line-height: 30px;
  background-color: #000;
  color: #fff;
  text-align: center;
}
.news-list-content {
  margin: 0 0 10% 0;
}
.news-list-content p {
  font-size: 14px;
  line-height: 25px;
  margin: 10px 0;
}
.news-list-content p img {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}
/* 新闻详情结束 */

/* 新闻资讯开始 */
.news-hd {
  margin: 10% 0;
}
.news-hd-tt {
  margin: 0 5%;
}
.news-hd-tt > a {
  font-size: 26px;
  line-height: 42px;
  font-weight: bold;
  padding: 5px;
  color: #999;
  box-sizing: border-box;
  border-bottom: 2px solid transparent;
}
.news-hd-tt > a:hover,
.news-hd-tt-lock > a {
  color: #333;
  border-bottom: 2px solid #333;
}
.news-lst-box {
  padding: 0 1.5%;
  margin: 5% 0;
}
.news-lst-img-box {
  position: relative;
  height: 0;
  padding-bottom: 78%;
  overflow: hidden;
}
.news-lst-img {
  left: 50%;
  top: 50%;
  width: 100%;
  position: absolute;
  z-index: 1;
  transform: translateX(-50%) translateY(-50%);
}
.news-lst-tt {
  margin-top: 5%;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 40px;
  height: 40px;
  overflow: hidden;
}
.news-lst-time {
  font-size: 14px;
  color: #999;
  line-height: 40px;
  height: 40px;
  overflow: hidden;
}
.news-lst-introduction {
  font-size: 12px;
  color: #333;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}
.news-lst-page-box {
  margin: 10% 0;
}
.news-lst-page {
  margin: 2px;
  background-color: #f6f6f6;
  border-radius: 2px;
  padding: 3px 6px;
}
.news-lst-page > a {
  color: #ddd;
}
.news-lst-page:hover {
  background-color: #000;
  color: #fff;
}

.news-lst-lock {
  background-color: #000;
  color: #fff;
}
/* 新闻资讯结束 */

/* 大师介绍开始 */
.master-technology {
  position: relative;
}
.master-text-box {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.master-text-box > p {
  opacity: 1;
  color: #fff;
  font-size: 18px;
  line-height: 40px;
  max-width: 90%;
}
.master-img-lock {
  position: absolute;
  width: 60px;
  box-sizing: border-box;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.master-img-lock > label {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  cursor: pointer;
}
.master-img-lock > label > img {
  height: 100%;
  left: 50%;
  top: 50%;
  position: absolute;
  z-index: 1;
  transform: translateX(-50%) translateY(-50%);
}
.master-bg-img-box {
  width: 100%;
  height: calc(100vw * 0.3875);
  overflow: hidden;
}
.master-bg-img {
  position: absolute;
  z-index: 1;
  height: calc(100vw * 0.3875);
  width: 100%;
  overflow: hidden;
}
.master-bg-img > input {
  display: none;
}
.master-bg-img > img {
  width: 100%;
  height: 100%;
}
.master-bg-img > input + img {
  margin-left: 100%;
  transition: 0.3s;
}
.master-bg-img > input:checked + img {
  margin-left: 0;
  transition: 0.3s;
}
.master-bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.7;
  top: 0;
  z-index: 1;
}
.master-bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.7;
  top: 0;
  z-index: 1;
}
.master-details-box {
  position: relative;
  height: 0;
  padding-bottom: 47%;
}
.master-details {
  position: absolute;
  z-index: 1;
  width: 62.5%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.master-img-box {
  height: 0;
  padding-bottom: 47%;
  overflow: hidden;
}
.master-img-box > img {
  width: 100%;
}
.master-details-tt {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
}
.master-details-introduce {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
  margin: 40px 0;
}
.master-details-describe {
  display: none;
  font-size: 14px;
  text-align: left;
  line-height: 20px;
  margin: 0 0 40px 0;
}
.master-details-more-box {
  display: block;
  width: 140px;
  height: 40px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid #333;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.master-details-more {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.master-details-more-open {
  width: 10px;
  transform: rotate(-90deg);
  margin: 0 10px 0 0;
}
.master-details-more-close {
  width: 10px;
  transform: rotate(90deg);
  margin: 0 10px 0 0;
}
.master-details-more > span {
  font-size: 14px;
}
#master-box > .ki-content-1:nth-child(2n) > .master-img-box {
  float: right;
}

/* 大师介绍结束 */

/* 产品详情页开始 */
.product-details-img-box > a > img {
  width: 100%;
  height: 100%;
}
.product-details-box {
  margin: 0 0 5%;
}
.product-details-tt {
  font-size: 26px;
  font-weight: bold;
  margin: 5% 0;
}
.product-details-img-box {
  position: relative;
  overflow: hidden;
}
.product-details-img-box > a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}
.product-details-img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
}
.product-details-img-box > a:hover > .product-details-img {
  width: 110%;
  height: 110%;
  left: -5%;
  top: -5%;
}

.product-details-text {
  padding: 3% 0 0 7%;
}
.product-detail-series {
  font-size: 18px;
}
.product-detail-name {
  font-size: 40px;
  line-height: 100px;
  font-weight: bold;
  border-bottom: 1px solid #333;
}
.product-detail-introduce,
.product-detail-size {
  font-size: 18px;
  line-height: 60px;
  font-weight: bold;
}
.product-detail-introduce-content,
.product-detail-size-content {
  font-size: 14px;
  line-height: 22px;
}
.product-detail-return {
  font-size: 14px;
  display: inline-block;
  margin-top: 15%;
}
.product-detail-return > img {
  display: inline-block;
  width: 8px;
}
.product-series-box {
  margin: 0 0 10%;
}
.product-series-tt {
  font-size: 26px;
  font-weight: bold;
  margin: 5% 0;
}
.product-series-main {
  padding: 0 1.5%;
}
.product-series-main > a {
  display: block;
  width: 100%;
}
.product-series-img-box {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}
.product-series-img-box > .product-series-img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}

.product-series-text {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 100px;
  height: 100px;
  overflow: hidden;
}
/* 产品详情页结束 */

/* 技术质量开始 */
.technical-hd {
  margin: 10% 0;
}
.technical-hd-tt {
  margin: 0 5%;
}
.technical-hd-tt > a {
  font-size: 26px;
  line-height: 42px;
  font-weight: bold;
  padding: 5px;
  color: #999;
  box-sizing: border-box;
  border-bottom: 2px solid transparent;
}
.technical-hd-tt > a:hover {
  color: #333;
  border-bottom: 2px solid #333;
}
.technical-hd-tt-lock > a {
  color: #333;
  border-bottom: 2px solid #333;
}
.technical-lst-box {
  background-color: #f0f0f0;
}
.technical-lst {
  padding: 3% 3%;
}
.technical-lst-content {
  cursor: pointer;
}
.technical-lst > a {
  width: 100%;
  display: block;
}
.technical-lst-img-box {
  width: 100%;
  height: 0;
  padding-bottom: 130%;
  overflow: hidden;
}
.technical-lst-img-box > img {
  width: 100%;
}
.technical-lst-content > p {
  margin-top: 20px;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  height: 30px;
  overflow: hidden;
}
#showpic-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.showpic-close {
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 40px;
  top: 20px;
  right: 20px;
  cursor: pointer;
  color: #fff;
  font-size: 40px;
}
.showpic-close > img {
  width: 100%;
  transform: rotate(45deg);
}
.showpic-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 80%;
  max-width: 600px;
}
.showpic-img > img {
  width: 100%;
}
.showpic {
  color: #fff;
}
.showpic > .prev,
.showpic > .next {
  position: absolute;
  z-index: 1;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 100px;
  font-family: SimSun;
  max-width: 30px;
  width: 3%;
}
.showpic > .prev > img,
.showpic > .next > img {
  width: 100%;
}
.showpic > .next > img {
  transform: rotate(180deg);
}
.showpic > .next {
  left: auto;
  right: 2%;
}
/* 技术质量结束 */

/* 人才招聘开始 */
.recruit-banner-box {
  background-color: rgb(246, 246, 246);
  font-size: 0;
}
.recruit-banner-box > img{
  width: 100%;
}
.recruit-banner-text-box {
  padding: 10% 0 0 10%;
}
.recruit-banner-text-tt {
  font-size: 48px;
  font-weight: bold;
  line-height: 72px;
}
.recruit-banner-text-one {
  margin-top: 20%;
  font-size: 18px;
}
.recruit-banner-text-two {
  font-size: 18px;
}
.recruit-banner-img-box {
  position: relative;
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
}
.recruit-banner-img-box > img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.recruit-content-tt {
  text-align: center;
  font-size: 26px;
  margin:5% 0;
  font-weight: bold;
}
.recruit-content-lst-box {
  padding: 2%;
}
.recruit-content-lst {
  height: 0;
  padding: 12% 12% 150% 12%;
  box-shadow: 0px 0px 5px #ddd;
  font-size: 14px;
  line-height: 24px;
}
.recruit-content-lst-tt {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10%;
}
.recruit-content-lst-main {
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  overflow: hidden;
  font-size: 14px;
  line-height: 2;
}

.recruit-content-lst-more {
  display: inline-block;
  margin-top: 5%;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}
.recruit-content-lst-more-open {
  display: inline-block;
  transform: rotate(-90deg);
  width: 10px;
  margin-left: 10px;
}
.recruit-content-ft {
  margin: 5% 0;
}
.recruit-content-ft > a {
  text-align: center;
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 10px 10px;
  border: 1px solid #333;
  box-sizing: border-box;
  -moz-box-sizing: border-box; /* Firefox */
  -webkit-box-sizing: border-box; /* Safari */
}
.recruit-banner-text-website{
  margin-top: 20%;
  font-size: 18px;
  line-height: 30px;
}
.recruit-banner-text-wechat{
  font-size: 18px;
  line-height: 30px;
}

.footer-banner-box {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 31.25%;
}
.footer-banner-img-box {
  position: relative;
}
.footer-banner-img-box > img {
  width: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  transform: translateY(-25%);
}
.footer-banner-text-box {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  color: #fff;
  box-sizing: border-box;
  padding: 10% 12% 50%;
  background: rgba(0, 0, 0, 0.7);
}
.footer-banner-text-left-box {
  float: left;
  width: 70%;
}
.footer-banner-text-right-box {
  float: right;
  width: 30%;
}
.footer-banner-text-tt {
  font-size: 48px;
  margin-bottom: 8%;
  font-weight: bold;
}
.footer-banner-text-p {
  font-size: 18px;
}
.footer-banner-text-wechat {
  text-align: right;
  margin-bottom: 10px;
}
.footer-banner-text-wechat > img {
  width: 40%;
  display: inline-block;
  max-width: 130px;
  min-width: 65px;
}
.footer-banner-text-right-box {
  text-align: right;
}
/* 人才招聘结束 */

/* 愿景使命开始 */
.vision-box-1 {
  padding: 5% 0;
  box-sizing: border-box;
}
.vision-content-left-box {
  width: 40%;
  float: left;
}
.vision-content-left-box > p {
  font-size: 26px;
  font-weight: bold;
}
.vision-content-right-box {
  width: 60%;
  float: left;
}
.vision-content-right-box > p {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 5%;
}
.vision-content-right-box > p > img {
  max-width: 100%;
}
.vision-box-2 {
  position: relative;
  height: 0;
  padding-bottom: 40%;
}
.vision-content-center-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 2;
}
.vision-content-center-box > p {
  display: block;
  float: right;
  font-size: 14px;
  width: 12px;
  margin: 10px;
  word-break: break-word;
  text-align: center;
  line-height: 1.2;
}
.en .vision-content-center-box > p {
  display: block;
  float: left;
  font-size: 14px;
  width: 100%;
  margin: 10px;
  word-break: break-word;
  text-align: left;
  line-height: 1.2;
}
.vision-content-center-box > .vision-content-center-tt {
  font-size: 26px;
  font-weight: bold;
}
.vision-content-center-bg {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 1;
}
.vision-content-center-bg > img {
  width: 100%;
}
.vision-return-button {
  display: inline-block;
  margin-bottom: 10%;
}
.vision-return-button > .vision-return-img {
  width: 10px;
  margin-right: 10px;
}
/* 愿景使命结束 */

/* 关于我们开始 */
.aboutus-content-text-box {
  margin: 10% auto;
}
.aboutus-content-left-text-box {
  font-size: 48px;
  font-weight: bold;
}
.aboutus-content-left-text-lighter {
  border-bottom: 2px solid #000;
  width: 20%;
  margin: 10% 0;
}
.aboutus-content-right-text-box {
  font-size: 16px;
  line-height: 1.8;
}
.aboutus-content-right-text-a {
  margin-top: 5%;
}
.aboutus-content-right-text-a > a {
  border-bottom: 1px solid #333;
}
.aboutus-vision-box > img {
  width: 100%;
}
.aboutus-vision {
  padding: 15% 0;
}
.aboutus-vision > p {
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 1.8;
}
.aboutus-vision > .aboutus-vision-tt {
  font-size: 36px;
  font-weight: bold;
}
.en .aboutus-vision-p{
  height: 72px;
  overflow: hidden;
}
.ki-box-all .ki-content-3:nth-child(2n-1) .aboutus-vision {
  background-color: #919191;
}
.ki-box-all .ki-content-3:nth-child(2n) .aboutus-vision {
  background-color: #666;
}
.ki-box-all .ki-content-3:hover .aboutus-vision {
  background-color: #dd2e2e;
  transition: 0.3;
  position: relative;
}
.ki-box-all .ki-content-3:hover .aboutus-vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, -100%, 0);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid #dd2e2e;
}
.aboutus-honor,
.aboutus-video {
  padding: 5% 0;
}
.aboutus-honor-tt,
.aboutus-video-tt {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.aboutus-honor-img-box {
  overflow: hidden;
}
.aboutus-honor-img-box > .target-box > ul {
  width: 200%;
}
.aboutus-honor-img > img {
  width: 100%;
}
.aboutus-video-tt {
  margin-bottom: 5%;
}
.aboutus-video-content-box {
  padding: 0 2%;
}
.aboutus-video-content-text-box > p {
  font-size: 18px;
  line-height: 40px;
  height: 40px;
  overflow: hidden;
}
.aboutus-video-content-img-box {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.aboutus-video-content-img-box > img {
  width: 100%;
}
.aboutus-video-img-box > ul {
}
/* 关于我们结束 */
/* 九江博物馆开始 */
#museum-img-box .target-box {
  height: 0;
  padding-bottom: 88%;
  overflow: hidden;
}
#museum-img-box .ki-content-1 > img {
  width: 100%;
}
.museum-box-1 {
  padding: 8% 0;
}
.museum-text-box {
  width: 500px;
  min-width: 52%;
  margin: 0 auto;
}
.museum-text-tt {
  font-size: 48px;
  font-weight: bold;
}
.museum-text-p {
  font-size: 14px;
  line-height: 26px;
  margin: 20% 0;
}
.museum-text-more > a {
  width: 30%;
  text-align: center;
  border: 1px solid #000;
  padding: 10px;
  margin-right: 20px;
}
#museum-img-box {
  position: relative;
}
.museum-button {
  width: 20%;
  position: absolute;
  font-size: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
}
.museum-button > div {
  display: inline-block;
  overflow: hidden;
  width: 49%;
  margin-right: 1%;
  background-color: #333;
  position: relative;
  height: 0;
  padding-bottom: 38%;
}
.museum-button > div > img {
  position: absolute;
  width: 25%;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.museum-button > .prev {
  transform: rotate(180deg);
}
.museum-box-3 > .museum-box-3-img-box > img {
  width: 100%;
}
.museum-box-3-form-box {
  padding: 0 0 0 5%;
}

.museum-form-box {
  max-width: 500px;
  width: 100%;
}
.museum-tt {
  font-size: 24px;
  font-weight: bold;
}
.museum-explain {
  font-size: 18px;
  font-weight: bold;
  margin: 4% 0;
}
.museum-line {
  border: 1px solid #333;
  margin: 4% 0;
}
.museum-form-content {
  line-height: 40px;
  margin: 4% 0;
}
.museum-form-content > label {
  display: inline-block;
  width: 25%;
  font-size: 14px;
}
.en .museum-form-content > label {
  width: 40%;
}
.museum-form-content > .museum-input-all {
  display: inline-block;
  box-sizing: border-box;
  width: 74%;
  height: 40px;
  border-radius: 0;
  border: 1px solid #999;
  padding-left: 10px;
  color: #999;
}
.en .museum-form-content > .museum-input-all {
  width: 59%;
}
.museum-form-content > input::-webkit-input-placeholder {
  color: #ddd;
}
.museum-form-text {
  font-size: 12px;
  color: #666;
}
.museum-form-btn-box {
  text-align: center;
}
.museum-form-btn-box > [type] {
  display: inline-block;
  margin: 10px;
  padding: 10px;
  width: 40%;
  text-align: center;
  border: 1px solid #999;
  border-radius: 5px;
  color: #fff;
}
.museum-form-btn-b {
  background: #333;
}
.museum-form-btn-a {
  background: #999;
}

/* 九江博物馆结束 */

/* 在线业务开始 */
.business-banner-box {
  background-color: rgb(246, 246, 246);
}
.business-banner-text-box {
  padding: 10% 0 0 10%;
}
.business-banner-text-tt {
  font-size: 48px;
  font-weight: bold;
  line-height: 72px;
}
.business-banner-text-one {
  margin-top: 20%;
  font-size: 18px;
  line-height: 30px;
}
.business-banner-text-two {
  font-size: 18px;
  line-height: 30px;
}
.business-banner-img-box {
  position: relative;
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
  background-color: #fff;
}
.business-banner-img-box > img {
  position: absolute;
  z-index: 1;
  width: 70%;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.business-content-1 {
  width: 100%;
  height: 0;
  padding-bottom: 44.5%;
  position: relative;
  overflow: hidden;
}
.business-content-img {
  position: absolute;
  z-index: 1;
}
.business-content-box {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  height: 0;
  padding: 8% 8% 44.5% 8%;
}

.business-content-img > img {
  width: 100%;
}
.business-form-box {
  float: right;
}

.business-form-content,
.business-form-label,
.business-form-text {
  margin: 0 0 2%;
}
.business-form-content > label {
  display: inline-block;
  min-width: 20%;
  font-size: 16px;
}
.business-form-label > label {
  display: inline-block;
  width: 100%;
  font-size: 16px;
}

.business-form-content > .business-input-all {
  display: inline-block;
  box-sizing: border-box;
  width: 74%;
  height: 50px;
  border-radius: 0;
  border: 1px solid #999;
  padding-left: 10px;
  color: #999;
}
.business-form-text > .business-input-all {
  display: inline-block;
  box-sizing: border-box;
  width: 95%;
  height: 120px;
  border-radius: 0;
  border: 1px solid #999;
  padding-left: 10px;
  padding-top: 10px;
  color: #999;
  resize: none;
}
.business-form-content > [type],
.business-form-text > [type] {
  background-color: rgba(0, 0, 0, 0);
}
.business-form-content > input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.business-content-tt {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 45%;
}
.business-content-p {
  font-size: 16px;
}
.business-form-btn-box {
  text-align: center;
}
.business-form-btn-box > [type] {
  display: inline-block;
  margin: 10px;
  padding: 10px;
  width: 40%;
  text-align: center;
  border: 1px solid #999;
  border-radius: 5px;
  color: #fff;
}
.business-form-btn-b {
  background: #333;
}
.business-form-btn-a {
  background: #999;
}
.business-content-2 {
  margin: 10% 0;
}
.business-box-2 > p {
  text-align: center;
}
.business-box-2-tt {
  font-size: 48px;
  font-weight: bold;
}
.business-box-2-a a {
  font-size: 26px;
  font-weight: bold;
  margin: 2% 0;
  cursor: pointer;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
}
.business-box-2-a a:hover {
  color: #b40000;
}
.business-box-2-p {
  font-size: 16px;
}
/* 在线业务结束 */











.search-box{
  height: 60px;
  line-height: 60px;
  padding: 0 2%;
  box-sizing: border-box;
  background: #fff;
  border: none;
  float: left;
  font-size: 15px;
  color: #666;
  margin-bottom: 10px;
  margin-right: 1%;
  border: #ddd solid 1px;
}
.search-box:last-child{
  margin-right:0
}
.sel-box{
  width: 20%;
  display: block;
}
.sel-tex{
  width: 49%;
  display: block;
}
.sel-tex::placeholder{
  color: #ccc;
}
.sel-sub{
  display: block;
  background: #c49b5e;
  color: #fff;
  width: 8%;
  margin-right: 0;
}
.recruit-tt{
  height: 60px;
  line-height: 60px;
  color: #fff;
  background: #777777;
  font-size: 16px;
}
.recruit-henlan{
  position: relative;
}
.recruit-henlan span{
  display: inline-block;
  line-height: 60px;
  font-size: 14px;
  cursor: pointer;
  width: 24%;
  padding-left: 5px;
  box-sizing: border-box;
  overflow: hidden;/*超出部分隐藏*/
  white-space: nowrap;/*不换行*/
  text-overflow:ellipsis;/*超出部分文字以...显示*/
}
.recruit-list .recruit-henlan::after{
  content: "";
  position: absolute;
  top:40%;
  right: 10px;
  width: 10px;
  height: 10px;
  border-bottom: solid 2px #999;
  border-right: solid 2px #999;
  transform: rotate(45deg) translateY(-50%);
}
.recruit-list .recruit-henlan:hover:after,
.hover .recruit-henlan:after{
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
}
.recruit-list .recruit-henlan:hover,
.hover .recruit-henlan{
  background: #c49b5e;
  color: #fff;
}
.recruit-tt .recruit-henlan span{
  cursor:auto
}
.recruit-list div{
  border-bottom: 1px solid #f2f2f2;
}
.recruit-main{
  display: none;
  box-sizing: border-box;
  padding: 20px;
  background: #f2f2f2;
}
.hover .recruit-main{
  display: block;
}































body{
  background: #fff!important;
}
.gallery_desc{
  width: 100%!important;
  margin: 10px 0 0!important;
}
.gallery_desc p.information{
  text-indent:0!important;
  width: 90%!important;
  margin: 0 auto!important;
  float: none!important;
}

.gallery_desc p.opt{
  display: none!important;
}
.content_area{
  display: block!important;
  width: 90%!important;
  margin: 0 auto!important;
  float:none!important;
}
#play_area_content .content_area p{
  display: block!important;
  width: 100%!important;
}
#play_area_content .content_area p img{
  width: 100%!important;
}
.gallery_body p.last_btn{
  left: 0!important;
}
.gallery_body p.next_btn{
  right: 0!important;
}
.lastpage{
  width: 90%!important;
  padding: 50px 0 0!important;
  margin: 0 auto!important;
}
.content{
  width: 100%!important;
  padding: 5% 0!important;
}
.gallery_toolbar{
  width: 60%!important;
  float: none!important;
  margin: 0 auto!important;
}
.complex{
  display:none!important;
}
.toolbar{
  width: 100%!important;
  float: none!important;
  margin: 0 auto!important;
  display: block!important;
}
.hScrollPane_dragbar,.hScrollPane_draghandle{
  border-radius: 10px;
}
.img_list{
  margin-top: 10px;
}





.business-content-box .ki-content-2{
  margin-bottom:5%;
}
.business-box-2-a a{
  margin:0 0 2%;
  font-size: 48px;
  color: #fff;
  border-bottom: 2px solid #fff;
}
.business-box-2-tt{
  text-align: center;
}
.business-content-tt{
  margin-bottom: 0;
}
.business-content-box{
  position: relative;
  z-index: 1;
  color: #fff;
  height: auto;
  padding: 8% 8% 0 8%;
  background:url(../image/business-from-bg.jpg) no-repeat;
  background-size: 100% 100%;
}
.business-content-box::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.business-box-2-p{
  text-align: center;
}
.business-box-2-p>*{
  vertical-align: top;
}
.business-qrcode{
  display: inline-block;
  width: 175px;
  margin-top: 25px;
}
.business-qrcode a{
  line-height: 2.8;
}
.business-qrcode:first-child{
  margin-right: 50px;
}
.qrcode-img{
  width: 100%;
}
.qrcode-img img{
  width: 100%;
}







.product-list-box-img:hover img,
.product-series-img-box:hover img{
  margin: -10%;
  width: 120%;
  height: 120%;
}