@charset "UTF-8";
body {
  font-family: 'Lato', sans-serif;
  box-sizing: border-box;
  color: #333;
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 100;
  src: local("Lato Hairline"), local("Lato-Hairline"), url(../fonts/Lato-Hairline.ttf) format("truetype");
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: local("Lato Light"), local("Lato-Light"), url(../fonts/Lato-Light.ttf) format("truetype");
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local("Lato Regular"), local("Lato-Regular"), url(../fonts/Lato-Regular.ttf) format("truetype");
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: local("Lato Bold"), local("Lato-Bold"), url(../fonts/Lato-Bold.ttf) format("truetype");
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: local("Lato Black"), local("Lato-Black"), url(../fonts/Lato-Black.ttf) format("truetype");
}

@font-face {
  font-family: 'Gafata';
  font-style: normal;
  font-weight: 400;
  src: local("Gafata"), local("Gafata-Regular"), url(../fonts/Gafata.ttf) format("truetype");
}

/**
 * grid布局
 * @param {number} $cols   列数
 * @param {number} $colGip 列间隔
 * @param {number} $rowGip 行间隔
 * @param {list}   $mobile 断点配置列表(默认空)
    * @param {number} $breakpoint 断点值
    * @param {number} $cols       列数
    * @param {number} $colGap     行列间隔
*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header-top {
  height: 48px;
  background: #000;
}

.header-top .iconList li {
  margin: 0 25px 0 8px;
  padding-right: 8px;
}

.header-top .iconList li a {
  font-size: 14px;
  color: #fff;
  transition: all 0.3s ease;
}

.header-top .iconList li a::before {
  content: "";
  padding: 36px 0 3px 29px;
  background: url(../images/sprites.png) no-repeat;
}

.header-top .iconList li:nth-child(1) a::before {
  background-position: 5px 28px;
}

.header-top .iconList li:nth-child(2) a::before {
  background-position: -111px 28px;
}

.header-top .iconList li:nth-child(3) a::before {
  background-position: -217px 28px;
}

.header-top .iconList li:hover a {
  color: var(--main-color);
}

.header-top .langBtn {
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 4px;
  margin-right: 20px;
}

.header-top .langBtn .icon {
  margin-left: 5px;
  width: 10px;
  height: 8px;
  background: #fff;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.header-top .searchForm {
  margin-right: 6px;
}

.header-top .searchForm input {
  padding: 0 5px;
  font-size: 14px;
  color: var(--main-color);
  font-weight: bold;
  height: 24px;
  overflow: clip !important;
  overflow-clip-margin: 0px !important;
  width: 0;
  opacity: 0;
  pointer-events: none;
  transition: width 1s, opacity 0s;
}

.header-top .searchForm.active input {
  width: 150px;
  opacity: 1;
  pointer-events: auto;
}

.header-top #searchBtn {
  width: 35px;
  height: 29px;
  background: url(../images/sprites.png) -713px -2px no-repeat;
  cursor: pointer;
}

.header-bot {
  height: 130px;
  box-shadow: 0 0 20px transparent;
  transition: all 0.8s ease;
}

.header-bot .logo {
  width: 310px;
  transition: all 0.8s ease;
}

.header.fixed {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.header.fixed .header-top {
  height: 36px;
}

.header.fixed .header-bot {
  height: 48px;
  box-shadow: 0 0 20px transparent;
  background: #000;
}

.header.fixed .header-bot .logo {
  width: 200px;
}

.header.innerHeader .header-bot {
  background: #fff;
}

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

.footer-top .container {
  background: url(../images/footer-terre.jpg) no-repeat right 80px;
}

.footer-top h4 {
  font-weight: normal;
  font-size: 22px;
  margin-bottom: 25px;
}

.footer-top .iconList li {
  width: 50%;
  margin-bottom: 10px;
}

.footer-top .iconList li a {
  display: flex;
  align-items: center;
  color: #fff;
}

.footer-top .iconList li img {
  display: block;
  margin-right: 10px;
}

.footer-top .menu li a {
  margin: 3px 1px;
  background: rgba(230, 0, 5, 0.25);
  font-size: 17px;
  color: #fff;
  display: block;
  position: relative;
  padding: 14px 9px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.footer-top .menu li a::before {
  content: "";
  padding: 40px 0px 13px 50px;
  overflow: hidden;
  background-image: url(../images/sprites.png);
  box-sizing: border-box;
}

.footer-top .menu li:nth-child(1) a::before {
  background-position: -213px -78px;
}

.footer-top .menu li:nth-child(2) a::before {
  background-position: -314px 33px;
}

.footer-top .menu li:nth-child(3) a::before {
  background-position: -735px -80px;
}

.footer-top .menu li:nth-child(4) a::before {
  background-position: -501px -76px;
}

.footer-top .menu li:nth-child(5) a::before {
  background-position: 8px -134px;
}

.footer-top .menu li:nth-child(6) a::before {
  background-position: -52px -76px;
}

.footer-top .menu li:hover {
  background: var(--main-color);
}

.footer-top .text {
  margin-top: 25px;
}

.footer-top .text h2 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
}

.footer-top .text .content {
  font-size: 16px;
  line-height: 1.375;
}

.footer-top .footer-logo {
  display: block;
  max-width: 100%;
}

.footer-bot {
  background: var(--second-color);
  height: 60px;
  text-transform: uppercase;
  font-size: 13px;
}

.footer-bot a {
  margin: 0 15px;
  color: #000;
  position: relative;
}

.footer-bot a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 1px;
  height: 13px;
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-50%);
}

nav.nav .navList {
  background: var(--main-color);
  position: relative;
}

nav.nav .navList .nav1 {
  position: relative;
}

nav.nav .navList .nav1 > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-size: 0.9em;
  font-weight: bold;
  color: #fff;
  padding: 0 12px;
}

nav.nav .navList .nav1:not(:last-child) {
  margin-right: 6px;
}

nav.nav .navList .nav1:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  width: 1px;
  height: 13px;
  background: #fff;
  transform: translateY(-50%);
}

nav.nav .navList .nav1:hover > a {
  background: var(--second-color);
  color: #000;
}

nav.nav .navList .nav1:hover .subNavBox {
  opacity: 1;
  pointer-events: auto;
}

nav.nav .navList .subNavBox {
  position: fixed;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  box-shadow: 0 7px 9px rgba(0, 0, 0, 0.4);
  width: 1140px;
  background: var(--second-color);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

nav.nav .navList .subNavBox ul.item {
  padding: 20px;
  background: #ede6da;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

nav.nav .navList .subNavBox ul.item > li {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  -ms-column-break-inside: avoid;
  -o-column-break-inside: avoid;
  break-inside: avoid;
  column-break-inside: avoid;
  display: table;
  padding: 0px 20px 10px;
}

nav.nav .navList .subNavBox ul.item > li a.link2 {
  font-size: 15px;
  color: var(--main-color);
  font-weight: 800;
}

nav.nav .navList .subNavBox ul.item > li hr {
  width: 50px;
  margin: 11px 0;
}

nav.nav .navList .subNavBox ul.itemList a {
  display: block;
  font-size: 15px;
  line-height: 14px;
  color: #000;
  margin-bottom: 9px;
}

nav.nav .navList .subNavBox .block {
  background: #fff;
  margin: 20px 10px 20px 0;
  font-size: 21px;
}

nav.nav .navList .subNavBox .block a {
  color: #000;
  min-height: 144px;
  display: block;
  padding: 10px 20px 20px;
  box-sizing: border-box;
  font-weight: 800;
}

nav.nav .navList .subNavBox .block a .title {
  display: block;
  font-weight: bold;
  margin-bottom: 11px;
}

nav.nav .navList .subNavBox .block-info {
  background: url(../images/sprites.png) no-repeat 256px -661px #ffffff;
  transition: all .3s ease;
}

nav.nav .navList .subNavBox .block-info:hover {
  background: url(../images/sprites.png) no-repeat 246px -671px #eee;
}

.breadCrumbs {
  background: #f9f9f9;
  border-top: 1px solid var(--second-color);
  border-bottom: 1px solid var(--second-color);
  height: 40px;
}

.breadCrumbs span,
.breadCrumbs a {
  font-size: 12px;
  color: #000;
}

.breadCrumbs .icon {
  padding: 0 10px;
}

.page-nav .container {
  padding: 0;
}

.page-nav .pageNavList {
  display: flex;
  background: #000;
}

.page-nav .pageNavList > li {
  flex: 1;
  height: 50px;
  position: relative;
}

.page-nav .pageNavList > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 14px;
}

.page-nav .pageNavList > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: #fff;
}

.page-nav .pageNavList > li.active a {
  color: var(--main-color);
}

.page-nav .pageNavList > li:hover a {
  color: var(--main-color);
}

.page-nav .pageNavList > li:hover .subMenu {
  opacity: 1;
  pointer-events: auto;
}

.page-nav .pageNavList > li .subMenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  opacity: 0;
  z-index: 50;
  pointer-events: none;
  transition: all 0.3s ease;
  padding-top: 12px;
}

.page-nav .pageNavList > li .subMenu ul {
  text-transform: capitalize;
  line-height: 20px;
  background: #000000;
  transition: all 0.3s ease;
}

.page-nav .pageNavList > li .subMenu ul li {
  padding: 15px;
  display: flex;
  align-items: center;
  color: #fff;
}

.page-nav .pageNavList > li .subMenu ul li i {
  font-size: 10px;
  font-weight: bold;
  margin-right: 10px;
}

.page-nav .pageNavList > li .subMenu ul li a {
  font-size: 15px;
  color: #fff;
}

.page-nav .pageNavList > li .subMenu ul li:hover a {
  color: var(--main-color);
}

.page-nav .pageNavList > li .subMenu ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 25px;
  height: 12px;
  background: #000;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

main {
  margin-top: var(--header-height);
}

.banner {
  margin-top: 10px;
  position: relative;
  height: 360px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner .text {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  transition: all .8s ease;
}

.banner .text h1 {
  font-size: 60px;
  line-height: 1.13;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.5), 0 0 70px rgba(0, 0, 0, 0.5);
}

.banner .text hr {
  width: 131px;
  border: solid 3px #eee;
  margin-top: 28px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.5), 0 0 70px rgba(0, 0, 0, 0.5);
}

.banner .text h2.subTitle {
  font-size: 27px;
  line-height: 38px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.5), 0 0 70px rgba(0, 0, 0, 0.5);
  margin: 20px 0;
}

body.static .banner .text {
  top: 50%;
}

.linyuBanner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 30px;
}

.linyuBanner .text {
  text-align: center;
  color: #fff;
}

.linyuBanner .text h1 {
  font-size: 60px;
  line-height: 1.13;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.5), 0 0 70px rgba(0, 0, 0, 0.5);
}

.linyuBanner .text hr {
  width: 131px;
  border: solid 3px #eee;
  margin-top: 28px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.5), 0 0 70px rgba(0, 0, 0, 0.5);
}

.linyuBanner .text h2.subTitle {
  font-size: 27px;
  line-height: 38px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.5), 0 0 70px rgba(0, 0, 0, 0.5);
  margin: 20px 0;
}

.linyuBanner .tip {
  color: #bbb;
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin: 0 40px;
  padding: 15px 55px 55px 55px;
  line-height: 24px;
  text-align: left;
  position: relative;
}

.linyuBanner .tip::before {
  content: '“';
  position: absolute;
  top: 7px;
  left: -40px;
  font-size: 75px;
  font-family: "Gafata";
  display: block;
  line-height: 1;
}

.linyuBanner .tip::after {
  position: absolute;
  right: 0;
  font-family: "Gafata";
  content: '"';
  font-size: 75px;
  line-height: 1;
}

.linyuBanner .text2 {
  margin: 100px 0 0;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.8);
  padding-bottom: 0px;
  color: #ffffff;
  padding-top: 30px;
}

.linyuBanner .text2 p {
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
  margin-bottom: 20px;
}

article {
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
}

article p {
  margin-bottom: 20px;
}

article h2 {
  font-size: 30px;
  font-weight: 900;
  margin: 20px 0;
  line-height: 38px;
}

article h3 {
  color: #896f77;
  font-size: 26px;
  font-weight: 600;
  margin: 20px 0 15px 0;
}

article hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

article ul {
  list-style: inherit;
  padding-left: 30px;
  padding-bottom: 10px;
}

article ul li {
  list-style: disc;
}

article ul li p {
  margin-bottom: 0;
}

article ul li ul li {
  list-style: circle;
}

article ol {
  list-style: decimal;
  padding-left: 30px;
  padding-bottom: 20px;
}

article ol li {
  list-style: inherit;
}

article img {
  max-width: 100%;
}

article a {
  color: var(--main-color);
}

article strong {
  font-size: inherit;
}

.page-title {
  font-size: 60px;
  line-height: 68px;
  color: var(--main-color);
  text-align: center;
  font-weight: 800;
}

.page-title h1 {
  font-size: 60px;
  line-height: 68px;
  font-weight: 800;
}

.page-title hr {
  width: 131px;
  border: solid 3px #eee;
  margin-top: 20px;
  margin-bottom: 0;
}

.page-title h2 {
  font-size: 27px;
  color: #333;
  line-height: 38px;
  margin: 20px 0;
}

.appList li {
  padding: 0;
}

.appList a {
  height: 524px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 54px 211px rgba(0, 0, 0, 0.75);
  position: relative;
  padding: 0 15px;
  transition: all 0.5s ease-in-out;
}

.appList a .text {
  padding-top: 40px;
  transition: all 0.3s ease;
}

.appList a .type {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  border: solid 1px #ffffff;
  padding: 5px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.5), 0 0 70px rgba(0, 0, 0, 0.5);
}

.appList a .title {
  margin-top: 40px;
  transition: all 0.3s ease;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.5), 0 0 70px rgba(0, 0, 0, 0.5);
  font-size: 31px;
  color: #fff;
  font-weight: 900;
}

.appList a:hover {
  box-shadow: none;
}

.appList a:hover .text {
  padding-top: 50px;
}

.appList a:hover .title {
  margin-top: 50px;
}

.appList li.redStyle a .type {
  color: var(--main-color);
  border-color: var(--main-color);
}

.i-field .list li:hover a {
  transform: scale(1.1);
  color: var(--main-color);
}

.i-field .list a {
  display: block;
  width: 178px;
  font-size: 16px;
  color: #000;
  text-align: center;
  font-weight: 800;
  transition: all 0.3s ease;
}

.i-field .list img {
  display: block;
  margin: 0 auto 20px;
  max-width: 80%;
}

.i-field .list h3 {
  font-size: 16px;
}

.newsList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 5px 5px;
}

@media (max-width: 992px) {
  .newsList {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .newsList {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

.newsList li {
  height: 245px;
  padding: 10px;
  box-sizing: border-box;
  border: solid 1px #eee;
}

.newsList li a {
  display: block;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.newsList li a .img-box {
  position: relative;
  height: 160px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.newsList li a .img-box img {
  display: block;
  max-height: 100%;
  width: 100%;
}

.newsList li a .img-box .category {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 11px;
  font-weight: 600;
  line-height: 28px;
  background: var(--main-color);
  color: #fff;
  font-size: 12px;
}

.newsList li a .text-box {
  color: #000;
}

.newsList li a .title {
  font-size: 17px;
  font-weight: 800;
  line-height: 17px;
  margin: 5px 0;
}

.newsList li a .info {
  font-size: 16px;
  line-height: 17px;
  margin-bottom: 7px;
}

.newsList li a .time {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--main-color);
}

.newsList li a span {
  color: var(--main-color);
  transition: all 0.3s ease;
  font-weight: 600;
}

.newsList li a .news-hover {
  position: absolute;
  top: 100%;
  left: 0;
  background: #eee;
  width: 100%;
  height: 100%;
  padding: 10px;
  color: #000;
  box-sizing: border-box;
  overflow: hidden;
  transition: opacity .6s ease-in-out;
  opacity: 0;
}

.newsList li:first-child {
  height: 500px;
  grid-column: span 2;
  grid-row: span 2;
  background: #fff;
  transition: all 0.3s ease;
}

.newsList li:first-child .img-box {
  height: 308px;
}

.newsList li:first-child:hover {
  background: #eee;
}

.newsList li:not(:first-child):hover .news-hover {
  opacity: 1;
  top: 0;
}

.siteMap .col-md-3 {
  box-sizing: border-box;
}

.siteMap .list .col-md-3 {
  margin-bottom: 40px;
}

.siteMap .list h2 > a {
  font-size: 22px;
  color: var(--main-color);
  font-weight: bold;
}

.siteMap .list .subList {
  margin-top: 15px;
}

.siteMap .list .subList h3 > a {
  line-height: 1.6;
  font-size: 18px;
  color: #666;
}

.siteMap .list .subList2 h4 > a {
  line-height: 1.6;
  font-size: 14px;
  color: #999;
}

.p-60 {
  padding: 60px 0;
}

.m-t-60 {
  margin-top: 60px;
}

.i-title {
  color: #201e1e;
  font-size: 60px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 60px;
}

.index {
  overflow: hidden;
  margin-top: 0;
}

.index .i-banner {
  height: 777px;
}

.index .i-banner .swiper {
  height: 100%;
}

.index .i-banner .swiper .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index .i-banner .swiper .text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

.index .i-banner .swiper .text p {
  display: flex;
  justify-content: center;
  font-size: 78px;
  color: #ffffff;
  font-weight: 300;
  line-height: 60px;
}

.index .i-banner .swiper .text p strong {
  font-weight: bold;
}

.index .i-banner .swiper .text p em {
  color: var(--main-color);
  font-weight: bold;
}

.index .i-news {
  background: #f9f9f9;
}

.index .i-news .more {
  margin-top: 10px;
  font-size: 14px;
  background: #000000;
  border-radius: 3px;
  padding: 7px;
  color: #fff;
}

.about .page-nav {
  margin-top: 40px;
}

.about .about-box {
  margin-top: 30px;
}

.about .about-box .tip {
  color: #e60005;
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin: 40px;
  padding: 15px;
  line-height: 24px;
  text-align: left;
  position: relative;
}

.about .about-box .tip::before {
  content: '“';
  position: absolute;
  top: 7px;
  left: -40px;
  font-size: 75px;
  font-family: "Gafata";
  display: block;
  line-height: 1;
}

.about .about-box .tip::after {
  position: absolute;
  right: 0;
  font-family: "Gafata";
  content: '"';
  font-size: 75px;
  line-height: 1;
}

.about .about-box .box {
  background: #ddd;
  padding: 1px 30px 30px;
}

.about .about-box .box h4 {
  color: #000000;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin: 20px 0 15px 0;
}

.about .about-box .box hr {
  width: 40px;
  border: solid 1px #000;
  margin-bottom: 20px;
}

.about .about-box .box ul li {
  font-size: 15px;
  padding-left: 1em;
  line-height: 17px;
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
}

.about .about-box .box ul li::before {
  content: "\002022";
  padding-right: 10px;
  color: #e60005;
}

.about .about-box .boxStyle1 {
  background: url(../images/gray-bg.png) no-repeat bottom left #eee;
}

.about .about-box .boxStyle1 p {
  line-height: 27px;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 7px;
}

.about .about-box .leftStyle {
  padding-bottom: 10px;
}

.about .about-box .leftStyle .content {
  margin: 20px auto 0;
  width: 720px;
}

.about .job-box {
  margin-top: 40px;
}

.about .job-box .content {
  margin-top: 30px;
  padding-bottom: 50px;
}

.messageBox {
  background: var(--second-color);
  padding: 20px 0 50px;
}

.messageBox h3 {
  text-align: center;
  color: #896f77;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

.formBox {
  margin-top: 60px;
}

.formBox .formItem input[type="text"] {
  display: block;
  width: 48%;
  height: 28px;
  padding: 0 12px;
  border: none;
  border-radius: 3px;
  color: #000000;
  line-height: normal;
  outline-color: #e60005;
  box-sizing: border-box;
  font-size: 16px;
}

.formBox .formItem input[type="text"]::placeholder {
  color: #000;
}

.formBox .formItem textarea {
  border-radius: 3px;
  color: #000000;
  padding: 8px 12px;
  margin-bottom: 10px;
  outline-color: #e60005;
  height: 110px;
  border: 0;
  width: 100%;
  box-sizing: border-box;
  resize: none;
}

.formBox .formItem select {
  display: block;
  width: 48%;
  height: 28px;
  border: 0;
  line-height: normal;
  outline-color: #e60005;
  box-sizing: border-box;
  font-size: 16px;
  padding: 0 12px;
}

.formBox .formItem:not(:last-child) {
  margin-bottom: 10px;
}

.formBox .formItem .fileBox {
  background: #fff;
  padding: 10px 10px 20px;
}

.formBox .formItem .fileBox label {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.formBox .formItem .fileBox label span {
  color: var(--main-color);
}

.formBox .formItem .fileBox input {
  width: 320px;
  font-size: 16px;
}

.formBox .formItem .checkboxTip {
  font-weight: bold;
  font-size: 14px;
  margin-left: 10px;
}

.formBox .submit {
  width: 80px;
  height: 60px;
  background: var(--main-color);
  color: #fff;
  font-size: 16px;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.formBox .submit:hover {
  background: #000;
}

.contact .contact-box {
  margin-top: 40px;
}

.contact .formBoxBlock {
  width: 720px;
  margin: 0 auto;
}

.contact .formBoxBlock p {
  font-size: 17px;
  margin-bottom: 20px;
}

.contact .formBoxBlock .formBox {
  background: var(--second-color);
  padding: 8px 30px 30px;
  margin-bottom: 30px;
  margin-top: 20px;
}

.contact .map-box {
  margin-bottom: 50px;
}

.contact .map-box #container {
  width: 100%;
  height: 600px;
}

.product .banner {
  height: 326px;
  margin-top: 0;
}

.product .banner .text {
  top: 61%;
}

.product .banner .text hr {
  margin-bottom: 35px;
}

.product .product-1 {
  padding: 30px 0;
}

.product .product-1 h2 {
  font-size: 30px;
  font-weight: 900;
  margin: 20px 0;
  line-height: 38px;
}

.product .product-1 h2.tip {
  font-size: 22px;
  font-weight: bold;
  line-height: 32px;
  margin: 30px 0 25px 0;
  display: block;
}

.product .product-1 .text p {
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
  margin-bottom: 20px;
}

.product .product-1 .citation {
  color: #e60005;
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin: 40px;
  padding: 15px;
  line-height: 24px;
  text-align: left;
  position: relative;
}

.product .product-1 .citation::before {
  content: '“';
  position: absolute;
  top: 7px;
  left: -40px;
  font-size: 75px;
  font-family: "Gafata";
  display: block;
  line-height: 1;
}

.product .product-1 .citation::after {
  position: absolute;
  right: 0;
  font-family: "Gafata";
  content: '"';
  font-size: 75px;
  line-height: 1;
}

.product .product-2 {
  background: #ddd;
  padding: 50px 0 40px;
}

.product .product-2 h3 {
  font-size: 35px;
  font-weight: 300;
}

.product .product-2 ul {
  margin-top: 30px;
}

.product .product-2 ul li {
  margin-bottom: 20px;
}

.product .product-2 ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 160px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 13px;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.5), 0 0 3px rgba(0, 0, 0, 0.5), 0 0 7px rgba(0, 0, 0, 0.5), 0 0 17px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 0, 0, 0.5);
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s ease;
}

.product .product-2 ul a:hover {
  box-shadow: inset 0 0 250px rgba(230, 0, 5, 0.8);
}

.product .product-3 {
  background: #ede6da;
  padding-top: 40px;
}

.product .product-3 .left {
  background: url(../images/fondcontact.jpg) no-repeat left bottom #ede6da;
  height: 540px;
}

.product .product-3 h4 {
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  width: 50%;
  text-align: right;
  margin-left: auto;
  margin-right: 30px;
  margin-top: 50px;
  color: #000000;
}

.product .product-3 h4 strong {
  color: var(--main-color);
}

.product .product-4 {
  margin-top: 40px;
}

.product .product-4 h3.product-title {
  font-weight: 800;
  color: #e60005;
  font-size: 30px;
  line-height: 35px;
  text-transform: inherit;
  margin-bottom: 30px;
}

.product .product-4 .box {
  border-top: solid 1px #eee;
  border-bottom: solid 1px #eee;
  padding-top: 30px;
  padding-bottom: 20px;
}

.product .product-4 ul.list li {
  box-sizing: border-box;
  border: solid 1px #eee;
  background: #f9f9f9;
  padding: 10px;
  font-size: 16px;
  line-height: 22px;
  height: auto;
  margin-bottom: 20px;
  max-height: 420px;
  transition: all 0.3s ease;
  width: 260px;
  margin: 0 13px;
  margin-bottom: 20px;
}

.product .product-4 ul.list li a {
  display: block;
  font-weight: 400;
  margin-bottom: 20px;
  color: #000;
}

.product .product-4 ul.list li h4 {
  font-size: 18px;
  height: 72px;
}

.product .product-4 ul.list li img {
  margin: 10px auto;
  display: block;
  box-sizing: border-box;
  max-width: 100%;
}

.product .product-5 {
  padding: 40px 0;
}

.product .product-5 .block {
  padding: 20px;
  text-align: center;
  background: #ede6da;
  box-sizing: border-box;
  position: relative;
}

.product .product-5 .block img {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
}

.product .product-5 .block h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: left;
}

.product .product-5 .block a {
  font-size: 17px;
  line-height: 27px;
  color: var(--main-color);
}

.lingyu-2 h3 {
  text-align: center;
  font-weight: 300;
  font-size: 35px;
  color: #000;
  text-transform: uppercase;
}

.lingyu-2 .icon {
  width: 190px;
  height: 15px;
  background: url(../images/separator.png) no-repeat center;
  margin: 15px auto 30px;
}

.lingyu-3 {
  padding-top: 50px;
}

.lingyu-3 p {
  font-size: 17px;
  line-height: 27px;
  margin-bottom: 20px;
}

.lingyu-3 .tip {
  color: #e60005;
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin: 40px;
  padding: 40px 40px 40px 70px;
  line-height: 24px;
  text-align: left;
  position: relative;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}

.lingyu-3 .tip::before {
  content: '“';
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  left: 20px;
  font-size: 75px;
  font-family: "Gafata";
  display: block;
  line-height: 1;
}

.lingyu-3 .tip::after {
  position: absolute;
  right: 0;
  font-family: "Gafata";
  content: '"';
  font-size: 75px;
  line-height: 1;
}

.lingyu-4 {
  padding: 60px 0;
}

.news .news-box {
  padding: 60px 0;
}

.news .newsList {
  margin-top: 60px;
}

.appXq-box .page-title h1 {
  font-size: 50px;
  color: #000000 !important;
  font-weight: 400;
}

.appXq-box .banner {
  height: 420px;
  margin-top: 60px;
}

.appXq-box .contentBox {
  margin: 20px auto 0;
  width: 720px;
}

.appXq-box .contentBox .item {
  margin-bottom: 30px;
}

.appXq-box .contentBox .item h2 {
  display: inline-block;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 30px 30px;
  margin: 0px auto;
  padding-bottom: 5px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 22px;
  line-height: 38px;
}

.appXq-box .contentBox .item .content {
  margin: 30px auto 0;
}

.appXq-box .contentBox .advantage {
  padding: 12px 51px 30px;
  background: #ede6da;
}

.appXq-box .contentBox .advantage h3 {
  margin: 20px 0 15px 0;
  font-size: 23px;
  font-weight: 400;
  color: #000;
}

.appXq-box .contentBox .content {
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
}

.appXq-box .contentBox .content ul,
.appXq-box .contentBox .content ol {
  list-style: inherit;
  padding-left: 30px;
  padding-bottom: 10px;
}

.appXq-box .contentBox .content li {
  list-style: inherit;
}

.custom-content-marker {
  position: relative;
  width: 25px;
  height: 34px;
}

.custom-content-marker img {
  width: 100%;
  height: 100%;
}

.custom-content-marker .close-btn {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 15px;
  height: 15px;
  font-size: 12px;
  background: #ccc;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 15px;
  box-shadow: -1px 1px 1px rgba(10, 10, 10, 0.2);
}

.custom-content-marker .close-btn:hover {
  background: #666;
}

.fanye {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.fanye li a,
.fanye li span {
  display: block;
  padding: 8px 14px;
  background: #eeeeee;
  color: #666;
  border-radius: 3px;
}

.fanye li {
  margin: 0 5px;
}

.fanye li:hover a,
.fanye li:hover span {
  background: var(--main-color);
  color: #fff;
}

.fanye li.active a,
.fanye li.active span {
  background: var(--main-color);
  color: #fff;
}

.service .service-box .right {
  box-sizing: border-box;
}

.service .service-box .right .box {
  background: url(../images/gray-bg.png) no-repeat bottom left #eee;
}

aside {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 5rem;
  height: 5rem;
  background-color: #e60005;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  z-index: -100;
}

aside .iconfont {
  font-size: 3.5rem;
}

aside.active {
  opacity: 1;
  z-index: 9999;
}

aside:hover {
  background: #000;
}
