* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}
body {
  background: #f5f5f5;
}
.commonWidth {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .commonWidth {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .commonWidth {
    width: 95%;
  }
}
h1 {
  font-family: ARCHIVO;
}
.text-center {
  text-align: center;
}
.flex {
  display: flex;
}
.flex-content-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-margin {
  margin-top: 70px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .top-margin {
    margin-top: 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .top-margin {
    margin-top: 2.1875rem;
  }
}
.white {
  color: #ffffff;
}
@font-face {
  font-family: ARCHIVO;
  src: url(../font/ARCHIVO-BOLD_0.TTF);
}
@keyframes move {
  0% {
    transform: rotateY(0turn);
  }
  100% {
    transform: rotateY(0.5turn);
  }
}
@keyframes move2 {
  0% {
    transform: rotateY(0.5turn);
  }
  100% {
    transform: rotateY(0turn);
  }
}
@keyframes position {
  0% {
    top: 467px;
  }
  50% {
    top: 233.5px;
  }
  100% {
    top: 0;
  }
}
@keyframes borderWidth {
  0% {
    width: 0%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 100%;
  }
}
@keyframes paddingRight {
  0% {
    padding-right: 29px;
  }
  50% {
    padding-right: 64px;
  }
  100% {
    padding-right: 80px;
  }
}
@keyframes paddingRight2 {
  0% {
    padding-right: 80px;
  }
  50% {
    padding-right: 40px;
  }
  100% {
    padding-right: 29px;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.6;
  }
}
.pc-header {
  height: 107px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 33px;
  padding: 0 20px;
}
.pc-header .pc-nav > li {
  width: 130px;
}
.pc-header .pc-nav > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 107px;
  font-size: 18px;
  color: #333;
}
.pc-header .pc-nav > li > a:hover {
  background: #e60012;
  color: #ffffff;
  height: 107px;
}
.pc-header .pc-nav > li.drop .drop-menu {
  width: 249px;
  display: none;
}
.pc-header .pc-nav > li.drop .drop-menu li {
  height: 41px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  background: #e60012;
  border-bottom: 1px solid #c70010;
}
.pc-header .pc-nav > li.drop .drop-menu li a {
  color: #ffffff;
}
.pc-header .pc-nav > li.drop .drop-menu li:hover {
  background: #c3000f;
}
.pc-header .pc-nav > li.drop:hover .drop {
  position: relative;
}
.pc-header .pc-nav > li.drop:hover .drop a {
  color: #ffffff;
}
.pc-header .pc-nav > li.drop:hover .drop-menu {
  display: block;
  position: absolute;
}
.pc-header .pc-nav > li.search-box {
  width: 130px;
  height: 107px;
}
.pc-header .pc-nav > li.search-box p {
  font-size: 33px;
  color: #e60012;
  cursor: pointer;
}
.pc-header .pc-nav > li.whatsapp {
  width: 250px;
  height: 40px;
  background: #e60012;
  border-radius: 19px;
  padding: 0 20px;
}
.pc-header .pc-nav > li.whatsapp > a {
  width: auto;
}
.pc-header .pc-nav > li.whatsapp > a:hover {
  background: transparent;
}
.pc-header .pc-nav > li.whatsapp p {
  color: #ffffff;
}
.pc-header .pc-nav > li.whatsapp p a {
  color: #ffffff;
}
.pc-header .pc-nav > li.whatsapp p:nth-child(1) {
  font-size: 26px;
}
.pc-header .pc-nav > li.whatsapp p:nth-child(2) {
  font-size: 20px;
}
@media screen and (min-width: 1200px) and (max-width: 1800px) {
  .pc-header .pc-nav > li.whatsapp {
    width: auto;
  }
  .pc-header .pc-nav > li.whatsapp a {
    width: auto;
  }
  .pc-header .pc-nav > li.whatsapp a:hover {
    background: transparent;
  }
  .pc-header .pc-nav > li.whatsapp p:nth-child(2) {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .pc-header {
    flex-direction: column;
    margin-top: 0;
    width: 100%;
    height: auto;
    padding: 0.625rem 0;
  }
  .pc-header .pc-nav {
    width: 100%;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .pc-header .pc-nav > li {
    width: 10%;
  }
  .pc-header .pc-nav > li > a {
    width: 100%;
    font-size: 1.125rem;
  }
  .pc-header .pc-nav > li.search-box {
    display: none;
  }
  .pc-header .pc-nav > li.whatsapp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-header {
    display: none;
  }
}
.phone-header {
  display: none;
}
@media screen and (max-width: 767px) {
  .phone-header {
    display: block;
  }
  .phone-header .logo {
    width: 70%;
    height: auto;
    margin: 1.875rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
  .phone-header .logo img {
    width: 100%;
    height: auto;
  }
  .phone-header .phone-nav {
    background: #e60012;
    height: 40px;
  }
  .phone-header .phone-nav .icon-caidan {
    width: 100%;
    height: 30px;
    font-size: 30px !important;
    display: flex;
    justify-content: flex-end;
    color: #ffffff;
    padding-right: 15px !important;
  }
  .phone-header .drop {
    padding: 0.9375rem !important;
    display: none;
    background: #e60012;
    position: relative;
    z-index: 1111;
  }
  .phone-header .drop li {
    margin-bottom: 0.625rem;
  }
  .phone-header .drop li .drop-one {
    display: flex;
    align-items: center;
  }
  .phone-header .drop li .drop-one span:nth-child(1) {
    margin-right: 0.625rem;
  }
  .phone-header .drop li span,
  .phone-header .drop li a {
    color: #ffffff;
  }
  .phone-header .drop li .drop-menu {
    height: auto;
    display: none;
  }
  .phone-header .drop li ol li:first-child {
    color: #ffffff;
    font-family: Rajdhani-Bold;
  }
  .phone-header .drop li ol li a {
    color: #ffffff;
  }
}
.search-input {
  position: fixed;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
}
.search-input .x {
  width: 90%;
  margin: 0 auto;
  text-align: right;
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 300px;
  cursor: pointer;
}
.search-input .input {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.search-input .input .text-search {
  width: 83%;
  height: 40px;
  padding-left: 20px;
  outline: none;
}
.search-input .input button {
  width: 15%;
  height: 40px;
  cursor: pointer;
}
.footer {
  width: 100%;
  background: #eeeeee;
  margin-top: -88px;
  padding-top: 88px;
}
.footer .footer-content .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 17px;
  border-bottom: 1px solid #dddddd;
}
.footer .footer-content .footer-top .friend-links {
  display: flex;
  align-items: center;
  height: 30px;
}
.footer .footer-content .footer-top .friend-links p:nth-child(1) {
  color: #e60012;
  font-size: 30px;
}
.footer .footer-content .footer-top .friend-links p:nth-child(2) {
  color: #333;
  font-weight: 600;
  margin: 0 20px 0 7px;
}
.footer .footer-content .footer-top .friend-links li {
  color: #666;
}
.footer .footer-content .footer-top .friend-links li a {
  color: #666;
  margin-left: 10px;
  margin-right: 10px;
}
.footer .footer-content .footer-top .friend-links li:hover {
  color: #e60012;
}
.footer .footer-content .footer-top .friend-links li:hover a {
  color: #e60012;
}
.footer .footer-content .footer-top .social-media {
  display: flex;
}
.footer .footer-content .footer-top .social-media li {
  margin: 0 13px;
}
.footer .footer-content .footer-top .social-media li a {
  font-size: 29px;
  color: #666;
}
.footer .footer-content .footer-top .social-media li:hover a {
  color: #e60012;
  text-shadow: 0px 3px 7px rgba(230, 0, 18, 0.56);
}
.footer .footer-content .footer-bottom {
  margin-top: 40px;
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
}
.footer .footer-content .footer-bottom ul p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 33px;
}
.footer .footer-content .footer-bottom ul p a {
  color: #333;
}
.footer .footer-content .footer-bottom ul li {
  line-height: 28px;
  color: #666;
}
.footer .footer-content .footer-bottom ul li a {
  color: #666;
}
.footer .footer-content .footer-bottom ul li:hover {
  color: #e60012;
}
.footer .footer-content .footer-bottom ul li:hover a {
  color: #e60012;
}
.footer .footer-content .footer-bottom ul:last-child {
  width: 246px;
}
.footer .copyright {
  width: 100%;
  border-top: 1px solid #ddd;
  padding: 20px 0;
}
.footer .copyright div {
  display: flex;
  justify-content: space-between;
}
.footer .copyright div p,
.footer .copyright div a {
  color: #999;
}
.footer .copyright div a:hover {
  color: #e60012;
}
.footer .copyright div p {
  cursor: default;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer {
    margin-top: 0;
    padding-top: 1.875rem;
  }
  .footer .footer-content .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .footer-content .footer-top .friend-links {
    flex-wrap: wrap;
    height: auto;
    margin-bottom: 1.25rem;
  }
  .footer .footer-content .footer-top .friend-links p:nth-child(2) {
    margin: 0 0.625rem 0 0.4375rem;
  }
  .footer .footer-content .footer-bottom {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .footer .footer-content .footer-bottom ul {
    width: 100%;
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    display: none;
  }
}
.suspended-window {
  position: fixed;
  top: 50%;
  right: 0;
}
.suspended-window li {
  width: 60px;
  height: 60px;
  background: #e60012;
  border-bottom: 1px solid #b9000f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.suspended-window li p {
  font-size: 30px;
  color: #ffffff;
}
.suspended-window li div {
  height: 60px;
  background: #e60012;
  position: absolute;
  right: 68px;
  line-height: 60px;
  padding-left: 15px;
  padding-right: 15px;
  display: none;
}
.suspended-window li div a {
  color: #ffffff;
}
.suspended-window li div::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid #e60012;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  right: -10px;
  top: 42%;
}
.suspended-window li:hover {
  background: #a3000d;
}
.suspended-window li:hover div {
  display: block;
}
.suspended-window li.to-top {
  margin-top: 18px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .suspended-window {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .suspended-window {
    display: none;
  }
}
.fourButtonsOnThePhone {
  display: none;
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fourButtonsOnThePhone {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .fourButtonsOnThePhone {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #e60012;
    box-shadow: 0px 3px 7px 7px rgba(230, 0, 18, 0.56);
  }
  .fourButtonsOnThePhone li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
  }
  .fourButtonsOnThePhone li a p:nth-child(1) {
    font-size: 1.875rem;
  }
}
body {
  background: #ffffff;
}
.banner {
  width: 100%;
  margin-top: -140px;
  position: relative;
  z-index: -1;
}
.banner img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .banner {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .banner {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
}
.breadcrumbNavigation {
  border-bottom: 1px solid #eeeeee;
}
.breadcrumbNavigation ul {
  padding: 22px 0;
  display: flex;
  align-items: center;
}
.breadcrumbNavigation ul p {
  font-size: 26px;
  margin-right: 5px;
  color: #999;
}
.breadcrumbNavigation ul li {
  color: #999;
  font-size: 14px;
  cursor: pointer;
}
.breadcrumbNavigation ul li a {
  color: #999;
  font-size: 14px;
  margin: 0 5px;
}
.content-one > h1 {
  width: 70.186%;
  font-size: 35px;
  line-height: 50px;
  margin: 0 auto;
  color: #333;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .content-one > h1 {
    width: 100%;
    font-size: 1.5625rem;
    line-height: 2.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .content-one > h1 {
    width: 100%;
    font-size: 1.25rem;
    line-height: 18px;
  }
}
.content-one .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 0;
}
.content-one .social-media li {
  margin: 0 13px;
}
.content-one .social-media li a {
  font-size: 29px;
  color: #666;
}
.content-one .social-media li:hover a {
  color: #e60012;
  text-shadow: 0px 3px 7px rgba(230, 0, 18, 0.56);
}
.content-one > p {
  width: 91%;
  line-height: 25px;
  margin: 0 auto 46px auto;
  color: #666;
}
@media screen and (max-width: 767px) {
  .content-one > p {
    display: none;
  }
}
.content-one .content-one-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content-one .content-one-ul li {
  width: 31.563%;
  height: 314px;
  margin-bottom: 44px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.content-one .content-one-ul li h1 {
  font-size: 30px;
  color: #333;
  font-family: Arial-BoldMT;
  position: relative;
  z-index: 1;
}
.content-one .content-one-ul li p {
  font-size: 18px;
  margin-top: 15px;
  padding-left: 55px;
  padding-right: 55px;
  color: #666;
  font-family: ArialMT;
  position: relative;
  z-index: 1;
}
.content-one .content-one-ul li::after {
  display: none;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #e60012;
  position: absolute;
  top: 0;
}
.content-one .content-one-ul li.li-active h1,
.content-one .content-one-ul li.li-active p {
  color: #ffffff;
}
.content-one .content-one-ul li.li-active::after {
  display: block;
  animation: opacity 0.5s linear forwards;
}
.content-one .content-one-ul li:hover h1,
.content-one .content-one-ul li:hover p {
  color: #ffffff;
}
.content-one .content-one-ul li:hover::after {
  display: block;
  animation: opacity 0.5s linear forwards;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .content-one .content-one-ul li {
    width: 49%;
    margin-bottom: 1.25rem;
  }
  .content-one .content-one-ul li p {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .content-one .content-one-ul li {
    width: 100%;
    height: auto;
    padding: 1.25rem 0;
  }
}
.recommended-news {
  background: url(../img/service-news-back.png) no-repeat;
  background-size: cover;
  padding-top: 63px;
  padding-bottom: 63px;
}
.recommended-news .news h1 {
  font-size: 40px;
  color: #ffffff;
}
.recommended-news .news > p {
  font-size: 16px;
  color: #ffffff;
  margin: 20px 0 40px 0;
}
.recommended-news .news ul li {
  width: 24.131%;
  height: 467px;
  background: #ffffff;
  padding-bottom: 19px;
  overflow: hidden;
}
.recommended-news .news ul li .top-div {
  width: 100%;
}
.recommended-news .news ul li .top-div .top-img {
  width: 100%;
  height: 287px;
  overflow: hidden;
}
.recommended-news .news ul li .top-div .top-img img {
  width: 100%;
  height: auto;
}
.recommended-news .news ul li .top-div .bottom-text {
  padding: 0 25px 0 16px;
}
.recommended-news .news ul li .top-div .bottom-text a .time {
  color: #666;
  margin: 24px 0 23px 0;
}
.recommended-news .news ul li .top-div .bottom-text a .news-title {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
}
.recommended-news .news ul li .top-div .bottom-text a .more {
  color: #333;
}
.recommended-news .news ul li .bottom-div {
  width: 100%;
  height: 467px;
  background: #ffffff;
  padding: 47px 16px 19px 16px;
  display: none;
}
.recommended-news .news ul li .bottom-div a .news-time {
  color: #666;
  margin-bottom: 23px;
}
.recommended-news .news ul li .bottom-div a .news-title-red {
  color: #ef0b0b;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
}
.recommended-news .news ul li .bottom-div a .line {
  width: 56px;
  height: 1px;
  background: #ef0b0b;
  margin-bottom: 24px;
}
.recommended-news .news ul li .bottom-div a .news-des {
  color: #666;
  line-height: 23px;
  padding-bottom: 83px;
  border-bottom: 1px solid #eeeeee;
}
.recommended-news .news ul li .bottom-div a .news-more {
  margin-top: 20px;
  color: #ef0b0b;
}
.recommended-news .news ul li:hover {
  position: relative;
}
.recommended-news .news ul li:hover .bottom-div {
  display: block;
  position: absolute;
  top: 0;
  animation: position 0.5s linear 1;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .recommended-news .news h1 {
    font-size: 2.5rem;
  }
  .recommended-news .news > p {
    font-size: 1rem;
    margin: 1.25rem 0 2.5rem 0;
  }
  .recommended-news .news ul {
    flex-wrap: wrap;
  }
  .recommended-news .news ul li {
    height: auto;
    width: 49%;
    margin-bottom: 1.25rem;
  }
  .recommended-news .news ul li .bottom-div {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .recommended-news .news h1 {
    font-size: 2.5rem;
  }
  .recommended-news .news > p {
    font-size: 1rem;
    margin: 1.25rem 0 2.5rem 0;
  }
  .recommended-news .news ul {
    flex-wrap: wrap;
  }
  .recommended-news .news ul li {
    height: auto;
    width: 49%;
    margin-bottom: 1.25rem;
  }
  .recommended-news .news ul li .top-div .top-img {
    height: 8rem;
  }
  .recommended-news .news ul li .top-div .bottom-text a .news-title {
    font-size: 0.6rem;
  }
  .recommended-news .news ul li:hover .bottom-div {
    display: none;
  }
}
.recommend-products > h1 {
  font-size: 40px;
  color: #333;
  margin-bottom: 39px;
}
.recommend-products ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recommend-products ul li {
  width: 24.45%;
}
.recommend-products ul li .top-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.recommend-products ul li .top-img img {
  width: 100%;
  height: auto;
}
.recommend-products ul li .top-img .pro-back {
  width: 100%;
  height: 100%;
  padding-left: 18px;
  padding-right: 18px;
  background: #e60012;
  opacity: 0.69;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  display: none;
}
.recommend-products ul li .top-img .pro-back p {
  color: #ffffff;
}
.recommend-products ul li .top-img .pro-back p:nth-child(2) {
  margin-top: 30px;
  padding: 15px 25px;
  border-radius: 5px;
  border: 1px solid #ffffff;
}
.recommend-products ul li .bottom-text {
  width: 100%;
  padding: 26px 18px;
  background: #f7f7f7;
}
.recommend-products ul li .bottom-text h2 {
  font-size: 20px;
  color: #333;
}
.recommend-products ul li .bottom-text div {
  margin-top: 27px;
  display: flex;
  justify-content: space-between;
}
.recommend-products ul li .bottom-text div p {
  color: #666;
}
.recommend-products ul li .bottom-text div p span {
  color: #333;
}
.recommend-products ul li:hover .top-img .pro-back {
  display: flex;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .recommend-products ul li {
    width: 49%;
    margin-bottom: 1.25rem;
  }
  .recommend-products ul li .top-img {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .recommend-products ul li {
    width: 100%;
    margin-bottom: 1.25rem;
  }
  .recommend-products ul li .top-img {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .recommend-products > h1 {
    font-size: 1.5625rem;
  }
}
.inquiry {
  height: 176px;
  display: flex;
  margin-bottom: 26px;
}
.inquiry .left,
.inquiry .right {
  width: 50%;
  height: 100%;
  padding: 60px 29px 60px 20px;
  background-size: cover;
  animation: paddingRight2 1s linear forwards;
}
.inquiry .left a .left-text p,
.inquiry .right a .left-text p {
  margin-top: 22px;
}
.inquiry .left a .right-arrow p,
.inquiry .right a .right-arrow p {
  font-size: 50px;
}
.inquiry .left:hover,
.inquiry .right:hover {
  animation: paddingRight 1s linear forwards;
}
.inquiry .left {
  background: url(../img/inquiry.png) no-repeat;
}
.inquiry .right {
  background: url(../img/find-more-products.png) no-repeat;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .inquiry {
    flex-wrap: wrap;
    height: auto;
    margin-bottom: 4.375rem;
  }
  .inquiry .left,
  .inquiry .right {
    width: 100%;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .inquiry {
    display: none;
  }
}
