@charset "UTF-8";
::selection {
  color: #fff;
  background: #BE0000;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow-x: hidden;
  font-family: "PoppinsRegular", arial, helvetica, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.2;
  background-color: #fff;
  --ling: linear-gradient(90deg, #8C5D29 25.03%, #EBC065 44.32%, #8C5D29 85.36%);
}

@media screen and (max-device-width: 320px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (max-device-width: 480px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
a {
  color: #333;
  text-decoration: none;
  outline: none;
  tap-highlight-color: transparent;
  focus-ring-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -webkit-focus-ring-color: transparent;
  -moz-tap-highlight-color: transparent;
  -moz-focus-ring-color: transparent;
  transition: all 550ms;
}
a:hover {
  color: #BE0000;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  border: 0px solid #ccc;
  height: auto;
}

table, embed, video {
  max-width: 100%;
}

input, textarea {
  border: none;
  background: none;
  font-family: inherit;
}
input:focus, textarea:focus {
  outline: none;
}

input[type=checkbox] {
  cursor: pointer;
}
input[type=radio] {
  cursor: pointer;
}

input[type=submit], input[type=reset], input[type=button], button {
  -webkit-appearance: none; /*去掉苹果的默认UI来渲染按钮*/
  cursor: pointer;
}

textarea {
  resize: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

em, i {
  font-style: normal;
}

/* .c-xx start */
.c-bg1 {
  background-color: #f3f3f3;
}

.c-pt110 {
  padding-top: 110px;
}
@media screen and (max-width: 1440px) {
  .c-pt110 {
    padding-top: 40px;
  }
}

.c-textcolor em {
  color: transparent;
  background: var(--ling);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-bgcolor a:hover, .c-bgcolor .link:hover, .c-bgcolor .btn:hover {
  color: #fff;
  background-color: #95672F;
  background-image: var(--ling);
}
.c-bgcolor .bg {
  color: #fff;
  background-color: #95672F;
  background-image: var(--ling);
}

.c-cb {
  clear: both;
}

.c-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.c-mg {
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.c-oh {
  overflow: hidden;
}

.c-tsn {
  transition: all 550ms;
}

.c-pr {
  position: relative;
}

.c-nomg {
  margin: 0 !important;
}

.c-nomt {
  margin-top: 0 !important;
}

.c-nomb {
  margin-bottom: 0 !important;
}

.c-nopd {
  padding: 0 !important;
}

.c-nopt {
  padding-top: 0 !important;
}

.c-nopb {
  padding-bottom: 0 !important;
}

.c-nofont {
  line-height: 0;
  font-size: 0;
}

.c-nobg {
  background: none !important;
}

.c-scrollbar {
  padding-right: 10px;
}
.c-scrollbar::-webkit-scrollbar {
  width: 4px;
  border-radius: 2px;
  background-color: #dddddd;
}
.c-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #BE0000;
}

/* .c-xx end */
/* .f-xx start */
.f-box {
  width: calc(100% - 200px);
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.f-box2 {
  max-width: 1600px;
}

@media screen and (max-width: 991px) {
  .f-box {
    max-width: 96%;
    width: 100%;
  }
}
.banner img {
  width: 100%;
}

/* .f-xx end */
/* @keyframes start */
@keyframes boxshadown {
  0% {
    box-shadow: 0 0 0 1px rgba(51, 51, 51, 0.2);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(51, 51, 51, 0);
  }
}
/* @keyframes end */
/* .an-xx start */
.an-hoverimg-xy {
  position: relative;
  overflow: hidden;
}
.an-hoverimg-xy:before, .an-hoverimg-xy:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 550ms;
  visibility: hidden;
}
.an-hoverimg-xy:before {
  z-index: 2;
  transform: scaleX(0);
}
.an-hoverimg-xy:after {
  z-index: 1;
  transform: scaleY(0);
}
.an-hoverimg-xy img {
  transition: all 550ms;
}
.an-hoverimg-xy:hover img {
  transform: scale(1.1);
}
.an-hoverimg-xy:hover:before {
  visibility: visible;
  transform: scaleX(1);
}
.an-hoverimg-xy:hover:after {
  visibility: visible;
  transform: scaleX(1);
}

.an-hoverbtn-beforex {
  position: relative;
}
.an-hoverbtn-beforex em, .an-hoverbtn-beforex span, .an-hoverbtn-beforex i {
  position: relative;
}
.an-hoverbtn-beforex:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  background-color: #BE0000;
  transition: all 550ms;
}
.an-hoverbtn-beforex:hover {
  color: #fff;
}
.an-hoverbtn-beforex:hover:before {
  transform: scaleX(1);
}

.an-boxsd:hover {
  animation: boxshadown 1s infinite cubic-bezier(0.66, 0, 0, 1);
}

/* .an-xx end */
/* .m-xx start */
.m-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}
.m-desc a {
  color: #BE0000;
}
.m-desc a:hover {
  text-decoration: underline;
}
.m-desc img {
  max-width: 100%;
}
.m-desc iframe {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.m-desc table {
  width: 100%;
  border-collapse: collapse;
  line-height: 22px;
  border: 1px solid #ccc;
  margin-left: auto;
  margin-right: auto;
}
.m-desc table tr td {
  padding: 10px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1440px) {
  .m-desc {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
  .m-desc a {
    color: #BE0000;
  }
  .m-desc a:hover {
    text-decoration: underline;
  }
  .m-desc p {
    min-height: 24px;
  }
}

.table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
}

.table table tr td {
  padding: 10px;
  border: 1px solid #ccc;
  word-break: break-word;
}

@media screen and (max-width: 991px) {
  .table {
    width: 100%;
    overflow-x: auto;
  }
  .table table {
    min-width: 640px;
  }
}
.m-ftname {
  display: none;
  line-height: 24px;
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
  padding-right: 20px;
}
.m-ftname:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
}
.m-ftname.active:after {
  content: "-";
}
@media screen and (max-width: 767px) {
  .m-ftname {
    display: block;
  }
}

/* .m-xx end */
/* .j-xx start */
.j-offset-top {
  transition: all 750ms;
  transform: translateY(100px);
  opacity: 0;
}
.j-offset-top.run {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .j-offset-top {
    transform: none !important;
  }
}

.j-offset-left {
  transition: all 750ms;
  transform: translateX(100px);
  opacity: 0;
}
.j-offset-left.run {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .j-offset-left {
    transform: none !important;
  }
}

.j-offset-right {
  transition: all 750ms;
  transform: translateX(-100px);
  opacity: 0;
}
.j-offset-right.run {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .j-offset-right {
    transform: none !important;
  }
}

.j-fadein {
  transition: all 750ms;
  opacity: 0;
}
.j-fadein.run {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .j-fadein {
    transform: none !important;
  }
}

.j-lazy {
  width: 100%;
}

/* .j-xx end */
[class*=-item] .item-pic {
  position: relative;
  display: block;
  line-height: 0;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
[class*=-item] .item-pic img {
  transition: all 550ms;
}
[class*=-item] .item-pic:hover img {
  transform: scale(1.1);
}
[class*=-item] .item-title {
  overflow: hidden;
}
[class*=-item] .item-desc {
  overflow: hidden;
}

.at-resp-share-element .at4-share-count-container {
  text-decoration: none;
  float: right;
  padding-right: 15px;
  line-height: 25px !important;
}

.at-resp-share-element .at-icon {
  width: 24px !important;
  height: 24px !important;
}

.at-style-responsive .at-share-btn {
  padding: 0 !important;
  border-radius: 2px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
  width: 24px !important;
  height: 24px !important;
}

.at-resp-share-element .at-share-btn {
  margin-bottom: 0 !important;
  margin-right: 3px !important;
}

.at-resp-share-element .at-icon {
  width: 24px !important;
  height: 24px !important;
}

.at-style-responsive .at-share-btn {
  padding: 0 !important;
  border-radius: 2px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
  width: 24px !important;
  height: 24px !important;
}

.at-resp-share-element .at-share-btn {
  margin-bottom: 0 !important;
  margin-right: 3px !important;
}

.m-nbanner {
  padding-top: 14.375%;
  padding-bottom: 11.71875%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}
.m-nbanner a {
  color: #fff;
}
.m-nbanner a:hover {
  color: #BE0000;
}
.m-nbanner .active {
  text-decoration: underline;
}
.m-nbanner .box-title {
  line-height: 58px;
  font-size: 50px;
  font-size: 5rem;
  text-transform: uppercase;
}
.m-nbanner .box-crm {
  margin-top: 22px;
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
@media screen and (max-width: 1440px) {
  .m-nbanner .box-title {
    line-height: 24px;
    font-size: 20px;
    font-size: 2rem;
  }
  .m-nbanner .box-crm {
    margin-top: 10px;
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-oths {
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 40px;
}
.m-oths .oths-item {
  position: relative;
  padding-left: 44px;
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-oths .oths-item a {
  color: #666;
}
.m-oths .oths-item a:hover {
  color: #BE0000;
}
.m-oths .oths-item .iconfont {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  text-align: center;
  background-color: #f3f3f3;
  border-radius: 5px;
  text-align: center;
}
.m-oths .oths-item:hover .iconfont {
  color: #fff;
  background-image: var(--ling);
}
.m-oths .oths-item-1 {
  margin-bottom: 10px;
}
@media screen and (max-width: 1219px) {
  .m-oths {
    padding-top: 30px;
  }
  .m-oths .oths-item {
    padding-left: 40px;
    line-height: 32px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-oths .oths-item .iconfont {
    width: 32px;
    line-height: 32px;
  }
}

.m-page {
  margin-top: 75px;
  letter-spacing: 0;
  font-size: 0;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.m-page a, .m-page span {
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  min-width: 30px;
  height: 30px;
  line-height: 28px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #333;
  text-align: center;
  border: 1px solid #BBB;
  box-sizing: border-box;
  transition: all 550ms;
  padding: 0 5px;
}
.m-page .big {
  min-width: 80px;
}
.m-page a:hover, .m-page a.active {
  color: white;
  background-color: #95672F;
}
.m-page .page-form {
  margin-bottom: 5px;
  margin-left: 8px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding-right: 16px;
  background: url("../images/page1.png") no-repeat right center;
}
.m-page .form-btn {
  min-width: 150px;
  line-height: 26px;
  height: 26px;
  padding: 0 20px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  box-sizing: border-box;
  background-image: var(--ling);
}

.m-page2 {
  position: relative;
}

@media screen and (max-width: 1440px) {
  .m-page {
    margin-top: 35px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  .m-page a, .m-page span {
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
  }
}
.m-kf {
  position: fixed;
  z-index: 10;
  right: 0;
  top: 30%;
}
.m-kf .kf-item {
  position: relative;
  display: block;
  line-height: 0;
  font-size: 0;
  width: 60px;
  line-height: 60px;
  margin-bottom: 1px;
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  background-color: #bbb;
  border-radius: 5px;
}
.m-kf .kf-item:hover, .m-kf .kf-item.active {
  color: #fff;
  background-image: var(--ling);
}
.m-kf .kf-wx {
  position: absolute;
  display: none;
  bottom: 0;
  right: 100%;
  width: 120px;
  font-size: 0;
  line-height: 0;
}
.m-kf .gotop {
  display: none;
}

@media screen and (max-width: 991px) {
  .m-kf {
    right: 0;
    top: auto;
    bottom: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    width: 100%;
    background-color: #2d2d27;
  }
  .m-kf .kf-item {
    width: 20%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    font-size: 2rem;
    background-color: #2d2d27 !important;
  }
  .m-kf .kf-item2 {
    position: static;
  }
  .m-kf .kf-wx {
    bottom: 100%;
    right: auto;
    left: 0;
    padding: 5px;
    width: 100vw;
    text-align: center;
    background-color: #fff;
  }
  .m-kf .kf-wx img {
    width: 140px;
  }
  .m-kf .gotop {
    width: 20%;
    line-height: 50px;
    font-size: 20px;
    font-size: 2rem;
    color: #fff;
    text-align: center;
    display: block;
  }
  .g-ft {
    padding-bottom: 53px;
  }
}
.returntop {
  position: fixed;
  z-index: 9;
  right: 6px;
  bottom: 150px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  background-color: #BE0000;
  border-radius: 5px;
  display: none;
}
.returntop:hover {
  color: #fff;
  background-color: #BE0000;
}

@media screen and (max-width: 991px) {
  .returntop {
    display: none !important;
  }
}
.j-videomodal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.j-videomodal iframe {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 600px;
  max-width: 90%;
  max-height: 80%;
}
.j-videomodal:after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
  line-height: 1;
  font-size: 30px;
  font-size: 3rem;
  transform: rotate(45deg);
  cursor: pointer;
  color: #fff;
}

.m-formcountry {
  position: relative;
}
.m-formcountry .drop-btn {
  position: relative;
}
.m-formcountry .drop-btn i, .m-formcountry .drop-btn svg {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}
.m-formcountry .drop-list {
  display: none;
  border: 1px solid #e6e6e6;
  width: 100%;
  position: absolute;
  top: 100%;
  background-color: #fff;
  max-height: 223px;
  overflow-x: hidden;
  z-index: 10001;
  scrollbar-color: #333 rgba(0, 0, 0, 0.05);
  scrollbar-width: thin;
}
.m-formcountry .drop-list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.m-formcountry .drop-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}
.m-formcountry .drop-list::-webkit-scrollbar-thumb {
  background-color: #333;
}
.m-formcountry .drop-list li {
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  padding: 5px 27px;
  cursor: pointer;
  border-bottom: 1px solid #e6e6e6;
  color: #999;
}
.m-formcountry .drop-list li.on {
  background-color: #e0e0e0;
}

.m-hhd .box-title {
  line-height: 52px;
  font-size: 42px;
  font-size: 4.2rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-hhd .box-name {
  margin-top: 6px;
  line-height: 28px;
  font-size: 16px;
  font-size: 1.6rem;
}
.m-hhd .box-name em {
  color: #BE0000;
}
@media screen and (max-width: 1440px) {
  .m-hhd .box-title {
    line-height: 24px;
    font-size: 20px;
    font-size: 2rem;
  }
  .m-hhd .box-name {
    line-height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.g-hproc {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1440px) {
  .g-hproc {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.m-hproc .box-hd {
  text-align: center;
  padding-bottom: 50px;
}
.m-hproc .box-title em {
  display: block;
}
.m-hproc .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: -28px;
}
.m-hproc .box-item {
  position: relative;
  margin-right: 1.25%;
  margin-bottom: 28px;
  width: 23.875%;
  overflow: hidden;
}
.m-hproc .box-item:nth-child(4n) {
  margin-right: 0;
}
.m-hproc .box-item:hover .item-name {
  display: block;
}
.m-hproc .item-pic:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: url("../images/hproc-bg1.png") no-repeat center bottom;
  background-size: 100%;
}
.m-hproc .item-modal {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 27px 17px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-end;
  overflow-y: auto;
}
.m-hproc .item-fix {
  width: 100%;
  color: #fff;
}
.m-hproc .item-fix a {
  color: #fff;
}
.m-hproc .item-fix a:hover {
  color: #BE0000;
}
.m-hproc .item-title {
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
}
.m-hproc .item-name {
  margin-top: 7px;
  border-top: 1px solid #fff;
  padding-top: 7px;
  line-height: 28px;
  font-size: 16px;
  font-size: 1.6rem;
  display: none;
}
.m-hproc .item-name .name {
  opacity: 0.8;
}
@media screen and (max-width: 1440px) {
  .m-hproc .box-hd {
    padding-bottom: 30px;
  }
  .m-hproc .item-modal {
    padding: 15px;
  }
  .m-hproc .item-title {
    line-height: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .m-hproc .item-name {
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .m-hproc .box-item {
    margin-left: 1%;
    margin-right: 1% !important;
    width: 48%;
  }
}
@media screen and (max-width: 375px) {
  .m-hproc .box-item {
    width: 98%;
  }
}

.m-hlnk {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.m-hlnk a {
  min-width: 195px;
  line-height: 34px;
  padding: 10px 18px;
  border-radius: 60px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  background-color: #DEDEDE;
}
.m-hlnk a:hover i {
  background-color: #fff;
  color: #BE0000;
}
.m-hlnk em {
  margin-right: 24px;
}
.m-hlnk i {
  width: 34px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background-color: #95672F;
}
@media screen and (max-width: 1440px) {
  .m-hlnk a {
    min-width: 120px;
    padding: 10px 15px;
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-hlnk i {
    width: 26px;
  }
  .m-hlnk em {
    margin-right: 15px;
  }
}

.g-habt {
  background-color: #F3F3F3;
}

.m-habt {
  padding-top: 72px;
  padding-bottom: 100px;
  padding-left: calc((100% - 1500px) / 2);
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.m-habt .box-img {
  position: relative;
  width: 51.5789473684%;
  line-height: 0;
  font-size: 0;
  order: 2;
}
.m-habt .box-img a {
  display: inline-block;
}
.m-habt .box-img .bg {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 83.2199546485%;
  padding-top: 20.6349206349%;
  transform: translate(-50%, 50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.m-habt .box-text {
  width: 42.6900584795%;
}
.m-habt .box-desc {
  margin-top: 28px;
  color: #666;
  max-height: 224px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}
.m-habt .box-link {
  margin-top: 60px;
}
@media screen and (max-width: 1700px) {
  .m-habt {
    padding-left: 100px;
  }
}
@media screen and (max-width: 1440px) {
  .m-habt {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .m-habt .box-desc {
    margin-top: 10px;
    max-height: 192px;
  }
  .m-habt .box-link {
    margin-top: 20px;
  }
}
@media screen and (max-width: 991px) {
  .m-habt {
    padding-left: 2%;
  }
}
@media screen and (max-width: 640px) {
  .m-habt {
    padding-right: 2%;
  }
  .m-habt .box-img, .m-habt .box-text {
    width: 100%;
    order: 2;
  }
  .m-habt .box-text {
    position: relative;
    margin-top: 20px;
  }
}

.m-hys {
  border-top: 1px solid rgba(102, 102, 102, 0.3);
  padding-top: 70px;
  padding-bottom: 70px;
}
.m-hys .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: -20px;
}
.m-hys .box-item {
  margin-bottom: 20px;
  max-width: 25%;
}
.m-hys .item-wp {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.m-hys .item-icon {
  flex: 0 0 auto;
  margin-right: 14px;
}
.m-hys .item-text {
  flex: 0 1 auto;
  overflow: hidden;
}
.m-hys .item-info {
  line-height: 52px;
  font-size: 42px;
  font-size: 4.2rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-hys .item-info .name {
  font-size: 30px;
  font-size: 3rem;
}
.m-hys .item-title {
  margin-top: 4px;
  line-height: 26px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
}
@media screen and (max-width: 1440px) {
  .m-hys {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .m-hys .item-icon {
    width: 64px;
    margin-right: 10px;
  }
  .m-hys .item-info {
    line-height: 24px;
    font-size: 20px;
    font-size: 2rem;
  }
  .m-hys .item-info .name {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .m-hys .item-title {
    line-height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .m-hys .box-item {
    width: 49%;
    max-width: initial;
  }
}
@media screen and (max-width: 375px) {
  .m-hys .box-item {
    width: 100%;
  }
}

.g-hwys {
  padding-top: 80px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1219px) {
  .g-hwys {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.m-hwys .box-hd {
  text-align: center;
  margin-bottom: 40px;
}
.m-hwys .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.m-hwys .box-item {
  width: 33.33%;
  padding-left: 52px;
  padding-top: 40px;
  padding-right: 40px;
  padding-bottom: 56px;
}
.m-hwys .box-item .item-icon {
  display: inline-block;
  line-height: 0;
  font-size: 0;
}
.m-hwys .box-item .item-title {
  margin-top: 16px;
  line-height: 32px;
  font-size: 20px;
  font-size: 2rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-hwys .box-item .item-desc {
  margin-top: 16px;
  line-height: 28px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
}
.m-hwys .box-item1 {
  position: relative;
}
.m-hwys .box-item1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #8C5D29 0%, #EBC065 48.08%, #8C5D29 70.67%);
  opacity: 0.1;
}
.m-hwys .box-item1 .item-wp {
  position: relative;
}
.m-hwys .box-item2 {
  border: 1px solid #E6E6E6;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .m-hwys .box-hd {
    margin-bottom: 30px;
  }
  .m-hwys .box-item {
    padding: 30px 20px;
  }
  .m-hwys .box-item .item-icon {
    width: 50px;
  }
  .m-hwys .box-item .item-title {
    line-height: 24px;
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 10px;
  }
  .m-hwys .box-item .item-desc {
    margin-top: 5px;
    line-height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .m-hwys .box-item {
    width: 100%;
  }
}

.g-hmak {
  padding-top: 80px;
  padding-bottom: 80px;
  background: url("../images/hmak-bg1.jpg") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1440px) {
  .g-hmak {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.m-hmak .box-hd {
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}
.m-hmak .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: -20px;
  overflow: hidden;
}
.m-hmak .box-item {
  position: relative;
  margin-bottom: 20px;
  width: 10%;
  text-align: center;
}
.m-hmak .box-item:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  top: 43px;
  border-bottom: 1px dashed #fff;
}
.m-hmak .box-item:last-child:before {
  display: none;
}
.m-hmak .item-icon {
  display: inline-block;
  position: relative;
  line-height: 0;
  font-size: 0;
}
.m-hmak .item-title {
  margin-top: 4px;
  line-height: 28px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .m-hmak .box-hd {
    margin-bottom: 30px;
  }
  .m-hmak .item-icon {
    width: 44px;
  }
  .m-hmak .box-item:before {
    top: 22px;
  }
  .m-hmak .item-title {
    line-height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .m-hmak .box-item {
    width: 20%;
  }
  .m-hmak .box-item:nth-child(5n):before {
    display: none;
  }
}

.g-hmat {
  padding-top: 80px;
  padding-bottom: 88px;
  background-color: #f3f3f3;
}
@media screen and (max-width: 1440px) {
  .g-hmat {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.m-hmat .box-hd {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 62px;
}
.m-hmat .hd-text {
  width: 40%;
  max-width: 500px;
}
.m-hmat .box-title em {
  display: block;
}
.m-hmat .box-desc {
  width: 58.3333333333%;
  color: #666;
}
.m-hmat .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: -20px;
}
.m-hmat .box-item {
  margin-right: 2.4%;
  margin-bottom: 20px;
  width: 31.7333333333%;
}
.m-hmat .box-item:nth-child(3n) {
  margin-right: 0;
}
.m-hmat .item-title {
  margin-top: 16px;
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-hmat .item-desc {
  margin-top: 6px;
  height: 112px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  color: #666;
}
.m-hmat .item-link {
  margin-top: 20px;
}
.m-hmat .item-link a {
  display: inline-block;
  min-width: 154px;
  line-height: 20px;
  padding: 14px;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 60px;
  background-color: #DEDEDE;
}
@media screen and (max-width: 1440px) {
  .m-hmat .box-hd {
    padding-bottom: 30px;
  }
  .m-hmat .item-title {
    margin-top: 10px;
    line-height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-hmat .item-desc {
    height: 96px;
  }
  .m-hmat .item-link {
    margin-top: 10px;
  }
  .m-hmat .item-link a {
    min-width: 120px;
    padding: 8px 15px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .m-hmat .hd-text, .m-hmat .box-desc {
    width: 100%;
  }
  .m-hmat .box-desc {
    margin-top: 10px;
  }
  .m-hmat .box-item {
    width: 100%;
    margin-right: 0;
  }
  .m-hmat .item-desc {
    height: auto;
    max-height: 96px;
  }
}

.g-hsolu {
  padding-top: 113px;
  padding-bottom: 145px;
}
@media screen and (max-width: 1440px) {
  .g-hsolu {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.m-hsolu .box-hd {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 64px;
}
.m-hsolu .hd-text {
  margin-right: 20px;
  margin-bottom: 10px;
}
.m-hsolu .box-link {
  margin-bottom: 10px;
}
.m-hsolu .hd-name {
  position: relative;
  padding-left: 28px;
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
}
.m-hsolu .hd-name:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
}
.m-hsolu .box-title {
  margin-top: 10px;
  color: #fff;
}
.m-hsolu .box-title em {
  display: block;
}
.m-hsolu .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.m-hsolu .box-img {
  width: 40.8%;
  line-height: 0;
  font-size: 0;
}
.m-hsolu .box-fix {
  width: 49.3333333333%;
}
.m-hsolu .box-item {
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
}
.m-hsolu .box-item:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
}
.m-hsolu .box-item:first-child {
  padding-top: 0;
}
.m-hsolu .box-item.show .item-title {
  padding-left: 32px;
  color: #95672F;
  background-image: url("../images/sj1.png");
}
.m-hsolu .box-item.show .item-desc {
  display: block;
}
.m-hsolu .box-item.show:before {
  height: 2px;
  background-color: #95672F;
}
.m-hsolu .item-title {
  line-height: 32px;
  font-size: 20px;
  font-size: 2rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  color: #fff;
  background-repeat: no-repeat;
  background-position: left top;
  cursor: pointer;
}
.m-hsolu .item-desc {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.8);
  display: none;
}
.m-hsolu .item-desc em {
  position: relative;
  padding-left: 25px;
  display: block;
}
.m-hsolu .item-desc em:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1440px) {
  .m-hsolu .box-hd {
    padding-bottom: 20px;
  }
  .m-hsolu .hd-name {
    line-height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-hsolu .hd-name:before {
    width: 6px;
    height: 6px;
    top: 8px;
  }
  .m-hsolu .item-title {
    line-height: 24px;
    font-size: 16px;
    font-size: 1.6rem;
    background-size: auto 24px;
  }
  .m-hsolu .item-desc {
    margin-top: 10px;
  }
  .m-hsolu .item-desc em:before {
    width: 4px;
    height: 4px;
    top: 10px;
  }
}
@media screen and (max-width: 991px) {
  .m-hsolu .box-img, .m-hsolu .box-fix {
    width: 100%;
  }
  .m-hsolu .box-fix {
    margin-top: 20px;
  }
}

.g-hctus {
  padding-top: 110px;
  padding-bottom: 96px;
  background: url("../images/hctus-bg1.jpg") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1440px) {
  .g-hctus {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.m-hctus {
  text-align: center;
}
.m-hctus .box-link {
  margin-top: 60px;
  justify-content: center;
}
.m-hctus .box-link a {
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 10px;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .m-hctus .box-link {
    margin-top: 20px;
  }
}

.g-hcase {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1440px) {
  .g-hcase {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.m-slidepage {
  padding-bottom: 5px;
  position: relative;
  left: auto;
  bottom: auto;
  margin-left: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
}
.m-slidepage .swiper-pagination-bullet {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #d9d9d9;
  opacity: 1;
}
.m-slidepage .swiper-pagination-bullet-active {
  background-color: #95672F;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1440px) {
  .m-slidepage .swiper-pagination-bullet {
    margin-left: 5px;
    margin-right: 5px;
    width: 10px;
    height: 10px;
  }
}

.m-hcase {
  padding-left: 55px;
  padding-right: 55px;
}
.m-hcase .box-hd {
  position: relative;
  text-align: center;
  padding-bottom: 23px;
  margin-bottom: 50px;
}
.m-hcase .box-hd:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) skewX(28deg);
  width: 102px;
  height: 3px;
  background-color: #BE0000;
}
.m-hcase .swiper-slide {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: -20px;
}
.m-hcase .box-item {
  position: relative;
  margin-right: 1.2154696133%;
  margin-bottom: 20px;
  width: 23.7569060773%;
}
.m-hcase .box-item:nth-child(4n) {
  margin-right: 0;
}
.m-hcase .box-item:hover .item-title {
  opacity: 1;
  visibility: visible;
}
.m-hcase .item-title {
  position: absolute;
  left: 0;
  bottom: 30px;
  padding: 0 30px;
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
}
.m-hcase .item-title a {
  color: #fff;
}
.m-hcase .item-title:hover {
  color: #BE0000;
}
.m-hcase .item-title:hover a {
  color: #BE0000;
}
.m-hcase .swiper-pagination {
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .m-hcase .box-hd {
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  .m-hcase .item-title {
    padding: 0 20px;
    bottom: 20px;
    line-height: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-hcase .swiper-pagination {
    margin-top: 30px;
  }
}
@media screen and (max-width: 991px) {
  .m-hcase {
    padding-left: 2%;
    padding-right: 2%;
  }
  .m-hcase .item-title {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 640px) {
  .m-hcase .box-item {
    margin-left: 1%;
    margin-right: 1% !important;
    width: 48%;
  }
}

.g-hpartner {
  position: relative;
  padding-top: 90px;
  padding-bottom: 93px;
}
.g-hpartner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #F3F3F3 0%, rgba(243, 243, 243, 0) 100%);
  opacity: 0.6;
}
@media screen and (max-width: 1440px) {
  .g-hpartner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.m-hpartner {
  position: relative;
}
.m-hpartner .box-hd {
  text-align: center;
  margin-bottom: 50px;
}
.m-hpartner .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: -20px;
}
.m-hpartner .box-item {
  margin-right: 1.3333333333%;
  margin-bottom: 20px;
  width: 18.9333333333%;
}
.m-hpartner .box-item:nth-child(5n) {
  margin-right: 0;
}
.m-hpartner .item-pic {
  border: 1px solid #ECECEC;
}
@media screen and (max-width: 1440px) {
  .m-hpartner .box-hd {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .m-hpartner .box-item {
    margin-left: 1%;
    margin-right: 1% !important;
    width: 48%;
  }
}

.g-hnews {
  padding-top: 80px;
  padding-bottom: 85px;
  background-color: #F3F3F3;
}
@media screen and (max-width: 1440px) {
  .g-hnews {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.m-hnews .box-hd {
  padding-bottom: 36px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.m-hnews .box-title {
  width: 46%;
}
.m-hnews .box-desc {
  width: 52.6666666667%;
  color: #666;
}
.m-hnews .box-item {
  margin-top: 20px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 16px;
  background-color: #fff;
  overflow: hidden;
}
.m-hnews .box-item:hover .item-time {
  color: #fff;
  background-image: linear-gradient(0deg, #8C5D29 0%, #EBC065 48.08%, #8C5D29 70.67%);
}
.m-hnews .box-item:hover .item-time:before {
  opacity: 0;
}
.m-hnews .item-pic {
  flex: 0 0 auto;
  width: 430px;
  border-radius: 16px;
}
.m-hnews .item-fix {
  flex: 1 1 auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
  overflow: hidden;
}
.m-hnews .item-text {
  flex: 1 1 auto;
  overflow: hidden;
  padding: 20px 50px;
}
.m-hnews .item-title {
  line-height: 32px;
  font-size: 20px;
  font-size: 2rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-hnews .item-desc {
  margin-top: 30px;
  max-height: 84px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.m-hnews .item-link {
  margin-top: 46px;
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #BE0000;
}
.m-hnews .item-link a {
  color: #BE0000;
}
.m-hnews .item-link a:hover {
  color: #95672F;
}
.m-hnews .item-time {
  position: relative;
  flex: 0 0 auto;
  width: 170px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #333;
  text-align: center;
}
.m-hnews .item-time em {
  display: block;
  line-height: 50px;
  font-size: 38px;
  font-size: 3.8rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  margin-bottom: 7px;
}
.m-hnews .item-time:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 230px;
  max-height: 90%;
  background-color: #666;
}
.m-hnews .swiper-pagination {
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .m-hnews .box-hd {
    padding-bottom: 30px;
  }
  .m-hnews .item-pic {
    width: 300px;
  }
  .m-hnews .item-text {
    padding: 20px;
  }
  .m-hnews .item-time {
    width: 110px;
    line-height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-hnews .item-time em {
    line-height: 1;
    font-size: 20px;
    font-size: 2rem;
  }
  .m-hnews .item-title, .m-hnews .item-link {
    line-height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-hnews .item-desc {
    margin-top: 10px;
  }
  .m-hnews .item-link {
    margin-top: 10px;
  }
}
@media screen and (max-width: 640px) {
  .m-hnews .box-title, .m-hnews .box-desc {
    width: 100%;
  }
  .m-hnews .box-desc {
    margin-top: 10px;
  }
  .m-hnews .box-item {
    display: block;
  }
  .m-hnews .item-pic {
    width: 100%;
  }
  .m-hnews .item-desc {
    height: 72px;
  }
}

.g-ft {
  background-color: #161616;
  line-height: 36px;
  font-size: 16px;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.6);
}
.g-ft a {
  color: rgba(255, 255, 255, 0.6);
}
.g-ft a:hover {
  color: #BE0000;
}

.m-ftfix1 {
  padding-top: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  text-align: center;
}

.m-ftlogo {
  line-height: 0;
  font-size: 0;
}
.m-ftlogo a {
  display: inline-block;
}

.m-ftfix2 {
  padding-top: 65px;
  padding-bottom: 82px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.m-ftb {
  padding-right: 20px;
}

.m-ftb1 {
  width: 12.3333333333%;
}

.m-ftb2 {
  width: 29.3333333333%;
}

.m-ftb3 {
  width: 26.6666666667%;
}

.m-ftb4 {
  width: 31.2%;
  padding-right: 0;
}

.m-ftt {
  margin-bottom: 17px;
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  color: #fff;
}
.m-ftt a {
  color: #fff;
}
.m-ftt a:hover {
  color: #BE0000;
}

.m-ftinfo {
  max-width: 315px;
}
.m-ftinfo .info-item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.m-ftinfo .item-icon {
  flex: 0 0 auto;
  width: 34px;
  color: #fff;
}
.m-ftinfo .item-info {
  flex: 1 1 auto;
  overflow: hidden;
  word-break: break-word;
}

.m-ftform .box-form {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.m-ftform .form-item {
  margin-bottom: 8px;
}
.m-ftform .form-item1 {
  width: 49.1452991453%;
}
.m-ftform .form-item2 {
  width: 100%;
}
.m-ftform .form-item3 {
  position: relative;
  width: calc(100% - 160px);
}
.m-ftform .form-item3 .form-text {
  padding-right: 100px;
}
.m-ftform .form-item4 {
  width: 150px;
}
.m-ftform .form-text {
  display: block;
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.m-ftform .form-text2 {
  height: 194px;
  line-height: 26px;
  padding-top: 11px;
}
.m-ftform .form-code {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 90px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background-color: #f3fbfe;
  overflow: hidden;
}
.m-ftform .form-code img {
  max-height: 46px;
  vertical-align: middle;
}
.m-ftform .form-btn {
  display: block;
  width: 100%;
  height: 48px;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  background-image: var(--ling);
}
.m-ftform .form-btn:hover {
  color: #fff;
  background: #BE0000;
}

.m-ftfix3 .f-box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 22px;
}

.m-ftext {
  flex: 1 1 auto;
  margin-right: 20px;
  margin-bottom: 10px;
  color: #fff;
  overflow: hidden;
}
.m-ftext a {
  color: #fff;
}
.m-ftext a:hover {
  color: #BE0000;
}

.m-ftshare {
  flex: 0 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.m-ftshare .share-item {
  margin-right: 14px;
  margin-bottom: 10px;
  width: 40px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.m-ftshare .share-item:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1440px) {
  .g-ft {
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-ftlogo img {
    width: 80px;
  }
  .m-ftform .form-text, .m-ftform .form-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-ftform .form-item3 {
    width: calc(100% - 120px);
  }
  .m-ftform .form-item4 {
    width: 110px;
  }
  .m-ftshare .share-item {
    margin-right: 10px;
    width: 36px;
    line-height: 36px;
  }
  .m-ftfix3 .f-box {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .m-ftfix2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .m-ftt {
    line-height: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1219px) {
  .m-ftform .form-item3, .m-ftform .form-item4 {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .m-ftb {
    width: 50%;
    margin-bottom: 20px;
  }
  .m-ftfix3 .f-box {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .m-ftb {
    width: 100%;
    padding-right: 0;
  }
  .m-ftt, .m-ftnav, .m-ftinfo, .m-ftform {
    display: none;
    margin-top: 10px;
  }
}
.banner {
  position: relative;
  z-index: 2;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
}
.banner .swiper-slide {
  transition: opacity 2000ms;
  pointer-events: none;
  transition-property: opacity;
}
.banner .swiper-slide img {
  transition: all 1s;
  transform: scale(1);
}
.banner .swiper-slide-active {
  pointer-events: auto;
  z-index: 2;
}
.banner .swiper-slide-active img {
  transform: scale(1.1);
}
.banner .swiper-pagination {
  position: absolute;
  z-index: 9;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  width: 100%;
  padding: 0 2%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.banner .swiper-pagination-bullet {
  border-color: transparent;
  background-color: transparent;
  position: relative;
}
.banner .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #c7c3be;
}
.banner .swiper-pagination-bullet-active {
  border-color: #fff;
}
.banner .swiper-pagination-bullet-active:before {
  background-color: #BE0000;
}
.banner .swiper {
  position: relative;
  z-index: 2;
}
.banner .swiper-button-prev, .banner .swiper-button-next {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 66px;
  line-height: 66px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  cursor: pointer;
  display: none;
}
.banner .swiper-button-prev:hover, .banner .swiper-button-next:hover {
  color: #BE0000;
  background-color: #fff;
}
.banner .swiper-button-next {
  right: 57px;
}
.banner .swiper-button-prev {
  left: 57px;
}
@media screen and (max-width: 991px) {
  .banner .swiper-pagination {
    right: 2%;
    left: 2%;
    height: auto;
    bottom: 10px;
    flex-flow: row wrap;
  }
  .banner .swiper-button-prev, .banner .swiper-button-next {
    display: none;
  }
  .banner .swiper-pagination-bullet {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.g-hd {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  --color: #fff;
}
@media screen and (min-width: 992px) {
  .g-hd.fixed {
    background-color: rgba(0, 0, 0, 0.6);
    border-bottom-color: transparent;
  }
  .g-hd.fixed .m-hdfix1 {
    display: none;
  }
}

.m-hdflex {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.m-hdfix1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 40px;
}

.m-hdinfo {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.m-hdinfo .info-item {
  margin-right: 40px;
  font-size: 16px;
  font-size: 1.6rem;
  color: var(--color);
}
.m-hdinfo .info-item a {
  color: var(--color);
}
.m-hdinfo .info-item a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.m-hdlogo {
  line-height: 100px;
}
.m-hdlogo a {
  display: inline-block;
}
.m-hdlogo img {
  vertical-align: middle;
}
.m-hdlogo .logo2 {
  display: none;
}

.m-hdnav .nav-item {
  position: relative;
  margin-left: 70px;
}
.m-hdnav .nav-item > a {
  position: relative;
  display: block;
  line-height: 100px;
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--color);
  padding-left: 10px;
  padding-right: 10px;
}
.m-hdnav .nav-item > a:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 100%;
  height: 2px;
  transform: translateX(-50%);
}
.m-hdnav .nav-item > a.active:before, .m-hdnav .nav-item > a.current:before, .m-hdnav .nav-item > a.active:before {
  background-color: var(--color);
}
.m-hdnav .nav-item:first-child {
  margin-left: 0;
}
.m-hdnav .sbnav-list {
  position: absolute;
  display: none;
  padding: 23px 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.m-hdnav .sbnav-list.show {
  display: block;
}
.m-hdnav .sbnav-list1 {
  left: -30px;
  top: 100%;
}
.m-hdnav .sbnav-list2, .m-hdnav .sbnav-list3 {
  left: 100%;
  top: 0;
}
.m-hdnav .sbnav-list1 {
  width: 286px;
}
.m-hdnav .sbnav-list2 {
  width: 275px;
}
.m-hdnav .sbnav-item {
  position: relative;
  padding-left: 40px;
  padding-right: 20px;
  margin-top: 14px;
}
.m-hdnav .sbnav-item a {
  position: relative;
  display: block;
  line-height: 28px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
}
.m-hdnav .sbnav-item a:hover, .m-hdnav .sbnav-item a.active {
  color: #BE0000;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.m-hdnav .sbnav-item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1440px) {
  .m-hdnav .sbnav-list {
    width: 220px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .m-hdnav .sbnav-list1 {
    left: -10px;
  }
  .m-hdnav .sbnav-item {
    padding-left: 20px;
    padding-right: 20px;
  }
  .m-hdnav .sbnav-item a {
    line-height: 24px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-hdlang {
  position: relative;
  z-index: 4;
}
.m-hdlang .lang-btn {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  color: var(--color);
  box-sizing: border-box;
}
.m-hdlang .lang-btn span {
  margin-left: 3px;
  margin-right: 3px;
}
.m-hdlang .lang-btn .icon-bottom7 {
  font-size: 10px;
  font-size: 1rem;
}
.m-hdlang .lang-list {
  position: absolute;
  right: 0;
  top: 100%;
  width: 100%;
  min-width: 112px;
  padding-bottom: 9px;
  padding-left: 24px;
  padding-right: 5px;
  padding-top: 14px;
  background-color: rgba(190, 0, 0, 0.9);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: all 550ms;
  border-radius: 0px 0px 10px 10px;
}
.m-hdlang .lang-list.active {
  visibility: visible;
  top: 100%;
  opacity: 1;
}
.m-hdlang .lang-item {
  display: block;
  margin-top: 14px;
  line-height: 24px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
}
.m-hdlang .lang-item:hover, .m-hdlang .lang-item.active {
  color: #cfcfcf;
}
.m-hdlang .lang-item:first-child {
  margin-top: 0;
}

.m-hdsch {
  position: relative;
  z-index: 3;
}
.m-hdsch .sch-btn {
  display: block;
  line-height: 100px;
  font-size: 20px;
  font-size: 2rem;
  color: var(--color);
}
.m-hdsch .sch-form {
  position: absolute;
  top: 100%;
  right: 15px;
  width: 176px;
  padding-right: 34px;
  border-radius: 15px;
  background-color: #f4f4f4;
  border: solid 1px #d7d7d7;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  box-sizing: border-box;
  transition: all 550ms;
}
.m-hdsch .sch-form .form-text {
  width: 100%;
  padding-left: 16px;
  padding-right: 10px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  box-sizing: border-box;
}
.m-hdsch .sch-form .form-btn, .m-hdsch .sch-form .iconfont {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 30px;
  height: 30px;
  width: 34px;
  text-align: left;
  font-size: 22px;
  font-size: 2.2rem;
  color: #BE0000;
}
.m-hdsch .sch-form .form-btn {
  z-index: 2;
}
.m-hdsch .sch-form.run {
  visibility: visible;
  right: 0;
  opacity: 1;
}

.m-hdlnk {
  margin-left: 60px;
}
.m-hdlnk a {
  display: inline-block;
  min-width: 162px;
  line-height: 22px;
  padding: 15px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #BE0000;
  text-align: center;
  background-color: #fff;
  border-radius: 60px;
}
.m-hdlnk a:hover {
  color: #fff;
  background-image: var(--ling);
}

.m-hdshare {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.m-hdshare .share-item {
  margin-right: 10px;
  width: 26px;
  line-height: 26px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
}
.m-hdshare .share-item:hover {
  color: #fff;
  background-image: var(--ling);
}

@media screen and (max-width: 1660px) {
  .m-hdnav .nav-item {
    margin-left: 20px;
  }
  .m-hdnav .nav-item > a {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-hdlang {
    margin-left: 10px;
  }
  .m-hdlang .lang-list {
    padding-left: 10px;
  }
  .m-hdlang .lang-item {
    line-height: 24px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .m-hdlnk {
    margin-left: 30px;
  }
  .m-hdlnk a {
    min-width: 120px;
    padding: 10px 15px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .m-hdinfo .info-item, .m-hdlang .lang-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-hdinfo .info-item {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1219px) {
  .m-hdlogo img {
    width: 70px;
  }
  .m-hdnav .nav-item {
    margin-left: 0;
  }
  .m-hdnav .nav-item > a {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .m-hdlnk a {
    min-width: 80px;
  }
  .m-hdsch .sch-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .g-hd {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .m-hdnav, .m-hdinfo, .m-hdlnk, .m-hdshare {
    display: none;
  }
  .m-hdfix1 {
    border-bottom: none;
  }
  .m-hdlogo {
    line-height: 60px;
  }
  .m-hdlogo img {
    width: 50px;
  }
  .m-hdsch {
    position: absolute;
    right: 55px;
    top: 0;
    margin-left: 0;
  }
  .m-hdsch .sch-btn {
    line-height: 60px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .m-hdlang {
    position: absolute;
    right: 85px;
    top: 0;
    margin-left: 0;
  }
  .m-hdlang .lang-btn {
    line-height: 60px;
    padding-top: 0;
    padding-bottom: 0;
    min-width: inherit;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 991px) {
  .f-hdpt {
    padding-top: 60px;
  }
}

.g-hmedia {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1440px) {
  .g-hmedia {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.m-hmedia .box-hd {
  text-align: center;
  margin-bottom: 50px;
}
.m-hmedia .box-link {
  margin-top: 30px;
  justify-content: center;
}
.m-hmedia .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: -20px;
}
.m-hmedia .box-item {
  margin-right: 2.4%;
  margin-bottom: 20px;
  width: 31.7333333333%;
}
.m-hmedia .box-item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1440px) {
  .m-hmedia .box-hd {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .m-hmedia .box-item {
    margin-right: 0;
    width: 100%;
  }
}

.g-hins {
  padding-top: 80px;
  padding-bottom: 90px;
  background-color: #F3F3F3;
}
@media screen and (max-width: 1440px) {
  .g-hins {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.m-hins .box-hd {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.m-hins .box-title {
  margin-right: 10px;
  margin-bottom: 10px;
}
.m-hins .box-link {
  margin-bottom: 10px;
}
.m-hins .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.m-hins .box-img {
  width: 51.0666666667%;
  line-height: 0;
  font-size: 0;
}
.m-hins .box-text {
  width: 43%;
}
.m-hins .box-ftt {
  line-height: 40px;
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-hins .box-desc {
  margin-top: 20px;
  max-height: 252px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
  overflow: hidden;
}
.m-hins .box-vm {
  margin-top: 40px;
}
.m-hins .box-vm a {
  display: inline-block;
  min-width: 154px;
  line-height: 20px;
  padding: 14px;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 60px;
  background-color: #DEDEDE;
}
@media screen and (max-width: 1440px) {
  .m-hins .box-hd {
    padding-bottom: 20px;
  }
  .m-hins .box-ftt {
    line-height: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .m-hins .box-desc {
    margin-top: 10px;
    max-height: 216px;
  }
  .m-hins .box-vm {
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .m-hins .box-img, .m-hins .box-text {
    width: 100%;
  }
  .m-hins .box-text {
    margin-top: 20px;
  }
}

.g-wp {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1440px) {
  .g-wp {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.g-mn1 {
  float: left;
  width: 100%;
  padding-left: 24.6666666667%;
}
@media screen and (max-width: 1440px) {
  .g-mn1 {
    padding-left: 250px;
  }
}
@media screen and (max-width: 991px) {
  .g-mn1 {
    float: none;
    padding-left: 0;
  }
}

.g-sd1 {
  float: left;
  width: 270px;
  margin-left: -100%;
}
@media screen and (max-width: 1440px) {
  .g-sd1 {
    width: 220px;
  }
}
@media screen and (max-width: 991px) {
  .g-sd1 {
    float: none;
    margin-left: 0;
    margin-top: 30px;
    width: 100%;
  }
}

.g-mn2 {
  float: left;
  width: 100%;
  padding-right: 36%;
}
@media screen and (max-width: 991px) {
  .g-mn2 {
    float: none;
    padding-right: 0;
  }
}

.g-sd2 {
  float: left;
  margin-left: -33.6%;
  width: 33.6%;
}
@media screen and (max-width: 991px) {
  .g-sd2 {
    float: none;
    margin-left: 0;
    margin-top: 30px;
    width: 100%;
  }
}

.m-clstext {
  margin-bottom: 60px;
}
.m-clstext .box-title {
  line-height: 40px;
  font-size: 30px;
  font-size: 3rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-clstext .box-text {
  margin-top: 14px;
}
.m-clstext .box-text:first-child {
  margin-top: 0;
}
.m-clstext .box-desc {
  color: #666;
}
.m-clstext .box-desc.hid {
  max-height: 84px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.m-clstext .box-link {
  margin-top: 16px;
  display: none;
}
.m-clstext .box-link .span {
  display: inline-block;
  line-height: 28px;
  font-size: 16px;
  font-size: 1.6rem;
  cursor: pointer;
}
.m-clstext .box-link .span i {
  margin-right: 5px;
  display: inline-block;
  width: 28px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  background-color: #BE0000;
}
.m-clstext .box-link .span:hover {
  text-decoration: underline;
}
.m-clstext .box-link .span2 {
  display: none;
}
.m-clstext .box-link.active .span1 {
  display: none;
}
.m-clstext .box-link.active .span2 {
  display: inline-block;
}
@media screen and (max-width: 1440px) {
  .m-clstext {
    margin-bottom: 30px;
  }
  .m-clstext .box-title {
    line-height: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .m-clstext .box-desc.hid {
    max-height: 72px;
  }
  .m-clstext .box-link {
    margin-top: 10px;
  }
  .m-clstext .box-link .span {
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-clstext .box-link .span .iconfont {
    width: 26px;
  }
}
@media screen and (max-width: 991px) {
  .m-clstext {
    padding-top: 0;
  }
  .m-clstext .box-title, .m-clstext .box-text {
    width: 100%;
  }
  .m-clstext .box-text {
    margin-top: 10px;
  }
}

.m-prol {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: -45px;
}
.m-prol .list-item {
  margin-right: 2.2123893805%;
  margin-bottom: 45px;
  width: 31.8584070796%;
}
.m-prol .list-item:nth-child(3n) {
  margin-right: 0;
}
.m-prol .list-item:hover .item-link {
  opacity: 1;
  visibility: visible;
}
.m-prol .item-fix {
  position: relative;
  border: 1px solid #DDD;
  overflow: hidden;
}
.m-prol .item-link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
}
.m-prol .item-link .link {
  display: inline-block;
  min-width: 207px;
  line-height: 30px;
  padding: 15px;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  color: #fff;
  text-align: center;
  background-image: var(--ling);
}
.m-prol .item-link .link a {
  color: #fff;
}
.m-prol .item-link .link input {
  margin-right: 5px;
}
.m-prol .item-link .link:hover {
  color: #fff;
  background: #BE0000;
}
.m-prol .item-title {
  margin-top: 30px;
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  .m-prol {
    margin-bottom: -20px;
  }
  .m-prol .list-item {
    margin-bottom: 20px;
  }
  .m-prol .item-title {
    margin-top: 10px;
    line-height: 24px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-prol .item-link .link {
    min-width: 140px;
    line-height: 20px;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 10px 15px;
  }
}
@media screen and (max-width: 991px) {
  .m-prol .item-link {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 640px) {
  .m-prol .list-item {
    width: 100%;
    margin-right: 0;
  }
}

.m-sdtt {
  padding: 10px 20px;
  line-height: 30px;
  font-size: 20px;
  font-size: 2rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  text-transform: uppercase;
  color: #fff;
  background-image: var(--ling);
  border-radius: 6px;
}
.m-sdtt i {
  margin-right: 15px;
}
@media screen and (max-width: 1440px) {
  .m-sdtt {
    line-height: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-sdnav1 .nav-title {
  margin-bottom: 11px;
}
.m-sdnav1 .nav-btn {
  position: relative;
  display: none;
  width: 100%;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 40px;
  padding-bottom: 10px;
  line-height: 25px;
  font-size: 18px;
  font-size: 1.8rem;
  color: white;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  text-transform: uppercase;
  background-image: var(--ling);
  box-sizing: border-box;
  text-transform: uppercase;
}
.m-sdnav1 .nav-btn > p {
  position: absolute;
  bottom: 12px;
  right: 15px;
}
.m-sdnav1 .nav-btn > p span {
  margin-bottom: 2px;
  display: block;
  width: 25px;
  height: 4px;
  background-color: #f2f2f2;
}
.m-sdnav1 .nav-sch {
  position: relative;
  margin-bottom: 35px;
}
.m-sdnav1 .sch-text {
  display: block;
  width: 100%;
  padding-left: 20px;
  padding-right: 50px;
  height: 50px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #777;
  background-color: #f2f2f2;
}
.m-sdnav1 .sch-btn, .m-sdnav1 .sch-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: left;
}
.m-sdnav1 .sch-btn {
  z-index: 2;
}
.m-sdnav1 .nav-list {
  margin-top: 0;
}
.m-sdnav1 .nav-item {
  position: relative;
  margin-top: 11px;
}
.m-sdnav1 .nav-item:first-child {
  margin-top: 0;
}
.m-sdnav1 .nav-item > a {
  position: relative;
  display: block;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-right: 30px;
  padding-left: 20px;
  line-height: 28px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
  border-radius: 6px;
}
.m-sdnav1 .nav-item > a i {
  position: absolute;
  right: 10px;
  top: 11px;
  display: none;
}
.m-sdnav1 .nav-item > a:hover, .m-sdnav1 .nav-item > a.active {
  background-color: #F3F3F3;
  color: #BE0000;
}
.m-sdnav1 .nav-item > a:hover i, .m-sdnav1 .nav-item > a.active i {
  display: block;
}
.m-sdnav1 .nav-item:first-child {
  margin-top: 0;
}
.m-sdnav1 .sbnav-list {
  display: none;
  padding-left: 30px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.m-sdnav1 .sbnav-list.show {
  display: block;
}
.m-sdnav1 .sbnav-item {
  margin-top: 10px;
}
.m-sdnav1 .sbnav-item a {
  position: relative;
  display: block;
  line-height: 20px;
  font-size: 14px;
  font-size: 1.4rem;
}
.m-sdnav1 .sbnav-item a:hover, .m-sdnav1 .sbnav-item a.active {
  color: #BE0000;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.m-sdnav1 .sbnav-item:first-child {
  margin-top: 0;
}

@media screen and (max-width: 1440px) {
  .m-sdnav1 .nav-title {
    margin-bottom: 10px;
  }
  .m-sdnav1 .nav-sch {
    margin-bottom: 20px;
  }
  .m-sdnav1 .sch-text {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-sdnav1 .nav-item > a {
    line-height: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-sdnav1 .sbnav-item {
    margin-top: 10px;
  }
  .m-sdnav1 .sbnav-item a {
    line-height: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .m-sdnav1 {
    padding: 0;
    border: none;
  }
  .m-sdnav1 .nav-title {
    display: none;
  }
  .m-sdnav1 .nav-btn {
    display: block;
  }
  .m-sdnav1 .nav-list {
    display: none;
    margin-top: 10px;
  }
  .m-sdnav1 .sbnav-item a {
    line-height: 20px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.m-sdnews {
  margin-top: 80px;
}
.m-sdnews .box-list {
  padding-top: 10px;
}
.m-sdnews .list-item {
  padding-top: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #D9D9D9;
}
.m-sdnews .list-item:hover .item-link {
  display: block;
}
.m-sdnews .item-title {
  max-height: 56px;
  line-height: 28px;
  font-size: 16px;
  font-size: 1.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.m-sdnews .item-title a {
  display: block;
}
.m-sdnews .item-fix {
  margin-top: 9px;
  line-height: 18px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.m-sdnews .item-link {
  display: none;
}
@media screen and (max-width: 1440px) {
  .m-sdnews {
    margin-top: 30px;
  }
  .m-sdnews .box-list {
    padding-top: 0;
  }
  .m-sdnews .item-title {
    max-height: 44px;
    line-height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-sdnews .item-fix {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-prob1 {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.m-prob1 .prob-pic {
  position: relative;
  z-index: 3;
  width: 42.3008849558%;
}
.m-prob1 .prob-pic-big {
  position: relative;
  box-sizing: border-box;
  border: solid 1px #DDD;
  background-color: #fff;
}
.m-prob1 .prob-pic-big .img {
  width: 100%;
}
.m-prob1 .prob-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  z-index: 8;
  display: none;
}
.m-prob1 .prob-video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.m-prob1 .prob-video.show {
  display: block;
}
.m-prob1 .prob-pic-big-img {
  display: block;
  line-height: 0;
  font-size: 0;
}
.m-prob1 .prob-pic-big-img .zoomPad {
  float: none;
  z-index: 8;
}
.m-prob1 .zoomWrapperImage img {
  max-width: 1200px;
}
.m-prob1 .prob-pic-small {
  position: relative;
  margin-top: 2px;
  overflow: hidden;
}
.m-prob1 .prob-pic-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 30px;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  color: #333;
  box-sizing: border-box;
  z-index: 9;
}
.m-prob1 .prob-pic-btn i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.m-prob1 .prob-pic-btn:hover {
  color: #BE0000;
}
.m-prob1 .prob-pic-btn.prev {
  left: 10px;
}
.m-prob1 .prob-pic-btn.next {
  right: 10px;
}
.m-prob1 .prob-pic-list {
  overflow: hidden;
}
.m-prob1 .prob-pic-list ul {
  width: 10000%;
  overflow: hidden;
}
.m-prob1 .prob-pic-list ul li {
  position: relative;
  float: left;
  margin-right: 0.0062761506%;
  width: 0.2447698745%;
}
.m-prob1 .prob-pic-item .item-pic, .m-prob1 .prob-pic-item .item-video {
  border: 1px solid #DDD;
  background-color: #fff;
  overflow: hidden;
}
.m-prob1 .prob-pic-item .item-pic:hover, .m-prob1 .prob-pic-item .item-video:hover {
  border-color: #BE0000;
}
.m-prob1 .prob-pic-item .item-pic:hover img, .m-prob1 .prob-pic-item .item-video:hover img {
  transform: scale(1);
}
.m-prob1 .prob-pic-item .item-pic.active, .m-prob1 .prob-pic-item .item-video.active {
  border-color: #BE0000;
}
.m-prob1 .prob-pic-item .item-video {
  position: relative;
  display: block;
  line-height: 0;
  font-size: 0;
  text-align: center;
}
.m-prob1 .prob-text {
  width: 53.0973451327%;
  align-self: center;
}
.m-prob1 .prob-title {
  position: relative;
  font-size: 30px;
  font-size: 3rem;
  line-height: 40px;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  font-weight: normal;
}
.m-prob1 .prob-desc {
  margin-top: 32px;
  color: #666;
}
.m-prob1 .prob-share {
  margin-top: 26px;
  letter-spacing: 0;
}
.m-prob1 .prob-share .font {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  margin-right: 10px;
  line-height: 26px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
}
.m-prob1 .prob-share .img {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  height: 26px;
}
.m-prob1 .prob-link {
  margin-top: 56px;
  margin-bottom: -10px;
  overflow: hidden;
}
.m-prob1 .prob-link .link {
  margin-bottom: 20px;
  margin-right: 20px;
  display: inline-block;
  padding: 14px;
  min-width: 166px;
  line-height: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  border-radius: 60px;
  background-color: #333;
  cursor: pointer;
}
.m-prob1 .prob-link .link:last-child {
  margin-right: 0;
}
.m-prob1 .prob-link .link:hover {
  color: #fff;
  background-image: var(--ling);
}
@media screen and (max-width: 1440px) {
  .m-prob1 .prob-link {
    margin-top: 20px;
  }
  .m-prob1 .prob-link .link {
    min-width: 100px;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 5px 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-prob1 .prob-title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
  }
  .m-prob1 .prob-share {
    margin-top: 20px;
  }
}

@media screen and (max-width: 991px) {
  .zoomPad {
    cursor: default !important;
  }
  .zoomPup {
    display: none !important;
  }
  .zoomWindow {
    display: none !important;
  }
  .zoomPreload {
    display: none !important;
  }
  .m-prob1 .prob-pic {
    float: none;
    margin: 0 auto;
  }
  .m-prob1 .prob-text {
    margin-top: 20px;
    width: 100%;
    height: auto;
  }
  .m-prob1 .prob-desc em {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .m-prob1 .prob-pic {
    width: 100%;
  }
  .m-prob1 .prob-pic-item .item-pic:before {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .m-prob1 .prob-pic-list ul li {
    margin-right: 0.02%;
    width: 0.32%;
  }
}
.m-prob {
  margin-top: 70px;
}
.m-prob .box-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1440px) {
  .m-prob {
    margin-top: 30px;
  }
  .m-prob .box-title {
    margin-bottom: 30px;
  }
}

.m-prott {
  position: relative;
  padding-bottom: 13px;
  line-height: 40px;
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-prott:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #BE0000;
  transform: skewX(30deg);
}
@media screen and (max-width: 1440px) {
  .m-prott {
    padding-bottom: 10px;
    line-height: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-proappl .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: -20px;
}
.m-proappl .box-item {
  margin-bottom: 20px;
  width: 48.6725663717%;
}
@media screen and (max-width: 375px) {
  .m-proappl .box-item {
    width: 100%;
  }
}

.m-proadva .box-desc {
  color: #666;
}

.m-profaq .box-item {
  padding-top: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #D9D9D9;
}
.m-profaq .box-item:first-child {
  padding-top: 0;
}
.m-profaq .item-title {
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-profaq .item-desc {
  margin-top: 8px;
  color: #666;
}
@media screen and (max-width: 1440px) {
  .m-profaq .item-title {
    line-height: 24px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-profaq .item-desc {
    margin-top: 5px;
  }
}

.m-nbtn {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.m-nbtn .box-btn {
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #f3f3f3;
  font-size: 16px;
  font-size: 1.6rem;
  color: #BE0000;
  text-align: center;
  cursor: pointer;
}
.m-nbtn .box-btn:hover {
  color: #fff;
  background-image: var(--ling);
}
@media screen and (max-width: 1440px) {
  .m-nbtn .box-btn {
    width: 36px;
    line-height: 36px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-mpro .box-hd {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 52px;
}
.m-mpro .box-title {
  margin-right: 10px;
  margin-bottom: 10px;
}
.m-mpro .btn-wp {
  margin-bottom: 10px;
}
.m-mpro .prev {
  margin-right: 20px;
}
.m-mpro .item-top {
  position: relative;
  overflow: hidden;
  border: 1px solid #DDD;
}
.m-mpro .item-link {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
}
.m-mpro .item-link a {
  display: block;
  width: 34px;
  line-height: 34px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #BE0000;
  text-align: center;
  border-radius: 50%;
  background-color: #f3f3f3;
}
.m-mpro .item-link a:hover {
  color: #fff;
  background-image: var(--ling);
}
.m-mpro .item-title {
  margin-top: 30px;
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  .m-mpro .box-hd {
    object-fit: 20px;
  }
  .m-mpro .item-title {
    margin-top: 10px;
    line-height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-servtw {
  margin-top: 120px;
}
.m-servtw .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.m-servtw:first-child {
  margin-top: 0;
}
.m-servtw .box-desc {
  margin-top: 34px;
  color: #666;
}
.m-servtw .box-desc:first-child {
  margin-top: 0;
}
.m-servtw .box-title {
  line-height: 40px;
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-servtw .box-img {
  line-height: 0;
  font-size: 0;
}
.m-servtw .box-img1 {
  order: 2;
}
@media screen and (max-width: 1440px) {
  .m-servtw {
    margin-top: 30px;
  }
  .m-servtw .box-desc {
    margin-top: 10px;
  }
  .m-servtw .box-title {
    line-height: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  .m-servtw .box-wp {
    display: block;
    overflow: hidden;
  }
  .m-servtw .box-img1 {
    float: right;
    margin-left: 20px;
  }
  .m-servtw .box-img2 {
    float: left;
    margin-right: 20px;
  }
  .m-servtw .box-fix {
    width: initial;
  }
}
@media screen and (max-width: 480px) {
  .m-servtw .box-img {
    float: none;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .m-servtw .box-fix {
    width: 100%;
  }
}

.m-servb1 .box-img {
  width: 43.5333333333%;
}
.m-servb1 .box-fix {
  width: 49%;
}
@media screen and (max-width: 991px) {
  .m-servb1 .box-fix {
    width: initial;
  }
}
@media screen and (max-width: 480px) {
  .m-servb1 .box-img {
    width: 100%;
  }
}

.m-servb2 .box-img {
  width: 37.7333333333%;
}
.m-servb2 .box-fix {
  width: 62.2666666667%;
  align-self: stretch;
  background-color: #faf7f5;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 4.3333333333%;
}
.m-servb2 .box-text {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .m-servb2 .box-fix {
    width: initial;
    padding: 0;
    background-color: transparent;
    display: block;
  }
  .m-servb2 .box-text {
    width: initial;
  }
}
@media screen and (max-width: 480px) {
  .m-servb2 .box-img {
    width: 100%;
  }
}

.m-servb3 .box-img {
  width: 45.7333333333%;
}
.m-servb3 .box-fix {
  width: 47%;
}
@media screen and (max-width: 991px) {
  .m-servb3 .box-fix {
    width: initial;
  }
}
@media screen and (max-width: 480px) {
  .m-servb3 .box-img {
    width: 100%;
  }
}

.m-servb4 .box-img {
  width: 45.6666666667%;
}
.m-servb4 .box-fix {
  width: 49.3333333333%;
}
@media screen and (max-width: 991px) {
  .m-servb4 .box-fix {
    width: initial;
  }
}
@media screen and (max-width: 480px) {
  .m-servb4 .box-img {
    width: 100%;
  }
}

.m-servb5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9f7f4;
}
.m-servb5 .box-wp {
  display: block;
}
.m-servb5 .box-img {
  float: right;
  width: 47.1333333333%;
  line-height: 0;
  font-size: 0;
  margin-left: 3.6666666667%;
}
.m-servb5 .box-fix {
  width: initial;
}
@media screen and (max-width: 1440px) {
  .m-servb5 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .m-servb5 .box-img {
    float: none;
    margin-left: 0;
    width: 100%;
  }
}

.m-servb6 .box-img {
  width: 41.8%;
}
.m-servb6 .box-fix {
  width: 52.6666666667%;
}
@media screen and (max-width: 991px) {
  .m-servb6 .box-fix {
    width: initial;
  }
}
@media screen and (max-width: 480px) {
  .m-servb6 .box-img {
    width: 100%;
  }
}

.m-servtt {
  line-height: 40px;
  font-size: 30px;
  font-size: 3rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
@media screen and (max-width: 1440px) {
  .m-servtt {
    line-height: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-servb7 {
  margin-top: 120px;
  text-align: center;
}
.m-servb7 .box-title, .m-servb7 .box-desc {
  margin-left: auto;
  margin-right: auto;
}
.m-servb7 .box-title {
  max-width: 835px;
}
.m-servb7 .box-desc {
  margin-top: 26px;
  max-width: 1240px;
  color: #666;
}
@media screen and (max-width: 1440px) {
  .m-servb7 {
    margin-top: 30px;
  }
  .m-servb7 .box-desc {
    margin-top: 10px;
  }
}

.m-servb8 {
  margin-top: 60px;
}
.m-servb8 .box-title {
  margin-bottom: 78px;
}
.m-servb8 .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: -30px;
}
.m-servb8 .box-item {
  margin-bottom: 30px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 55px;
  padding-bottom: 42px;
  background-color: #f9f5ee;
  border: 1px solid transparent;
}
.m-servb8 .box-item:hover {
  background-color: #fff;
  border-color: #e6e6e6;
}
.m-servb8 .box-item .item-top {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.m-servb8 .box-item .item-icon {
  flex: 0 0 auto;
  width: 70px;
  line-height: 0;
  font-size: 0;
  margin-right: 25px;
}
.m-servb8 .box-item .item-title {
  flex: 1 1 auto;
  overflow: hidden;
  align-self: center;
  line-height: 32px;
  font-size: 20px;
  font-size: 2rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-servb8 .box-item .item-desc {
  margin-top: 35px;
  color: #666;
}
.m-servb8 .box-item1 {
  width: 32%;
}
.m-servb8 .box-item2 {
  width: 49%;
}
@media screen and (max-width: 1440px) {
  .m-servb8 {
    margin-top: 30px;
  }
  .m-servb8 .box-title {
    margin-bottom: 30px;
  }
  .m-servb8 .box-item {
    padding: 30px 20px;
  }
  .m-servb8 .box-item .item-icon {
    margin-right: 15px;
    width: 50px;
  }
  .m-servb8 .box-item .item-title {
    line-height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-servb8 .box-item .item-desc {
    margin-top: 10px;
  }
}
@media screen and (max-width: 640px) {
  .m-servb8 .box-item {
    width: 100%;
  }
}

.m-servb9 .box-img {
  width: 49.1333333333%;
}
.m-servb9 .box-fix {
  width: 49%;
}
.m-servb9 .box-desc {
  line-height: 40px;
}
@media screen and (max-width: 991px) {
  .m-servb9 .box-fix {
    width: initial;
  }
  .m-servb9 .box-desc {
    line-height: 30px;
  }
}
@media screen and (max-width: 480px) {
  .m-servb9 .box-img {
    width: 100%;
  }
}

.m-servb10 {
  margin-top: 124px;
  padding-top: 110px;
  padding-bottom: 106px;
  background: url("../images/servb10-bg1.jpg") no-repeat center;
  background-size: cover;
}
.m-servb10 .box-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 1030px;
  text-align: center;
}
.m-servb10 .box-link {
  margin-top: 56px;
  justify-content: center;
}
@media screen and (max-width: 1440px) {
  .m-servb10 {
    margin-top: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .m-servb10 .box-link {
    margin-top: 20px;
  }
}

.m-servb11 .box-img {
  width: 49.1333333333%;
}
.m-servb11 .box-fix {
  width: 46.3333333333%;
}
.m-servb11 .box-title {
  line-height: 40px;
  font-size: 30px;
  font-size: 3rem;
}
.m-servb11 .box-desc em {
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
@media screen and (max-width: 1440px) {
  .m-servb11 .box-title {
    line-height: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .m-servb11 .box-desc em {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .m-servb11 .box-fix {
    width: initial;
  }
}
@media screen and (max-width: 480px) {
  .m-servb11 .box-img {
    width: 100%;
  }
}

.m-servb12 .box-img {
  width: 49.1333333333%;
}
.m-servb12 .box-fix {
  width: 45.3333333333%;
}
.m-servb12 .box-title {
  line-height: 40px;
  font-size: 30px;
  font-size: 3rem;
}
.m-servb12 .box-desc em {
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
@media screen and (max-width: 1440px) {
  .m-servb12 .box-title {
    line-height: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .m-servb12 .box-desc em {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .m-servb12 .box-fix {
    width: initial;
  }
}
@media screen and (max-width: 480px) {
  .m-servb12 .box-img {
    width: 100%;
  }
}

.m-servb13 {
  padding-top: 114px;
}
.m-servb13 .box-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  text-align: center;
}
.m-servb13 .box-title em {
  display: block;
}
.m-servb13 .box-link {
  margin-top: 50px;
  justify-content: center;
}
@media screen and (max-width: 1440px) {
  .m-servb13 {
    padding-top: 40px;
  }
  .m-servb13 .box-link {
    margin-top: 20px;
  }
}

.m-casenav {
  padding-bottom: 72px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: stretch;
}
.m-casenav .nav-item {
  margin-bottom: 10px;
  width: 13%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
  line-height: 32px;
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
}
.m-casenav .nav-item:hover, .m-casenav .nav-item.active {
  color: #fff;
  background-image: var(--ling);
}
@media screen and (max-width: 1440px) {
  .m-casenav {
    padding-bottom: 30px;
  }
  .m-casenav .nav-item {
    line-height: 24px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .m-casenav .nav-item {
    width: 24%;
  }
}
@media screen and (max-width: 640px) {
  .m-casenav .nav-item {
    width: 49%;
  }
}

.m-casel {
  padding-left: 0;
  padding-left: 0;
}
.m-casel .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: -40px;
}
.m-casel .box-item {
  margin-bottom: 40px;
  margin-right: 1.4%;
  width: 23.9333333333%;
}
@media screen and (max-width: 1440px) {
  .m-casel .box-wp {
    margin-bottom: -20px;
  }
  .m-casel .box-item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .m-casel .box-item {
    width: 48%;
  }
}

.m-news .box-title {
  line-height: 40px;
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  font-weight: normal;
}
.m-news .box-info, .m-news .box-share {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.m-news .box-info {
  margin-top: 16px;
  line-height: 26px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
}
.m-news .box-time {
  margin-right: 20px;
}
.m-news .share-title {
  margin-right: 10px;
}
.m-news .share-img {
  line-height: 0;
  font-size: 0;
}
.m-news .box-desc {
  margin-top: 30px;
  color: #666;
}
@media screen and (max-width: 1440px) {
  .m-news .box-title {
    line-height: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .m-news .box-info {
    margin-top: 20px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
  }
  .m-news .box-desc {
    margin-top: 20px;
  }
}

.m-mmat {
  background-color: #f3f3f3;
}

.m-sdcase {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 40px;
  background-color: #f3f3f3;
}
.m-sdcase .box-title {
  line-height: 40px;
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-sdcase .box-list {
  margin-top: 48px;
}
.m-sdcase .list-item {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
}
.m-sdcase .list-item:first-child {
  padding-top: 0;
}
.m-sdcase .item-pic {
  flex: 0 0 auto;
  width: 163px;
  margin-right: 30px;
  border-radius: 10px;
}
.m-sdcase .item-text {
  flex: 1 1 auto;
  overflow: hidden;
  align-self: stretch;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.m-sdcase .item-title {
  max-height: 60px;
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.m-sdcase .item-title a {
  display: block;
}
.m-sdcase .item-link {
  margin-top: 10px;
  line-height: 24px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
}
.m-sdcase .item-link a {
  color: #666;
}
.m-sdcase .item-link a:hover {
  color: #BE0000;
}
@media screen and (max-width: 1440px) {
  .m-sdcase {
    padding: 20px;
  }
  .m-sdcase .box-title {
    line-height: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .m-sdcase .box-list {
    margin-top: 20px;
  }
  .m-sdcase .list-item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .m-sdcase .item-pic {
    width: 100px;
    margin-right: 10px;
  }
  .m-sdcase .item-title, .m-sdcase .item-link {
    line-height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-sdcase .item-title {
    max-height: 44px;
  }
}

.m-abtb1 .box-desc {
  max-height: initial;
  display: block;
}

.m-abtb2 {
  padding-top: 100px;
}
.m-abtb2 .box-hd {
  text-align: center;
  margin-bottom: 70px;
}
.m-abtb2 .box-slide {
  position: relative;
}
.m-abtb2 .box-slide:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 157px;
  width: 100%;
  border-bottom: 1px solid rgba(102, 102, 102, 0.5);
}
.m-abtb2 .box-item:hover .item-num {
  color: #BE0000;
}
.m-abtb2 .item-text {
  position: relative;
  padding-top: 75px;
}
.m-abtb2 .item-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 33px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-image: var(--ling);
  box-shadow: 0 0 0 3px rgba(149, 103, 47, 0.1);
}
.m-abtb2 .item-num {
  line-height: 50px;
  font-size: 38px;
  font-size: 3.8rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-abtb2 .item-desc {
  margin-top: 10px;
  height: 60px;
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  overflow-y: auto;
}
.m-abtb2 .box-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -100px;
}
.m-abtb2 .prev {
  left: -90px;
}
.m-abtb2 .next {
  right: -90px;
}
@media screen and (max-width: 1440px) {
  .m-abtb2 {
    padding-top: 30px;
  }
  .m-abtb2 .box-hd {
    margin-bottom: 30px;
  }
  .m-abtb2 .item-num {
    line-height: 24px;
    font-size: 20px;
    font-size: 2rem;
  }
  .m-abtb2 .item-desc {
    margin-top: 10px;
    height: 48px;
    line-height: 24px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-abtb2 .item-text {
    padding-top: 30px;
  }
  .m-abtb2 .item-text:before {
    top: 10px;
  }
  .m-abtb2 .box-slide:before {
    bottom: 98px;
  }
  .m-abtb2 .box-btn {
    margin-top: -56px;
  }
}
@media screen and (max-width: 991px) {
  .m-abtb2 .box-btn {
    z-index: 2;
  }
  .m-abtb2 .prev {
    left: 5px;
  }
  .m-abtb2 .next {
    right: 5px;
  }
}

.m-abtb3 {
  margin-top: 120px;
}
.m-abtb3 .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #f3f3f3;
}
.m-abtb3 .box-wp .box-img {
  line-height: 0;
  font-size: 0;
  width: 50%;
}
.m-abtb3 .box-wp .box-fix {
  width: 50%;
  padding-top: 20px;
  padding-bottom: 20px;
  align-self: center;
}
.m-abtb3 .box-wp .box-title {
  position: relative;
  padding-bottom: 23px;
}
.m-abtb3 .box-wp .box-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  background-color: #BE0000;
  transform: skewX(30deg);
}
.m-abtb3 .box-wp .box-desc {
  margin-top: 30px;
  line-height: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-abtb3 .box-wp .box-info {
  margin-top: 23px;
  color: #666;
}
.m-abtb3 .box-wp .box-info em {
  position: relative;
  display: block;
  padding-left: 17px;
}
.m-abtb3 .box-wp .box-info em:before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background-color: #BE0000;
  border-radius: 50%;
}
.m-abtb3 .box-wp .box-info strong {
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  color: #333;
}
.m-abtb3 .box-wp1 .box-img {
  order: 2;
}
.m-abtb3 .box-wp1 .box-fix {
  padding-left: calc((100% - 1500px) / 2);
  padding-right: 6.25%;
}
.m-abtb3 .box-wp2 .box-fix {
  padding-right: calc((100% - 1500px) / 2);
  padding-left: 6.25%;
}
@media screen and (max-width: 1700px) {
  .m-abtb3 .box-wp1 .box-fix {
    padding-left: 100px;
  }
  .m-abtb3 .box-wp2 .box-fix {
    padding-right: 100px;
  }
}
@media screen and (max-width: 1440px) {
  .m-abtb3 {
    margin-top: 30px;
  }
  .m-abtb3 .box-wp .box-desc {
    margin-top: 20px;
    line-height: 24px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-abtb3 .box-wp .box-info {
    margin-top: 20px;
  }
  .m-abtb3 .box-wp .box-info em:before {
    top: 9px;
  }
}
@media screen and (max-width: 991px) {
  .m-abtb3 .box-wp .box-fix {
    padding: 20px 2%;
  }
}
@media screen and (max-width: 640px) {
  .m-abtb3 .box-wp .box-img, .m-abtb3 .box-wp .box-fix {
    width: 100%;
    order: 2;
  }
}

.m-abtb4 {
  margin-top: 90px;
}
.m-abtb4 .box-desc {
  margin-left: auto;
  margin-right: auto;
  max-width: 1255px;
  line-height: 50px;
  font-size: 30px;
  font-size: 3rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .m-abtb4 {
    margin-top: 30px;
  }
  .m-abtb4 .box-desc {
    line-height: 24px;
    font-size: 20px;
    font-size: 2rem;
  }
}

.m-abtb5 {
  margin-top: 120px;
}
.m-abtb5 .box-wp {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.m-abtb5 .box-fix {
  width: 48.9333333333%;
}
.m-abtb5 .box-slide {
  width: 51.0666666667%;
}
.m-abtb5 .box-hd {
  padding-right: 55px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 43px;
}
.m-abtb5 .box-btn {
  margin-bottom: 10px;
}
.m-abtb5 .prev {
  margin-right: 20px;
}
.m-abtb5 .box-title {
  margin-right: 10px;
  margin-bottom: 10px;
  line-height: 50px;
  font-size: 38px;
  font-size: 3.8rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-abtb5 .box-text {
  background-color: #f5f0eb;
  padding-left: 70px;
  padding-right: 50px;
  padding-top: 34px;
  padding-bottom: 36px;
}
.m-abtb5 .text-title {
  line-height: 40px;
  font-size: 30px;
  font-size: 3rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-abtb5 .text-desc {
  margin-top: 24px;
}
.m-abtb5 .text-desc em {
  position: relative;
  display: block;
  padding-left: 17px;
  margin-top: 6px;
}
.m-abtb5 .text-desc em:before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #BE0000;
}
.m-abtb5 .text-desc p:first-child em {
  margin-top: 0;
}
@media screen and (max-width: 1440px) {
  .m-abtb5 {
    margin-top: 30px;
  }
  .m-abtb5 .box-hd {
    padding-right: 20px;
    padding-bottom: 20px;
  }
  .m-abtb5 .box-text {
    padding: 30px 20px;
  }
  .m-abtb5 .prev {
    margin-right: 10px;
  }
  .m-abtb5 .text-title {
    line-height: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .m-abtb5 .text-desc {
    margin-top: 10px;
  }
  .m-abtb5 .text-desc em:before {
    top: 9px;
  }
  .m-abtb5 .box-title {
    line-height: 24px;
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .m-abtb5 .box-fix, .m-abtb5 .box-slide {
    width: 100%;
  }
}

.m-abtb6 {
  padding-top: 112px;
}
.m-abtb6 .box-title {
  text-align: center;
  margin-bottom: 84px;
}
.m-abtb6 .box-slide {
  position: relative;
}
.m-abtb6 .box-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.m-abtb6 .prev {
  left: -90px;
}
.m-abtb6 .next {
  right: -90px;
}
@media screen and (max-width: 1440px) {
  .m-abtb6 {
    padding-top: 30px;
  }
  .m-abtb6 .box-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .m-abtb6 .box-btn {
    z-index: 2;
  }
  .m-abtb6 .prev {
    left: 10px;
  }
  .m-abtb6 .next {
    right: 10px;
  }
}

.m-newsnav {
  padding-bottom: 112px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
}
.m-newsnav .nav-item {
  width: 33%;
  margin-bottom: 10px;
  padding: 24px;
  line-height: 32px;
  font-size: 20px;
  font-size: 2rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.m-newsnav .nav-item:hover, .m-newsnav .nav-item.active {
  color: #fff;
  background-image: var(--ling);
}
@media screen and (max-width: 1440px) {
  .m-newsnav {
    padding-bottom: 20px;
  }
  .m-newsnav .nav-item {
    padding: 10px 14px;
    line-height: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .m-newsnav .nav-item {
    width: 100%;
  }
}

.m-sdnews2 .box-title {
  margin-bottom: 34px;
  line-height: 40px;
  font-size: 30px;
  font-size: 3rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
}
.m-sdnews2 .list-item {
  margin-top: 30px;
  padding-left: 30px;
  padding-right: 20px;
  padding-top: 33px;
  padding-bottom: 32px;
  background-color: #f3f3f3;
  border-radius: 20px;
}
.m-sdnews2 .list-item:first-child {
  margin-top: 0;
}
.m-sdnews2 .item-title {
  max-height: 64px;
  line-height: 32px;
  font-size: 20px;
  font-size: 2rem;
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.m-sdnews2 .item-title a {
  display: block;
}
.m-sdnews2 .item-desc {
  margin-top: 22px;
  max-height: 84px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.m-sdnews2 .item-fix {
  margin-top: 11px;
  line-height: 32px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.m-sdnews2 .item-link {
  width: 32px;
  border-radius: 50%;
  text-align: center;
  color: #BE0000;
}
.m-sdnews2 .item-link:hover {
  color: #fff;
  background-image: var(--ling);
}
@media screen and (max-width: 1440px) {
  .m-sdnews2 .box-title {
    margin-bottom: 20px;
    line-height: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .m-sdnews2 .list-item {
    margin-top: 20px;
    padding: 20px 15px;
  }
  .m-sdnews2 .item-title {
    line-height: 24px;
    font-size: 14px;
    font-size: 1.4rem;
    max-height: 48px;
  }
  .m-sdnews2 .item-desc {
    margin-top: 10px;
    max-height: 72px;
  }
  .m-sdnews2 .item-fix {
    margin-top: 10px;
  }
}

.m-downl .box-title {
  margin-bottom: 50px;
}
.m-downl .list-item {
  margin-top: 20px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 19px 30px;
  background-color: #f5f5f5;
}
.m-downl .list-item:first-child {
  margin-top: 0;
}
.m-downl .item-pic {
  flex: 0 0 auto;
  line-height: 0;
  font-size: 0;
}
.m-downl .item-title {
  flex: 1 1 auto;
  overflow: hidden;
  margin-left: 30px;
  margin-right: 30px;
  line-height: 28px;
  font-size: 16px;
  font-size: 1.6rem;
}
.m-downl .item-link {
  flex: 0 0 auto;
}
.m-downl .item-link a {
  color: #666;
}
.m-downl .item-link a:hover {
  color: #BE0000;
  color: transparent;
  background: var(--ling);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.m-downl a {
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .m-downl .box-title {
    margin-bottom: 30px;
  }
  .m-downl .list-item {
    margin-top: 10px;
    padding: 10px 15px;
  }
  .m-downl .item-title {
    margin-left: 10px;
    margin-right: 10px;
    line-height: 24px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-matdown .box-title {
  margin-bottom: 57px;
}
.m-matdown .box-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: -60px;
}
.m-matdown .list-item {
  margin-right: 2.2%;
  margin-bottom: 60px;
  width: 23.3333333333%;
}
.m-matdown .list-item:nth-child(4n) {
  margin-right: 0;
}
.m-matdown .list-item:hover .item-modal {
  display: block;
}
.m-matdown .item-modal {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 2;
}
.m-matdown .item-modal i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  font-size: 40px;
  font-size: 4rem;
  color: #fff;
}
.m-matdown .item-title {
  margin-top: 23px;
  line-height: 28px;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .m-matdown .box-title {
    margin-bottom: 20px;
  }
  .m-matdown .box-list {
    margin-bottom: -20px;
  }
  .m-matdown .list-item {
    margin-bottom: 20px;
  }
  .m-matdown .item-modal i {
    font-size: 20px;
    font-size: 2rem;
  }
  .m-matdown .item-title {
    margin-top: 10px;
    line-height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .m-matdown .list-item {
    margin-left: 1%;
    margin-right: 1% !important;
    width: 48%;
  }
}

.g-ctusfix {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.m-ctusinfo {
  width: 36.6666666667%;
  max-width: 440px;
}
.m-ctusinfo .box-title {
  max-width: 280px;
  margin-bottom: 50px;
}
.m-ctusinfo .info-item {
  margin-top: 40px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.m-ctusinfo .info-item:first-child {
  margin-top: 0;
}
.m-ctusinfo .item-icon {
  margin-right: 30px;
  flex: 0 0 auto;
  width: 62px;
  line-height: 62px;
  background-color: #faf6ee;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
}
.m-ctusinfo .item-icon i {
  color: transparent;
  background: var(--ling);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.m-ctusinfo .item-text {
  flex: 1 1 auto;
  overflow: hidden;
  align-self: center;
  line-height: 28px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
  word-break: break-word;
}
.m-ctusinfo .item-text a {
  color: #666;
}
.m-ctusinfo .item-text a:hover {
  color: #BE0000;
}
.m-ctusinfo .item-title {
  font-family: "PoppinsMedium", arial, helvetica, sans-serif;
  color: #333;
}
@media screen and (max-width: 1440px) {
  .m-ctusinfo .box-title {
    margin-bottom: 30px;
  }
  .m-ctusinfo .info-item {
    margin-top: 20px;
  }
  .m-ctusinfo .item-icon {
    width: 50px;
    line-height: 50px;
    margin-right: 10px;
  }
  .m-ctusinfo .item-text {
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .m-ctusinfo {
    width: 100%;
  }
}

.m-ctusform {
  width: 60.5333333333%;
  padding-left: 68px;
  padding-right: 68px;
  padding-top: 60px;
  padding-bottom: 70px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 5px 5px 30px 0 rgba(6, 38, 103, 0.15);
}
.m-ctusform .box-title {
  margin-bottom: 40px;
}
.m-ctusform .box-form {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.m-ctusform .form-item {
  margin-bottom: 20px;
}
.m-ctusform .form-item1 {
  width: 48.0519480519%;
}
.m-ctusform .form-item2 {
  width: 100%;
}
.m-ctusform .form-item3 {
  position: relative;
  width: 68.4415584416%;
}
.m-ctusform .form-item3 .form-text {
  padding-right: 100px;
}
.m-ctusform .form-item4 {
  width: 28.3116883117%;
}
.m-ctusform .form-text {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding-left: 26px;
  padding-right: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  border-radius: 10px;
  border: 1px solid #999;
}
.m-ctusform .form-text2 {
  height: 120px;
  line-height: 26px;
  padding-top: 12px;
}
.m-ctusform .star .form-text {
  background: url("../images/star1.png") no-repeat 10px 15px;
  background-color: #fff;
}
.m-ctusform .form-code {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 90px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: #f3fbfe;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}
.m-ctusform .form-code img {
  max-height: 48px;
  vertical-align: middle;
}
.m-ctusform .form-btn {
  display: block;
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  background-color: #333;
  border-radius: 10px;
}
.m-ctusform .form-btn:hover {
  color: #fff;
  background-image: var(--ling);
}
@media screen and (max-width: 1440px) {
  .m-ctusform {
    padding: 30px 20px 20px;
  }
  .m-ctusform .box-title {
    margin-bottom: 20px;
  }
  .m-ctusform .form-item {
    margin-bottom: 15px;
  }
  .m-ctusform .form-text, .m-ctusform .form-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .m-ctusform {
    width: 100%;
    margin-top: 30px;
  }
  .m-ctusform .form-item3, .m-ctusform .form-item4 {
    width: 100%;
  }
}

.m-ctusform .form-text::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}
.m-ctusform .form-text:-moz-placeholder {
  color: #666;
  opacity: 1;
}
.m-ctusform .form-text::-moz-placeholder {
  color: #666;
  opacity: 1;
}
.m-ctusform .form-text:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}