#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}

#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}

#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}

#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  font-weight: 400;
  color: #000;
  padding: 10px 0;
}

#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}

#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}

/* 手机端侧边栏 */
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 60px;
  line-height: 40px;
  padding: 10px 0;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 10px;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  line-height: 36px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 18px;
  color: inherit;
  text-transform: uppercase;
  line-height: 32px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 16px;
  line-height: 30px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
  line-height: 2;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active:before {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* table */
table {
    margin-bottom: 20px;
    word-break: break-word;
    width: 100% !important;
    height: auto !important;
    display: block;
    overflow: auto;
  }

  table tbody {
    display: table;
    width: 100% !important;
    min-width: 700px;
  }

  table td,
  table th {
    padding: 5px 10px;
    border: 1px solid #666;
    width: auto !important;
    height: auto !important;
  }

  table tr {
    width: auto !important;
    height: auto !important;
  }

  table tr:nth-child(even) {
    background: #eee;
  }

  /* 缩放动画 */
  @-webkit-keyframes ks {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    70% {
        -webkit-transform: scale(1.8);
        -moz-transform: scale(1.8);
        -ms-transform: scale(1.8);
        transform: scale(1.8);
        opacity: .3;
    }
    to {
        -webkit-transform: scale(1.8);
        -moz-transform: scale(1.8);
        -ms-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
  }
  @-moz-keyframes ks {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    70% {
        -webkit-transform: scale(1.8);
        -moz-transform: scale(1.8);
        -ms-transform: scale(1.8);
        transform: scale(1.8);
        opacity: .3;
    }
    to {
        -webkit-transform: scale(1.8);
        -moz-transform: scale(1.8);
        -ms-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
  }
  @keyframes ks {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    70% {
        -webkit-transform: scale(1.8);
        -moz-transform: scale(1.8);
        -ms-transform: scale(1.8);
        transform: scale(1.8);
        opacity: .3;
    }
    to {
        -webkit-transform: scale(1.8);
        -moz-transform: scale(1.8);
        -ms-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
  }

  /* 旋转动画 */
  @-webkit-keyframes xz {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    50% {
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-moz-keyframes xz {
    0% {
      -moz-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    50% {
      -moz-transform: rotate(180deg);
      transform: rotate(180deg);
    }
    100% {
      -moz-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes xz {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    50% {
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      transform: rotate(180deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  /* 滚动动画 */
  @-webkit-keyframes pscrolling-text {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  @-moz-keyframes pscrolling-text {
    0% {
      -moz-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -moz-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  @-o-keyframes pscrolling-text {
    0% {
      -o-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -o-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  @keyframes pscrolling-text {
    0% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -o-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }

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

  /* #banner .slick-arrow {
    position: absolute;
    top: 45%;
    width: 46px;
	  height: 46px;
	  border-radius: 50%;
    color: transparent;
    border: none;
    z-index: 1;
    outline: none;
    transition: .5s;
    background-color: rgba(255,255,255,0.21);
  }
  #banner .slick-prev{
    left: 27px;
  }
  #banner .slick-prev::after{
    content: '';
    position: absolute;
    width: 18px;
	  height: 15px;
    top: 17px;
    left: 14px;
    background: url(../images/b-prev.png) no-repeat;
    opacity: 0.42;
  }
  #banner .slick-arrow:hover{
    background: rgba(255,255,255,0.3);
  }
  #banner .slick-prev:hover::after{
    opacity: 1;
  }
  #banner .slick-next {
    right: 25px;
  }
  #banner .slick-next::after{
    content: '';
    position: absolute;
    width: 18px;
	  height: 15px;
    top: 17px;
    left: 14px;
    background: url(../images/b-next.png) no-repeat;
    opacity: 0.42;
  }
  #banner .slick-next:hover::after{
    opacity: 1;
  } */
  #banner ul.slick-dots {
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 100%;
    text-align: center;
  }
  #banner ul.slick-dots li {
    display: inline-block;
    padding: 0;
    width: 34px;
	  height: 6px;
    border-radius: 3px;
	  background-color: #fff;
    margin-right: 15px;
    transition: .5s;
    cursor: pointer;
    position: relative;
  }
  #banner ul.slick-dots li:last-child {
    margin-right: 0;
  }
  #banner ul.slick-dots li button {
    display: none;
  }
  #banner ul.slick-dots li.slick-active{
    background: var(--color);
  }
  #banner .slick-slide .content {
    display: none;
  }

  .fixed-toolbar {
    right: 20px;
    position: fixed;
    bottom: 20%;
    z-index: 100;
  }
  .fixed-toolbar ul li {
    display: block;
    margin-top: 12px;
    width: 40px;
    height: 40px;
    background-color: var(--color);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    color: #fff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 20px;
    cursor: pointer;
    position: relative;
  }
  .fixed-toolbar ul li.code{
    line-height: 55px;
  }
  .fixed-toolbar ul li img {
    display: inline-block;
    vertical-align: middle;
  }
  .fixed-toolbar ul li:first-child {
    margin-top: 0;
  }
  .fixed-toolbar ul li:hover {
    background: #000;
  }
  .fixed-toolbar ul li:hover #ewm {
    left: -116px;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }
  .fixed-toolbar ul li #ewm {
    width: 100px;
    border: 3px solid #fff;
    position: absolute;
    left: 100%;
    top: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
  }
  #Pop_UpsBtn {
    display: none !important;
  }

  .seoPublic .title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1em;
}
.seoPublic > div {
    padding: 60px 0;
}
/*.seoPublic > div:nth-child(odd) {
    background: #fafafa;
}*/
.seoPublic .Auxil-about .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.seoPublic .Auxil-about .box .left {
    width: 40%;
}
.seoPublic .Auxil-about .box .left .img {
    height: 100%;
    background-size: cover;
    background-position: center center;
    display: block;
}
.seoPublic .Auxil-about .box .right {
    width: 60%;
    padding-left: 5%;
    padding-top: 20px;
    padding-bottom: 20px;
}
.seoPublic .Auxil-about .box .right h3 {
    font-size: 24px;
    font-weight: normal;
    line-height: 1.6;
    margin-bottom: 1em;
}
.seoPublic .Auxil-about .box .right .text {
    font-size: 16px;
    line-height: 30px;
    color: #666;
}
.seoPublic .Auxil-honor .list ul {
    margin: -10px;
}
.seoPublic .Auxil-honor .list ul li {
    padding: 10px;
}
.seoPublic .Auxil-honor .list ul li a {
    display: block;
}
.seoPublic .Auxil-honor .list ul li a img {
    width: 100%;
}
.seoPublic .Auxil-news .list ul {
    margin: -13px;
}
.seoPublic .Auxil-news .list ul li {
    padding: 13px;
}
.seoPublic .Auxil-news .list ul li a.img-box {
    display: block;
    height: 240px;
    background-size: cover;
    background-position: center center;
}
.seoPublic .Auxil-news .list ul li .content {
    margin-top: 30px;
}
.seoPublic .Auxil-news .list ul li .content h6 {
    font-size: 22px;
    line-height: 1.6;
    min-height: 70px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.seoPublic .Auxil-news .list ul li .content h6:hover {
    color: var(--color);
}
.seoPublic .Auxil-news .list ul li .content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
    margin: 1em 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 4.2em;
}
.seoPublic .Auxil-news .list ul li .content a.link {
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 30px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    border-bottom: 1px solid transparent;
    display: inline-block;
}
.seoPublic .Auxil-news .list ul li .content a.link:hover {
    border-color: var(--color);
    color: var(--color);
}
.seoPublic .Auxil-form .form ul {
    margin: -10px;
}
.seoPublic .Auxil-form .form ul li {
    padding: 10px;
}
.seoPublic .Auxil-form .form ul li input,
.seoPublic .Auxil-form .form ul li textarea {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    font-size: 16px;
    padding: 8px 15px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.seoPublic .Auxil-form .form ul li input:focus,
.seoPublic .Auxil-form .form ul li textarea:focus {
    border-color: var(--color);
}
.seoPublic .Auxil-form .form ul li.wid-100 {
    width: 100%;
}
.seoPublic .Auxil-form .form ul li input[type="submit"] {
    width: auto;
    display: inline-block;
    padding-left: 25px;
    padding-right: 25px;
    background: var(--color);
    color: whitesmoke;
    border: none;
}
.seoPublic .Auxil-form .form ul li input[type="submit"]:hover {
    background: #222;
}
.seoPublic .seoIndustry .text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}
.seoPublic .text a {
    color: var(--color);
}
.seoPublic .text a:hover {
    text-decoration: underline;
}
.seoPublic .Auxil-through {
    padding: 15px 0;
    background: none !important;
}
.seoPublic .Auxil-through a {
    display: block;
    line-height: 40px;
    height: 40px;
    padding: 0 25px;
    font-size: 14px;
    color: black;
    border: 1px solid #eee;
    background: #f8f8f8;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.seoPublic .Auxil-through a:hover {
    background: var(--color);
    color: white;
}
.seoPublic .Auxil-related .list ul {
    margin: -20px -25px;
}
.seoPublic .Auxil-related .list ul li {
    padding: 20px 25px;
}
.seoPublic .Auxil-related .list ul li .box {
    display: block;
    background: white;
    -o-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
    -webkit-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
    box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
}
.seoPublic .Auxil-related .list ul li .box a.img-box {
    display: block;
}
.seoPublic .Auxil-related .list ul li .box .content {
    display: block;
    padding: 20px;
    text-align: center;
}
.seoPublic .Auxil-related .list ul li .box .content h3 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 22px;
    color: #111;
    font-weight: 500;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.seoPublic .Auxil-related .list ul li .box .content h3:hover {
    color: var(--color);
}
.seoPublic .Auxil-related .list ul li .box .content p {
    display: block;
    font-size: 16px;
    color: #888;
    line-height: 1.6;
    font-weight: 400;
    margin: .5em 0;
    height: 4.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.seoPublic .Auxil-related .list ul li .box .content a.more {
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    border: 1px solid var(--color);
    font-size: 16px;
    font-weight: 700;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    color: var(--color);
}
.seoPublic .Auxil-related .list ul li .box .content a.more i {
    margin-left: 5px;
}
.seoPublic .Auxil-related .list ul li .box .content a.more:hover {
    color: white;
    background: var(--color);
}
@media screen and (max-width: 1400px) {
    .seoPublic .title {
        font-size: 28px;
        margin-bottom: 1.5em;
    }
    .seoPublic .Auxil-about .box .right h3,
    .seoPublic .Auxil-related .list ul li .box .content h3 {
        font-size: 20px;
    }
    .seoPublic .Auxil-form .form ul li input,
    .seoPublic .Auxil-form .form ul li textarea,
    .seoPublic .Auxil-about .box .right .text,
    .seoPublic .Auxil-news .list ul li .content p,
    .seoPublic .seoIndustry .text,
    .seoPublic .Auxil-related .list ul li .box .content p {
        font-size: 14px;
        line-height: 28px;
    }
    .seoPublic .Auxil-news .list ul li .content h6 {
        font-size: 18px;
        line-height: 32px;
    }
    .seoPublic .Auxil-related .list ul li .box .content a.more {
        font-size: 14px;
        line-height: 34px;
        height: 34px;
        padding: 0 15px;
    }
    .seoPublic .Auxil-related .list ul li {
        padding: 15px;
    }
    .seoPublic .Auxil-related .list ul {
        margin: -15px;
    }
}
@media screen and (max-width: 1000px) {
    .seoPublic .title {
        font-size: 24px;
        margin-bottom: 1em;
    }
    #cp-Nav {
        display: block;
    }
    #cp-Nav .nav {
        padding: 0 15px;
    }
    #cp-Nav .nav .title {
        font-size: 18px;
        font-weight: bold;
        padding: 8px 10px;
        background: var(--color);
        border-radius: 5px;
        color: white;
    }
    #cp-Nav .nav i.mask {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 230;
        background: rgba(0, 0, 0, 0.2);
    }
    #cp-Nav .nav > ul {
        display: none;
    }
    #cp-Nav .nav ul {
        position: fixed;
        top: 10%;
        max-height: 80%;
        left: 5%;
        width: 90%;
        padding: 20px;
        border-radius: 5px;
        background: white;
        z-index: 300;
        font-size: 16px;
        overflow: auto;
    }
    #cp-Nav .nav ul ul {
        padding: 0 10px;
        font-size: 14px;
        position: static;
        max-height: none;
        width: 100%;
        margin: 10px 0;
    }
    #cp-Nav .nav ul li a {
        display: block;
        padding: 5px 0;
        line-height: 28px;
    }
}
@media screen and (max-width: 700px) {
    .seoPublic .Auxil-about .box{
        display: block;
    }
    .seoPublic .Auxil-about .box .left{
        display: none;
    }
    .seoPublic .Auxil-about .box .right{
        width: 100%;
        padding: 0;
    }
    .seoPublic > div{
        padding: 30px 0;
    }
    .Auxil-industry{
        display: none;
    }
}


#pups_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}

#pups_from {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 22;
  background: white;
  padding: 30px;
  overflow: auto;
}

#pups_from h4 {
  font-size: 18px;
  color: #222;
  text-transform: capitalize;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 15px 20px;
  background: #f5f5f5;
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#pups_from form {
  margin-top: 40px;
}

#pups_from i.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

#pups_from i.close::after,
#pups_from i.close::before {
  content: '';
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#pups_from i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#pups_from i.close:hover {
  background: var(--color);
}

#pups_from i.close:hover::before,
#pups_from i.close:hover::after {
  background: white;
}

#pups_from ul li {
  margin-bottom: 10px;
  position: relative;
}

#pups_from ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

#pups_from ul li label em {
  color: red;
  margin-right: 2px;
}

#pups_from ul li input,
#pups_from ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
}

#pups_from ul li input:focus,
#pups_from ul li textarea:focus {
  border-color: var(--color);
}

#pups_from ul li textarea {
  height: 80px;
}

#pups_from ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: var(--color);
  color: white;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

#pups_from ul li input[type="submit"]:hover {
  opacity: 0.7;
}

#pups_from ul li:last-child {
  margin-bottom: 0;
}

/* 栅格 */

.grid-box {
  font-size: 0;
  letter-spacing: -4px;
  font-size: 12px;
  
}

.grid-box .column {
  display: inline-block;
  font-size: 12px;
  vertical-align: top;

  letter-spacing: 0;
  
}

.grid-box .column {
  width: 100%;
}

.grid-box.two>.column {
  width: 50%;
}

.grid-box.three>.column {
  width: 33.33333%;
}

.grid-box.four>.column {
  width: 25%;
}

.grid-box.five>.column {
  width: 20%;
}

.grid-box.six>.column {
  width: 16.6666667%;
}

.grid-box.seven>.column {
  width: 14.285714%;
}

.grid-box.eight>.column {
  width: 12.5%;
}

.grid-box.nine>.column {
  width: 11.11111111%;
}

.grid-box.ten>.column {
  width: 10%;
}

@media screen and (max-width: 1000px) {
  .grid-box.two>.column {
      width: 50%;
  }
  .grid-box.three>.column {
      width: 33.33333%;
  }
  .grid-box.four>.column {
      width: 33.33333%;
  }
  .grid-box.five>.column {
      width: 33.33333%;
  }
}

@media screen and (max-width: 700px) {
  .grid-box.two>.column {
      width: 50%;
  }
  .grid-box.three>.column {
      width: 50%;
  }
  .grid-box.four>.column {
      width: 50%;
  }
  .grid-box.five>.column {
      width: 50%;
  }
}

@media screen and (max-width: 500px) {
  .grid-box.two>.column {
      width: 100%;
  }
  .grid-box.three>.column {
      width: 100%;
  }
  .grid-box.four>.column {
      width: 100%;
  }
  .grid-box.five>.column {
      width: 100%;
  }
}