* {
  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;
  }
}
.banner {
  margin-top: -140px;
  z-index: -1 !important;
}
.banner.swiper {
  width: 100%;
  height: 800px;
}
.banner.swiper .swiper-slide a {
  position: absolute;
  z-index: 111;
}
.banner.swiper .swiper-slide a img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .banner.swiper {
    width: 100%;
    height: 20.25rem;
    margin: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .banner.swiper {
    width: 100%;
    height: 12.5rem;
    margin: 0 !important;
  }
}
.main-products h1 {
  font-size: 40px;
  color: #333;
}
.main-products > p {
  font-size: 16px;
  color: #666;
  margin: 20px 0 40px 0;
}
.main-products > ul {
  flex-wrap: wrap;
}
.main-products > ul > li {
  width: 49.479%;
  height: 317px;
  margin-bottom: 18px;
  background: #ffffff;
}
.main-products > ul > li .left-img {
  width: 45%;
  height: 100%;
  overflow: hidden;
}
.main-products > ul > li .left-img img {
  width: 100%;
  height: auto;
  transition: all 1s ease;
}
.main-products > ul > li .left-img img:hover {
  width: 102%;
  transition: all 1s ease;
}
.main-products > ul > li .right-text {
  margin-left: 27px;
  padding: 25px 0;
}
.main-products > ul > li .right-text .products-name {
  font-size: 25px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}
.main-products > ul > li .right-text .decoration p:nth-child(1) {
  background-color: #dddddd;
  border-radius: 2px;
  width: 59px;
  height: 5px;
  margin-right: 5px;
}
.main-products > ul > li .right-text .decoration p:nth-child(2) {
  width: 5px;
  height: 5px;
  background-color: #dddddd;
}
.main-products > ul > li .right-text .attribute {
  margin-top: 20px;
  padding-left: 17px;
}
.main-products > ul > li .right-text .attribute li {
  line-height: 31px;
  list-style: normal !important;
  list-style-type: circle !important;
}
.main-products > ul > li .right-text .attribute li a {
  color: #666;
}
.main-products > ul > li .right-text .attribute li:hover {
  color: #e60012;
}
.main-products > ul > li .right-text .attribute li:hover a {
  color: #e60012;
}
.main-products > ul > li .right-text .more {
  width: 131px;
  height: 36px;
  margin-top: 33px;
  background: #e60012;
  border-radius: 6px;
}
.main-products > ul > li .right-text .more a {
  color: #ffffff;
}
.main-products > ul > li .right-text .more:hover {
  background: #a3000d;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .main-products h1 {
    font-size: 2.5rem;
  }
  .main-products > p {
    font-size: 1rem;
    margin: 1.25rem 0 2.5rem 0;
  }
  .main-products > ul > li {
    flex-direction: column;
    height: 38.4375rem;
  }
  .main-products > ul > li .left-img {
    width: 100%;
    height: 18.625rem;
    overflow: inherit;
  }
  .main-products > ul > li .right-text {
    margin-left: 1.25rem;
    padding: 1.25rem 0;
  }
  .main-products > ul > li .right-text .products-name {
    font-size: 1.125rem;
  }
  .main-products > ul > li .right-text .attribute li {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .main-products h1 {
    font-size: 1.875rem;
  }
  .main-products > p {
    font-size: 1rem;
    margin: 1.25rem 0 2.5rem 0;
  }
  .main-products > ul > li {
    width: 100%;
    height: auto;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .main-products > ul > li .left-img {
    width: 100%;
  }
}
.major-advantages {
  width: 100%;
  height: 688px;
  background: url(../img/major-advantages-back.png) no-repeat;
  background-size: cover;
  padding-top: 70px;
}
.major-advantages h1 {
  margin-bottom: 20px;
  font-size: 40px;
}
.major-advantages ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 85px;
}
.major-advantages ul li {
  width: 438px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: default;
}
.major-advantages ul li .top-svg {
  cursor: pointer;
  animation: move2 0.5s linear forwards;
}
.major-advantages ul li .top-svg:hover {
  animation: move 0.5s linear forwards;
}
.major-advantages ul li h6 {
  font-size: 20px;
  margin-bottom: 20px;
}
.major-advantages ul li p {
  font-size: 14px;
  line-height: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .major-advantages {
    height: auto;
    padding-bottom: 4.375rem;
  }
  .major-advantages h1 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }
  .major-advantages ul {
    width: 98%;
    margin: 0 auto;
  }
  .major-advantages ul li {
    width: 30.3%;
  }
  .major-advantages ul li h6 {
    font-size: 1.125rem;
  }
  .major-advantages ul li p {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .major-advantages {
    height: auto;
    padding-bottom: 2.5rem;
    padding-top: 4.375rem;
  }
  .major-advantages h1 {
    font-size: 1.875rem;
  }
  .major-advantages > p {
    width: 98%;
    margin: 0 auto;
  }
  .major-advantages ul {
    margin-top: 2.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .major-advantages ul li {
    width: 95%;
  }
}
.success-CASES {
  margin-top: -106px;
  height: 691px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
}
.success-CASES h1 {
  height: 106px;
  background: url(../img/success-CASES-back.png) no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  padding-left: 45px;
  font-size: 40px;
}
.success-CASES ul {
  margin-top: 44px;
  display: flex;
  justify-content: space-around;
}
.success-CASES ul li {
  width: 31.712%;
  height: 403px;
}
.success-CASES ul li a .img {
  width: 100%;
  height: 344px;
  overflow: hidden;
}
.success-CASES ul li a .img img {
  width: 100%;
  height: auto;
  transition: all 1s ease;
}
.success-CASES ul li a .img:hover img {
  width: 102%;
  transition: all 1s ease;
}
.success-CASES ul li a .story-name {
  color: #333;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}
.success-CASES ul li::after {
  content: "";
  height: 1px;
  background: #eeeeee;
  display: block;
}
.success-CASES ul li:hover::after {
  height: 5px;
  background: #ef0b0b;
  animation: borderWidth 0.5s linear 1;
}
.success-CASES .more {
  width: 220px;
  height: 46px;
  border-radius: 5px;
  border: 1px solid #ef0b0b;
  margin: 50px auto;
}
.success-CASES .more a {
  color: #ef0b0b;
}
.success-CASES .more:hover {
  background: #ef0b0b;
}
.success-CASES .more:hover a {
  color: #ffffff;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .success-CASES {
    width: 100%;
    height: auto;
    margin-top: 4.375rem;
    padding-bottom: 2.5rem;
  }
  .success-CASES h1 {
    height: auto;
    padding: 1.25rem 0 1.25rem 2.8125rem;
    font-size: 2.5rem;
  }
  .success-CASES ul {
    width: 98%;
    margin: 0 auto;
    margin-top: 1.25rem;
  }
  .success-CASES ul li {
    height: auto;
  }
  .success-CASES ul li a .img {
    height: auto;
  }
  .success-CASES .more {
    margin: 1.25rem auto;
  }
}
@media screen and (max-width: 767px) {
  .success-CASES {
    width: 100%;
    height: auto;
    padding-bottom: 1.25rem;
    margin-top: 1.875rem;
  }
  .success-CASES h1 {
    height: auto;
    padding: 0.625rem;
    font-size: 1.5625rem;
  }
  .success-CASES ul {
    width: 95%;
    margin: 0 auto;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }
  .success-CASES ul li {
    width: 100%;
    height: auto;
    margin-bottom: 1.25rem;
  }
  .success-CASES ul li a .img {
    height: 14.5rem;
  }
  .success-CASES ul li::after {
    background: #e60012;
  }
  .success-CASES .more {
    width: 13.75rem;
    height: 2.875rem;
    margin: 1.5625rem auto;
  }
}
.about-us-back {
  background: url(../img/about-us-back.png) no-repeat;
  background-position: bottom;
}
.about-us-back .about-us {
  display: flex;
  justify-content: space-between;
  height: 511px;
}
.about-us-back .about-us .about-left {
  width: 57.118%;
}
.about-us-back .about-us .about-left h1 {
  font-size: 40px;
  color: #333;
}
.about-us-back .about-us .about-left > p {
  font-size: 16px;
  line-height: 25px;
  margin-top: 35px;
  text-indent: 32px;
  color: #666;
}
.about-us-back .about-us .about-left ul {
  display: flex;
  justify-content: space-around;
}
.about-us-back .about-us .about-left ul li {
  width: 230px;
}
.about-us-back .about-us .about-left ul li h1 {
  font-size: 66px;
  color: #ef0b0b;
}
.about-us-back .about-us .about-left ul li p {
  color: #333;
}
.about-us-back .about-us .about-right {
  width: 40.162%;
  height: 415px;
}
.about-us-back .about-us .about-right video {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about-us-back .about-us {
    height: auto;
    flex-direction: column;
  }
  .about-us-back .about-us .about-left {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .about-us-back .about-us .about-left h1 {
    font-size: 2.5rem;
  }
  .about-us-back .about-us .about-left > p {
    font-size: 1rem;
    line-height: 1.5625rem;
    margin-top: 2.1875rem;
    text-indent: 2rem;
  }
  .about-us-back .about-us .about-left ul li {
    width: 33.3%;
  }
  .about-us-back .about-us .about-left ul li h1 {
    font-size: 4.125rem;
  }
  .about-us-back .about-us .about-right {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .about-us-back {
    padding-bottom: 2.5rem;
  }
  .about-us-back .about-us {
    height: auto;
    flex-direction: column;
  }
  .about-us-back .about-us .about-left {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .about-us-back .about-us .about-left h1 {
    font-size: 2.5rem;
  }
  .about-us-back .about-us .about-left > p {
    font-size: 1rem;
    line-height: 1.5625rem;
    margin-top: 2.1875rem;
    text-indent: 2rem;
  }
  .about-us-back .about-us .about-left ul {
    display: none;
  }
  .about-us-back .about-us .about-right {
    width: 100%;
    height: auto;
  }
}
.news h1 {
  font-size: 40px;
  color: #333;
}
.news > p {
  font-size: 16px;
  color: #666;
  margin: 20px 0 40px 0;
}
.news ul li {
  width: 24.131%;
  height: 467px;
  background: #ffffff;
  padding-bottom: 19px;
  overflow: hidden;
}
.news ul li .top-div {
  width: 100%;
}
.news ul li .top-div .top-img {
  width: 100%;
  height: 287px;
  overflow: hidden;
}
.news ul li .top-div .top-img img {
  width: 100%;
  height: auto;
}
.news ul li .top-div .bottom-text {
  padding: 0 25px 0 16px;
}
.news ul li .top-div .bottom-text a .time {
  color: #666;
  margin: 24px 0 23px 0;
}
.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;
}
.news ul li .top-div .bottom-text a .more {
  color: #333;
}
.news ul li .bottom-div {
  width: 100%;
  height: 467px;
  background: #ffffff;
  padding: 47px 16px 19px 16px;
  display: none;
}
.news ul li .bottom-div a .news-time {
  color: #666;
  margin-bottom: 23px;
}
.news ul li .bottom-div a .news-title-red {
  color: #ef0b0b;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
}
.news ul li .bottom-div a .line {
  width: 56px;
  height: 1px;
  background: #ef0b0b;
  margin-bottom: 24px;
}
.news ul li .bottom-div a .news-des {
  color: #666;
  line-height: 23px;
  padding-bottom: 83px;
  border-bottom: 1px solid #eeeeee;
}
.news ul li .bottom-div a .news-more {
  margin-top: 20px;
  color: #ef0b0b;
}
.news ul li:hover {
  position: relative;
}
.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) {
  .news h1 {
    font-size: 2.5rem;
  }
  .news > p {
    font-size: 1rem;
    margin: 1.25rem 0 2.5rem 0;
  }
  .news ul {
    flex-wrap: wrap;
  }
  .news ul li {
    height: auto;
    width: 49%;
    margin-bottom: 1.25rem;
  }
  .news ul li .bottom-div {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .news h1 {
    font-size: 2.5rem;
  }
  .news > p {
    font-size: 1rem;
    margin: 1.25rem 0 2.5rem 0;
  }
  .news ul {
    flex-wrap: wrap;
  }
  .news ul li {
    height: auto;
    width: 49%;
    margin-bottom: 1.25rem;
  }
  .news ul li .top-div .top-img {
    height: 8rem;
  }
  .news ul li .top-div .bottom-text a .news-title {
    font-size: 0.6rem;
  }
  .news ul li:hover .bottom-div {
    display: none;
  }
}
.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;
  }
}
