@charset "UTF-8";

/* author:LY;*/
/* author:LY;*/
/*颜色*/
.red {
  color: #f00;
}

#loading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fcce76;
}

.blcok {
  display: block !important;
}

.elli1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.elli2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.elli3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.elli4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.typing_loader {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  -webkit-animation: typing 1s linear infinite alternate;
  -moz-animation: Typing 1s linear infinite alternate;
  animation: typing 1s linear infinite alternate;
  margin: 46px auto;
  /* Not necessary- its only for layouting*/
  position: relative;
  left: -12px;
}

@keyframes typing {
  0% {
    background-color: white;
    box-shadow: 12px 0px 0px 0px rgba(255, 255, 255, 0.2), 24px 0px 0px 0px rgba(255, 255, 255, 0.2);
  }

  25% {
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 12px 0px 0px 0px white, 24px 0px 0px 0px rgba(255, 255, 255, 0.2);
  }

  75% {
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 12px 0px 0px 0px rgba(255, 255, 255, 0.2), 24px 0px 0px 0px white;
  }
}

.index-tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.index-tit .tit-l .en {
  font-size: 0.35rem;
  font-weight: bold;
  color: #fcce76;
  line-height: 0.42rem;
  text-transform: uppercase;
}

.index-tit .tit-l .cn {
  font-size: 0.5rem;
  font-weight: bold;
  color: #333;
  line-height: 0.36rem;
}

.index-tit .more {
  font-size: 0.22rem;
  color: #b4bdc1;
  line-height: 0.28rem;
  font-weight: bold;
  white-space: nowrap;
}

.sort-box {
  padding: 0.5rem 0.25rem;
}

.sort-box ul {
  display: flex;
  align-items: center;
}

.sort-box ul li a {
  display: block;
  width: 1.66rem;
  height: 0.7rem;
  border: 0.01rem solid #ccc;
  font-size: 0.28rem;
  color: #999;
  text-align: center;
  line-height: 0.68rem;
  margin-right: 0.13rem;
}

.sort-box ul li:nth-child(4n) a {
  margin-right: 0;
}

.sort-box ul li.active a {
  color: #fcce76;
  border-color: #fcce76;
}

.paging {
  padding-bottom: 0.5rem;
}

.paging ul {
  display: flex;
  justify-content: center;
}

.paging ul li {
  margin: 0 0.05rem;
}

.paging ul li a {
  display: block;
  line-height: 0.58rem;
  font-size: 0.24rem;
  text-align: center;
  padding: 0 0.2rem;
  border: 0.01rem solid #eee;
  color: #999;
}

.paging ul li.active a {
  color: #fff;
  background-color: #fcce76;
  border-color: #fcce76;
}

body {
  background-color: #f8f8f8;
}

.header-box {
  position: fixed;
  top: 0;
  left: 50%;
  margin-left: -3.75rem;
  width: 7.5rem;
  background-color: #fff;
  z-index: 999;
}

.header-box .header {
  height: 1.2rem;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-box .header .logo {
  display: block;
}

.header-box .header .logo img {
  display: block;
  max-height: 1rem;
}

.header-box .header .back {
  width: 0.3rem;
  height: 0.4rem;
  background-image: url(../icon.png);
  background-position: -1.77rem 0;
  background-size: 3rem;
}

.header-box .header .tit {
  font-size: 0.36rem;
  color: #333;
  font-weight: normal;
  max-width: 6rem;
  overflow: hidden;
  line-height: 0.8rem;
  white-space: nowrap;
}

.header-box .header .nav-search {
  width: 4rem;
  height: 0.7rem;
  border-radius: 0.35rem;
  background-color: #f0f0f0;
  background-image: url(../images/searchbg.png);
  background-size: 0.35rem;
  background-repeat: no-repeat;
  background-position: 0.25rem 0.16rem;
  display: none;
}

.header-box .header .nav-search .text {
  border: none;
  outline: none;
  background: none;
  display: block;
  line-height: 0.7rem;
  width: 100%;
  font-size: 0.28rem;
  color: #666;
  padding-left: 0.75rem;
  padding-right: 0.3rem;
}

.header-box .header .menu {
  height: 0.36rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header-box .header .menu .icon {
  display: block;
  height: 0.04rem;
  width: 0.4rem;
  min-height: 2px;
  border-radius: 0.02rem;
  background-color: #333;
  transition: transform 0.3s;
}

.right-nav {
  position: fixed;
  top: 1.2rem;
  right: -50%;
  margin-right: -3.75rem;
  display: flex;
  flex-direction: column;
  padding: 0.7rem 0 0.75rem;
  width: 7.5rem;
  height: calc(100vh - 1rem);
  overflow: auto;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s;
  z-index: 110;
}

.right-nav .items {
  margin: 0 0.3rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(30, 136, 229, 0.15);
}

.right-nav .items .item {
  position: relative;
}

.right-nav .items .item a {
  display: block;
  padding: 0 0.3rem 0 0.8rem;
  line-height: 0.7rem;
  font-size: 0.26rem;
  color: #333;
}

.right-nav .items .item .sub-nav {
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.right-nav .items .item.active .sub-nav {
  height: auto;
}

.right-nav .items .item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #fcce76;
}

.right-nav.show {
  right: 50%;
}

.banner {
  /* margin: 0 0.25rem 0; */
  border-radius: 0.06rem;
  height: 3rem;
  overflow: hidden;
}

.banner img {
  display: block;
  width: 100%;
  height: 3rem;
  object-fit: cover;
  object-position: center;
}

.banner .swiper-pagination span {
  background: rgba(255, 255, 255, 0.6);
  width: 0.12rem;
  height: 0.12rem;
  opacity: 1;
}

.banner .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #fcce76;
}

.synopsis-box {
  padding-top: 0.6rem;
  display: none;
}

.synopsis-box .index-tit {
  padding: 0 0.25rem;
}

.synopsis-box .synopsis-con {
  padding: 0 0.25rem;
}

.synopsis-box .synopsis-con .synop-text {
  font-size: 0.24rem;
  color: #666;
  line-height: 0.48rem;
  margin: 0.35rem 0;
}

.synopsis-box .synopsis-con .pic {
  width: 100%;
  height: 1.85rem;
  overflow: hidden;
}

.synopsis-box .synopsis-con .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.synopsis-box .synopsis-con .intr-data {
  margin: 0.6rem 0;
}

.synopsis-box .synopsis-con .intr-data ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.synopsis-box .synopsis-con .intr-data ul li .data {
  font-size: 0.35rem;
  color: #333;
  line-height: 0.442rem;
  text-align: center;
  font-weight: bold;
}

.synopsis-box .synopsis-con .intr-data ul li p {
  font-size: 0.18rem;
  color: #999;
  line-height: 0.28rem;
}

.synopsis-box .ad {
  height: 3.8rem;
  width: 100%;
  margin-top: 0.75rem;
}

.synopsis-box .ad img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-box {
  padding: 0.9rem 0.3rem;
  background-color: #fff;
}

.product-box .product-con {
  margin-top: 0.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-box .product-con .item {
  width: 3.4rem;
  margin-bottom: 0.2rem;
}

.product-box .product-con .item a {
  display: block;
  overflow: hidden;
}

.product-box .product-con .item a .pic {
  width: 100%;
  height: 2.5rem;
}

.product-box .product-con .item a .pic img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.product-box .product-con .item a .text {
  height: 0.55rem;
  background-color: #fff;
  border-top: 1px solid #ededed;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-box .product-con .item a .text .elli1 {
  font-size: 0.24rem;
  color: #333;
  line-height: 0.55rem;
  /* width: 2.75rem; */
  text-align: center;
  padding: 0 0.1rem;
  /* border-right: 1px solid #ededed; */
  width: 100%;
}

.product-box .product-con .item a .text .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 0.15rem;
  display: none;
}

.product-box .product-con .item a .text .icon i {
  display: block;
  width: 0.3rem;
  height: 0.03rem;
  background-color: #b2b2b2;
  margin-top: 0.07rem;
}

.case-box {
  padding: 0.8rem 0.25rem 0.9rem;
  display: none;
}

.case-box .case-con {
  margin-top: 0.4rem;
}

.case-box .case-con a {
  width: 100%;
  height: 3.4rem;
  display: block;
  position: relative;
}

.case-box .case-con a img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.case-box .case-con a .words {
  width: 6.68rem;
  height: 0.6rem;
  background-color: #fff;
  position: absolute;
  left: 0.18rem;
  bottom: 0.15rem;
  z-index: 10;
  line-height: 0.6rem;
  display: flex;
  align-items: center;
}

.case-box .case-con a .words strong {
  display: block;
  padding: 0 0.15rem;
  font-size: 0.36rem;
  color: #cccccc;
}

.case-box .case-con a .words span {
  display: block;
  font-size: 0.24rem;
  color: #333;
  font-weight: 600;
  width: 4.6rem;
}

.case-box .case-con .swiper-pagination {
  bottom: 0.4rem;
  padding: 0 0.3rem;
  text-align: right;
}

.case-box .case-con .swiper-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
}

.article-box {
  padding: 0.85rem 0 1rem;
  background: url(../images/articlebg.jpg) no-repeat center/cover;
  display: none;
}

.article-box .tit {
  text-align: center;
  color: #fff;
  padding-bottom: 0.85rem;
}

.article-box .tit h2 {
  font-size: 0.36rem;
  font-weight: bold;
  line-height: 0.48rem;
}

.article-box .tit h3 {
  font-weight: 400;
  margin-top: 0.1rem;
}

.article-box .tit h3 .cn {
  font-size: 0.24rem;
  letter-spacing: 10px;
}

.article-box .tit h3 .en {
  text-transform: uppercase;
  letter-spacing: 0.75em;
  font-size: 0.14rem;
}

.article-box .article-list .swiper-slide {
  width: 5rem;
  margin-right: 0.3rem;
  padding-top: 0.5rem;
  opacity: 0.2;
  transition: all 0.35s;
}

.article-box .article-list .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.article-box .article-list .swiper-slide a {
  display: block;
  padding: 0.65rem 0.4rem 0.5rem;
  position: relative;
  background-color: #fff;
}

.article-box .article-list .swiper-slide a i {
  display: block;
  font-style: normal;
  color: #29b6f6;
  font-size: 0.84rem;
  font-weight: bold;
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  text-align: center;
  position: absolute;
  right: 0.5rem;
  top: -0.45rem;
  font-family: arial;
}

.article-box .article-list .swiper-slide a h3 {
  font-size: 0.3rem;
  line-height: 0.42rem;
  font-weight: bold;
  color: #fcce76;
}

.article-box .article-list .swiper-slide a p {
  font-size: 0.2rem;
  line-height: 0.32rem;
  color: rgba(10, 96, 209, 0.7);
  margin: 0.3rem 0 0.45rem;
}

.article-box .article-list .swiper-slide a img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.news-box {
  padding: 0.65rem 0.25rem 0.6rem;
}

.news-box .news-lixt {
  margin-top: 10px;
}

.news-box .news-lixt .item {
  padding-top: 0.25rem;
}

.news-box .news-lixt .item a {
  display: flex;
  flex-direction: column;
}

.news-box .news-lixt .item a .time {
  position: relative;
}

.news-box .news-lixt .item a .time img {
  width: 100%;
  height: auto;
}

.news-box .news-lixt .item a .time span {
  font-size: 14px;
  line-height: 0.3rem;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fcce76;
  color: #fff;
  padding: 10px;
}

.news-box .news-lixt .item a .desc {
  padding: 10px;
  border: 1px solid #e5e5e5;
}

.news-box .news-lixt .item a .desc h3 {
  font-size: 18px;
  color: #333;
  line-height: 0.36rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.news-box .news-lixt .item a .desc p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.case .Case-list {
  padding: 0 0.25rem;
}

.case .Case-list a {
  display: block;
}

.case .Case-list a .pic {
  height: 3.65rem;
  width: 100%;
  overflow: hidden;
}

.case .Case-list a .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.case .Case-list a .text {
  margin: 0.4rem 0;
}

.case .Case-list a .text h3 {
  font-size: 0.28rem;
  color: #fcce76;
  line-height: 0.36rem;
  text-align: center;
}

.case .Case-list a .text p {
  text-align: center;
  font-size: 0.22rem;
  line-height: 0.3rem;
  color: #999;
  margin-top: 0.1rem;
}

.product .product-list {
  padding: 0 0.25rem 0.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product .product-list .item {
  width: 3.4rem;
  margin-bottom: 0.2rem;
}

.product .product-list .item a {
  display: block;
  overflow: hidden;
  border: 1px solid #ededed;
}

.product .product-list .item a .pic {
  width: 100%;
  height: 2.5rem;
}

.product .product-list .item a .pic img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.product .product-list .item a .text {
  height: 0.55rem;
  background-color: #fff;
  border-top: 1px solid #ededed;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product .product-list .item a .text .elli1 {
  font-size: 0.24rem;
  color: #333;
  line-height: 0.55rem;
  width: 2.75rem;
  padding: 0 0.1rem;
  border-right: 1px solid #ededed;
}

.product .product-list .item a .text .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 0.15rem;
}

.product .product-list .item a .text .icon i {
  display: block;
  width: 0.3rem;
  height: 0.03rem;
  background-color: #b2b2b2;
  margin-top: 0.07rem;
}

.news .news-list {
  padding: 0 0.25rem;
}

.news .news-list .item {
  margin-bottom: 0.3rem;
}

.news .news-list .item a {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}

.news .news-list .item a .pic {
  width: 2.7rem;
  height: 1.9rem;
  overflow: hidden;
  border-radius: 0.05rem;
  flex-shrink: 0;
}

.news .news-list .item a .pic img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.news .news-list .item a .text {
  padding-left: 0.25rem;
  flexgrow: 1;
}

.news .news-list .item a .text .news-tit {
  font-size: 0.3rem;
  line-height: 0.48rem;
  color: #333;
  text-align: left;
}

.news .news-list .item a .text .time {
  margin-top: 0.5rem;
  font-size: 0.24rem;
  color: #999;
}

.article-details .article-title {
  padding: 0.45rem 0.25rem;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.article-details .article-title h2 {
  font-size: 0.36rem;
  color: #333;
  line-height: 0.48rem;
}

.article-details .article-title .article-info {
  display: flex;
  margin-top: 0.1rem;
}

.article-details .article-title .article-info .source,
.article-details .article-title .article-info .time {
  font-size: 0.2rem;
  color: #999;
  line-height: 0.28rem;
  margin-right: 0.15rem;
}

.article-details .article-con {
  padding: 0.3rem 0.25rem;
  font-size: 0.26rem;
  color: #333;
  line-height: 0.48rem;
  text-align: justify;
}

.article-details .article-con img {
  margin: 0.25rem 0;
  width: 100%;
  height: auto !important;
}

.contactus-pag {
  padding: 0 0.25rem;
}

.contactus-pag .contact-us-con {
  padding: 0.5rem 0.3rem;
  text-align: center;
}

.contactus-pag .contact-us-con p {
  font-size: 0.22rem;
  line-height: 0.36rem;
  color: #333;
  text-align: left;
}

.contactus-pag .contact-us-con a {
  display: block;
  font-size: 0.36rem;
  margin-top: 0.2rem;
  color: #fcce76;
  font-weight: bold;
}

.contactus-pag .map-box img {
  width: 100%;
}

.contactus-pag .mode-box {
  margin-top: 0.5rem;
  font-size: 0.2rem;
  line-height: 0.36rem;
  color: #666;
}

.sub-message {
  padding-top: 0.8rem;
  padding-bottom: 0.7rem;
}

.sub-message h2 {
  font-size: 0.22rem;
  line-height: 0.36rem;
  color: #333;
  padding-left: 0.5rem;
  height: 0.36rem;
  position: relative;
}

.sub-message h2::before {
  content: '';
  width: 3px;
  height: 0.36rem;
  background-color: #fcce76;
  display: block;
  position: absolute;
  top: 0;
  left: 0.3rem;
}

.sub-message .form {
  padding: 0 0.3rem;
  display: flex;
  flex-wrap: wrap;
}

.sub-message .form input {
  display: inline-block;
  vertical-align: middle;
  width: 3.2rem;
  line-height: 0.48rem;
  font-size: 0.2rem;
  border: none;
  border-bottom: 1px solid #eaeaea;
  background-color: transparent;
  padding: 0;
  margin-top: 0.45rem;
  outline: none;
}

.sub-message .form input:first-child {
  margin-right: 0.35rem;
}

.sub-message .form textarea {
  display: inline-block;
  width: 100%;
  height: 1.12rem;
  font-size: 0.2rem;
  color: #666;
  line-height: 0.28rem;
  border: none;
  border-bottom: 1px solid #eaeaea;
  background-color: transparent;
  outline: none;
  margin-top: 0.4rem;
  font-family: 'microsoft yahei';
}

.sub-message .form .code {
  display: block;
  height: 0.48rem;
  margin-left: 0.1rem;
  margin-top: 0.45rem;
  width: 3.2rem;
}

.sub-message .form buttom {
  display: block;
  width: 1.7rem;
  height: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  font-size: 0.22rem;
  color: #fff;
  background-color: #fcce76;
  margin: 0.5rem auto 0;
  cursor: pointer;
}

.no-result {
  position: fixed;
  top: 50%;
  margin-top: -0.8rem;
  height: 0.8rem;
  padding: 0 0.25rem;
  width: 100%;
  max-width: 7.5rem;
}

.no-result h3 {
  font-size: 0.3rem;
  text-align: center;
  line-height: 0.42rem;
}

.no-result p {
  margin-top: 0.1rem;
  font-size: 0.2rem;
  color: #666;
  text-align: center;
  line-height: 0.3rem;
}

.fix-footer {
  position: fixed;
  width: 100%;
  height: 1rem;
  max-width: 750px;
  min-width: 320px;
  bottom: 0;
  border-bottom: 0;
  background-color: #ffffff;
  z-index: 100;
  box-shadow: 0px -1px 7px 0px rgba(190, 190, 190, 0.36);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 0.15rem;
}

.fix-footer .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fix-footer .item .icon {
  width: 0.44rem;
  height: 0.4rem;
  background-color: #b2b2b2;
  background-image: url(../icon.png);
  background-size: 3rem;
  overflow: hidden;
}

.fix-footer .item:nth-child(2) .icon {
  background-position: -0.44rem 0;
}

.fix-footer .item:nth-child(3) .icon {
  background-position: -0.86rem 0;
}

.fix-footer .item:nth-child(4) .icon {
  background-position: -1.28rem 0;
}

.fix-footer .item .txt {
  font-size: 0.22rem;
  color: #ccc;
  line-height: 0.28rem;
  margin-top: 0.1rem;
}

.fix-footer .item.active .icon {
  background-color: #fcce76;
}

.fix-footer .item.active .txt {
  color: #fcce76;
}

.waist-pic {
  background: url(/Theme/pc/images/yt.jpg) no-repeat center;
  padding: 50px 20px;
}

.waist-pic .title {
  font-size: 26px;
  color: #fcce76;
}

.waist-pic .subtit {
  font-size: 14px;
  color: #fcce76;
  margin: 10px 0;
  width: 75%;
}

.waist-pic a.more {
  color: #fcce76;
  width: 180px;
  height: 45px;
  line-height: 45px;
  font-size: 18px;
  margin-top: 30px auto 0;
  border: 1px solid #fcce76;
  border-radius: 3px;
  padding: 0 20px;
  display: inline-block;
  text-align: center;
  overflow: hidden;
}

.why-box {
  padding: 60px 20px;
  padding-bottom: 0;
}

.why-box .en {
  text-align: center;
  margin-bottom: 5px;
}

.me-box a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}


.me-box a .left-box,
.me-box a .right-box {
  flex: 1;
}


.me-box a .left-box .tit {
  margin: 10px 0;
  text-align: center;
  color: #222222;
  color: #fcce76;
  font-weight: 600;
  font-size: 22px;
  margin-top: 30px;
}

.me-box a .left-box .subtit {
  text-align: center;
}

.me-box a .left-box .subtit strong,
.me-box a .left-box .outline {
  color: #666;
  font-size: 15px;
  line-height: 32px;
}

.me-box a .right-box img {
  width: 100%;
}

.footer-box {
  background-color: #d1d1d1;
  padding: 30px 10px;
}

.footer-box .footer-nav {
  padding-left: 25px;
  width: 980px;
}

.footer-box .footer-nav .nav-item {
  /* width: 100px; */
  float: left;
  margin-right: 35px;
}

.footer-box .footer-nav .nav-item > a {
  font-size: 20px;
  color: #fff;
  text-align: left;
}

.footer-box .footer-nav .nav-item .nav-subnav {
  padding-top: 40px;
}

.footer-box .footer-nav .nav-item .nav-subnav a {
  display: block;
  height: 24px;
  line-height: 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  text-align: left;
}

.footer-box .footer-nav .nav-item .nav-subnav a:hover {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.6);
}

.footer-box .contact-us .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #35363a;
  overflow: hidden;
}

.footer-box .contact-us .icon img {
  display: block;
  margin: 12px auto;
}

.footer-box .contact-us .hotline {
  margin-left: 15px;
}

.footer-box .contact-us .hotline span {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-box .contact-us .hotline h4 {
  font-size: 24px;
  color: #fff;
  font-family: arial;
  font-weight: normal;
}

.footer-box .contact-us .hotline .code {
  background-color: #fff;
  width: 110px;
  margin-top: 30px;
  padding: 15px;
}

.footer-box .contact-us .hotline .code span {
  font-size: 15px;
  color: #666;
  display: block;
  text-align: center;
  margin-top: 5px;
}

.copyright-box {
  background-color: #222328;
  border-top: 1px solid #36373b;
  height: 112px;
  padding: 44px 0;
}

.copyright-box p {
  font-size: 13px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.3);
}

.copyright-box p.record {
  color: #fff;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center;
}

.footer-left img {
  max-width: 160px;
}

.footer-left i {
  color: #333333;
  font-size: 14px;
  margin: 10px 0;
}

.footer-left ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-left ul li {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f1f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.footer-left ul li img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.footer-left ul li .qrcode-box {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  width: 80px;
  height: 80px;
}

.footer-left ul li:hover .qrcode-box {
  opacity: 1;
}

.footer-left ul li:hover .qrcode-box img {
  width: 100%;
  height: 100%;
}

.footer-right {
  position: relative;
}


.footer-right .menu-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-right .menu-box a {
  color: #222;
  font-size: 16px;
}

.footer-right .code {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.footer-right .code .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-right .code .item-text {
  font-size: 14px;
}

.coptr {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0;
  font-size: 13px;
  justify-content: center;
}

.why-box .index-tit {
  display: block;
}

.why-box .index-tit .tit-l .cn {
  font-size: 0.3rem;
  font-weight: 300;
  text-align: center;
}

.why-box .index-tit .tit-l .en {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}
