@import url(../css/reset.css);
.pc-header {
  position: relative;
  z-index: 2;
  height: 101px;
}
.pc-header .wrap {
  position: relative;
  margin: 0 0.43rem;
  height: 100%;
  transform: 0.5s;
}
.pc-header .wrap .logo {
  position: absolute;
  top: 36px;
  width: 282px;
  height: 31px;
  float: left;
}
.pc-header .wrap .logo img {
  width: 100%;
  height: 100%;
}
.pc-header .wrap nav {
  position: absolute;
  top: 45px;
  right: 250px;
  height: calc(100% - 45px);
}
.pc-header .wrap nav .nav {
  display: flex;
}
.pc-header .wrap nav .nav > li {
  position: relative;
  margin-right: 0.38rem;
}
.pc-header .wrap nav .nav > li:last-child {
  margin-right: 0;
}
.pc-header .wrap nav .nav > li:hover > a,
.pc-header .wrap nav .nav > li.active > a {
  background-size: 100% 100%;
}
.pc-header .wrap nav .nav > li:hover > a::after,
.pc-header .wrap nav .nav > li.active > a::after {
  transform: scaleX(1);
  transform-origin: left;
}
.pc-header .wrap nav .nav > li a {
  position: relative;
  font-size: 18px;
  padding-bottom: 10px;
  color: #333;
  background: #333 -webkit-linear-gradient(left, #E6253B, #E6253B) no-repeat 0 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 100% 0%;
  transition: background-size 0.5s;
}
.pc-header .wrap nav .nav > li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
  background-color: #E6253B;
}
.pc-header .wrap nav .nav > li .sub-nav {
  display: none;
  position: absolute;
  top: 31px;
  background-color: #f5f5f5;
  width: fit-content;
  padding: 25px 0 15px;
  min-width: 200px;
}
.pc-header .wrap nav .nav > li .sub-nav::after {
  position: absolute;
  bottom: 0;
  content: '';
  height: 2px;
  width: 100%;
  background-color: #E6253B;
}
.pc-header .wrap nav .nav > li .sub-nav li {
  padding: 0 30px;
  white-space: nowrap;
  margin-bottom: 30px;
}
.pc-header .wrap nav .nav > li .sub-nav li:hover > a,
.pc-header .wrap nav .nav > li .sub-nav li.active > a {
  background-size: 100% 100%;
}
.pc-header .wrap nav .nav > li .sub-nav li:last-child {
  margin-bottom: 10px;
}
.pc-header .wrap nav .nav > li .sub-nav li a {
  font-size: 16px;
  padding-bottom: 0px;
}
.pc-header .wrap .search-area {
  position: absolute;
  right: 160px;
  top: 43px;
  padding-left: 28px;
  display: flex;
  align-items: center;
}
.pc-header .wrap .search-area::after {
  position: absolute;
  left: 0;
  top: 2px;
  content: '';
  width: 1px;
  height: 17px;
  background-color: #c5c5c5;
}
.pc-header .wrap .search-area .search-icon {
  width: 22px;
  cursor: pointer;
}
.pc-header .wrap .search-area .search-icon.search-icon2 {
  display: none;
}
.pc-header .wrap .search-area .input {
  padding-left: 3px;
  margin-left: 2px;
  border: none;
  outline: none;
  font-size: 16px;
  padding-right: 20px;
  color: #333;
  width: 0;
}
.pc-header .wrap .search-area .close {
  display: none;
  position: absolute;
  width: 15px;
  height: 15px;
  right: 0;
  top: 3px;
  cursor: pointer;
  background-image: url(../images/close-icon-g.png);
  background-size: 100%;
  background-position: 100% 0;
}
.pc-header .wrap .language-area {
  display: flex;
  align-items: center;
  position: absolute;
  top: 35px;
  right: 0;
  padding: 8px 19px 8px 12px;
  background-color: #E6253B;
  font-size: 15px;
  color: #fff;
  border-radius: 18px;
  cursor: pointer;
}
.pc-header .wrap .language-area .language-icon {
  position: relative;
  z-index: 1;
  width: 20px;
}
.pc-header .wrap .language-area .current-language {
  position: relative;
  z-index: 1;
  margin-left: 10px;
  margin-right: 15px;
}
.pc-header .wrap .language-area .arrow-bottom-icon {
  position: relative;
  z-index: 1;
  width: 14px;
}
.pc-header .wrap .language-area .language-list {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #E6253B;
  width: 100%;
  padding: 30px 0 20px;
}
.pc-header .wrap .language-area .language-list li {
  position: relative;
  z-index: 99999;
  text-align: center;
  margin-bottom: 15px;
  cursor: pointer;
}
.pc-header .wrap .language-area .language-list li.active {
  font-weight: 800;
}
.pc-header .wrap .language-area .language-list li:last-child {
  margin-bottom: 0;
}
.m-header {
  display: none;
}
.page-header {
  position: relative;
  height: 324px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.page-header .content {
  position: relative;
  z-index: 1;
  margin-top: 137px;
  margin-left: 1.97rem;
  color: #fff;
}
.page-header .content .title {
  font-size: 38px;
  font-weight: 700;
  overflow: hidden;
}
.page-header .content .title span {
  display: block;
}
.page-header .content .desc {
  margin-top: 17px;
  font-size: 18px;
  overflow: hidden;
}
.page-header .content .desc span {
  display: block;
}
.page-header .content::after {
  position: absolute;
  top: 3px;
  left: -17px;
  content: '';
  width: 6px;
  height: 69px;
  background-color: #e6253b;
}
.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.feedback {
  display: flex;
  align-items: center;
  height: 298px;
  width: 100%;
  background: url(../images/feedback-bg.png) no-repeat center / cover;
  padding: 113px 1.965rem 110px 1.9425rem;
  box-sizing: border-box;
}
.feedback .icons {
  display: flex;
}
.feedback .icons .icon {
  width: 72px;
  height: 72px;
}
.feedback .icons .icon:first-child {
  margin-right: 29px;
}
.feedback .text {
  color: #fff;
  margin-left: 0.4875rem;
}
.feedback .text .title {
  font-size: 38px;
  font-weight: 700;
}
.feedback .text .desc {
  margin-top: 16px;
  font-size: 18px;
}
.feedback .concat {
  display: flex;
  align-items: center;
  margin-left: 1.1rem;
  color: #fff;
}
.feedback .concat a {
  color: #fff;
}
.feedback .concat .btn {
  display: flex;
  align-items: center;
  border: 2px solid #fff;
  padding: 12px 45px 11px 22px;
  position: relative;
  margin-left: 0.4275rem;
  flex-shrink: 0;
}
.feedback .concat .btn span {
  position: relative;
  z-index: 1;
}
.feedback .concat .btn:hover::after {
  width: 100%;
}
.feedback .concat .btn .arrow-icon {
  position: relative;
  z-index: 1;
  width: 27px;
  height: 27px;
  margin-right: 20px;
}
.feedback .concat .btn::after {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #e6253b;
  transition: all 0.3s;
}
.pc-footer {
  width: 100%;
  overflow: hidden;
  background-color: #1c1c20;
}
.pc-footer .logo {
  padding-top: 88px;
}
.pc-footer .logo .logo-bottom {
  margin-left: 1.94rem;
  width: 282px;
}
.pc-footer .info {
  display: flex;
  margin-top: 77px;
  margin-left: 1.94rem;
  padding-bottom: 0.53rem;
}
.pc-footer .info .base-info {
  display: flex;
  flex-wrap: wrap;
  width: 40%;
  float: left;
}
.pc-footer .info .base-info .line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pc-footer .info .base-info .line .item {
  margin-bottom: 51px;
  margin-right: 0.82rem;
}
.pc-footer .info .base-info .line .item .title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}
.pc-footer .info .base-info .line .item .desc {
  color: #fff;
  cursor: pointer;
}
.pc-footer .info .base-info .line .item .desc a {
  color: inherit;
}
.pc-footer .info .base-info .line .item.icons {
  display: flex;
  flex-wrap: wrap;
  transform: translateX(15%);
}
.pc-footer .info .base-info .line .item.icons .icon {
  width: 40px;
  height: 40px;
  margin-right: 0.15rem;
  margin-bottom: 5px;
}
.pc-footer .info .base-info .line .item.icons .icon:hover {
  filter: brightness(150%);
}
.pc-footer .info .links {
  float: left;
}
.pc-footer .info .links .item {
  margin-bottom: 50px;
}
.pc-footer .info .links .item:last-child {
  margin-bottom: 0;
}
.pc-footer .info .links .item a {
  font-size: 18px;
  color: #fff;
  transition: all 0.2s;
}
.pc-footer .info .links .item a:hover {
  color: #e6253b;
}
.pc-footer .info .product-link {
  margin-left: 1.64rem;
  float: left;
}
.pc-footer .info .product-link.product-link2 {
  margin-left: 1.19rem;
  margin-top: 59px;
}
.pc-footer .info .product-link a {
  color: #fff;
  transition: all 0.2s;
}
.pc-footer .info .product-link a:hover {
  color: #e6253b;
}
.pc-footer .info .product-link .title {
  font-size: 18px;
  margin-bottom: 40px;
}
.pc-footer .info .product-link .item {
  font-size: 15px;
  margin-bottom: 35px;
}
.pc-footer .info .product-link .item:last-child {
  margin-bottom: 0;
}
.pc-footer .copyright {
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 36px;
  padding-left: 1.97rem;
  padding-bottom: 42px;
}
.pc-footer .copyright .top {
  display: flex;
}
.pc-footer .copyright .top .divide {
  margin: 0 10px;
}
.pc-footer .copyright .bottom {
  margin-top: 9px;
  display: flex;
  justify-content: space-between;
  padding-right: 1.97rem;
}
.pc-footer .copyright .bottom a {
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
}
.pc-footer .copyright .bottom a:hover {
  color: #e6253b;
}
.slide-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  z-index: 99;
  right: 24px;
  bottom: 64px;
  background-color: #e6253b;
  width: 44px;
  padding: 15px 7px;
  border-radius: 22px;
}
.slide-wrapper .item {
  position: relative;
  margin-bottom: 10px;
}
.slide-wrapper .item:hover .content {
  display: flex;
}
.slide-wrapper .item.back {
  display: none;
}
.slide-wrapper .item.back .content {
  padding: 10px;
  right: 63px;
  height: 30px;
}
.slide-wrapper .item .icon {
  width: 40px;
  height: 40px;
}
.slide-wrapper .item .icon.top {
  cursor: pointer;
  margin-top: 10px;
  width: 45px;
  height: 45px;
}
.slide-wrapper .item .content {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
  border-radius: 5px;
  position: absolute;
  width: 270px;
  height: 70px;
  background-color: #f5f5f5;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 6px;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
  color: #e6253b;
}
.slide-wrapper .item .content::after {
  content: '';
  position: absolute;
  right: -20px;
  height: 100%;
  width: 30px;
  background-color: transparent;
}
.slide-wrapper .item .content .title {
  font-size: 18px;
  color: #333;
}
.slide-wrapper .item .content .value {
  font-size: 26px;
  margin-top: 10px;
  font-weight: 700;
}
.slide-wrapper .item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1020px) {
  .pc-header {
    display: none;
  }
  .m-header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 1.35rem;
    padding: 0.25rem 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    box-sizing: border-box;
  }
  .m-header .wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    box-sizing: border-box;
  }
  .m-header .wrap .logo img {
    height: 0.4rem;
  }
  .m-header .wrap .right {
    display: flex;
  }
  .m-header .wrap .right .icons .icon {
    width: 0.6rem;
    height: 0.6rem;
  }
  .m-header .wrap .right .icons .icon:first-child {
    margin-right: 0.1rem;
  }
  .m-header .wrap .right .icons .icon.close-icon {
    display: none;
  }
  .m-header .wrap .right .language-area {
    display: none;
  }
  .m-header .wrap .search-area {
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    left: 0;
    width: 100%;
    top: 1.33rem;
    background: #fff;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  }
  .m-header .wrap .search-area .icon {
    width: 0.45rem;
    margin-left: 0.15rem;
  }
  .m-header .wrap .search-area input {
    width: 80%;
    height: 0.8rem;
    border: none;
    outline: none;
    font-size: 0.3rem;
    color: #333;
  }
  .m-header .wrap .nav {
    position: absolute;
    left: 0;
    z-index: 9999;
    left: -40vw;
    width: 100%;
    height: calc(100vh - 1.32rem);
    top: 1.33rem;
    background-color: #fff;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    width: 40vw;
    transition: left 0.3s;
  }
  .m-header .wrap .nav > ul {
    padding-top: 0.3rem;
    height: 100%;
    background-color: #fff;
    box-sizing: border-box;
  }
  .m-header .wrap .nav > ul > li {
    font-size: 0.35rem;
    text-align: center;
  }
  .m-header .wrap .nav > ul > li a {
    display: block;
    height: 1rem;
    line-height: 1rem;
    color: #333;
  }
  .m-header .wrap .nav > ul > li.active {
    background-color: #f5f5f5;
  }
  .m-header .wrap .nav > ul > li .sub-nav {
    position: absolute;
    z-index: -1;
    top: 0;
    height: calc(100vh - 1.32rem);
    left: -60vw;
    width: 61vw;
    padding-left: 0.5rem;
    padding-top: 0.3rem;
    background-color: #f5f5f5;
    transition: left 0.3s;
    box-sizing: border-box;
  }
  .m-header .wrap .nav > ul > li .sub-nav .title {
    text-align: left;
    color: #333;
    font-size: 0.36rem;
    font-weight: 700;
    border-bottom: 1px solid #dedede;
  }
  .m-header .wrap .nav > ul > li .sub-nav li {
    font-size: 0.35rem;
    text-align: left;
  }
  .m-header .wrap .mask {
    display: none;
    position: absolute;
    z-index: 999;
    left: 0;
    width: 100%;
    top: 1.35rem;
    height: calc(100vh - 1.35rem);
    background-color: rgba(0, 0, 0, 0.7);
  }
  .page-header {
    height: 3.5rem;
  }
  .page-header .content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0.55rem;
    margin-top: 0;
  }
  .page-header .content::after {
    left: -0.25rem;
    height: 100%;
  }
  .page-header .content .title {
    padding-bottom: 1px;
    font-size: 0.5rem;
  }
  .page-header .content .desc {
    font-size: 0.3rem;
  }
  .feedback {
    display: block;
    height: auto;
    padding: 0.8rem 0.3rem;
  }
  .feedback .icons .icon {
    width: 1.4rem;
    height: 1.4rem;
  }
  .feedback .icons .icon:first-child {
    margin-right: 0.2rem;
  }
  .feedback .text {
    margin-top: 0.4rem;
    margin-left: 0;
  }
  .feedback .text .title {
    font-size: 0.6rem;
  }
  .feedback .text .desc {
    font-size: 0.35rem;
  }
  .feedback .concat {
    margin-top: 0.4rem;
    font-size: 0.3rem;
    margin-left: 0;
    display: block;
  }
  .feedback .concat .title {
    line-height: 0.4rem;
  }
  .feedback .concat .btn {
    margin-left: 0;
    width: fit-content;
    padding: 0.2rem 0.3rem 0.21rem 0.27rem;
    margin-top: 0.35rem;
  }
  .feedback .concat .btn .arrow-icon {
    margin-right: 0.2rem;
    width: 0.4rem;
    height: 0.4rem;
  }
  .pc-footer {
    width: 100%;
  }
  .pc-footer .logo {
    display: flex;
    justify-content: center;
    padding-top: 0.8rem;
  }
  .pc-footer .logo .logo-bottom {
    margin-left: 0;
    width: 5rem;
  }
  .pc-footer .info {
    display: block;
    margin-top: 1.1rem;
    padding-top: 0;
    margin-left: 0;
  }
  .pc-footer .info .base-info {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 0.8rem;
  }
  .pc-footer .info .base-info .line {
    display: block;
    text-align: center;
  }
  .pc-footer .info .base-info .line .item {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0.4rem;
  }
  .pc-footer .info .base-info .line .item .title {
    font-size: 0.35rem;
    margin-bottom: 0.25rem;
  }
  .pc-footer .info .base-info .line .item .desc {
    font-size: 0.32rem;
  }
  .pc-footer .info .base-info .line .item.icons {
    transform: none;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 0;
  }
  .pc-footer .info .base-info .line .item.icons .icon {
    width: 0.65rem;
    height: 0.65rem;
  }
  .pc-footer .info .links {
    float: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .pc-footer .info .links .item {
    margin-right: 0.4rem;
    margin-bottom: 0;
  }
  .pc-footer .info .links .item:last-child {
    margin-right: 0;
  }
  .pc-footer .info .links .item a {
    font-size: 0.32rem;
  }
  .pc-footer .info .product-link {
    margin-left: 0;
    margin-top: 0.45rem;
    float: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .pc-footer .info .product-link .title {
    display: flex;
    justify-content: center;
    padding-left: 0;
    box-sizing: border-box;
    width: 100%;
    font-size: 0.32rem;
    margin-bottom: 0.4rem;
  }
  .pc-footer .info .product-link .item {
    display: flex;
    justify-content: center;
    font-size: 0.3rem;
    margin: 0 0.15rem 0.4rem;
  }
  .pc-footer .info .product-link.product-link2 {
    margin-top: 0.4rem;
    margin-left: 0;
  }
  .pc-footer .copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.3rem;
    padding-left: 0;
    padding-bottom: 0.5rem;
    font-size: 0.2rem;
  }
  .pc-footer .copyright .top .divide {
    margin: 0 0.08rem;
  }
  .pc-footer .copyright .bottom {
    display: block;
    text-align: center;
    margin-top: 0.12rem;
    padding-right: 0;
  }
  .pc-footer .copyright .bottom .right {
    margin-top: 0.12rem;
  }
  .slide-wrapper {
    display: none;
  }
}
