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

@-webkit-keyframes rotateAnima {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotateAnima {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes zoomAnima {
  0% {
    -webkit-transform: scale(0.45);
    transform: scale(0.45);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes zoomAnima {
  0% {
    -webkit-transform: scale(0.45);
    transform: scale(0.45);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-webkit-keyframes upDownAnima {
  0% {
    top: -10%;
  }

  60% {
    top: 10%;
  }

  100% {
    top: -10%;
  }
}

@keyframes upDownAnima {
  0% {
    top: -10%;
  }

  60% {
    top: 10%;
  }

  100% {
    top: -10%;
  }
}

body.show a,
body.show .transition,
body.show :before,
body.show img {
  -webkit-transition: All .5s ease;
  transition: All .5s ease;
}

.zoomImg {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}

.zoomImg:before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  opacity: .6;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.zoomImg img {
  width: 100%;
}

.zoomImg:hover:before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

.zoomImg:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

a:hover .zoomImg:before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

a:hover .zoomImg img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 1rem;
  scroll-behavior: smooth;
}

body {
  font-size: 0.12rem;
  font-family: "Source Han Sans";
  color: #212121;
  -webkit-text-size-adjust: none;
  opacity: 0;
  background: #000;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  width: .06rem;
  border-radius: .06rem;
}

body::-webkit-scrollbar-thumb {
  background: #c30d23;
  border-radius: .06rem;
}

body::-webkit-scrollbar-track {
  background: #eee;
  border-radius: .06rem;
}

body.show {
  opacity: 1;
}

a {
  color: #212121;
  text-decoration: none;
  outline: none;
}

a:active {
  star: expression(this.onFocus=this.blur());
}

a:link {
  text-decoration: none;
  outline: none;
}

a:visited {
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
  outline: none;
}

li {
  list-style: outside none;
}

li {
  list-style-type: none;
}

h1 {
  font-size: 0.16rem;
}

h2,
h3,
h4,
h5 {
  font-size: 0.14rem;
}

h5 {
  font-size: 0.12rem;
}

textarea,
input {
  background: rgba(0,0,0,0);
  font-size: 0.12rem;
  font-family: "Source Han Sans";
  color: #888;
  outline: none;
  border: 0;
}

em {
  font-style: normal;
}

img {
  vertical-align: middle;
  max-width: 100%;
  border: 0;
  object-fit: cover;
  width: 100%;
}

.wal {
  max-width: 16rem;
  margin: 0 auto;
}

#g_cursor {
  position: fixed;
  z-index: 99999;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  pointer-events: none;
  will-change: transform;
  opacity: 0;
}

#g_cursor .r {
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .5s;
  transition: .5s;
}

#g_cursor.black .r {
  background: #fff;
}

#g_cursor.hover {
  mix-blend-mode: exclusion;
}

#g_cursor.hover .r {
  width: .42rem;
  height: .42rem;
  background: #fff;
}

#g_cursor.drag {
  mix-blend-mode: normal;
}

#g_cursor.drag .r {
  width: 0.92rem;
  height: 0.92rem;
  background: #fff;
  font-size: 0.18rem;
  color: #212121;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#g_cursor.drag .r:after {
  content: "Drag";
}

#g_cursor.preview {
  mix-blend-mode: normal;
}

#g_cursor.preview .r {
  width: 0.92rem;
  height: 0.92rem;
  background: #fff;
  font-size: 0.18rem;
  color: #212121;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#g_cursor.preview .r:after {
  content: "Preview";
}

#g_cursor.on {
  opacity: 1;
}

@font-face {
  font-family: "iconfont";
  src: url("//at.alicdn.com/t/font_2640790_0xr51bk0scp.woff2?t=1650704386844") format("woff2"),url("//at.alicdn.com/t/font_2640790_0xr51bk0scp.woff?t=1650704386844") format("woff"),url("//at.alicdn.com/t/font_2640790_0xr51bk0scp.ttf?t=1650704386844") format("truetype");
}

.iconfont {
  font-family: "iconfont";
}

@font-face {
  font-family: "Arvo-Bold";
  src: url("../image/Arvo Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "DINNextLTPro-Bold";
  src: url(../image/DINNextLTPro-Bold.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "HarmonyOS_Sans_SC_Bold";
  src: url(../image/HarmonyOS_Sans_SC_Bold.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

.g-head .head {
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  right: 0;
  -webkit-transition: .5s;
  transition: .5s;
  padding: 0 0.6rem;
}

.g-head .wal {
  height: 1rem;
  max-width: 100%;
  position: relative;
}

.g-head a.logo {
  display: block;
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1.74rem;
  background: url(../image/logo.png) center no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 800px) {
  .g-head .g-nav {
    position: absolute;
    top: 0;
    right: 0;
  }

  .g-head .g-nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .g-head .g-nav li {
    margin-left: 0.65rem;
  }

  .g-head .g-nav li a.name {
    display: block;
    color: #fff;
    line-height: 1rem;
    font-size: 0.18rem;
  }

  .g-head .g-nav li a.name.on {
    color: #c30d23;
  }

  .g-head .g-nav li a.name:hover {
    color: #fff;
  }
}

.g-head.on .head {
  background: rgba(0,0,0,.6);
}

.g-head.on.on2 .head {
  background: rgba(0,0,0,0);
}

.g-head.g-head-white.on .head {
  background: #fff;
}

.g-head.g-head-white a.logo {
  background-image: url(../image/logo-color.png);
}

@media screen and (min-width: 800px) {
  .g-head.g-head-white .g-nav li a.name {
    color: #212121;
  }

  .g-head.g-head-white .g-nav li a.name.on {
    color: #c30d23;
  }

  .g-head.g-head-white .g-nav li a.name:hover {
    color: #212121;
  }
}

.g-foot {
  background: url(../image/g-foot.jpg) center no-repeat;
  background-size: cover;
  color: #e6e6e6;
}

.g-foot .wal {
  min-height: 5.4rem;
  position: relative;
}

.g-foot .logo {
  width: 1.74rem;
  padding: 1.26rem 0 0 0;
}

.g-foot .topA {
  position: absolute;
  right: 0;
  z-index: 5;
  top: 1.35rem;
}

.g-foot .topA a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.22rem;
  color: #e6e6e6;
}

.g-foot .topA a img {
  width: 0.18rem;
  margin-left: 0.1rem;
}

.g-foot .list {
  padding: 0.9rem 0 0.5rem 0;
  border-bottom: rgba(230,230,230,.15) solid 1px;
}

.g-foot .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.g-foot .list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 1.4rem;
  font-size: 0.22rem;
  line-height: 1em;
}

.g-foot .list li .ico {
  width: 0.22rem;
  margin-right: 0.1rem;
}

.g-foot .msg {
  padding: 0.5rem 0 1rem 0;
}

.g-foot .msg ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.g-foot .msg li {
  font-size: 0.14rem;
  position: relative;
  padding-right: 0.4rem;
}

.g-foot .msg li:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0.2rem;
  width: 1px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 0.12rem;
  background: #e6e6e6;
  opacity: .4;
}

.g-foot .msg li:last-child:after {
  display: none;
}

@media screen and (max-width: 800px) {
  html {
    font-size: 0.5rem;
  }

  body {
    background: #fff;
  }

  .wal,
  .wal-1200 {
    margin: 0 .6rem;
  }

  body.navShow {
    overflow: hidden;
  }

  body.navShow .g-head .head {
    background: #fff;
  }

  body.navShow .g-head a.logo {
    background-image: url(../image/logo-color.png);
  }

  body.navShow .g-head .navA {
    color: #c30d23;
  }

  body.navShow .g-head .navA:after {
    content: "";
  }

  body.navShow .g-head .g-nav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .g-head .head {
    padding: 0;
  }

  .g-head .navA {
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 0;
    right: -0.3rem;
    width: 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
  }

  .g-head .navA:after {
    content: "";
    font-family: "iconfont";
    font-size: 0.28rem;
  }

  .g-head .g-nav {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    top: 1rem;
    overflow-y: auto;
    background: #fff;
    -webkit-transition: .5s;
    transition: .5s;
    border-top: #eee solid 1px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }

  .g-head .g-nav li {
    border-bottom: #eee solid 1px;
  }

  .g-head .g-nav a.name {
    font-size: .28rem;
    padding-left: .5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 1rem;
  }

  .g-head .g-nav li.s-nav-li a.name:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: .5rem;
    font-family: "iconfont";
  }

  .g-head .g-nav li.s-nav-li.open a.name:after {
    content: "";
  }

  .g-head .g-nav .list {
    border-top: rgba(255,255,255,.3) solid 1px;
    padding: .2rem 0 .2rem .5rem;
    display: none;
  }

  .g-head .g-nav .list dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .g-head .g-nav .list dd {
    width: 25%;
  }

  .g-head .g-nav .list a {
    display: block;
    color: #fff;
    line-height: .6rem;
    font-size: .24rem;
  }

  .g-head.g-head-white .navA {
    color: #000;
  }

  .g-foot .logo {
    width: 2rem;
    padding: 1.26rem 0 0 0;
  }

  .g-foot .list li {
    width: 100%;
    padding: 0.15rem 0;
    font-size: 0.24rem;
  }

  .g-foot .list li .ico {
    width: 0.28rem;
  }

  .g-foot .msg li {
    font-size: 0.24rem;
    padding-right: 0.3rem;
    line-height: 2em;
  }

  .g-foot .msg li:after {
    display: none;
  }
}

@media screen and (max-width: 550px) {
  .wal,
  .wal-1200 {
    margin: 0 .3rem;
  }
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@-webkit-keyframes rotateAnima {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotateAnima {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes zoomAnima {
  0% {
    -webkit-transform: scale(0.45);
    transform: scale(0.45);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes zoomAnima {
  0% {
    -webkit-transform: scale(0.45);
    transform: scale(0.45);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-webkit-keyframes upDownAnima {
  0% {
    top: -10%;
  }

  60% {
    top: 10%;
  }

  100% {
    top: -10%;
  }
}

@keyframes upDownAnima {
  0% {
    top: -10%;
  }

  60% {
    top: 10%;
  }

  100% {
    top: -10%;
  }
}

#app {
  background: #fff;
  min-height: 100vh;
}

.index-flash {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.index-flash .en {
  position: absolute;
  left: 1.5rem;
  right: 0;
  bottom: -0.9rem;
  z-index: 4;
  font-family: "DINNextLTPro-Bold";
  text-transform: uppercase;
  font-size: 2.6rem;
  white-space: nowrap;
  line-height: 1em;
  color: rgba(255,255,255,0);
  opacity: .15;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
}

.index-flash .list {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.index-flash .list li {
  position: relative;
}

.index-flash .list li .img img {
  height: 100vh;
}

.index-flash .list li .title {
  position: absolute;
  z-index: 5;
  left: 1.6rem;
  bottom: 1rem;
  right: 0;
  color: #fff;
  font-size: 0.52rem;
  line-height: 0.74rem;
}

.index-flash .list li .title h2 {
  font-size: 0.52rem;
}

.index-flash .dots-wrapper {
  width: 0.2rem;
  position: absolute;
  z-index: 5;
  right: 0.6rem;
  bottom: 1rem;
}

.index-flash .dots-wrapper .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.index-flash .dots-wrapper .dots span {
  width: 0.2rem;
  height: 0.4rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.index-flash .dots-wrapper .dots span:before {
  content: "";
  width: 0.04rem;
  height: 0.04rem;
  background: #fff;
  border-radius: 50%;
}

.index-flash .dots-wrapper .dots span:after {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.1rem;
  margin-top: -0.1rem;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../image/img20.png) center no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.index-flash .dots-wrapper .dots span.on:before {
  background: #c30d23;
}

.index-flash .dots-wrapper .dots span.on:after {
  opacity: 1;
  -webkit-animation: rotateAnima 5s linear infinite;
  animation: rotateAnima 5s linear infinite;
}

.dots span {
  outline: none;
}

.page-title {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: "DINNextLTPro-Bold";
  font-size: 1.2rem;
  line-height: .9em;
}

.page-title div {
  height: .9em;
  overflow: hidden;
  position: relative;
}

.page-title div em {
  display: block;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: .7s;
  transition: .7s;
}

.page-title.show div em {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.page-title2 {
  font-size: 0.36rem;
  color: #000;
  line-height: 1em;
  padding: 0.2rem 0 0.8rem 0;
}

.index-company {
  padding: 1.36rem 0 1.1rem 1.6rem;
}

.index-company .container {
  position: relative;
  height: 5.6rem;
  padding: 1rem;
}

.index-company .container .bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.index-company .container .bg img {
  height: 5.6rem;
}

.index-company .container .page-title,
.index-company .container .title,
.index-company .container .content {
  position: relative;
  z-index: 5;
}

.index-company .container .title {
  color: #fff;
  position: relative;
  font-size: 0.36rem;
  line-height: 1em;
  padding: 0.4rem 0 0.8rem 0;
}

.index-company .container .title:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.4rem;
  width: 0.42rem;
  height: 0.04rem;
  background: #c30d23;
}

.index-company .container .content {
  color: rgba(230,230,230,.8);
  font-size: 0.16rem;
  line-height: 2em;
  max-width: 6.15rem;
}

.index-company .list {
  padding: 0 0 0 1rem;
}

.index-company .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.index-company .list li {
  width: 25%;
  padding-top: 0.75rem;
}

.index-company .list li .num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 0.5rem;
}

.index-company .list li .num em {
  font-size: 0.6rem;
  font-family: "Arvo-Bold";
  color: #c30d23;
}

.index-company .list li .num:after {
  content: "";
  width: 0.16rem;
  height: 0.16rem;
  background: url(../image/img16.svg) center no-repeat;
  background-size: 100% 100%;
  position: relative;
  left: 0.1rem;
  top: 0.1rem;
}

.index-company .list li .name {
  font-size: 0.16rem;
  line-height: 1em;
  padding: 0.25rem 0 0.06rem 0;
}

.index-company .list li .en {
  font-size: 0.16rem;
  line-height: 1em;
  color: gray;
  font-family: "Roboto-Light";
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(0.75);
  -ms-transform: scale(0.75);
  transform: scale(0.75);
}

.index-setting {
  position: relative;
  color: #fff;
  width: 100%;
  overflow: hidden;
  height: 100vh;
  background: #000;
}

.index-setting .page-title {
  position: absolute;
  z-index: 5;
  left: 1.6rem;
  top: 1.4rem;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.index-setting .page-title.on {
  opacity: 1;
}

.index-setting .item {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
}

.index-setting .item.show {
  z-index: 1;
  opacity: 1;
}

.index-setting .item .list {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.index-setting .item .list li {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.index-setting .item .list li img {
  height: 100vh;
}

.index-setting .item .list .dots-wrapper {
  width: 0.2rem;
  position: absolute;
  z-index: 5;
  right: 0.6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.index-setting .item .list .dots-wrapper .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.index-setting .item .list .dots-wrapper .dots span {
  width: 0.2rem;
  height: 0.4rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.index-setting .item .list .dots-wrapper .dots span:before {
  content: "";
  width: 0.04rem;
  height: 0.04rem;
  background: #fff;
  border-radius: 50%;
}

.index-setting .item .list .dots-wrapper .dots span:after {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.1rem;
  margin-top: -0.1rem;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../image/img20_1.png) center no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.index-setting .item .list .dots-wrapper .dots span.on:after {
  opacity: 1;
  -webkit-animation: rotateAnima 5s linear infinite;
  animation: rotateAnima 5s linear infinite;
}

.index-setting .item .bd {
  position: absolute;
  z-index: 5;
  left: 1.5rem;
  top: 4.9rem;
  width: 5.6rem;
}

.index-setting .item .bd .title {
  position: relative;
  font-size: 0.36rem;
  line-height: 1em;
  padding: 0 0 0.8rem 0;
}

.index-setting .item .bd .title:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.4rem;
  width: 0.42rem;
  height: 0.04rem;
  background: #c30d23;
}

.index-setting .item .bd .content {
  color: #e6e6e6;
  font-size: 0.16rem;
  line-height: 2em;
  max-width: 6.15rem;
}

.index-setting .btns {
  height: 1.66rem;
  position: absolute;
  z-index: 5;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 0;
}

.index-setting .btns .line {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 0.06rem;
  background: rgba(255,255,255,.3);
  overflow: hidden;
  border-radius: 0.03rem;
}

.index-setting .btns .line div {
  position: absolute;
  top: 0;
  bottom: 0;
}

.index-setting .btns .line .line-1 {
  left: 1.7rem;
  right: 50%;
  --w: 0%;
}

.index-setting .btns .line .line-1:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  width: var(--w);
  -webkit-transition: 0s;
  transition: 0s;
}

.index-setting .btns .line .line-2 {
  right: 1.7rem;
  left: 50%;
  --w: 0%;
}

.index-setting .btns .line .line-2:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  width: var(--w);
  -webkit-transition: 0s;
  transition: 0s;
}

.index-setting .btns .line .line-3 {
  left: 0;
  right: 0;
  --w: 0rem;
}

.index-setting .btns .line .line-3:before,
.index-setting .btns .line .line-3:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  background: #fff;
  -webkit-transition: 0s;
  transition: 0s;
}

.index-setting .btns .line .line-3:before {
  left: calc(100% - 1.7rem);
  width: var(--w);
}

.index-setting .btns .line .line-3:after {
  left: 0;
  width: calc(var(--w) - 1.7rem);
}

.index-setting .btns ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 1.3rem;
}

.index-setting .btns li {
  width: 0.8rem;
  height: 1.66rem;
  cursor: pointer;
  position: relative;
  font-size: 0.2rem;
  text-align: center;
}

.index-setting .btns li:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0.2rem;
  height: 0.2rem;
  background: #fff;
  border-radius: 50%;
}

.index-setting .btns li a {
  display: block;
  position: absolute;
  inset: 0;
}

.index-setting .btns li .name {
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(0.6rem);
  -ms-transform: translateY(0.6rem);
  transform: translateY(0.6rem);
}

.index-setting .btns li .img {
  position: absolute;
  left: 50%;
  margin-left: -0.4rem;
  top: 50%;
  margin-top: -0.4rem;
  background: #fff;
  border-radius: 50%;
  padding: 0.04rem;
  width: 0.8rem;
  height: 0.8rem;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .5s;
  transition: .5s;
}

.index-setting .btns li .img img {
  height: 0.72rem;
  border-radius: 50%;
}

.index-setting .btns li:hover .name,
.index-setting .btns li.on .name {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.index-setting .btns li:hover .img,
.index-setting .btns li.on .img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.index-customer-film {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.index-customer-film .wal {
  padding: 1.4rem 0 1.8rem 0;
}

.index-customer-film .page-title {
  color: #000;
}

.index-customer-film .page-title2 {
  padding: 0.35rem 0 1.35rem 0;
}

.index-customer-film .list {
  width: 21rem;
  overflow: hidden;
  position: relative;
}

.index-customer-film .list li {
  padding-right: 0.4rem;
}

.index-customer-film .list li .item {
  display: block;
  padding-top: 0.1rem;
}

.index-customer-film .list li .item .img {
  position: relative;
  top: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.index-customer-film .list li .item .img img {
  height: 3.8rem;
}

.index-customer-film .list li .item .img video {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.index-customer-film .list li .item .img .video-btn {
  position: absolute;
  z-index: 15;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  background: url(../image/play.png) center no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

.index-customer-film .list li .item .img:hover img,
.index-customer-film .list li .item .img:hover .video-btn {
  opacity: 0;
}

.index-customer-film .list li .item .img:hover video {
  opacity: 1;
}

.index-customer-film .list li .item .name {
  font-size: 0.24rem;
  margin-top: 0.45rem;
}

.index-business {
  padding-bottom: 1.6rem;
}

.index-business .page-title {
  color: #000;
}

.index-business .page-title2 {
  padding: 0.35rem 0 0.8rem 0;
}

.index-business .list {
  position: relative;
  padding: 0.8rem 1.6rem 0 0;
  height: 5.6rem;
}

.index-business .list .bg {
  position: absolute;
  left: -1.6rem;
  top: 0;
  bottom: 0;
  right: 0;
  background: url(../image/img1760_2.jpg) center no-repeat;
  background-size: cover;
}

.index-business .list .list-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.index-business .list .list-wrapper .wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.index-business .list .list-wrapper ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  top: 1px;
}

.index-business .list .list-wrapper li {
  width: 3.02rem;
  padding: 0.4rem 0.3rem 0.4rem 0;
  border-bottom: rgba(255,255,255,.15) solid 1px;
}

.index-business .list .list-wrapper li img {
  height: 1.2rem;
}

.about-1 {
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
}

.about-1 .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-height: 10.24rem;
}

.about-1 .row .side {
  padding-top: 2.45rem;
  padding-bottom: 3.15rem;
  --top: 0rem;
  position: relative;
  top: var(--top);
}

.about-1 .row .side .title .page-title {
  color: #000;
}

.about-1 .row .side .ico {
  width: 1.18rem;
  height: 1.18rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-1 .row .side .ico:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: url(../image/img118.png) center no-repeat;
  background-size: 100%;
  -webkit-animation: rotateAnima 9s linear infinite;
  animation: rotateAnima 9s linear infinite;
}

.about-1 .row .side .ico img {
  width: 0.18rem;
  -webkit-transition: 0s;
  transition: 0s;
  -webkit-animation: upDownAnima 2s linear infinite;
  animation: upDownAnima 2s linear infinite;
  position: relative;
}

.about-1 .row .content {
  width: 8.65rem;
  font-size: 0.18rem;
  line-height: 2em;
  text-align: justify;
  color: #000;
  padding-top: 4.4rem;
  padding-bottom: 1.1rem;
}

.about-1 .row .content .p {
  text-indent: 2em;
  padding-bottom: 0.2rem;
}

.about-1 .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-1 .list li {
  min-width: 2rem;
}

.about-1 .list li .num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 0.5rem;
}

.about-1 .list li .num em {
  font-size: 0.6rem;
  font-family: "Arvo-Bold";
  color: #c30d23;
}

.about-1 .list li .num:after {
  content: "";
  width: 0.16rem;
  height: 0.16rem;
  background: url(../image/img16.svg) center no-repeat;
  background-size: 100% 100%;
  position: relative;
  left: 0.1rem;
  top: 0.1rem;
}

.about-1 .list li .name {
  font-size: 0.16rem;
  line-height: 1em;
  padding: 0.25rem 0 0.06rem 0;
}

.about-1 .list li .en {
  font-size: 0.16rem;
  line-height: 1em;
  color: gray;
  font-family: "Roboto-Light";
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(0.75);
  -ms-transform: scale(0.75);
  transform: scale(0.75);
}

.about-2 {
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 5;
  margin-top: 0.6rem;
}

.about-2 .container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
}

.about-2 .container .video {
  background: center no-repeat;
  background-size: cover;
  --size: 20vw;
  -webkit-mask: url(../image/img733.svg) center no-repeat;
  mask: url(../image/img733.svg) center no-repeat;
  -webkit-mask-size: var(--size) auto;
  mask-size: var(--size) auto;
}

@media screen and (max-width: 800px) {
  .about-2 .container .video {
    --size: 20vh;
    -webkit-mask-size: auto var(-size);
    mask-size: auto var(-size);
  }
}

.about-2 .container .video2 {
  --opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 2;
  opacity: var(--opacity);
}

.about-2 .container img,
.about-2 .container video {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.about-2 .container .logo {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 5rem;
  display: none;
}

.about-2 .container video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  visibility: hidden;
}

.about-2 .container .video-btn {
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../image/play.png) center no-repeat;
  background-size: 100% 100%;
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about-2 .container.on video {
  opacity: 1;
  visibility: visible;
}

.about-3 {
  padding: 1.4rem 0;
}

.about-3 .page-title {
  color: #000;
}

.about-3 .list ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.6rem;
}

.about-3 .list li {
  position: relative;
}

.about-3 .list li .zoomImg img {
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
}

.about-3 .list li .bd {
  position: absolute;
  z-index: 5;
  left: 0.4rem;
  bottom: 0;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  cursor: default;
}

.about-3 .list li .bd .year {
  font-size: 0.8rem;
  line-height: 1em;
  font-family: "DINNextLTPro-Bold";
  color: rgba(0,0,0,0);
  opacity: .5;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
}

.about-3 .list li .bd .name {
  font-size: 0.24rem;
  color: #000;
  line-height: 1em;
}

.about-3 .list li:hover .zoomImg img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.about-3 .list li:hover .bd {
  bottom: 0.4rem;
  opacity: 1;
}

.about-4 .page-title {
  color: #000;
}

.about-4 .list {
  position: relative;
  background: #000;
}

.about-4 .list .img {
  opacity: 0;
}

.about-4 .list .word {
  width: 8.51rem;
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about-5 {
  padding: 1.4rem 0 1.1rem 0;
}

.about-5 .page-title {
  color: #000;
}

.about-5 .list {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-5 .list .wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.about-5 .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  top: 1px;
}

.about-5 .list li {
  width: 3.02rem;
  padding: 0 0.3rem 0.3rem 0;
  border-bottom: rgba(255,255,255,.15) solid 1px;
}

.about-5 .list li a {
  display: block;
  border: rgba(12,14,22,.1) solid 1px;
}

.about-5 .list li img {
  height: 1.2rem;
}

.film-studio {
  padding-top: 2.4rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.film-studio .page-title {
  color: #000;
}

.film-studio .page-title2 {
  padding: 0.4rem 0 1rem 0;
}

.film-studio .list>ul>li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 1.4rem;
}

.film-studio .list>ul>li .bd {
  width: 7.6rem;
  border-top: rgba(0,0,0,.15) solid 1px;
  border-bottom: rgba(0,0,0,.15) solid 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.55rem 0;
  color: #000;
}

.film-studio .list>ul>li .bd .hd {
  position: relative;
}

.film-studio .list>ul>li .bd .hd h5 {
  font-size: 0.24rem;
  line-height: 1em;
  position: relative;
  padding-bottom: 0.3rem;
}

.film-studio .list>ul>li .bd .hd h5:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.3rem;
  height: 0.04rem;
  background: #c30d23;
}

.film-studio .list>ul>li .bd .hd .en {
  position: absolute;
  top: -0.09rem;
  right: 0;
  font-family: "HarmonyOS_Sans_SC_Bold";
  font-size: 0.7rem;
  color: rgba(0,0,0,0);
  line-height: 0.76rem;
  opacity: .5;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
}

.film-studio .list>ul>li .bd .name {
  margin-top: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.film-studio .list>ul>li .bd .name em {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 0.32rem;
  font-weight: bold;
  width: 0.52rem;
  height: 0.52rem;
  font-family: "HarmonyOS_Sans_SC_Bold";
  background: #c30d23;
  margin-right: 0.07rem;
}

.film-studio .list>ul>li .bd .name h5 {
  font-size: 0.46rem;
  color: #c30d23;
  line-height: 1em;
}

.film-studio .list>ul>li .bd .content {
  font-size: 0.18rem;
  line-height: 2em;
  padding: 0.3rem 1.15rem 0 0;
}

.film-studio .list>ul>li .imgs {
  width: 7.6rem;
  overflow: hidden;
  position: relative;
}

.film-studio .list>ul>li .imgs li img {
  height: 5rem;
}

.film-studio .list>ul>li .imgs .btn {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: rgba(0,0,0,.3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  cursor: pointer;
}

.film-studio .list>ul>li .imgs .btn:before,
.film-studio .list>ul>li .imgs .btn:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.6rem;
  height: 1.6rem;
  margin-left: -0.8rem;
  margin-top: -0.8rem;
  -webkit-transition: 0s;
  transition: 0s;
  border-radius: 50%;
  border: #fff solid 1px;
  -webkit-animation: zoomAnima 2s linear infinite;
  animation: zoomAnima 2s linear infinite;
}

.film-studio .list>ul>li .imgs .btn:after {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.film-studio .list>ul>li .imgs .btn i {
  width: 0.8rem;
  height: 0.8rem;
  background: #fff url(../image/img25.png) center no-repeat;
  background-size: 0.25rem;
  cursor: pointer;
  border-radius: 50%;
}

.film-studio .list>ul>li .imgs:hover .btn {
  opacity: 1;
}

.film-studio .list>ul>li .imgs .dots {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.film-studio .list>ul>li .imgs .dots span {
  margin: 0 0.05rem;
  width: 0.3rem;
  height: 0.05rem;
  background: #fff;
  opacity: .5;
  -webkit-transition: .5s;
  transition: .5s;
}

.film-studio .list>ul>li .imgs .dots span.on {
  background: #c30d23;
  opacity: 1;
}

.film-studio-layer {
  position: fixed;
  z-index: 199;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .5s;
  transition: .5s;
}

.film-studio-layer.show {
  opacity: 1;
  visibility: visible;
}

.film-studio-layer .wal {
  position: relative;
}

.film-studio-layer .close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.24rem;
  font-family: "iconfont";
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  width: 1rem;
  height: 1rem;
  color: #c30d23;
}

.film-studio-layer .arrow a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.24rem;
  font-family: "iconfont";
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  width: 1rem;
  height: 1rem;
  color: #c30d23;
}

.film-studio-layer .arrow a.prev {
  left: 0;
}

.film-studio-layer .arrow a.prev:after {
  content: "";
}

.film-studio-layer .arrow a.next {
  right: 0;
}

.film-studio-layer .arrow a.next:after {
  content: "";
}

.film-studio-layer .big-img {
  padding: 1.25rem 0 1.85rem 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.film-studio-layer .big-img li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.film-studio-layer .big-img li .img {
  position: relative;
}

.film-studio-layer .big-img li .img img {
  width: auto;
  max-height: calc(100vh - 3.1rem);
}

.film-studio-layer .big-img li .img .name {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  color: #fff;
  line-height: 0.5rem;
  background: rgba(0,0,0,.5);
  font-size: 0.2rem;
}

.film-studio-layer .list {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.34rem;
  overflow: hidden;
}

.film-studio-layer .list li {
  padding-right: 0.1rem;
}

.film-studio-layer .list li .img {
  position: relative;
  cursor: pointer;
}

.film-studio-layer .list li .img:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 5;
  border: #c30d23 solid 1px;
  opacity: 0;
}

.film-studio-layer .list li .img img {
  height: 1.2rem;
}

.film-studio-layer .list li .img .name {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  color: #fff;
  line-height: 0.28rem;
  height: 0.28rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  background: rgba(0,0,0,.5);
  font-size: 0.14rem;
}

.film-studio-layer .list li.on .img:before {
  opacity: 1;
}

.lighting-equipment {
  padding: 2.4rem 0 1.4rem 0;
}

.lighting-equipment .page-title {
  color: #000;
}

.lighting-equipment .page-title2 {
  padding: 0.4rem 0 1rem 0;
}

.lighting-equipment .list ul {
  display: -ms-grid;
  display: grid;
  grid-gap: 0.6rem;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.lighting-equipment .list li img {
  height: 3.4rem;
}

.lighting-equipment .list .li_2_2 {
  -ms-grid-row-span: 2;
  grid-row: span 2;
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.lighting-equipment .list .li_2_2 img {
  height: 6.8rem;
}

.lighting-equipment .list .li_1_2 {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

.lighting-equipment .list .li_1_2 img {
  height: 6.8rem;
}

.customer-film {
  padding: 2.4rem 0 0 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.customer-film .page-title {
  color: #000;
}

.customer-film .page-title2 {
  padding: 0.4rem 0 1rem 0;
}

.customer-film .list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 1.4rem;
}

.customer-film .list li .bd {
  width: 3rem;
  position: relative;
  z-index: 5;
  top: -1rem;
}

.customer-film .list li .bd .num {
  font-family: "HarmonyOS_Sans_SC_Bold";
  font-size: 1rem;
  line-height: 1em;
  color: rgba(255,255,255,0);
  opacity: .4;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
}

.customer-film .list li .bd h2 {
  font-size: 0.6rem;
  line-height: 1em;
  white-space: nowrap;
  padding: 0.4rem 0;
}

.customer-film .list li .bd .btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.24rem;
}

.customer-film .list li .bd .btn a:after {
  content: "";
  font-family: "iconfont";
  color: #c30d23;
  margin-left: 0.12rem;
}

.customer-film .list li .bd .btn a:hover {
  color: #c30d23;
}

.customer-film .list li .img {
  position: relative;
  width: 11.5rem;
}

.customer-film .list li .img:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 5;
  background: url(../image/img180.png) center no-repeat;
  background-size: 100%;
  width: 1.8rem;
  height: 1.77rem;
  right: 0.48rem;
  bottom: 0.48rem;
}

.customer-film .list li .img img {
  height: 6.46rem;
}

.customer-film .list li .img video {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  background: #fff;
}

.customer-film .list li .img .video-btn {
  position: absolute;
  z-index: 15;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  background: url(../image/play.png) center no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

.customer-film .list li .img.on img,
.customer-film .list li .img.on .video-btn {
  opacity: 0;
}

.customer-film .list li .img.on video {
  opacity: 1;
}

.scene-making-detail,
.scene-making {
  padding: 2.4rem 0 1.4rem 0;
}

.scene-making-detail .page-title,
.scene-making .page-title {
  color: #000;
}

.scene-making-detail .navs,
.scene-making .navs {
  padding: 0.4rem 0 1rem 0;
}

.scene-making-detail .navs ul,
.scene-making .navs ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.scene-making-detail .navs li,
.scene-making .navs li {
  padding-right: 0.82rem;
  position: relative;
}

.scene-making-detail .navs li:after,
.scene-making .navs li:after {
  content: "";
  display: block;
  position: absolute;
  right: 0.4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.02rem;
  height: 0.24rem;
  background: rgba(0,0,0,.3);
}

.scene-making-detail .navs li:last-child:after,
.scene-making .navs li:last-child:after {
  display: none;
}

.scene-making-detail .navs li a,
.scene-making .navs li a {
  font-size: 0.36rem;
  line-height: 1em;
  color: #b3b3b3;
}

.scene-making-detail .navs li a:hover,
.scene-making-detail .navs li a.on,
.scene-making .navs li a:hover,
.scene-making .navs li a.on {
  color: #000;
}

.scene-making .list ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.4rem;
}

.scene-making .list li a {
  display: block;
  position: relative;
}

.scene-making .list li a .name {
  position: absolute;
  z-index: 5;
  inset: 0;
  background: rgba(195,13,35,.6);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  font-size: 0.18rem;
  color: #fff;
}

.scene-making .list li a .name:after {
  content: "";
  margin-top: 0.12rem;
  width: 0;
  -webkit-transition: .5s;
  transition: .5s;
  height: 0.02rem;
  background: #fff;
}

.scene-making .list li a:hover .name {
  opacity: 1;
}

.scene-making .list li a:hover .name:after {
  width: 0.2rem;
}

.scene-making-detail .hd {
  position: relative;
  padding: 0 1rem 0.4rem 0;
  border-bottom: rgba(0,0,0,.1) solid 1px;
}

.scene-making-detail .hd .title {
  font-size: 0.36rem;
}

.scene-making-detail .hd .back {
  position: absolute;
  top: 0;
  right: 0;
}

.scene-making-detail .hd .back a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "iconfont";
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid rgba(0,0,0,.2);
  font-size: 0.2rem;
  border-radius: 50%;
}

.scene-making-detail .content {
  padding: 0.6rem 0;
}

.scene-making-detail .content .img {
  margin-bottom: 0.6rem;
}

.scene-making-detail .page-num {
  font-size: 0.18rem;
  padding-top: 0.4rem;
  border-top: rgba(0,0,0,.1) solid 1px;
}

.scene-making-detail .page-num ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact {
  padding: 2.4rem 0 1.4rem 0;
}

.contact .page-title {
  color: #000;
}

.contact .page-title2 {
  padding: 0.4rem 0 1rem 0;
}

.contact .list {
  padding-bottom: 0.3rem;
}

.contact .list ul {
  display: -ms-grid;
  display: grid;
  grid-gap: 0.3rem;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

.contact .list li .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: relative;
  -webkit-transition: .5s;
  transition: .5s;
  top: 0;
  height: 2.6rem;
  background: #f4f4f4;
}

.contact .list li .item .ico {
  width: 0.65rem;
  height: 0.65rem;
  position: relative;
  margin-bottom: 0.15rem;
}

.contact .list li .item .ico img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.contact .list li .item .name {
  font-size: 0.2rem;
  line-height: 0.36rem;
  margin-bottom: 0.05rem;
}

.contact .list li .item .content {
  font-size: 0.18rem;
  line-height: 0.36rem;
}

.contact .list li .item .layer {
  width: 2.29rem;
  position: absolute;
  z-index: 5;
  left: 50%;
  top: -1rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .5s;
  transition: .5s;
}

.contact .list li .item:hover {
  color: #fff;
  top: -0.1rem;
  background: #c30d23;
  box-shadow: 0 0.05rem 0.3rem 0 rgba(69,6,6,.3);
}

.contact .list li .item:hover .ico img:nth-child(1) {
  opacity: 0;
}

.contact .list li .item:hover .ico img:nth-child(2) {
  opacity: 1;
}

.contact .list li .item:hover .layer {
  opacity: 1;
  visibility: visible;
  top: -1.45rem;
}

.contact .map {
  margin-bottom: 1.4rem;
}

.contact .form ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact .form li {
  width: 4.93rem;
  border-bottom: rgba(0,0,0,.15) solid 1px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 0;
}

.contact .form li>.name {
  font-size: 0.24rem;
  line-height: 1em;
}

.contact .form li .input input,
.contact .form li .input textarea {
  width: 100%;
  height: 0.7rem;
  padding-top: 0.2rem;
  line-height: 0.5rem;
  font-size: 0.24rem;
  color: #c30d23;
}

.contact .form li .input textarea {
  height: 1.7rem;
}

.contact .form li .select {
  position: relative;
}

.contact .form li .select .name {
  height: 0.7rem;
  padding-top: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0.24rem;
  color: #c30d23;
}

.contact .form li .select .name:after {
  content: "";
  color: #333;
  -webkit-transform: scale(0.8) rotate(90deg);
  -ms-transform: scale(0.8) rotate(90deg);
  transform: scale(0.8) rotate(90deg);
  font-family: "iconfont";
}

.contact .form li .select .select-layer {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  box-shadow: 0 0.05rem 0.07rem rgba(0,0,0,.1);
  padding: 0.15rem 0.2rem;
  display: none;
}

.contact .form li .select .select-layer dd {
  font-size: 0.2rem;
  line-height: 2em;
}

.contact .form li .select .select-layer dd:hover {
  color: #c30d23;
}

.contact .form li .select.show .select-layer {
  display: block;
}

.contact .form li:hover {
  z-index: 20;
}

.contact .form li.li_01 {
  width: 10.46rem;
}

.contact .form li.li_02 {
  width: 100%;
}

.contact .form .submit {
  margin-top: -0.23rem;
}

.contact .form .submit div {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.24rem;
  color: #fff;
  width: 2rem;
  height: 0.6rem;
  background: #c30d23;
}

@media screen and (max-width: 800px) {
  .index-flash .en {
    left: 0;
    right: 0;
    bottom: -0.2rem;
    font-size: 1.6rem;
  }

  .index-flash .list li .title {
    left: 0.3rem;
    bottom: 1.6rem;
  }

  .index-flash .dots-wrapper {
    width: 0.3rem;
    right: 0.2rem;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
  }

  .index-flash .dots-wrapper .dots span {
    width: 0.3rem;
    height: 0.5rem;
  }

  .index-flash .dots-wrapper .dots span:before {
    width: 0.08rem;
    height: 0.08rem;
  }

  .index-flash .dots-wrapper .dots span:after {
    margin-left: -0.15rem;
    margin-top: -0.15rem;
    width: 0.3rem;
    height: 0.3rem;
  }

  .page-title {
    font-size: 0.9rem;
  }

  .index-company {
    padding: 1.1rem 0 1.1rem 0.3rem;
  }

  .index-company .container {
    height: 5.6rem;
    padding: 0.7rem 0.4rem;
  }

  .index-company .container .bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .index-company .container .bg img {
    height: 5.6rem;
  }

  .index-company .container .content {
    font-size: 0.24rem;
    line-height: 1.8em;
  }

  .index-company .list {
    padding: 0.3rem 0 0 0.3rem;
  }

  .index-company .list li {
    width: 50%;
    padding-top: 0.5rem;
  }

  .index-company .list li .num {
    height: 0.6rem;
  }

  .index-company .list li .num em {
    font-size: 0.8rem;
  }

  .index-company .list li .num:after {
    width: 0.26rem;
    height: 0.26rem;
    left: 0.1rem;
    top: 0.1rem;
  }

  .index-company .list li .name {
    font-size: 0.26rem;
  }

  .index-company .list li .en {
    font-size: 0.26rem;
  }

  .index-setting .page-title {
    left: 0.3rem;
    top: 1.4rem;
  }

  .index-setting .item .list .dots-wrapper {
    width: 0.3rem;
    right: 0.2rem;
  }

  .index-setting .item .list .dots-wrapper .dots span {
    width: 0.3rem;
    height: 0.5rem;
  }

  .index-setting .item .list .dots-wrapper .dots span:before {
    width: 0.08rem;
    height: 0.08rem;
  }

  .index-setting .item .list .dots-wrapper .dots span:after {
    margin-left: -0.15rem;
    margin-top: -0.15rem;
    width: 0.3rem;
    height: 0.3rem;
  }

  .index-setting .item .bd {
    left: 0.3rem;
    top: 4.5rem;
    width: 6.2rem;
  }

  .index-setting .item .bd .content {
    font-size: 0.24rem;
    line-height: 1.8em;
  }

  .index-setting .btns {
    height: 1.66rem;
    left: 0.3rem;
    right: 0.3rem;
  }

  .index-setting .btns ul {
    padding: 0 0.6rem;
  }

  .index-setting .btns li {
    font-size: 0.26rem;
  }

  .index-setting .btns li .name {
    margin-left: -0.3rem;
    margin-right: -0.3rem;
  }

  .index-customer-film .page-title2 {
    padding: 0.35rem 0 0.8rem 0;
  }

  .index-customer-film .list {
    width: 7.2rem;
  }

  .index-customer-film .list li {
    padding-right: 0.3rem;
  }

  .index-customer-film .list li a .name {
    font-size: 0.26rem;
  }

  .index-business .list {
    padding: 0.5rem 0 0 0;
    height: 4.9rem;
  }

  .index-business .list .bg {
    left: -0.3rem;
  }

  .about-1 .row {
    height: auto;
    padding: 2.45rem 0 0.2rem 0;
  }

  .about-1 .row .side {
    height: 2rem;
    width: 100%;
    padding: 0;
  }

  .about-1 .row .side .ico {
    left: auto;
    right: 0;
    bottom: auto;
    top: 0.2rem;
  }

  .about-1 .row .content {
    width: 100%;
    font-size: 0.24rem;
    line-height: 1.8em;
    top: 0;
    min-height: 1.5rem;
    padding: 0;
  }

  .about-1 .list li {
    width: 50%;
    padding-top: 0.5rem;
  }

  .about-1 .list li .num {
    height: 0.6rem;
  }

  .about-1 .list li .num em {
    font-size: 0.8rem;
  }

  .about-1 .list li .num:after {
    width: 0.26rem;
    height: 0.26rem;
    left: 0.1rem;
    top: 0.1rem;
  }

  .about-1 .list li .name {
    font-size: 0.26rem;
  }

  .about-1 .list li .en {
    font-size: 0.26rem;
  }

  .about-2 {
    height: 100vh;
    margin-top: 1rem;
  }

  .about-2 .container .video {
    -webkit-mask: none;
    mask: none;
  }

  .about-3 {
    padding: 0.5rem 0 1.4rem 0;
  }

  .about-3 .list ul {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.3rem;
  }

  .about-3 .list li .bd {
    left: 0.3rem;
  }

  .about-3 .list li .bd .name {
    font-size: 0.26rem;
  }

  .about-4 .list .img img {
    height: 8rem;
  }

  .about-4 .list .word {
    width: 6rem;
  }

  .film-studio .list>ul>li .bd {
    width: 100%;
    border-bottom: 0;
    padding: 0.55rem 0;
  }

  .film-studio .list>ul>li .bd .hd {
    min-height: 1rem;
  }

  .film-studio .list>ul>li .bd .hd h5 {
    font-size: 0.28rem;
  }

  .film-studio .list>ul>li .bd .content {
    font-size: 0.24rem;
    line-height: 1.8em;
    padding: 0.5rem 0 0 0;
  }

  .film-studio .list>ul>li .imgs {
    width: 7.6rem;
    overflow: hidden;
    position: relative;
  }

  .film-studio .list>ul>li .imgs .btn {
    position: absolute;
    z-index: 3;
    inset: 0;
    background: rgba(0,0,0,.3);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
    cursor: pointer;
  }

  .film-studio .list>ul>li .imgs .btn:before,
  .film-studio .list>ul>li .imgs .btn:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.6rem;
    height: 1.6rem;
    margin-left: -0.8rem;
    margin-top: -0.8rem;
    -webkit-transition: 0s;
    transition: 0s;
    border-radius: 50%;
    border: #fff solid 1px;
    -webkit-animation: zoomAnima 2s linear infinite;
    animation: zoomAnima 2s linear infinite;
  }

  .film-studio .list>ul>li .imgs .btn:after {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
  }

  .film-studio .list>ul>li .imgs .btn i {
    width: 0.8rem;
    height: 0.8rem;
    background: #fff url(../image/img25.png) center no-repeat;
    background-size: 0.25rem;
    cursor: pointer;
    border-radius: 50%;
  }

  .film-studio .list>ul>li .imgs:hover .btn {
    opacity: 1;
  }

  .film-studio .list>ul>li .imgs .dots {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0.3rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .film-studio .list>ul>li .imgs .dots span {
    margin: 0 0.05rem;
    width: 0.3rem;
    height: 0.05rem;
    background: #fff;
    opacity: .5;
    -webkit-transition: .5s;
    transition: .5s;
  }

  .film-studio .list>ul>li .imgs .dots span.on {
    background: #c30d23;
    opacity: 1;
  }

  .film-studio-layer .close {
    font-size: 0.32rem;
  }

  .film-studio-layer .arrow a {
    font-size: 0.32rem;
  }

  .film-studio-layer .big-img li .img .name {
    line-height: 0.8rem;
    font-size: 0.24rem;
  }

  .film-studio-layer .list li .img img {
    height: 1.2rem;
  }

  .film-studio-layer .list li .img .name {
    line-height: 0.48rem;
    height: 0.48rem;
    font-size: 0.2rem;
  }

  .lighting-equipment .page-title {
    font-size: 0.8rem;
  }

  .lighting-equipment .list ul {
    grid-gap: 0.2rem;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .lighting-equipment .list li img {
    height: 2.8rem;
  }

  .lighting-equipment .list .li_2_2 img {
    height: 5.8rem;
  }

  .lighting-equipment .list .li_1_2 img {
    height: 5.8rem;
  }

  .customer-film .list li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .customer-film .list li .bd {
    width: 100%;
    top: 0;
    padding-bottom: 0.4rem;
  }

  .customer-film .list li .bd h2 {
    font-size: 0.5rem;
  }

  .customer-film .list li .img {
    width: 100%;
  }

  .customer-film .list li .img:after {
    width: 1.2rem;
    height: 1.4rem;
    right: 0.3rem;
    bottom: 0.3rem;
  }

  .customer-film .list li .img img {
    height: 4.6rem;
  }

  .scene-making .list ul {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .scene-making .list li a .name {
    font-size: 0.26rem;
  }

  .scene-making-detail .hd .back a {
    width: 0.62rem;
    height: 0.62rem;
    font-size: 0.28rem;
  }

  .scene-making-detail .content .img {
    margin-bottom: 0.3rem;
  }

  .scene-making-detail .page-num {
    font-size: 0.24rem;
  }

  .scene-making-detail .page-num li {
    padding: 0.08rem 0;
  }

  .contact .list ul {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.2rem;
  }

  .contact .list li .item {
    height: 2.6rem;
  }

  .contact .list li .item .name {
    font-size: 0.26rem;
    line-height: 0.46rem;
  }

  .contact .list li .item .content {
    font-size: 0.2rem;
    line-height: 0.36rem;
  }

  .contact .list li:nth-child(3) .item {
    padding: 0 0.2rem;
  }

  .contact .map img {
    height: 4rem;
  }

  .contact .form li {
    width: calc(50% - 0.15rem);
    margin-bottom: 0.6rem;
  }

  .contact .form li .input input,
  .contact .form li .input textarea {
    padding-top: 0.1rem;
    line-height: 0.6rem;
  }

  .contact .form li .select .name {
    padding-top: 0.1rem;
    padding-right: 0.1rem;
  }

  .contact .form li .select .select-layer dd {
    font-size: 0.24rem;
  }

  .contact .form li.li_01 {
    width: 100%;
  }

  .contact .form .submit {
    margin-top: 0;
  }

  .contact .form .submit div {
    font-size: 0.28rem;
    width: 3rem;
    height: 0.8rem;
  }
}
