/* 整体样式 */
html,
body {
  width: 100%;
  height: auto;
  font-size: 16px;
  color: #000000;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  -webkit-tap-highlight-color: transparent; /*把高亮颜色设置为透明，也可以使用rgba的形式*/
}

@media (max-width: 1000px) {
  html,
  body {
    font-size: 13px;
  }
}

/* 样式重置 */
* {
  margin: 0;
  padding: 0;
}
ul,
ol,
span,
p,
a {
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  list-style-type: none;
}
a,
a:focus,
a:hover {
  color: #000000;
  text-decoration: none;
}
i,
s,
em {
  font-style: normal;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
img {
  vertical-align: middle;
}
input,
textarea,
select {
  border: 0;
  outline: 0;
  background-color: transparent;
  resize: none;
}

/* 屏幕划分尺寸 */
@media (max-width: 1400px) {
}

@media (max-width: 1200px) {
}

@media (max-width: 1000px) {
}

/* 内宽--1400px */
.inside {
  max-width: 1400px;
  width: 95%;
  height: auto;
  margin: 0 auto;
  clear: both;
}

.inside-right {
  max-width: 1660px;
  width: 95%;
  height: auto;
  margin: 0 auto;
  clear: both;
}

@media (max-width: 1000px) {
  .inside-right {
    float: none;
    margin: 0 auto;
  }
}

.img img,
.pic img,
.icon img {
  width: 100%;
  height: 100%;
}

.rox-db {
  display: flex;
  justify-content: space-between;
}

.rox-db-cn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dis-bom {
  margin-bottom: 140px;
}

.dis-top {
  margin-top: 50px;
}

.dis-top-sm {
  margin-top: 30px;
}

.dis-top-lg {
  margin-top: 90px;
}

.dis-top-inx {
  margin-top: 120px;
}

@media (max-width: 1400px) {
  .dis-top-inx {
    margin-top: 90px;
  }
}

@media (max-width: 1200px) {
  .dis-bom {
    margin-bottom: 120px;
  }
  .dis-top-lg {
    margin-top: 60px;
  }
}

@media (max-width: 1000px) {
  .dis-top-inx {
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .rox-db {
    flex-direction: column;
    align-items: center;
  }
  .rox-db-cn {
    flex-direction: column;
  }
  .dis-bom {
    margin-bottom: 70px;
  }
  .dis-top {
    margin-top: 30px;
  }
  .dis-top-lg {
    margin-top: 30px;
  }
  .dis-top-sm {
    margin-top: 20px;
  }
}

/* 1.页头 */
header {
  width: 100%;
  height: 150px;
  overflow: hidden;
  background-color: #ffffff;
  z-index: 300;
  /* 阴影 */
  /* box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08); */
}

.header-shadow {
  position: fixed;
  top: 0;
  left: 0;
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
}

header .halo {
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #f7f7f7;
}

header .inside {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .lf,
header .rg {
  display: flex;
  align-items: center;
}

header .lf p {
  font-size: 20px;
  font-weight: bold;
  margin-left: 30px;
  margin-top: 7px;
}

header .rg p {
  font-weight: bold;
  margin-right: 60px;
  margin-top: 7px;
}

header .rg p i:first-child {
  margin-right: 30px;
}

header .logo {
  display: block;
  width: 177px;
}

header .logo img {
  width: 100%;
  height: auto;
}

header .tel {
  color: #2b2b2b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .tel img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

header .tel span:last-child {
  margin-left: 10px;
}

header .tel i,
header .tel s {
  display: block;
}

header .tel i {
  font-size: 15px;
}

header .tel s {
  font-family: "Bahnschrift";
  font-size: 20px;
}

nav {
  height: 70px;
}

nav .logo {
  display: none;
}

nav .gatopen {
  display: none;
  width: 27px;
  height: 27px;
  cursor: pointer;
}

nav .gatopen img {
  width: 100%;
  height: 100%;
}

nav .gation {
  width: 100%;
  height: 100%;
  line-height: 70px;
  display: flex;
  justify-content: space-between;
}

nav .gation li a {
  color: #333;
  font-size: 18px;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

nav .gation li.active a,
nav .gation li:hover a {
  color: #2b2b2b;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1400px) {
  header {
    height: 120px;
  }
  header .halo,
  nav {
    height: 60px;
  }
  nav .gation {
    line-height: 60px;
  }
  header .lf p {
    font-size: 16px;
    margin-left: 15px;
    margin-top: 11px;
  }
  header .rg p {
    margin-right: 15px;
    margin-top: 11px;
  }
  header .rg p i:first-child {
    margin-right: 15px;
  }
  header .logo {
    width: 140px;
  }
  header .tel img {
    width: 28px;
    height: 28px;
  }
  header .tel s {
    font-size: 17px;
  }
  nav .gation li a {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  header .lf p,
  header .rg p {
    display: none;
  }
}

@media (max-width: 1000px) {
  header {
    height: 70px;
  }
  header .halo {
    height: 30px;
  }
  nav {
    height: 40px;
  }
  nav .logo {
    display: block;
  }
  nav .gatopen {
    display: block;
  }
  header .logo {
    width: 90px;
  }
  header .halo .logo {
    display: none;
  }
  header .halo .inside {
    justify-content: center;
  }
  header .tel i,
  header .tel s {
    display: inline-block;
  }
  header .tel img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    margin-bottom: 2px;
  }
  header .tel i {
    font-size: 15px;
    margin-right: 3px;
  }
  header .tel s {
    font-size: 15px;
  }
  header .gation {
    width: 100%;
    height: auto;
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 300;
    background-color: #ffffff;
    border-top: 1px solid #000000;
    /* 阴影 */
    box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
    display: none;
    padding: 15px 3% 20px;
    line-height: 43px;
  }
  nav .gation li {
    display: inline-block;
    width: 49%;
    text-align: center;
  }
  nav .gation li a {
    font-size: 15px;
  }
}

/* 2.轮播图 */
.index-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.index-swiper .swiper-slide {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.index-swiper .img {
  width: 100%;
  height: 100%;
}

.index-swiper .cons {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  /* background-color: rgba(0, 0, 0, 0.3); */
  color: #ffffff;
}

.index-swiper .inside {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.index-swiper .cons p {
  font-size: 60px;
  line-height: 70px;
  font-weight: bold;
}

.index-swiper .cons span {
  margin-top: 10px;
  font-size: 24px;
}

/* 分页器按钮样式修改 */
.index-swiper .swiper-pagination {
  width: 100%;
  bottom: 110px;
  text-align: center;
}
.index-swiper .swiper-pagination-bullet,
.index-swiper .swiper-pagination-bullet-active {
  width: 40px;
  height: 8px;
  border-radius: 10px;
  background-color: #ffffff;
  opacity: 0.2;
}
.index-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}
.index-swiper > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 15px;
}

@media (max-width: 1700px) {
  .index-swiper .cons p {
    font-size: 50px;
  }
}

@media (max-width: 1400px) {
  .index-swiper .cons p {
    font-size: 40px;
    line-height: 50px;
  }
  .index-swiper .cons span {
    margin-top: 10px;
    font-size: 20px;
  }
  .index-swiper .swiper-pagination {
    bottom: 10px !important;
  }
  .index-swiper .swiper-pagination-bullet,
  .index-swiper .swiper-pagination-bullet-active {
    height: 4px;
  }
}

@media (max-width: 1200px) {
  .index-swiper .cons p {
    font-size: 30px;
    line-height: 40px;
  }
  .index-swiper .cons span {
    margin-top: 10px;
    font-size: 17px;
  }
}

@media (max-width: 1000px) {
  .index-swiper {
    height: 400px;
  }
  .index-swiper .cons p {
    font-size: 24px;
    line-height: 38px;
  }
  .index-swiper .cons span {
    margin-top: 5px;
    font-size: 16px;
  }
  .index-swiper .swiper-pagination-bullet,
  .index-swiper .swiper-pagination-bullet-active {
    width: 20px;
    height: 2px;
  }
  .index-swiper > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}

@media (max-width: 768px) {
  .index-swiper {
    height: 300px;
  }
  .index-swiper .cons p {
    font-size: 20px;
  }
  .index-swiper .cons span {
    font-size: 12px;
  }
}

@media (max-width: 580px) {
  .index-swiper {
    height: 230px;
  }
}

/* 3.顶部图 */
.banner {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.banner img {
  width: 100%;
  height: auto;
}

.banner .sub {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  /* background-color: rgba(0, 0, 0, 0.1); */
  color: #ffffff;
}

.banner .sub .inside {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner .sub p {
  font-size: 60px;
  line-height: 70px;
  font-weight: bold;
}

.banner .sub span {
  margin-top: 10px;
  font-size: 24px;
}

.banner .sub em {
  font-family: "Constantia";
  text-transform: uppercase;
  font-size: 40px;
}

@media (max-width: 1700px) {
  .banner .sub p {
    font-size: 50px;
  }
}

@media (max-width: 1400px) {
  .banner .sub p {
    font-size: 40px;
    line-height: 50px;
  }
  .banner .sub span {
    margin-top: 10px;
    font-size: 20px;
  }
  .banner .sub em {
    font-size: 30px;
  }
}

@media (max-width: 1200px) {
  .banner .sub p {
    font-size: 30px;
    line-height: 40px;
  }
  .banner .sub span {
    margin-top: 10px;
    font-size: 17px;
  }
}

@media (max-width: 1000px) {
  .banner .sub p {
    font-size: 24px;
    line-height: 38px;
  }
  .banner .sub span {
    margin-top: 5px;
    font-size: 16px;
  }
  .banner .sub em {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .banner img {
    height: 220px;
  }
  .banner .sub p {
    font-size: 20px;
  }
  .banner .sub span {
    font-size: 12px;
  }
  .banner .sub em {
    font-size: 17px;
  }
}

@media (max-width: 580px) {
  .banner img {
    height: 170px;
  }
}

/* 4.页脚 */
footer {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background-color: #1c2028;
  color: #ffffff;
}

footer .above {
  padding: 60px 0;
}

footer .top,
footer .bom {
  display: flex;
  justify-content: space-between;
}

footer .logo {
  width: 259px;
  height: auto;
  cursor: pointer;
}

footer .logo img {
  width: 100%;
}

footer .bom {
  margin-top: -60px;
}

footer .info li:not(:first-child) {
  margin-top: 13px;
}

footer .info li span {
  font-size: 14px;
}

footer .info li img {
  margin-right: 10px;
  width: 26px;
  height: 26px;
}

footer .link {
  display: flex;
}

footer .link li:not(:last-child) {
  margin-right: 37px;
}

footer .link a {
  display: block;
  color: #707070;
  font-size: 14px;
  line-height: 36px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

footer .link a:first-child {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffffff;
}

footer .link a:hover {
  color: #ffffff;
}

footer .code {
  margin-top: 90px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

footer .code h3 {
  font-size: 16px;
  color: #707070;
}

footer .code ul {
  display: flex;
  margin-left: 30px;
}

footer .code ul li:not(:last-child) {
  margin-right: 32px;
}

footer .code ul li {
  position: relative;
}

footer .code ul li .qr {
  width: 86px;
  height: 96px;
  display: none;
  position: absolute;
  top: -96px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

footer .code ul li .icon {
  width: 37px;
  height: 37px;
  cursor: pointer;
}

footer .code ul li:first-child .icon {
  width: 19px;
  height: 24px;
}

footer .code ul li:hover .qr,
footer .code ul li.active .qr {
  display: block;
}

footer .copy {
  width: 100%;
  height: auto;
  padding: 10px 0;
  text-align: center;
  background-color: #101318;
}

footer .copy a {
  color: #88898c;
  font-size: 14px;
}

footer .copy a:not(:last-child) {
  margin-right: 55px;
}

@media (max-width: 1400px) {
  footer .top {
    flex-direction: column;
    align-items: center;
  }
  footer .logo {
    width: 230px;
    margin-bottom: 40px;
  }
  footer .link {
    width: 100%;
    justify-content: space-between;
  }
  footer .link li:not(:last-child) {
    margin-right: 0;
  }
}

@media (max-width: 1000px) {
  footer .above {
    padding: 40px 0;
  }
  footer .bom {
    margin-top: 0;
    flex-direction: column;
    align-items: center;
  }
  footer .link {
    display: none;
  }
  footer .logo {
    width: 160px;
  }
  footer .info li span {
    font-size: 13px;
  }
  footer .info li img {
    margin-right: 7px;
    width: 20px;
    height: 20px;
  }
  footer .code {
    margin-top: 100px;
  }
  footer .code h3 {
    font-size: 15px;
  }
  footer .code ul li .qr {
    width: 56px;
    height: 66px;
    top: -70px;
  }
  footer .code ul li .icon {
    width: 27px;
    height: 27px;
  }
  footer .code ul li:first-child .icon {
    width: 12px;
    height: 16px;
    margin-top: 4px;
  }
  footer .copy a {
    display: block;
    font-size: 12px;
    line-height: 27px;
  }
  footer .copy a:not(:last-child) {
    margin-right: 0;
  }
}

/* 5.位置 */
.crumbs {
  line-height: 40px;
  font-size: 18px;
  margin: 50px 0;
  font-weight: bold;
}

.crumbs img {
  width: 20px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 5px;
}

.crumbs a,
.crumbs i {
  color: #000000;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.crumbs i {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.crumbs span {
  color: #000000;
  cursor: pointer;
}

@media (max-width: 1400px) {
  .crumbs {
    font-size: 16px;
    line-height: 30px;
  }
  .crumbs img {
    margin-right: 7px;
    margin-bottom: 3px;
  }
  .crumbs i {
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 2px;
  }
}

@media (max-width: 1000px) {
  .crumbs {
    margin: 30px 0;
    font-size: 14px;
    line-height: 23px;
  }
  .crumbs img {
    width: 15px;
    margin-right: 3px;
  }
  .crumbs i {
    margin-left: 3px;
    margin-right: 3px;
  }
}

/* 6.侧栏 */
.grama {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.grama .grabar {
  width: 200px;
  height: auto;
}

.grama .gracons {
  width: calc(100% - 200px);
  padding-left: 40px;
}

.grama .grabar .graclose {
  width: 100%;
  height: 32px;
  line-height: 32px;
  text-align: right;
  color: #e93a26;
  font-size: 14px;
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 0 7px;
  display: none;
  cursor: pointer;
}

.grama .gracons .grapou {
  display: none;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding-bottom: 9px;
  border-bottom: 1px solid #000000;
  margin-bottom: 20px;
  line-height: 23px;
}

.grama .gracons .grapou span {
  font-size: 15px;
  font-weight: bold;
}

.grama .gracons .grapou img {
  float: right;
  width: 21px;
  height: 21px;
  cursor: pointer;
}

.grama .gracons .gramain {
  width: 100%;
  height: auto;
}

@media (max-width: 1400px) {
  .grama .gracons {
    padding-left: 20px;
  }
}

@media (max-width: 1000px) {
  .grama .grabar {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 680px;
    display: none;
    z-index: 300;
    background-color: #f7f7f7;
    box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
  }
  .grama .grabar .graclose {
    display: block;
  }
  .grama .gracons .grapou {
    display: block;
  }
  .grama .gracons {
    width: 100%;
    padding-left: 0;
  }
}

/* 左侧菜单 */
.gramenu {
  width: 100%;
  height: auto;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
}

.gramenu li {
  width: 100%;
}

.gramenu li a {
  display: block;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #e2e2e2;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #000000;
  text-align: center;
}

.gramenu li .first {
  color: #ffffff;
  background-color: #2b2b2b;
  width: 100%;
  font-size: 18px;
  padding-left: 30px;
  padding-right: 30px;
  overflow: hidden;
}

.gramenu li > .first span {
  float: left;
}

.gramenu li a img {
  float: right;
  width: 9px;
  margin-top: 7px;
  height: auto;
  vertical-align: middle;
  transition: transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -ms-transition: -ms-transform 0.3s;
}

.gramenu li a img.rowRota {
  transform-origin: center center;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transition: transform 0.5s;
  -moz-transition: -moz-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -ms-transition: -ms-transform 0.3s;
}

.gramenu1 li > .second a {
  color: #888888;
}

.gramenu2 li > .third {
  border-bottom: 1px solid #e2e2e2;
  padding-left: 50px;
  padding-top: 15px;
}

.gramenu2 li > .third a {
  color: #888888;
  border-bottom: 0;
  text-align: left;
  padding-top: 0;
  padding-left: 0;
}

.gramenu2 li > .third li.active a,
.gramenu2 li > .third li:hover a {
  font-weight: bold;
}

.gramenu li > .second li.active a,
.gramenu li > .second li:hover a {
  color: #2b2b2b;
}

.gramenu li > .second li.active .third a,
.gramenu li > .second li:hover .third a {
  color: #888888;
}

.gramenu1 li .second {
  display: none;
}

.gramenu1 li.active .second {
  display: block;
}

@media (max-width: 1000px) {
  .gramenu li a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .gramenu li .first {
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .gramenu {
    border-left: 0;
    border-right: 0;
    height: 45vh;
    overflow-x: hidden;
    overflow-y: scroll;
  }
}

/* 左侧联系 */
.relation {
  padding: 15px;
  text-align: center;
  background-color: #f5f5f5;
}

.relation img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  margin-bottom: 6px;
}

.relation span {
  font-size: 17px;
}

.relation em {
  font-family: "Bahnschrift";
  font-size: 20px;
  display: block;
  margin-top: 3px;
}

@media (max-width: 1000px) {
  .relation {
    display: none;
  }
}

/* agv导航 */
.agvtabs {
  text-align: center;
}

.agvtabs a {
  display: inline-block;
  width: 240px;
  height: 42px;
  line-height: 40px;
  border: 1px solid #e0e2e6;
  text-align: center;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.agvtabs a:not(:last-child) {
  margin-right: 40px;
}

.agvtabs a.active,
.agvtabs a:hover {
  color: #ffffff;
  background-color: #2b2b2b;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1400px) {
  .agvtabs a {
    width: 180px;
  }
  .agvtabs a:not(:last-child) {
    margin-right: 20px;
  }
}

@media (max-width: 1000px) {
  .agvtabs a {
    width: 110px;
    height: 36px;
    line-height: 34px;
    font-size: 12px;
  }
  .agvtabs a:not(:last-child) {
    margin-right: 3px;
  }
}

/* 标题 */
.st-title {
  text-align: center;
}

.st-title h3 {
  font-size: 36px;
  position: relative;
  padding-bottom: 20px;
  font-weight: bold;
}

.st-title h3::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #2b2b2b;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.st-title em {
  display: block;
  margin-top: 20px;
  color: #8d8d8d;
}

@media (max-width: 1400px) {
  .st-title h3 {
    font-size: 32px;
  }
  .st-title em {
    margin-top: 15px;
  }
}

@media (max-width: 1400px) {
  .st-title h3 {
    font-size: 25px;
    padding-bottom: 10px;
  }
  .st-title em {
    margin-top: 10px;
  }
}

.title {
  text-align: center;
  padding-bottom: 20px;
}

.title-lf {
  text-align: left;
}

.title h3 {
  font-size: 40px;
  font-weight: bold;
  position: relative;
}

.title p {
  font-size: 70px;
  line-height: 70px;
  margin-top: -80px;
  text-transform: uppercase;
  color: #f3f3f3;
}

.title em {
  display: block;
  font-size: 18px;
  line-height: 32px;
  margin-top: 30px;
  color: #8d8d8d;
}

.title-w h3,
.title-w p,
.title-w em {
  color: #ffffff;
}

.title-g p {
  color: #e9e9e9;
}

@media (max-width: 1400px) {
  .title {
    padding-bottom: 10px;
  }
  .title h3 {
    font-size: 33px;
  }
  .title p {
    font-size: 55px;
    line-height: 55px;
    margin-top: -60px;
  }
  .title em {
    font-size: 16px;
    margin-top: 15px;
  }
}

@media (max-width: 1000px) {
  .title h3 {
    font-size: 26px;
  }
  .title p {
    font-size: 43px;
    line-height: 43px;
    margin-top: -50px;
  }
  .title em {
    font-size: 14px;
    margin-top: 10px;
    margin-top: 5px;
  }
}
