/* 禁止复制图片 */
img,
.backtop {
  -moz-user-select: none; /* Firefox私有属性 */
  -webkit-user-select: none; /* WebKit内核私有属性 */
  -ms-user-select: none; /* IE私有属性(IE10及以后) */
  -khtml-user-select: none; /* KHTML内核私有属性 */
  -o-user-select: none; /* Opera私有属性 */
  user-select: none; /* CSS3属性 */
}

.container {
  overflow: hidden;
}

/* 头部 */
.container .header {
  width: 100%;
  padding: 0 22px;
  height: 60px;
  border-bottom: 1px solid #f2f3f5;
  display: flex;
  position: relative;
  overflow: hidden;
  color: #242a33;
  z-index: 9;
}

/* 标志 */
.container .header .logo {
  padding: 10px 0;
  height: 60px;
}
.container .header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.container .header .logo img {
  width: 136px;
  height: 39px;
}

/* 导航 */
.container .header .navigation {
  flex: 1;
  display: flex;
  height: 60px;
  white-space: nowrap;
}
.container .header .navigation ul {
  font-size: 0;
  height: 100%;
  white-space: nowrap;
  margin-right: 48px;
}
.container .header .navigation ul li {
  display: inline-block;
  font-size: 16px;
  height: 100%;
  margin-left: 48px;
  opacity: 0;
}
.container .header .navigation ul li:hover a {
  color: #ff4e47;
}
.container .header .navigation ul li a {
  height: 100%;
  color: #242a33;
  display: flex;
  align-items: center;
  border-bottom: 5px solid transparent;
  transition: all 0.2s ease-out;
}
.container .header .navigation ul li.current a {
  color: #ff4e47;
  border-color: #ff4e47;
}
.container .header .navigation .search {
  height: 100%;
  padding: 0 14px 0 20px;
  border: 1px solid #f2f3f5;
  border-top: none;
  border-bottom: none;
  margin-left: auto;
  display: flex;
  align-items: center;
}
.container .header .navigation .search input {
  background-color: transparent;
}
.container .header .navigation .search img {
  cursor: pointer;
}
.container .header .navigation .search img:hover {
  -webkit-animation: wobble 1s ease infinite;
  -moz-animation: wobble 1s ease infinite;
  -o-animation: wobble 1s ease infinite;
  -ms-animation: wobble 1s ease infinite;
  animation: wobble 1s ease infinite;
}

/* 联系我们 */
.container .header .contact {
  margin-left: auto;
  display: flex;
  height: 60px;
}
.container .header .contact .icon {
  margin: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .header .contact .icon img {
  -webkit-animation: tada 1s ease infinite;
  -moz-animation: tada 1s ease infinite;
  -o-animation: tada 1s ease infinite;
  -ms-animation: tada 1s ease infinite;
  animation: tada 1s ease infinite;
}
.container .header .contact .telephone {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.container .header .contact .telephone p:nth-child(1) {
  font-size: 12px;
  padding-bottom: 5px;
}
.container .header .contact .telephone p:nth-child(2) {
  font-size: 16px;
  font-weight: bold;
}

/* @supports (bottom: constant(safe-area-inset-bottom)) or
  (bottom: env(safe-area-inset-bottom)) {
  .container {
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@media (max-width: 1024px) {
  .container .header .navigation ul {
    margin-right: 24px;
  }

  .container .header .navigation ul li {
    margin-left: 24px;
  }
}

@media (max-width: 960px) {
  .container .header {
    margin-right: 24px;
    overflow-x: auto;
    overflow-y: hidden;
  }
} */

/* 底部详情 */
.container .footer-detail {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto 60px;
  display: flex;
}
.container .footer-detail .left,
.container .footer-detail .right {
  flex: 1;
}

.container .footer-detail .left {
  padding-right: 40px;
  border-right: 1px solid #dce0e6;
}
.container .footer-detail .left .title {
  font-size: 20px;
  color: #1d2129;
  font-weight: bold;
  line-height: 1;
}
.container .footer-detail .left .title a {
  color: #1d2129;
}
.container .footer-detail .left .list {
  padding-top: 50px;
  display: flex;
}
.container .footer-detail .left .list li {
  flex: 1;
  margin-right: 12px;
}
.container .footer-detail .left .list li.center {
  text-align: center;
}
.container .footer-detail .left .list li .title {
  font-size: 16px;
  color: #1d2129;
  padding-bottom: 8px;
  line-height: 1;
  font-weight: 500;
}
.container .footer-detail .left .list li p,
.container .footer-detail .left .list li p a {
  color: #939599;
}
.container .footer-detail .left .list li p {
  margin-top: 12px;
  line-height: 1;
  font-size: 14px;
}

.container .footer-detail .right {
  padding-left: 50px;
  display: flex;
}
.container .footer-detail .right .l,
.container .footer-detail .right .r {
  flex: 1;
}
.container .footer-detail .right .l .title p {
  line-height: 1;
}
.container .footer-detail .right .l .title p:first-child,
.container .footer-detail .right .l .item .label {
  padding-bottom: 10px;
  color: #939599;
  font-size: 14px;
}
.container .footer-detail .right .l .title p:last-child {
  font-size: 36px;
  font-weight: bold;
  color: #ff4e47;
}
.container .footer-detail .right .l .item {
  margin-top: 30px;
}
.container .footer-detail .right .l .item .label {
  line-height: 1;
}
.container .footer-detail .right .l .item .text {
  font-size: 16px;
  color: #1d2129;
  line-height: 1;
}

.container .footer-detail .right .r {
  margin-left: 60px;
}
.container .footer-detail .right .r p {
  text-align: center;
  line-height: 1;
}
.container .footer-detail .right .r p img {
  width: 100%;
}
.container .footer-detail .right .r p:first-child {
  padding: 8%;
  background-color: #ffffff;
}
.container .footer-detail .right .r p:last-child {
  font-size: 16px;
  padding-top: 20px;
}

/* 底部 */
.container .footer {
  height: 60px;
  display: flex;
  padding-left: 22px;
  /* overflow-x: hidden;
  overflow-y: hidden; */
  border-top: 1px solid #dce0e6;
  transition: all 1s ease;
  position: relative;
  z-index: 99;
}
.container .footer.page6-active {
  border-color: #dce0e6;
  background-color: #f2f3f5;
}

/* 底部-分页 */
.container .footer .pagination {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 22px;
  border-right: 1px solid #f2f3f5;
  white-space: nowrap;
}
.container .footer .pagination.backtop {
  cursor: pointer;
}
.container .footer .pagination .primary {
  display: flex;
  align-items: center;
}
.container .footer .pagination .arrow-up {
  width: 15px;
  height: 25px;
  background: url(../images/arrow_up.png?ver=1657631875210) no-repeat center top;
}
.container .footer .pagination .arrow-up:first-child {
  margin-right: 30px;
}
.container .footer .pagination .arrow-up:last-child {
  margin-left: 30px;
}
.container .footer .pagination .swiper-prev,
.container .footer .pagination .swiper-next {
  width: 45px;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.container .footer .pagination .swiper-prev img,
.container .footer .pagination .swiper-next img {
  width: 60%;
  display: block;
}
.container .footer .pagination .swiper-prev img {
  margin-right: auto;
}
.container .footer .pagination .swiper-next img {
  margin-left: auto;
}
.container .footer .pagination .swiper-prev:hover,
.container .footer .pagination .swiper-next:hover {
  -webkit-animation: shakeX 5s ease infinite;
  -moz-animation: shakeX 5s ease infinite;
  -o-animation: shakeX 5s ease infinite;
  -ms-animation: shakeX 5s ease infinite;
  animation: shakeX 5s ease infinite;
}
.container .footer .pagination .swiper-prev {
  margin-right: 20px;
}
.container .footer .pagination .swiper-next {
  margin-left: 20px;
}
.container .footer .pagination .swiper-pagination {
  position: static;
}
.container .footer .pagination .swiper-pagination .swiper-pagination-bullet {
  font-weight: bold;
  background-color: transparent;
  outline: none;
  border: none;
  width: auto;
  height: auto;
  margin: 0 0 0 30px !important;
  font-size: 18px;
}
.container
  .footer
  .pagination
  .swiper-pagination
  .swiper-pagination-bullet:first-child {
  margin-left: 0 !important;
}
.container
  .footer
  .pagination
  .swiper-pagination
  .swiper-pagination-bullet-active {
  color: var(--color-primary);
}

/* 底部-分页标题 */
.container .footer .title {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1d2129;
  overflow: hidden;
}
.container .footer .title.bold {
  font-weight: bold;
}
.container .footer .title div {
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.container .footer .title div span {
  font-weight: normal;
  letter-spacing: normal;
}
.container .footer .title a {
  color: #1d2129;
}
.container .footer #copy-year {
  font-weight: normal;
}

/* 底部-更多 */
.container .footer .more {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #f2f3f5;
  padding: 0 8px 0 15px;
}
.container .footer .more li {
  flex: 1;
  height: 100%;
  width: 36px;
  margin-right: 5px;
  cursor: pointer;
  position: relative;
}
.container .footer .more li:hover {
  -webkit-animation: tada 1s ease infinite; /*调用名称为tada的动画，全程1s，速度曲线是ease，无限循环播放*/
  -moz-animation: tada 1s ease infinite;
  -o-animation: tada 1s ease infinite;
  -ms-animation: tada 1s ease infinite;
  animation: tada 1s ease infinite;
}
.container .footer .more li a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
/* qq */
.container .footer .more li:nth-child(1) {
  background: url(../images/icon_qq.png?ver=1657631875210) no-repeat center;
  background-size: contain;
}
/* 微信 */
.container .footer .more li:nth-child(2) {
  position: relative;
  background: url(../images/icon_wechat.png?ver=1657631875210) no-repeat center;
  background-size: contain;
}
.container .footer .more li:nth-child(2) img {
  max-width: 206px !important;
  position: absolute;
  top: -226px;
  left: -143px;
  display: none;
}
.container .footer .more li:nth-child(2):hover img {
  display: block;
}
/* 手机号码 */
.container .footer .more li:nth-child(3) {
  background: url(../images/icon_phone.png?ver=1657631875210) no-repeat center;
  background-size: contain;
}
