.header {
  width: 100%;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 99;
}

.header .container {
  position: relative;
  padding-top: 20px;
}

.header .m-nav {
  display: none;
}

.header .menu {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  justify-content: space-between;
}

.header .menu li {
  flex: 1 1;
}

.header .menu li a {
  display: block;
  padding: 20px 10px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  color: #000000;
}

.header .menu li.menu-language {
  display: none;
}

.header .follow-bar {
  width: 25px;
  height: 2px;
  display: block;
  background-color: #333333;
  position: absolute;
  transition: all 0.2s ease-in-out;
  bottom: 0;
}

.header .language {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  border: none;
  background: none;
  padding: 10px 24px;
  outline: none;
  align-items: center;
  text-transform: uppercase;
  color: #000000;
  transition: none;
  cursor: pointer;
}

.header .language .iconfont {
  font-size: 18px;
  margin-right: 5px;
}

.header .language P {
  font-size: 12px;
  position: relative;
}

.header .language P::after {
  display: block;
  content: '';
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  left: 50%;
  opacity: 0;
  background: #000000;
  -webkit-transform: translateX(calc(-50%));
  transform: translateX(calc(-50%));
  transition: all 0.2s ease-in-out;
}

.header .language ul {
  position: absolute;
  background: #ffffff;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  width: 162px;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  -webkit-transition: all 250ms ease-out 0ms;
  transition: all 250ms ease-out 0ms;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 30;
  border-radius: 5px;
}

.header .language ul li {
  border-bottom: 1px solid #e8e8e8;
}

.header .language ul li a {
  padding: 12px 15px;
  text-align: left;
  font-size: 12px;
  display: block;
  color: #000000;
}

.header .language:hover p::after {
  opacity: 1;
  width: 100%;
}

.header .language:hover ul {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: initial;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .container {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1200px;
  }
}

main {
  min-height: 100vh;
  position: relative;
  margin-bottom: 0;
}

.banner-index {
  position: relative;
  display: flex;
  padding: 170px 0;
  overflow: hidden;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: calc(100vh - 53px);
  background: #000;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  box-sizing: border-box;
}

.banner-index .background {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.banner-index .background img {
  position: absolute;
  z-index: 10;
  left: 0;
  width: 100%;
  height: calc(100% + 100px);
  object-fit: cover;
  pointer-events: none;
  transform: translate3d(0px, -11px, 0px);
}

.banner-index .obs {
  position: relative;
  z-index: 20;
  width: 100%;
}

.banner-index .obs h1 {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 70px;
}

.banner-index button.btn-scroll {
  position: absolute;
  left: 50%;
  bottom: 120px;
  width: 48px;
  color: #ffffff;
  padding: 13px 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid #ffffff;
  background: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 20;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.banner-index button.btn-scroll span {
  display: block;
  font-size: 16px;
  line-height: 20px;
  -webkit-animation: bouncing 1s ease-in-out infinite;
  animation: bouncing 1s ease-in-out infinite;
}

.banner-index button.btn-scroll:hover {
  background-color: #ffffff;
  color: #000000;
}

.banner-index::before {
  display: block;
  content: '';
  position: absolute;
  z-index: 15;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease-in-out;
}

.banner-index:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.basic_page_title {
  height: calc(60vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.basic_page_title h1 {
  text-align: center;
  color: #000;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 66px;
}

.basic_page_content {
  margin-bottom: 100px;
  color: #000;
}

.basic_page_content p {
  max-width: 83.33333%;
  margin: 0 auto 20px;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 2px;
  text-align: center;
}

.infoContent {
  width: 100%;
  display: flex;
}

.infoContent .image,
.infoContent .info {
  width: 50%;
  overflow: hidden;
}

.infoContent .info {
  display: flex;
  min-height: 50vw;
  padding-top: 100px;
  padding-bottom: 100px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.infoContent .info .obs {
  max-width: 60%;
}

.infoContent .info .obs h2 {
  display: block;
  font-weight: 700;
  color: #000;
  font-size: 28px;
  letter-spacing: 2px;
}

.infoContent .info .obs .text {
  margin-top: 40px;
  font-weight: 400;
  color: #000;
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.infoContent .info .obs a.btn {
  position: relative;
  flex-wrap: wrap;
  display: inline-flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 1px 20px 0;
  font-size: 12px;
  line-height: 1.5em;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.16667em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  background: none;
  flex-direction: column;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: all 0.4s ease-in-out;
  color: #000000;
  margin-top: 40px;
}

.infoContent .info .obs a.btn::after {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  right: 1px;
  z-index: -1;
  border-radius: 4px;
  transition: all 0.4s ease-in;
  background-size: 400% 400%;
  background-position: 90% 90%;
  border: 1px solid #000000;
  background-image: linear-gradient(-45deg, transparent, transparent, #000000, #000000);
}

.infoContent .info .obs a.btn:hover {
  color: #ffffff;
}

.infoContent .info .obs a.btn:hover::after {
  border-color: #000000;
  background-position: -0.2rem -0.2rem;
}

.infoContent .image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.banner {
  width: 100%;
}

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

.editorial-content {
  color: #000;
  margin: 100px 0;
}

.editorial-content .obs {
  margin: 0 auto;
  width: 83.3333%;
}

.editorial-content .obs h2 {
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 20px;
  color: #000000;
  text-align: center;
  letter-spacing: 1px;
}

.editorial-content .obs h3 {
  font-weight: 500;
  font-size: 23px;
  margin-top: 20px;
  color: #000000;
  letter-spacing: 1px;
}

.editorial-content .obs .text {
  font-size: 20px;
  line-height: 1.8;
}

.editorial-content.editorial-content + .editorial-content {
  margin-top: -60px;
}

.question {
  margin: 128px 0;
}

.question .container {
  max-width: 1400px;
}

.question .container h2 {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 500;
}

.question .container .content {
  padding: 32px 0;
  display: flex;
}

.question .container .content h3 {
  width: 41.666%;
  margin-right: 32px;
  line-height: 2;
  font-size: 20px;
  font-weight: 500;
}

.question .container .content .text {
  flex: 1;
  overflow: hidden;
}

.question .container .content .text > * {
  margin-bottom: 16px;
}

.question .container .content .text p {
  font-size: 18px;
  line-height: 2;
}

.question .container .content .text a {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-family: breguet-sans;
  line-height: 1;
  padding: 10px 16px;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #112236;
  border: 2px solid #112236;
  color: #ffffff;
}

.question .container .content .text a:hover {
  color: #3a5f7d;
}

.question .container .border {
  border-top: 1px solid #e5e7eb;
}

.question .container > a {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-family: breguet-sans;
  line-height: 1;
  padding: 10px 16px;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #112236;
  color: #112236;
}

.question .container > a:hover {
  background-color: #112236;
  color: #ffffff;
}

.subscribeTo {
  width: 100%;
  display: flex;
  background-color: #f0efee;
}

.subscribeTo .image,
.subscribeTo .info {
  width: 50%;
  overflow: hidden;
}

.subscribeTo .info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribeTo .info .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 356px;
  padding: 96px 24px;
}

.subscribeTo .info .content h2 {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 500;
}

.subscribeTo .info .content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.625;
}

.subscribeTo .info .content a {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-family: breguet-sans;
  line-height: 1;
  padding: 10px 16px;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #112236;
  color: #112236;
}

.subscribeTo .info .content a:hover {
  background-color: #112236;
  color: #ffffff;
}

.subscribeTo .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribeTo .image img {
  max-height: 400px;
}

.seekContent {
  width: 100%;
  display: flex;
  background-color: #f0efee;
}

.seekContent .image,
.seekContent .info {
  width: 50%;
  overflow: hidden;
}

.seekContent .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.seekContent .image img {
  width: 100%;
  height: 306px;
  object-fit: cover;
}

.seekContent .info {
  background-color: #dfd2bf;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seekContent .info .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 306px;
  padding: 96px 24px;
}

.seekContent .info .content h2 {
  line-height: 1.25;
  font-size: 40px;
  font-weight: 500;
  color: #9a825f;
}

.seekContent .info .content .flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.seekContent .info .content .flex a {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-family: breguet-sans;
  line-height: 1;
  padding: 10px 16px;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #112236;
  border: 2px solid #112236;
  color: #ffffff;
}

.seekContent .info .content .flex a:first-child:hover {
  color: #3a5f7d;
}

.seekContent .info .content .flex a:last-child {
  background: transparent;
  color: #7b684c;
  border: 2px solid #7b684c;
  margin-left: 20px;
}

.map {
  width: 100%;
}

.map img {
  width: 100%;
}

.containerized {
  position: relative;
  margin-top: 40px;
  margin-bottom: 140px;
  text-align: center;
}

.containerized a.btn {
  position: relative;
  flex-wrap: wrap;
  display: inline-flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 1px 20px 0;
  font-size: 12px;
  line-height: 1.5em;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.16667em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  background: none;
  flex-direction: column;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: all 0.4s ease-in-out;
  color: #ffffff;
  margin-top: 40px;
}

.containerized a.btn::after {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  right: 1px;
  z-index: -1;
  border-radius: 4px;
  transition: all 0.4s ease-in;
  background-size: 400% 400%;
  background-position: 90% 90%;
  border: 1px solid #000000;
  background-image: linear-gradient(-45deg, #000000, #000000, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.03));
}

.containerized a.btn:hover {
  color: #000000;
}

.containerized a.btn:hover::after {
  border-color: #000000;
  background-position: -0.2rem -0.2rem;
}

.footer {
  background-color: #000;
  padding: 60px 0 40px;
}

.footer .footer-nav {
  border-bottom: 2px solid #4c4c4c;
  padding-bottom: 40px;
}

.footer .footer-nav .container {
  display: flex;
  justify-content: space-between;
}

.footer .footer-nav .container .nav,
.footer .footer-nav .container .info {
  width: 50%;
}

.footer .footer-nav .container .nav h2,
.footer .footer-nav .container .info h2 {
  line-height: 1.36;
  color: #969696;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 14px;
}

.footer .footer-nav .container .nav ul li,
.footer .footer-nav .container .info ul li {
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 1px;
  transition: all 0.2s ease-in-out;
  display: block;
  color: #ffffff;
}

.footer .footer-nav .container .nav ul li a,
.footer .footer-nav .container .info ul li a {
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 1px;
  transition: all 0.2s ease-in-out;
  display: block;
  color: #ffffff;
}

.footer .footer-nav .container .nav ul li a:hover,
.footer .footer-nav .container .info ul li a:hover {
  color: #727272;
}

.footer .footer-delay .container {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 1px;
  transition: all 0.2s ease-in-out;
  color: #ffffff;
}

.footerFixed {
  display: none;
}

.goTop {
  position: fixed;
  z-index: 99;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  padding: 0;
  text-align: center;
  background: #ffffff;
  border-radius: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 1px 1px #ddd;
  cursor: pointer;
}

.goTop svg {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.goTop svg circle {
  stroke-dasharray: 145px;
  stroke-dashoffset: 145px;
  will-change: stroke-dashoffset;
  transition: stroke-dashoffset 0.1s linear;
}

.goTop span {
  position: absolute;
  display: block;
  z-index: 10;
  top: 50%;
  left: 50%;
  color: #000;
  line-height: 48px;
  font-size: 25px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
}

.goTop:hover {
  background-color: #000;
  outline: none;
}

.goTop:hover svg circle {
  fill: #000;
  stroke: #fff;
}

.goTop:hover span {
  color: #ffffff;
}

@keyframes bouncing {
  0%,
  to {
    -webkit-transform: translateY(-0.3rem);
    transform: translateY(-0.3rem);
  }
  25% {
    -webkit-transform: translateY(0.7rem);
    transform: translateY(0.7rem);
  }
}

@media (max-width: 768px) {
  .header {
    width: 100%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 99;
  }
  .header .container {
    padding-top: 0;
  }
  .header .m-nav {
    display: flex;
    align-items: center;
    height: 40px;
  }
  .header .m-nav img {
    width: 25px;
    height: auto;
  }
  .header .menu {
    position: fixed;
    top: 40px;
    left: 0;
    display: none;
    min-height: calc(100vh - 40px);
    background-color: #ffffff;
    z-index: 100;
  }
  .header .menu li {
    flex: initial;
    border-bottom: 1px solid #e8e8e8;
  }
  .header .menu li a {
    padding: 16px 15px 14px;
    text-align: left;
    font-size: 14px;
  }
  .header .menu li.menu-language {
    display: block;
  }
  .header .menu li.menu-language a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header .menu li.menu-language a img {
    width: 20px;
    transition: all 0.5s;
  }
  .header .menu li.menu-language ul {
    height: 0;
    transition: height 0.5s;
    overflow: hidden;
  }
  .header .menu li.menu-language ul li a {
    height: 48.5px;
    padding-left: 30px;
    font-size: 13px;
  }
  .header .menu li.menu-language ul li:first-child {
    border-top: 1px solid #e8e8e8;
  }
  .header .menu li.menu-language ul li:last-child {
    border-bottom: none;
  }
  .header .menu li.menu-language.open a img {
    transform: rotate(180deg);
  }
  .header .menu li.menu-language.open ul {
    height: 99px;
  }
  .header .follow-bar,
  .header .language {
    display: none;
  }
  .banner-index {
    height: calc(100vh - 40px);
  }
  .banner-index .background img {
    height: calc(100% + 100px);
  }
  .banner-index .obs h1 {
    font-size: 38px;
  }
  .basic_page_title {
    margin-bottom: 20px;
    margin-top: 20px;
    height: calc(50vh - 120px);
  }
  .basic_page_title h1 {
    font-size: 38px;
  }
  .basic_page_content {
    margin-bottom: 60px;
    margin-top: 60px;
  }
  .basic_page_content p {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.5556;
  }
  .infoContent {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .infoContent.image-right {
    flex-direction: column-reverse;
  }
  .infoContent .image,
  .infoContent .info {
    width: 100%;
  }
  .infoContent .info {
    display: flex;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 20px;
  }
  .infoContent .info .obs {
    max-width: 80%;
  }
  .infoContent .info .obs h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .infoContent .info .obs .text {
    margin-top: 0;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .infoContent .info .obs a.btn {
    margin-top: 20px;
  }
  .infoContent .image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .editorial-content {
    margin: 60px 0;
  }
  .editorial-content .obs {
    width: 100%;
  }
  .editorial-content .obs h2 {
    font-size: 20px;
  }
  .editorial-content .obs h3 {
    font-size: 19px;
  }
  .editorial-content .obs .text {
    font-size: 18px;
    line-height: 1.6;
  }
  .editorial-content.editorial-content + .editorial-content {
    margin-top: -20px;
  }
  .question .container h2 {
    font-size: 28px;
    line-height: 1.25;
  }
  .question .container .content {
    display: block;
  }
  .question .container .content h3 {
    width: 100%;
    margin-right: 0;
  }
  .question .container .content .text {
    margin-top: 32px;
  }
  .subscribeTo {
    display: block;
  }
  .subscribeTo .image,
  .subscribeTo .info {
    width: 100%;
  }
  .subscribeTo .info .content {
    height: 270px;
    padding: 48px 24px;
  }
  .subscribeTo .info .content h2 {
    font-size: 28px;
    line-height: 1.25;
  }
  .subscribeTo .info .content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.625;
  }
  .seekContent {
    display: flex;
    flex-direction: column-reverse;
  }
  .seekContent .image,
  .seekContent .info {
    width: 100%;
  }
  .seekContent .info .content {
    height: 195px;
    padding: 48px 24px;
  }
  .seekContent .info .content h2 {
    font-size: 28px;
  }
  .containerized {
    margin-top: 20px;
    margin-bottom: 60px;
  }
  .footer {
    padding: 40px 0 30px;
    margin-bottom: 58px;
  }
  .footer .footer-nav .container {
    display: block;
  }
  .footer .footer-nav .container .nav {
    display: none;
  }
  .footer .footer-nav .container .nav,
  .footer .footer-nav .container .info {
    width: 100%;
  }
  .footer .footer-delay .container {
    justify-content: center;
    margin-top: 30px;
  }
  .footerFixed {
    display: block;
    width: 100%;
    height: 58px;
    position: fixed;
    bottom: 0;
    left: 0;
    line-height: 116px;
    z-index: 90;
  }
  .footerFixed .footerInner {
    width: 100%;
    height: 100%;
    -moz-box-shadow: 6px 0 24px rgba(32, 21, 18, 0.72);
    -webkit-box-shadow: 6px 0 24px rgba(32, 21, 18, 0.72);
    box-shadow: 6px 0 24px rgba(32, 21, 18, 0.72);
  }
  .footerFixed .footerInner a {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footerFixed .footerInner a i,
  .footerFixed .footerInner a em {
    display: block;
  }
  .footerFixed .footerInner .footerLink3 {
    width: 40%;
    height: 100%;
    background-color: #3c3c3c;
  }
  .footerFixed .footerInner .footerLink3 .phoneIcon {
    width: 27px;
    height: 27px;
    background: url("../images/footerLink3.png") no-repeat;
    background-size: 100% 100%;
  }
  .footerFixed .footerInner .footerLink3 em {
    width: 55%;
    font-size: 16px;
    line-height: 23px;
    color: #fff;
    margin-left: 10px;
  }
  .footerFixed .footerInner .footerLink2 {
    width: 40%;
    height: 100%;
    background-color: #3c3c3c;
  }
  .footerFixed .footerInner .footerLink2 .swtIcon {
    width: 27px;
    height: 24px;
    background: url("../images/footerLink2.png") no-repeat;
    background-size: 100% 100%;
    position: relative;
  }
  .footerFixed .footerInner .footerLink2 .swtIcon_Counter {
    position: absolute;
    top: 15px;
    width: 14px;
    height: 14px;
    margin-left: -76px;
    text-align: center;
    line-height: 13px;
    background-color: #e60012;
    color: #fff;
    font-size: 9px;
    font-style: normal;
    -moz-border-radius: 28px;
    -webkit-border-radius: 28px;
    border-radius: 28px;
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
  }
  .footerFixed .footerInner .footerLink2 em {
    width: 55%;
    font-size: 16px;
    line-height: 23px;
    color: #fff;
    margin-left: 10px;
  }
  .footerFixed .footerInner .footerLink1 {
    width: 20%;
    height: 100%;
    background-color: #3c3c3c;
    flex-direction: column;
  }
  .footerFixed .footerInner .footerLink1 .homeIcon {
    width: 30px;
    height: 25px;
    background: url("../images/footerLink1.png") no-repeat;
    background-size: 100% 100%;
  }
  .footerFixed .footerInner .footerLink1 em {
    width: 100%;
    color: #6a7380;
    font-size: 10px;
    line-height: 18px;
    text-align: center;
  }
  .goTop {
    display: none;
  }
}
