@import url(iconfont/iconfont.css);
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Regular';
  src: url('../css/font/HarmonyOS_Sans_SC_Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --themeColor: #FA4515;
  --block_bc: #F7F6F1;
  --headerHeight: 0.9rem;
  --container: 14.36rem;
  --cm: calc((100vw - var(--container)) / 2);
}
.iconfont {
  font-size: 0.16rem;
}
body {
  -webkit-font-smoothing: antialiased;
  font: 0.16rem/1.73 HarmonyOS_Sans_SC_Regular, Arial, Microsoft YaHei, Heiti SC, tahoma, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
  color: #333;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-color: #131B27;
}
p,
div {
  font-family: Arial;
}
em,
i {
  font-style: normal;
}
li {
  list-style: none;
}
img {
  border: 0;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: #333;
}
/* 表单元素 */
textarea,
select,
button,
input {
  /* "\5B8B\4F53" => 宋体 */
  font-family: Regular, Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
  border: none;
  outline: none;
  resize: none;
  background: none;
  transition: all 0.3s;
  /* chrome */
  /* 火狐浏览器 */
}
textarea::-webkit-outer-spin-button,
select::-webkit-outer-spin-button,
button::-webkit-outer-spin-button,
input::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button,
select::-webkit-inner-spin-button,
button::-webkit-inner-spin-button,
input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
}
textarea[type="number"],
select[type="number"],
button[type="number"],
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}
textarea::placeholder,
select::placeholder,
button::placeholder,
input::placeholder {
  color: #CDCDCD;
}
/* 版芯 */
.container {
  width: var(--container);
  margin: 0 auto;
}
/* 单行文本 */
.dh_text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 两行文本 */
.dh_text2 {
  display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
/* 三行文本 */
.dh_text3 {
  display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
/* 四行文本 */
.dh_text4 {
  display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
/* 五行文本 */
.dh_text5 {
  display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
/* 定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸 */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
/* 定义滚动条轨道 内阴影+圆角 */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
/* 定义滑块 内阴影+圆角 */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #99999999;
}
/* 富文本 */
.rich img,
.rich video {
  max-width: 100% !important;
  height: auto !important;
}
.rich * {
  text-wrap: wrap !important;
  white-space: wrap !important;
}
/* 手机 */
.moblie {
  display: none;
}
/* 分页 */
.pagination,
.pages {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.7rem auto 0.3rem;
  /* disabled */
}
.pagination a,
.pages a,
.pagination span,
.pages span {
  display: block;
  width: 0.4rem;
  line-height: 0.38rem;
  border: 1px solid #E6E6E6;
  color: #999999;
  text-align: center;
  border-radius: 0.05rem;
  transition: all 0.3s;
}
.pagination a.iconfont,
.pages a.iconfont,
.pagination span.iconfont,
.pages span.iconfont {
  color: var(--themeColor);
}
.pagination a + a,
.pages a + a,
.pagination span + a,
.pages span + a,
.pagination a + span,
.pages a + span,
.pagination span + span,
.pages span + span {
  margin-left: 0.1rem;
}
.pagination li + li,
.pages li + li {
  margin-left: 0.1rem;
}
.pagination li.active span,
.pages li.active span,
.pagination a.active,
.pages a.active,
.pagination a:hover,
.pages a:hover {
  color: #fff;
  background-color: var(--themeColor);
  border-color: var(--themeColor);
}
.pagination li.disabled,
.pages li.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.fs-12 {
  font-size: 0.12rem;
}
.fs-13 {
  font-size: 0.13rem;
}
.fs-14 {
  font-size: 0.14rem;
}
.fs-15 {
  font-size: 0.15rem;
}
.fs-16 {
  font-size: 0.16rem;
}
.fs-17 {
  font-size: 0.17rem;
}
.fs-18 {
  font-size: 0.18rem;
}
.fs-19 {
  font-size: 0.19rem;
}
.fs-20 {
  font-size: 0.2rem;
}
.fs-21 {
  font-size: 0.21rem;
}
.fs-22 {
  font-size: 0.22rem;
}
.fs-23 {
  font-size: 0.23rem;
}
.fs-24 {
  font-size: 0.24rem;
}
.fs-25 {
  font-size: 0.25rem;
}
.fs-26 {
  font-size: 0.26rem;
}
.fs-27 {
  font-size: 0.27rem;
}
.fs-28 {
  font-size: 0.28rem;
}
.fs-29 {
  font-size: 0.29rem;
}
.fs-30 {
  font-size: 0.3rem;
}
.fs-31 {
  font-size: 0.31rem;
}
.fs-32 {
  font-size: 0.32rem;
}
.fs-33 {
  font-size: 0.33rem;
}
.fs-34 {
  font-size: 0.34rem;
}
.fs-35 {
  font-size: 0.35rem;
}
.fs-36 {
  font-size: 0.36rem;
}
.fs-37 {
  font-size: 0.37rem;
}
.fs-38 {
  font-size: 0.38rem;
}
.fs-39 {
  font-size: 0.39rem;
}
.fs-40 {
  font-size: 0.4rem;
}
.fs-41 {
  font-size: 0.41rem;
}
.fs-42 {
  font-size: 0.42rem;
}
.fs-43 {
  font-size: 0.43rem;
}
.fs-44 {
  font-size: 0.44rem;
}
.fs-45 {
  font-size: 0.45rem;
}
.fs-46 {
  font-size: 0.46rem;
}
.fs-47 {
  font-size: 0.47rem;
}
.fs-48 {
  font-size: 0.48rem;
}
.fs-49 {
  font-size: 0.49rem;
}
.fs-50 {
  font-size: 0.5rem;
}
.fs-51 {
  font-size: 0.51rem;
}
.fs-52 {
  font-size: 0.52rem;
}
.fs-53 {
  font-size: 0.53rem;
}
.fs-54 {
  font-size: 0.54rem;
}
.fs-55 {
  font-size: 0.55rem;
}
.fs-56 {
  font-size: 0.56rem;
}
.fs-57 {
  font-size: 0.57rem;
}
.fs-58 {
  font-size: 0.58rem;
}
.fs-59 {
  font-size: 0.59rem;
}
.fs-60 {
  font-size: 0.6rem;
}
.fs-61 {
  font-size: 0.61rem;
}
.fs-62 {
  font-size: 0.62rem;
}
.fs-63 {
  font-size: 0.63rem;
}
.fs-64 {
  font-size: 0.64rem;
}
.fs-65 {
  font-size: 0.65rem;
}
.fs-66 {
  font-size: 0.66rem;
}
.fs-67 {
  font-size: 0.67rem;
}
.fs-68 {
  font-size: 0.68rem;
}
.fs-69 {
  font-size: 0.69rem;
}
.fs-70 {
  font-size: 0.7rem;
}
.fs-71 {
  font-size: 0.71rem;
}
.fs-72 {
  font-size: 0.72rem;
}
.fs-73 {
  font-size: 0.73rem;
}
.fs-74 {
  font-size: 0.74rem;
}
.fs-75 {
  font-size: 0.75rem;
}
.fs-76 {
  font-size: 0.76rem;
}
.fs-77 {
  font-size: 0.77rem;
}
.fs-78 {
  font-size: 0.78rem;
}
.fs-79 {
  font-size: 0.79rem;
}
.fs-80 {
  font-size: 0.8rem;
}
.fs-81 {
  font-size: 0.81rem;
}
.fs-82 {
  font-size: 0.82rem;
}
.fs-83 {
  font-size: 0.83rem;
}
.fs-84 {
  font-size: 0.84rem;
}
.fs-85 {
  font-size: 0.85rem;
}
.fs-86 {
  font-size: 0.86rem;
}
.fs-87 {
  font-size: 0.87rem;
}
.fs-88 {
  font-size: 0.88rem;
}
.fs-89 {
  font-size: 0.89rem;
}
.fs-90 {
  font-size: 0.9rem;
}
.fs-91 {
  font-size: 0.91rem;
}
.fs-92 {
  font-size: 0.92rem;
}
.fs-93 {
  font-size: 0.93rem;
}
.fs-94 {
  font-size: 0.94rem;
}
.fs-95 {
  font-size: 0.95rem;
}
.fs-96 {
  font-size: 0.96rem;
}
.fs-97 {
  font-size: 0.97rem;
}
.fs-98 {
  font-size: 0.98rem;
}
.fs-99 {
  font-size: 0.99rem;
}
.fs-100 {
  font-size: 1rem;
}
.fs-101 {
  font-size: 1.01rem;
}
.fs-102 {
  font-size: 1.02rem;
}
.fs-103 {
  font-size: 1.03rem;
}
.fs-104 {
  font-size: 1.04rem;
}
.fs-105 {
  font-size: 1.05rem;
}
.fs-106 {
  font-size: 1.06rem;
}
.fs-107 {
  font-size: 1.07rem;
}
.fs-108 {
  font-size: 1.08rem;
}
.fs-109 {
  font-size: 1.09rem;
}
.fs-110 {
  font-size: 1.1rem;
}
.fs-111 {
  font-size: 1.11rem;
}
.fs-112 {
  font-size: 1.12rem;
}
.fs-113 {
  font-size: 1.13rem;
}
.fs-114 {
  font-size: 1.14rem;
}
.fs-115 {
  font-size: 1.15rem;
}
.fs-116 {
  font-size: 1.16rem;
}
.fs-117 {
  font-size: 1.17rem;
}
.fs-118 {
  font-size: 1.18rem;
}
.fs-119 {
  font-size: 1.19rem;
}
.fs-120 {
  font-size: 1.2rem;
}
.fs-121 {
  font-size: 1.21rem;
}
.fs-122 {
  font-size: 1.22rem;
}
.fs-123 {
  font-size: 1.23rem;
}
.fs-124 {
  font-size: 1.24rem;
}
.fs-125 {
  font-size: 1.25rem;
}
.fs-126 {
  font-size: 1.26rem;
}
.fs-127 {
  font-size: 1.27rem;
}
.fs-128 {
  font-size: 1.28rem;
}
.fs-129 {
  font-size: 1.29rem;
}
.fs-130 {
  font-size: 1.3rem;
}
.fs-131 {
  font-size: 1.31rem;
}
.fs-132 {
  font-size: 1.32rem;
}
.fs-133 {
  font-size: 1.33rem;
}
.fs-134 {
  font-size: 1.34rem;
}
.fs-135 {
  font-size: 1.35rem;
}
.fs-136 {
  font-size: 1.36rem;
}
.fs-137 {
  font-size: 1.37rem;
}
.fs-138 {
  font-size: 1.38rem;
}
.fs-139 {
  font-size: 1.39rem;
}
.fs-140 {
  font-size: 1.4rem;
}
.fs-141 {
  font-size: 1.41rem;
}
.fs-142 {
  font-size: 1.42rem;
}
.fs-143 {
  font-size: 1.43rem;
}
.fs-144 {
  font-size: 1.44rem;
}
.fs-145 {
  font-size: 1.45rem;
}
.fs-146 {
  font-size: 1.46rem;
}
.fs-147 {
  font-size: 1.47rem;
}
.fs-148 {
  font-size: 1.48rem;
}
.fs-149 {
  font-size: 1.49rem;
}
.fs-150 {
  font-size: 1.5rem;
}
.fs-151 {
  font-size: 1.51rem;
}
.fs-152 {
  font-size: 1.52rem;
}
.fs-153 {
  font-size: 1.53rem;
}
.fs-154 {
  font-size: 1.54rem;
}
.fs-155 {
  font-size: 1.55rem;
}
.fs-156 {
  font-size: 1.56rem;
}
.fs-157 {
  font-size: 1.57rem;
}
.fs-158 {
  font-size: 1.58rem;
}
.fs-159 {
  font-size: 1.59rem;
}
.fs-160 {
  font-size: 1.6rem;
}
.fs-161 {
  font-size: 1.61rem;
}
.fs-162 {
  font-size: 1.62rem;
}
.fs-163 {
  font-size: 1.63rem;
}
.fs-164 {
  font-size: 1.64rem;
}
.fs-165 {
  font-size: 1.65rem;
}
.fs-166 {
  font-size: 1.66rem;
}
.fs-167 {
  font-size: 1.67rem;
}
.fs-168 {
  font-size: 1.68rem;
}
.fs-169 {
  font-size: 1.69rem;
}
.fs-170 {
  font-size: 1.7rem;
}
.fs-171 {
  font-size: 1.71rem;
}
.fs-172 {
  font-size: 1.72rem;
}
.fs-173 {
  font-size: 1.73rem;
}
.fs-174 {
  font-size: 1.74rem;
}
.fs-175 {
  font-size: 1.75rem;
}
.fs-176 {
  font-size: 1.76rem;
}
.fs-177 {
  font-size: 1.77rem;
}
.fs-178 {
  font-size: 1.78rem;
}
.fs-179 {
  font-size: 1.79rem;
}
.fs-180 {
  font-size: 1.8rem;
}
.fs-181 {
  font-size: 1.81rem;
}
.fs-182 {
  font-size: 1.82rem;
}
.fs-183 {
  font-size: 1.83rem;
}
.fs-184 {
  font-size: 1.84rem;
}
.fs-185 {
  font-size: 1.85rem;
}
.fs-186 {
  font-size: 1.86rem;
}
.fs-187 {
  font-size: 1.87rem;
}
.fs-188 {
  font-size: 1.88rem;
}
.fs-189 {
  font-size: 1.89rem;
}
.fs-190 {
  font-size: 1.9rem;
}
.fs-191 {
  font-size: 1.91rem;
}
.fs-192 {
  font-size: 1.92rem;
}
.fs-193 {
  font-size: 1.93rem;
}
.fs-194 {
  font-size: 1.94rem;
}
.fs-195 {
  font-size: 1.95rem;
}
.fs-196 {
  font-size: 1.96rem;
}
.fs-197 {
  font-size: 1.97rem;
}
.fs-198 {
  font-size: 1.98rem;
}
.fs-199 {
  font-size: 1.99rem;
}
.fs-200 {
  font-size: 2rem;
}
.fs-201 {
  font-size: 2.01rem;
}
.fs-202 {
  font-size: 2.02rem;
}
.fs-203 {
  font-size: 2.03rem;
}
.fs-204 {
  font-size: 2.04rem;
}
.fs-205 {
  font-size: 2.05rem;
}
.fs-206 {
  font-size: 2.06rem;
}
.fs-207 {
  font-size: 2.07rem;
}
.fs-208 {
  font-size: 2.08rem;
}
.fs-209 {
  font-size: 2.09rem;
}
/* 遍历动画延迟 */
/* 生成固定比例的图片元素 div.img>img */
/* siwper左右按钮 */
.swiper-navigation {
  width: 0.6rem;
  line-height: 0.6rem;
  background-color: #141010;
  font-size: 0.3rem;
  border-radius: 50%;
  flex-shrink: 0;
  text-align: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s;
}
.swiper-navigation.swiper-button-disabled,
.swiper-navigation.disable {
  opacity: 0.4;
  pointer-events: none;
}
.swiper-navigation:hover {
  background-color: var(--themeColor);
}
/* 顶部导航 */
.header {
  margin-top: 0.4rem;
}
.header .container {
    --container2: calc(var(--container) * 1.2);
    width: var(--container2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header .container .left {
  display: flex;
}
.header .container .left a {
  color: white;
  position: relative;
}
.header .container .left a + a {
  margin-left: 0.2rem;
}
.header .container .left a::before {
  content: "";
  width: 0;
  height: 0.02rem;
  position: absolute;
  right: 0;
  bottom: -0.2rem;
  background-color: var(--themeColor);
  transition: all 0.3s;
}
.header .container .left a:hover::before,
.header .container .left a.active::before {
  left: 0;
  width: 100%;
}
.header .container .logo {
  width: 1.1rem;  
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header .container .logo img {
  width: 100%;
}
.header .container .right {
  display: flex;
  align-items: center;
}
.header .container .right a {
  color: white;
}
.header .container .right a + a {
  margin-left: 0.2rem;
}
.header .container .right a.active,
.header .container .right a:hover {
  color: var(--themeColor);
}
.header .container .right .app_menu_btn {
  width: 50px;
  height: 50px;
  transform: scale(0.7) translateX(50%);
  display: none;
}
.header .container .right .app_menu_btn span,
.header .container .right .app_menu_btn::after,
.header .container .right .app_menu_btn::before {
  content: "";
  display: block;
  width: 70%;
  height: 3px;
  border-radius: 2px;
  background: #444;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.header .container .right .app_menu_btn::after {
  transform-origin: right center;
  top: 25%;
}
.header .container .right .app_menu_btn::before {
  transform-origin: right center;
  top: 75%;
}
.header .container .right .app_menu_btn span {
  top: 50%;
}
.header .container .right .app_menu_btn.active span {
  opacity: 0;
}
.header .container .right .app_menu_btn.active::after {
  transform: rotate(-46deg);
}
.header .container .right .app_menu_btn.active::before {
  transform: rotate(46deg);
}
.header .container .right .app_menu_btn.active + ul {
  left: 0;
}
/* 底部 */
.footer {
  margin-bottom: 0.46rem;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .container .left {
  display: flex;
}
.footer .container .left li {
  color: white;
}
.footer .container .left li .le {
  font-weight: 500;
  margin-bottom: 0.1rem;
}
.footer .container .left li .ls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}
.footer .container .left li .ls a {
  color: #ECE4D8;
  line-height: 1;
}
.footer .container .left li .ls a.active,
.footer .container .left li .ls a:hover {
  color: var(--themeColor);
}
.footer .container .left li + li {
  margin-left: 0.5rem;
}
.footer .container .right {
  display: flex;
}
.footer .container .right .iconfont {
  width: 0.4rem;
  line-height: 0.4rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ece4d8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.footer .container .right .iconfont + .iconfont {
  margin-left: 0.2rem;
}
.footer .container .right .iconfont:hover {
  background-color: var(--themeColor);
}
/* 入口页 */
.index {
  position: relative;
  background: none;
}
.index .conts {
  width: max-content;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index .conts h1,
.index .conts h3,
.index .conts p {
  color: white;
}
.index .conts p {
  opacity: 0.6;
}
.index .conts .submit {
  background-color: var(--themeColor);
  line-height: 0.52rem;
  opacity: 0.7;
  color: white;
  border-radius: 0.42rem;
  padding: 0 0.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.index .conts .submit::after {
  content: "\e666";
  font-family: "iconfont";
  margin-left: 0.1rem;
}
.index .conts .input {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0.45rem auto 1.1rem;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(42.67px);
  padding: 0.1rem 0.2rem;
  border-radius: 3.6rem;
}
.index .conts .input .iconfont {
  color: white;
}
.index .conts .input input {
  flex: 1;
  margin: 0 0.1rem;
  color: white;
}
.index .conts .input .btn {
  background-color: white;
  padding: 0.1rem 0.87rem;
  border-radius: 0.42rem;
  color: var(--themeColor);
  font-weight: 700;
}
.index .video {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-color: #131B27;
}
.index .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  display: block;
}
/* 首页 */
.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.home .conts {
  position: relative;
}
.home .conts h2 {
  margin-bottom: 0.9rem;
  text-align: center;
  color: white;
}
.home .conts .swiper {
  width: 100%;
  overflow: hidden;
}
.home .conts .swiper-slide,
.home .conts a {
  width: calc((100% - 0.6rem) / 4);
  background-color: rgba(19, 27, 39, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem;
}
.home .conts .swiper-slide .more,
.home .conts a .more {
  margin-bottom: 0.4rem;
  color: white;
  display: flex;
  align-items: center;
}
.home .conts .swiper-slide .more::after,
.home .conts a .more::after {
  content: "\e665";
  font-family: "iconfont";
  color: var(--themeColor);
  font-size: 0.2rem;
  margin-left: 0.1rem;
}
.home .conts .swiper-slide h4,
.home .conts a h4 {
  margin-bottom: 0.1rem;
  color: white;
}
.home .conts .swiper-slide p,
.home .conts a p {
  color: rgba(236, 228, 216, 0.45);
}
.home .conts .swiper-slide:hover,
.home .conts a:hover {
  background-color: rgba(255, 255, 255, 0.6);
  border-color: var(--themeColor);
}
.home .conts .swiper-slide:hover .more,
.home .conts a:hover .more {
  color: var(--themeColor);
}
.home .conts .swiper-slide:hover h4,
.home .conts a:hover h4 {
  color: #131b27;
}
.home .conts .swiper-slide:hover p,
.home .conts a:hover p {
  color: rgba(19, 27, 39, 0.85);
}
.home .conts .icon-left,
.home .conts .icon-right {
  position: absolute;
  top: 73%;
  transform: translateY(-50%);
}
.home .conts .icon-left.icon-left,
.home .conts .icon-right.icon-left {
  right: 101%;
}
.home .conts .icon-left.icon-right,
.home .conts .icon-right.icon-right {
  left: 101%;
}
/* 关于我们 */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.about .conts.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about .conts.container .swiper {
  width: 90%;
  overflow: hidden;
}
.about .conts.container .swiper-wrapper {
  align-items: center;
}
.about .conts.container .swiper-slide.js {
  display: flex;
  align-items: center;
}
.about .conts.container .swiper-slide.js .left {
  margin-right: 0.2rem;
  flex: 1;
}
.about .conts.container .swiper-slide.js .left h2 {
  color: white;
}
.about .conts.container .swiper-slide.js .left .rich {
  color: white;
  margin: 0.4rem 0;
}
.about .conts.container .swiper-slide.js .left .nums {
  display: flex;
}
.about .conts.container .swiper-slide.js .left .nums .item {
  margin-right: 1rem;
  color: white;
}
.about .conts.container .swiper-slide.js .left .nums .item b {
  color: var(--themeColor);
}
.about .conts.container .swiper-slide.js .right {
  width: 50%;
}
.about .conts.container .swiper-slide.js .right img {
  width: 100%;
}
.about .conts.container .swiper-slide.ab .ls {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.about .conts.container .swiper-slide.ab .ls .video,
.about .conts.container .swiper-slide.ab .ls .img {
  width: 100%;
  position: relative;
}
.about .conts.container .swiper-slide.ab .ls .video video,
.about .conts.container .swiper-slide.ab .ls .img video,
.about .conts.container .swiper-slide.ab .ls .video img,
.about .conts.container .swiper-slide.ab .ls .img img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .conts.container .swiper-slide.ab .ls .video::after,
.about .conts.container .swiper-slide.ab .ls .img::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 50%;
}
.about .conts.container .swiper-slide.ab .ls .img {
  background-color: rgba(255, 255, 255, 0.1);
}
.about .conts.container .swiper-slide.ab .ls .img img {
  padding: 0.2rem;
  object-fit: contain;
}
.about .conts.container .swiper-slide.ab .ls .img:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.2);
}
.about .conts.container .swiper-slide.ab .ls:nth-child(odd) .img {
  background-color: rgba(255, 255, 255, 0.2);
}
.about .conts.container .swiper-slide.ab .ls:nth-child(odd) .img:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}
.about .conts.container .swiper-slide.ab.s .ls {
  grid-template-columns: repeat(3, 1fr);
}
/* 新闻详情 */
.newsinfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.newsinfo .conts.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newsinfo .conts.container .swiper {
  width: 90%;
}
.newsinfo .conts.container .swiper-slide {
  display: flex;
  align-items: center;
}
.newsinfo .conts.container .swiper-slide .left {
  margin-right: 0.2rem;
  flex: 1;
  position: relative;
}
.newsinfo .conts.container .swiper-slide .left .rivh {
  max-height: 50vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.newsinfo .conts.container .swiper-slide .left .rivh h2 {
  color: white;
}
.newsinfo .conts.container .swiper-slide .left .rivh .rich {
  color: white;
  margin: 0.4rem 0;
}
.newsinfo .conts.container .swiper-slide .left::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1.2rem;
  background: linear-gradient(180deg, rgba(19, 27, 39, 0) 0%, #131b27 100%);
}
.newsinfo .conts.container .swiper-slide .left::after {
  content: "\e664";
  font-family: "iconfont";
  font-size: 0.4rem;
  color: white;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.newsinfo .conts.container .swiper-slide .right {
  width: 50%;
  max-height: 50vh;
  overflow-y: auto;
}
.newsinfo .conts.container .swiper-slide .right img {
  width: 100%;
  object-fit: cover;
}
/* 联系我们 */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.contact .conts {
  display: flex;
}
.contact .conts .left {
  width: 60%;
  background-color: rgba(17, 23, 31, 0.8);
  padding: 0.57rem 0.9rem;
}
.contact .conts .left h4 {
  color: white;
  display: flex;
  align-items: center;
}
.contact .conts .left h4::before {
  content: "";
  width: 0.03rem;
  height: 1em;
  background-color: var(--themeColor);
  margin-right: 0.1rem;
}
.contact .conts .left .from .row {
  display: flex;
  margin-top: 0.2rem;
}
.contact .conts .left .from .row .item {
  flex: 1;
  display: flex;
}
.contact .conts .left .from .row .item .label {
  width: 4em;
  text-align: justify;
  color: white;
}
.contact .conts .left .from .row .item .input {
  flex: 1;
  border-bottom: 1px solid rgba(236, 228, 216, 0.45);
  margin-left: 0.1rem;
}
.contact .conts .left .from .row .item .input textarea,
.contact .conts .left .from .row .item .input input {
  width: 100%;
  padding: 0 0.1rem;
  color: white;
}
.contact .conts .left .from .row .item + .item {
  margin-left: 0.3rem;
}
.contact .conts .left .submit {
  width: max-content;
  background-color: var(--themeColor);
  color: white;
  padding: 0 1.3rem;
  border-radius: 1.4rem;
  margin: 0.3rem auto;
  line-height: 0.4rem;
  cursor: pointer;
}
.contact .conts .left .submit:active {
  opacity: 0.7;
}
.contact .conts .right {
  flex: 1;
  background-color: rgba(25, 33, 43, 0.8);
  padding: 0.57rem 0.9rem;
}
.contact .conts .right h1,
.contact .conts .right p {
  color: white;
}
.contact .conts .right .item {
  display: flex;
  align-items: center;
  margin-top: 0.18rem;
  border-top: 1px dashed rgba(133, 111, 90, 0.3);
  padding-top: 0.18rem;
}
.contact .conts .right .item .iconfont {
  color: var(--themeColor);
  margin-right: 0.1rem;
}
.contact .conts .right .item .text {
  color: white;
}
.contact .conts .right .item:last-child {
  padding-bottom: 0.18rem;
  border-bottom: 1px dashed rgba(133, 111, 90, 0.3);
}
/* 条款与条约 */
.clause {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.clause .conts {
  --container: 10rem;
  background-color: rgba(19, 27, 39, 0.85);
  padding: 0.6rem 1rem;
  max-height: 70vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.clause .conts h1 {
  width: max-content;
  margin: 0 auto 0.3rem;
  color: white;
  border-bottom: 1px solid var(--themeColor);
}
.clause .conts .rich {
  color: white;
}
/* 产品中心 */
.product .conts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0.85rem;
  max-height: 35vw;
  overflow-y: auto;
}
.product .conts .item,
.product .conts > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.8rem;
  background-color: #18212e;
}
.product .conts .item .left h2,
.product .conts > a .left h2 {
  color: white;
  border-bottom: 2px solid rgba(236, 228, 216, 0.45);
  margin-bottom: 0.4rem;
}
.product .conts .item .left .more,
.product .conts > a .left .more {
  width: max-content;
  display: flex;
  background-color: rgba(0, 0, 0, 0.15);
  line-height: 0.6rem;
  border-radius: 1.4rem;
  padding: 0 0.4rem;
  color: white;
  transition: all 0.3s;
}
.product .conts .item .left .more::after,
.product .conts > a .left .more::after {
  content: "\e665";
  font-family: "iconfont";
  margin-left: 0.1rem;
}
.product .conts .item .left .more:hover,
.product .conts > a .left .more:hover {
  background-color: var(--themeColor);
}
.product .conts .item .right,
.product .conts > a .right {
  width: 2.4rem;
}
.product .conts .item .right img,
.product .conts > a .right img {
  width: 100%;
}
.product .conts .item:nth-child(2),
.product .conts > a:nth-child(2),
.product .conts .item:nth-child(3),
.product .conts > a:nth-child(3) {
  background-color: #111823;
}
.product .conts .item {
  position: relative;
}
.product .conts .item .wrpas {
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-evenly;
}
.product .conts .item .wrpas a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product .conts .item .wrpas a img {
  width: auto;
  height: 0.8rem;
  filter: grayscale(100%) brightness(2000%);
}
.product .conts .item .wrpas a h4 {
  margin-top: 0.1rem;
  color: white;
}
.product .conts .item .wrpas a:hover img {
  filter: none;
}
.product .conts .item .wrpas a:hover h4 {
  color: var(--themeColor);
}
.product .conts .item:hover .left,
.product .conts .item:hover .right {
  opacity: 0;
}
.product .conts .item:hover .wrpas {
  opacity: 1;
}
/* 产品新品分类 */
.productnew {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.productnew .conts {
  position: relative;
}
.productnew .conts .icon-left,
.productnew .conts .icon-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.productnew .conts .icon-left.icon-left,
.productnew .conts .icon-right.icon-left {
  right: 101%;
}
.productnew .conts .icon-left.icon-right,
.productnew .conts .icon-right.icon-right {
  left: 101%;
}
.productnew .conts .swiper {
  width: 100%;
  overflow: hidden;
}
.productnew .conts .swiper-slide {
  position: relative;
}
.productnew .conts .swiper-slide img {
  width: 100%;
}
.productnew .conts .swiper-slide .text {
  width: max-content;
  position: absolute;
  top: 40%;
  left: 55%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.3rem;
  white-space: nowrap;
  text-align: center;
  transition: all 0.1s;
}
.productnew .conts .swiper-slide .cates {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.1s;
}
.productnew .conts .swiper-slide .cates .top {
  text-align: center;
  color: white;
  line-height: 1.06rem;
  background-color: rgba(17, 24, 35, 0.9);
}
.productnew .conts .swiper-slide .cates .cas a {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  line-height: 1rem;
  background-color: rgba(17, 24, 35, 0.4);
  color: #ece4d8;
  padding: 0 0.2rem;
  transition: all 0.3s;
}
.productnew .conts .swiper-slide .cates .cas a:hover {
  background-color: rgba(17, 24, 35, 0.9);
  color: var(--themeColor);
}
.productnew .conts .swiper-slide:hover .text {
  opacity: 0;
}
.productnew .conts .swiper-slide:hover .cates {
  opacity: 1;
}
/* 产品面料/成衣分类 */
.productcate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.productcate .conts {
  position: relative;
}
.productcate .conts .title {
  color: rgba(255, 255, 255, 0.05);
  position: relative;
  text-align: center;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.productcate .conts .title::after {
  content: attr(title);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  letter-spacing: 0.5rem;
  font-size: 0.36rem;
}
.productcate .conts .icon-left,
.productcate .conts .icon-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.productcate .conts .icon-left.icon-left,
.productcate .conts .icon-right.icon-left {
  right: 101%;
}
.productcate .conts .icon-left.icon-right,
.productcate .conts .icon-right.icon-right {
  left: 101%;
}
.productcate .conts .swiper {
  width: 100%;
  overflow: hidden;
}
.productcate .conts .swiper-slide {
  position: relative;
}
.productcate .conts .swiper-slide img {
  width: 100%;
}
.productcate .conts .swiper-slide .ts {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 27, 39, 0.85);
  padding: 0 0.17rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.productcate .conts .swiper-slide .ts .top {
  margin-bottom: 0.5rem;
  position: relative;
}
.productcate .conts .swiper-slide .ts .top h2 {
  color: white;
}
.productcate .conts .swiper-slide .ts .top p {
  color: rgba(255, 255, 255, 0.6);
}
.productcate .conts .swiper-slide .ts .top::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.15rem;
  width: 0.02rem;
  height: 160%;
  background-color: white;
}
.productcate .conts .swiper-slide .ts .bot {
  color: rgba(255, 255, 255, 0.6);
}
.productcate .conts .swiper-slide .ts .bot .iconfont {
  width: max-content;
  display: block;
  line-height: 1;
  transform: rotate(180deg);
}
.productcate .conts .swiper-slide .ts:hover * {
  color: var(--themeColor) !important;
}
.productcate .conts .swiper-slide .ts:hover *::after {
  background-color: var(--themeColor) !important;
}
/* 产品列表 */
.productlist .conts {
  margin-top: 0.5rem;
  position: relative;
}
.productlist .conts .scroll {
  height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.productlist .conts .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.2rem 0.55rem;
}
.productlist .conts .grid a {
  width: 100%;
  display: block;
  position: relative;
}
.productlist .conts .grid a img {
  width: 100%;
}
.productlist .conts .grid a span {
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  background-color: #131b27;
  color: white;
  padding: 0 0.08rem;
  border-radius: 0.02rem;
}
.productlist .conts .grid a .bot {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(19, 27, 39, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.1rem 0.15rem;
  color: rgba(236, 228, 216, 0.45);
}
.productlist .conts .grid a .bot .left {
  width: 95%;
}
.productlist .conts .grid a .bot .left p {
  width: 100%;
}
.productlist .conts::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  width: 100%;
  height: 1.2rem;
  background: linear-gradient(180deg, rgba(19, 27, 39, 0) 0%, #131b27 100%);
}
.productlist .conts::after {
  content: "\e664";
  font-family: "iconfont";
  font-size: 0.4rem;
  color: white;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 9;
  transform: translateX(-50%);
}
/* 产品新品列表 */
.productnewlist .conts {
  display: flex;
  margin-top: 0.75rem;
}
.productnewlist .conts .left {
  margin-right: 1.4rem;
}
.productnewlist .conts .left h2 {
  margin-bottom: 0.3rem;
  color: #ece4d8;
}
.productnewlist .conts .left .cates .item .label {
  color: #ece4d8;
  cursor: pointer;
  position: relative;
}
.productnewlist .conts .left .cates .item .label::after,
.productnewlist .conts .left .cates .item .label::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: white;
  width: 0.15rem;
  height: 0.02rem;
  transition: all 0.3s;
}
.productnewlist .conts .left .cates .item .label::after {
  transform: translateY(-50%) rotateZ(90deg);
}
.productnewlist .conts .left .cates .item .child {
  display: none;
  margin-top: 0.2rem;
  margin-left: 0.2rem;
}
.productnewlist .conts .left .cates .item .child a {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  color: #ece4d8;
  line-height: 2;
  position: relative;
}
.productnewlist .conts .left .cates .item .child a.active {
  color: var(--themeColor);
}
.productnewlist .conts .left .cates .item.active .label::after {
  transform: translateY(-50%);
}
.productnewlist .conts .left .cates .item.active .child {
  display: block;
}
.productnewlist .conts .left .cates .item + .item {
  margin-top: 0.3rem;
}
.productnewlist .conts .right {
  flex: 1;
}
.productnewlist .conts .right .scroll {
  height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.productnewlist .conts .right .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.2rem;
}
.productnewlist .conts .right .grid a {
  position: relative;
}
.productnewlist .conts .right .grid a img {
  width: 100%;
}
.productnewlist .conts .right .grid a .btm {
  width: 100%;
  padding: 0.2rem 0.1rem 0.06rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(35, 37, 41, 0.75);
  clip-path: path('M0 0L0 92.0354L200 92.0354L200 0C200 0 154.231 15.3392 100 15.3392C45.7693 15.3392 0 0 0 0Z');
  color: #ece4d8;
}
.productnewlist .conts .right .grid a .btm p {
  width: 100%;
}
.productnewlist .conts .right::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  width: 100%;
  height: 1.2rem;
  background: linear-gradient(180deg, rgba(19, 27, 39, 0) 0%, #131b27 100%);
}
.productnewlist .conts .right::after {
  content: "\e664";
  font-family: "iconfont";
  font-size: 0.4rem;
  color: white;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 9;
  transform: translateX(-50%);
}
/* 产品详情 */
.productinfo .conts {
  display: flex;
  align-items: flex-start;
  margin-top: 0.8rem;
}
.productinfo .conts .left {
  width: 50%;
  margin-right: 0.5rem;
  position: relative;
}
.productinfo .conts .left .video,
.productinfo .conts .left .img {
  width: 100%;
  position: relative;
}
.productinfo .conts .left .video video,
.productinfo .conts .left .img video,
.productinfo .conts .left .video img,
.productinfo .conts .left .img img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productinfo .conts .left .video::after,
.productinfo .conts .left .img::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.productinfo .conts .left img {
  width: 100%;
}
.productinfo .conts .left .imgs {
  width: 90%;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 5%;
  z-index: 999;
}
.productinfo .conts .left .imgs .img {
  flex: 1;
  max-width: 20%;
  background-color: black;
  border-radius: 0.1rem;
  overflow: hidden;
  cursor: pointer;
}
.productinfo .conts .left .imgs .img img {
  width: 100%;
  opacity: 0.5;
  transition: all 0.3s;
}
.productinfo .conts .left .imgs .img + div {
  margin-left: 0.2rem;
}
.productinfo .conts .left .imgs .img.active img {
  opacity: 1;
}
.productinfo .conts .right {
  flex: 1;
  position: relative;
}
.productinfo .conts .right .scroll {
  height: 75vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.productinfo .conts .right h2 {
  color: white;
}
.productinfo .conts .right .info {
  color: white;
  margin: 0.35rem auto;
}
.productinfo .conts .right .colors {
  display: flex;
  margin: 0.35rem auto;
}
.productinfo .conts .right .colors li {
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  margin-right: 0.2rem;
  cursor: pointer;
}
.productinfo .conts .right .size {
  display: flex;
  margin: 0.35rem auto;
}
.productinfo .conts .right .size li {
  width: 0.48rem;
  line-height: 0.35rem;
  text-align: center;
  border: 0.01rem solid #ffffff;
  color: white;
  margin-right: 0.16rem;
  cursor: pointer;
}
.productinfo .conts .right .serves {
  display: flex;
  margin: 0.35rem auto;
}
.productinfo .conts .right .serves li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 4em;
  margin-right: 0.2rem;
}
.productinfo .conts .right .serves li span {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.3;
  margin-top: 0.1rem;
}
.productinfo .conts .right .rich .titles {
  color: white;
  margin-bottom: 0.1rem;
}
.productinfo .conts .right .rich,
.productinfo .conts .right .rich * {
  color: white !important;
}
.productinfo .conts .right::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  width: 100%;
  height: 1.2rem;
  background: linear-gradient(180deg, rgba(19, 27, 39, 0) 0%, #131b27 100%);
}
.productinfo .conts .right::after {
  content: "\e664";
  font-family: "iconfont";
  font-size: 0.4rem;
  color: white;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 9;
  transform: translateX(-50%);
}
/* 虚拟现实 */
.fictitious {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.fictitious .conts {
  position: relative;
}
.fictitious .conts .icon-left,
.fictitious .conts .icon-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.fictitious .conts .icon-left.icon-left,
.fictitious .conts .icon-right.icon-left {
  right: 101%;
}
.fictitious .conts .icon-left.icon-right,
.fictitious .conts .icon-right.icon-right {
  left: 101%;
}
.fictitious .conts .swiper {
  width: 100%;
  overflow: hidden;
}
.fictitious .conts .swiper .swiper-wrapper {
  align-items: center;
}
.fictitious .conts .swiper .swiper-slide.videos {
  position: relative;
}
.fictitious .conts .swiper .swiper-slide.videos .iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.6rem;
  line-height: 0.6rem;
  border-radius: 50%;
  text-align: center;
  color: white;
  border: 1px solid white;
  cursor: pointer;
}
.fictitious .conts .swiper .swiper-slide.videos .iconfont::before {
  transform: translateX(0.03rem);
}
.fictitious .conts .swiper .swiper-slide.videos .iconfont:hover {
  color: var(--themeColor);
  border-color: var(--themeColor);
}
.fictitious .conts .swiper .swiper-slide.videos video {
  width: 100%;
  height: 55vh;
  object-fit: contain;
}
.fictitious .conts .swiper .swiper-slide.swi2 {
  display: flex;
}
.fictitious .conts .swiper .swiper-slide.swi2 .left {
  width: 50%;
}
.fictitious .conts .swiper .swiper-slide.swi2 .left .video {
  width: 100%;
  position: relative;
}
.fictitious .conts .swiper .swiper-slide.swi2 .left .video .iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.6rem;
  line-height: 0.6rem;
  border-radius: 50%;
  text-align: center;
  color: white;
  border: 1px solid white;
  cursor: pointer;
}
.fictitious .conts .swiper .swiper-slide.swi2 .left .video .iconfont::before {
  transform: translateX(0.03rem);
}
.fictitious .conts .swiper .swiper-slide.swi2 .left .video .iconfont:hover {
  color: var(--themeColor);
  border-color: var(--themeColor);
}
.fictitious .conts .swiper .swiper-slide.swi2 .left .video video {
  width: 100%;
}
.fictitious .conts .swiper .swiper-slide.swi2 .left .video,
.fictitious .conts .swiper .swiper-slide.swi2 .left .img {
  width: 100%;
  position: relative;
}
.fictitious .conts .swiper .swiper-slide.swi2 .left .video video,
.fictitious .conts .swiper .swiper-slide.swi2 .left .img video,
.fictitious .conts .swiper .swiper-slide.swi2 .left .video img,
.fictitious .conts .swiper .swiper-slide.swi2 .left .img img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fictitious .conts .swiper .swiper-slide.swi2 .left .video::after,
.fictitious .conts .swiper .swiper-slide.swi2 .left .img::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 51%;
}
.fictitious .conts .swiper .swiper-slide.swi2 .left h5 {
  color: white;
  margin-bottom: 0.2rem;
}
.fictitious .conts .swiper .swiper-slide.swi2 .left p {
  color: white;
  margin-top: 0.36rem;
}
.fictitious .conts .swiper .swiper-slide.swi2 .right {
  flex: 1;
  margin-left: 0.5rem;
}
.fictitious .conts .swiper .swiper-slide.swi2 .right .top {
  display: flex;
}
.fictitious .conts .swiper .swiper-slide.swi2 .right .top .le {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fictitious .conts .swiper .swiper-slide.swi2 .right .top .le img {
  width: 68%;
}
.fictitious .conts .swiper .swiper-slide.swi2 .right .top .ri {
  width: 1.68rem;
  background-color: #131b27;
}
.fictitious .conts .swiper .swiper-slide.swi2 .right .top .ri .la {
  color: white;
  text-align: center;
  padding: 0.2rem 0;
}
.fictitious .conts .swiper .swiper-slide.swi2 .right .top .ri .item {
  display: flex;
  justify-content: center;
  line-height: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.fictitious .conts .swiper .swiper-slide.swi2 .right .top .ri .item::before {
  margin-right: 0.1rem;
  display: none;
}
.fictitious .conts .swiper .swiper-slide.swi2 .right .top .ri .item.active {
  color: var(--themeColor);
  background-color: rgba(255, 255, 255, 0.06);
}
.fictitious .conts .swiper .swiper-slide.swi2 .right .top .ri .item.active::before {
  display: block;
}
.fictitious .conts .swiper .swiper-slide.swi2 .right p {
  color: white;
  margin-top: 0.36rem;
}
/* 可持续发展 */
.development {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.development .conts {
  display: flex;
}
.development .conts .left {
  flex: 1;
  color: white;
}
.development .conts .left .tis {
  font-weight: 700;
}
.development .conts .left .video {
  width: 100%;
  margin: 0.26rem auto 0.36rem;
  position: relative;
}
.development .conts .left .video .iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.6rem;
  line-height: 0.6rem;
  border-radius: 50%;
  text-align: center;
  color: white;
  border: 1px solid white;
  cursor: pointer;
}
.development .conts .left .video .iconfont::before {
  transform: translateX(0.03rem);
}
.development .conts .left .video .iconfont:hover {
  color: var(--themeColor);
  border-color: var(--themeColor);
}
.development .conts .left .video video {
  width: 100%;
}
.development .conts .right {
  width: 52%;
  margin-left: 0.5rem;
}
.development .conts .right .item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.2rem;
}
.development .conts .right .item .tiss {
  color: white;
  font-weight: 900;
}
.development .conts .right .item ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.32rem;
}
.development .conts .right .item ul li .tos {
  display: flex;
  align-items: center;
}
.development .conts .right .item ul li .tos img {
  height: 0.35rem;
}
.development .conts .right .item ul li .tos i {
  line-height: 0.35rem;
  color: white;
  margin-left: 0.23rem;
  background-color: #43be98;
  padding: 0 0.1rem;
  border-radius: 0 0.02rem 0.02rem 0;
  position: relative;
}
.development .conts .right .item ul li .tos i::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.18rem solid transparent;
  border-bottom: 0.18rem solid transparent;
  border-right: 0.13rem solid #43be98;
  position: absolute;
  top: 0;
  right: 100%;
}
.development .conts .right .item ul li p {
  color: white;
  margin-top: 0.18rem;
}
.search .conts .input {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 1.1rem auto 0.45rem;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(42.67px);
  padding: 0.1rem 0.2rem;
  border-radius: 3.6rem;
}
.search .conts .input .iconfont {
  color: white;
}
.search .conts .input input {
  flex: 1;
  margin: 0 0.1rem;
  color: white;
}
.search .conts .input .btn {
  background-color: white;
  padding: 0.1rem 0.87rem;
  border-radius: 0.42rem;
  color: var(--themeColor);
  font-weight: 700;
}
.search .conts .scroll {
  height: 70vh;
}
/* 手机 */
@media (max-width: 450px) {
  :root {
    --headerHeight: 60px;
    --container: 92vw;
  }
  body {
    font-size: 15px;
  }
  .moblie {
    display: block;
  }
  .fs-64,
  .fs-60,
  .fs-48 {
    font-size: 30px;
  }
  .fs-42 {
    font-size: 26px;
  }
  .fs-40 {
    font-size: 24px;
  }
  .fs-36 {
    font-size: 22px;
  }
  .fs-32 {
    font-size: 21px;
  }
  .fs-30,
  .fs-28 {
    font-size: 20px;
  }
  .fs-26,
  .fs-27 {
    font-size: 19px;
  }
  .fs-24 {
    font-size: 18px;
  }
  .fs-22 {
    font-size: 17px;
  }
  .fs-20 {
    font-size: 16px;
  }
  .fs-18 {
    font-size: 14px;
  }
  .fs-16,
  .fs-15,
  .fs-14 {
    font-size: 13px;
  }
  .fs-12 {
    font-size: 12px;
  }
  .iconfont {
    font-size: 16px;
  }
  .pagination,
  .pages {
    margin: 30px auto 60px;
  }
  .pagination a,
  .pages a,
  .pagination span,
  .pages span {
    width: 30px;
    line-height: 28px;
  }
  .pagination a.iconfont,
  .pages a.iconfont,
  .pagination span.iconfont,
  .pages span.iconfont {
    font-size: 14px;
  }
  .pagination a + a,
  .pages a + a,
  .pagination span + a,
  .pages span + a,
  .pagination a + span,
  .pages a + span,
  .pagination span + span,
  .pages span + span {
    margin-left: 8px;
  }
  .pagination a,
  .pages a,
  .pagination span,
  .pages span {
    border-radius: 4px;
  }
  .btn {
    padding: 0 15px;
    border-radius: 20px;
    line-height: 2.4;
  }
  .swiper-navigation {
    width: 30px;
    line-height: 30px;
  }
  .home .conts {
    width: 80vw;
  }
  .home .conts h2 {
    font-size: 19px;
  }
  .home .conts .swiper-slide .more::after,
  .home .conts a .more::after {
    font-size: 18px;
  }
  .home .conts .swiper-slide h4,
  .home .conts a h4 {
    font-size: 20px;
  }
  .header {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
  }
  .header .container .logo {
    width: 10vw;
  }
  .header .container .left {
    position: fixed;
    top: var(--headerHeight);
    left: 100vw;
    background-color: #fff;
    width: 100vw;
    height: calc(100vh - var(--headerHeight));
    display: block;
    transition: all 0.3s;
    z-index: 9999999;
  }
  .header .container .left a {
    color: #000;
    text-align: center;
    display: block;
    color: var(--themeColor);
    border-bottom: 1px solid var(--themeColor);
    line-height: 3;
  }
  .header .container .left a + a {
    margin-left: 0;
  }
  .header .container .left a::before {
    display: none;
  }
  .header .container .left.active {
    left: 0;
  }
  .header .container .right a {
    font-size: 30px;
  }
  .header .container .right .app_menu_btn {
    display: block;
  }
  .header .container .right .app_menu_btn::after,
  .header .container .right .app_menu_btn::before,
  .header .container .right .app_menu_btn span {
    background-color: white;
  }
  .footer .container {
    display: block;
  }
  .footer .container .left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer .container .left li:nth-child(3) {
    margin: 20px 0;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .footer .container .left li + li {
    margin-left: 0;
  }
  .footer .container .right .iconfont {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .footer .container .left li .ls a {
    margin-top: 5px;
  }
  .footer .container .left li .le {
    font-size: 20px;
  }
  .index .conts {
    width: var(--container);
  }
  .index .conts h1,
  .index .conts h3,
  .index .conts p {
    width: 100%;
    text-align: center;
  }
  .index .conts .submit {
    line-height: 3;
  }
  .product .conts {
    display: block;
  }
  .product .conts .item,
  .product .conts > a {
    margin-top: 10px;
  }
  .product .conts .item .right,
  .product .conts > a .right {
    width: 40%;
  }
  .product .conts .item:nth-child(2),
  .product .conts > a:nth-child(2),
  .product .conts .item:nth-child(3),
  .product .conts > a:nth-child(3) {
    background-color: #18212e;
  }
  .productnew .conts .swiper-slide .cates .cas a,
  .productnew .conts .swiper-slide .cates .top {
    line-height: 2;
  }
  .productnew .conts .swiper-slide .text {
    opacity: 0;
  }
  .productnew .conts .swiper-slide .cates {
    opacity: 1;
  }
  .productnewlist {
    height: auto;
    overflow-y: auto;
  }
  .productnewlist .conts {
    display: block;
  }
  .productnewlist .conts .left {
    margin-right: 0;
  }
  .productnewlist .conts .right .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .productnewlist .conts .right .scroll {
    height: auto;
  }
  .productnewlist .conts .right::after,
  .productnewlist .conts .right::before {
    display: none;
  }
  .productnewlist .conts .left .cates .item .label::after,
  .productnewlist .conts .left .cates .item .label::before {
    width: 14px;
    height: 2px;
  }
  .productnewlist .conts .right {
    margin: 20px 0;
  }
  .productcate,
  .development,
  .productinfo {
    height: auto;
    overflow-y: auto;
  }
  .productinfo .conts {
    display: block;
  }
  .productinfo .conts .left {
    width: 100%;
    margin-right: 0;
  }
  .productinfo .conts .right::before,
  .productinfo .conts .right::after {
    display: none;
  }
  .productinfo .conts .right .colors li {
    width: 16px;
    height: 16px;
  }
  .productinfo .conts .right .size li {
    width: 48px;
    line-height: 1.7;
  }
  .development .conts {
    display: block;
    margin: 20px auto;
  }
  .development .conts .left .tis {
    font-size: 24px;
    font-weight: 900;
  }
  .development .conts .right {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .development .conts .right .item ul li .tos img {
    height: 1.5rem;
  }
  .development .conts .right .item ul li .tos i {
    line-height: 1.2rem;
  }
  .development .conts .right .item .tiss {
    font-size: 25px;
  }
  .development .conts .left .video .iconfont {
    width: 30px;
    height: 30px;
  }
  .productinfo .conts .right .scroll {
    height: auto;
  }
  .productinfo .conts .right .serves,
  .productinfo .conts .right .size,
  .productinfo .conts .right .colors,
  .productinfo .conts .right .info {
    margin: 15px auto;
  }
  .productinfo .conts .right .rich .titles {
    font-size: 23px;
    font-weight: 500;
  }
  .product .conts .item .wrpas a img {
    height: 40px;
  }
  .product .conts .item .left,
  .product .conts .item .right {
    opacity: 0;
  }
  .product .conts .item .wrpas {
    opacity: 1;
  }
  .productcate .conts {
    margin: 30px auto;
  }
  .productcate .conts .title::after {
    font-size: 22px;
  }
  .productlist .conts .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .productlist .conts::after,
  .productlist .conts::before {
    display: none;
  }
  .productlist {
    height: auto;
    overflow-y: auto;
  }
  .productlist .conts .scroll {
    height: auto;
  }
  .fictitious {
    height: auto;
    overflow-y: auto;
  }
  .fictitious .conts .swiper .swiper-slide.swi2 {
    display: block;
  }
  .fictitious .conts .swiper .swiper-slide.swi2 .left {
    width: 100%;
  }
  .fictitious .conts .swiper .swiper-slide.videos .iconfont,
  .fictitious .conts .swiper .swiper-slide.swi2 .left .video .iconfont {
    width: 30px;
    line-height: 30px;
  }
  .fictitious .conts .swiper .swiper-slide.swi2 .right {
    margin-left: 0;
  }
  .fictitious .conts .swiper .swiper-slide.swi2 .right .top .ri .item {
    line-height: 2.3;
  }
  .fictitious .conts .swiper .swiper-slide.swi2 .right .top .ri {
    width: 30%;
  }
  .fictitious .conts {
    margin: 30px auto;
  }
  .clause .conts {
    --container: 92vw;
  }
  .newsinfo .conts.container .swiper-slide .left::after,
  .newsinfo .conts.container .swiper-slide .left::before {
    display: none;
  }
  .newsinfo .conts.container .swiper-slide {
    flex-direction: column-reverse;
  }
  .newsinfo .conts.container .swiper-slide .left {
    margin-top: 20px;
  }
  .newsinfo {
    height: auto;
    overflow-y: auto;
  }
  .newsinfo .conts.container .swiper-slide .left .rivh {
    max-height: none;
  }
  .newsinfo .conts.container .swiper-slide .right {
    width: 100%;
  }
  .home .conts .swiper-slide p,
  .home .conts a p {
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -o-line-clamp: 3;
  }
  .index .conts .submit,
  .index .conts .input .btn {
    border-radius: 1.42rem;
  }
  .newsinfo .conts.container {
    align-items: flex-start;
  }
  .newsinfo .conts.container .swiper {
    width: 100%;
  }
  .newsinfo .conts {
    position: relative;
  }
  .newsinfo .conts .swiper-navigation {
    position: absolute;
    z-index: 99;
    top: 40px;
  }
  .newsinfo .conts .swiper-navigation.icon-right {
    right: 0;
  }
}
