
/********************************** 入场 **********************************/
/* TRBL */
@-webkit-keyframes antrT {
  0% {
    opacity: 0;
    transform: translateY(-100vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes antrT {
  0% {
    opacity: 0;
    transform: translateY(-100vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes antrTOS {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes antrTOS {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes antrR {
  0% {
    opacity: 0;
    transform: translateX(100vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes antrR {
  0% {
    opacity: 0;
    transform: translateX(100vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes antrROS {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes antrROS {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes antrB {
  0% {
    opacity: 0;
    transform: translateY(100vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes antrB {
  0% {
    opacity: 0;
    transform: translateY(100vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes antrBOS {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes antrBOS {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes antrL {
  0% {
    opacity: 0;
    transform: translateX(-100vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes antrL {
  0% {
    opacity: 0;
    transform: translateX(-100vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes antrLOS {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes antrLOS {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 透明 */
@-webkit-keyframes antrO {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes antrO {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 缩放 */
@-webkit-keyframes antrS {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  85% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes antrS {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  85% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes antrSY {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes antrSY {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@-webkit-keyframes antrSX {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes antrSX {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
/* 旋转缩放 */
@-webkit-keyframes antrSR {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-360deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes antrSR {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-360deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
/* 虚化小到大 */
@-webkit-keyframes antrSOY {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes antrSOY {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* 虚化大到小 */
@-webkit-keyframes antrSON {
  0% {
    opacity: 0;
    transform: scale(3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes antrSON {
  0% {
    opacity: 0;
    transform: scale(3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* 隐藏 */
@-webkit-keyframes antrNone {
  0% {
    pointer-events: none;
    opacity: 0;
  }
  100% {
    pointer-events: none;
    opacity: 0;
  }
}
@keyframes antrNone {
  0% {
    pointer-events: none;
    opacity: 0;
  }
  100% {
    pointer-events: none;
    opacity: 0;
  }
}
/********************************** 退场 **********************************/
/* TRBL */
@-webkit-keyframes antrTN {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100vw);
  }
}
@keyframes antrTN {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100vw);
  }
}
@-webkit-keyframes antrRN {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100vw);
  }
}
@keyframes antrRN {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100vw);
  }
}
@-webkit-keyframes antrBN {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100vw);
  }
}
@keyframes antrBN {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100vw);
  }
}
@-webkit-keyframes antrLN {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100vw);
  }
}
@keyframes antrLN {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100vw);
  }
}
/* 缩放 */
@-webkit-keyframes antrSN {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
@keyframes antrSN {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
@-webkit-keyframes antrSYN {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
@keyframes antrSYN {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
@-webkit-keyframes antrSXN {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
@keyframes antrSXN {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
/* 透明 */
@-webkit-keyframes antrON {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes antrON {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/********************************** 重复 **********************************/
/* 旋转 */
@-webkit-keyframes antrRI {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes antrRI {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes antrTBYI {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes antrTBYI {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes antrBTYI {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes antrBTYI {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes antrLRXI {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes antrLRXI {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes antrRLXI {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes antrRLXI {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
/* 缩放 */
@-webkit-keyframes antrSI {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes antrSI {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* 放大虚化 */
@-webkit-keyframes antrSOYI {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes antrSOYI {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}
/* 缩小虚化 */
@-webkit-keyframes antrSONI {
  from {
    transform: scale(2);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes antrSONI {
  from {
    transform: scale(2);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}
/* 透明 */
@-webkit-keyframes antrOI {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes antrOI {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/********************************** div **********************************/
/*  */
* {
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (min-width: 600px) {
  * {
    scrollbar-width: 5px;
    scrollbar-color: #201919 #e0e0e0;
  }
  *::-webkit-scrollbar {
    width: 5px;
  }
  *::-webkit-scrollbar-thumb {
    background-color: #201919;
  }
  *::-webkit-scrollbar-track {
    background-color: #e0e0e0;
  }
  *::-webkit-scrollbar-button {
    display: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

input {
  --inputPlaceholderColor: #808080;
  outline: none;
  border: none;
  background-color: transparent;
}
input::-webkit-input-placeholder {
  color: var(--inputPlaceholderColor);
}

button {
  line-height: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
button::after {
  border: none;
}

html,
body {
  overflow-x: hidden;
}

@media screen and (min-width: 600px) {
  .M {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .P {
    display: none !important;
  }
}
/* 弹窗打开 */
.tipsY .tipsM {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.tipsY .tipsE {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(-50%) !important;
}

/* 弹窗样式 */
.tips .tipsM {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.4s;
}
.tips .tipsE {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  z-index: 25;
  pointer-events: none;
  box-sizing: border-box;
  transition-duration: 0.4s;
  transform: translateY(-70%);
  background-color: #fff;
}

/* tab切换内容 */
.tabData {
  position: relative;
}
.tabData > div {
  position: fixed;
  pointer-events: none;
  opacity: 0;
}
.tabData .Y {
  position: relative;
  pointer-events: auto;
  opacity: 1;
  transition-duration: 0.4s;
}

/* 暂无数据 */
.listNone {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin: 100px auto;
}
.listNone img {
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .listNone img {
    width: 100%;
  }
}

.banner {
  width: 100vw;
}

.itemBg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  z-index: -1;
}

/* 头 */
.head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 360px;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 85px;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
  z-index: 15;
}
@media screen and (max-width: 1700px) {
  .head {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  .head {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .head {
    padding: 0 4vw;
  }
}
.head > img {
  position: absolute;
  left: 360px;
  transition-duration: 0.5s;
}
@media screen and (max-width: 1700px) {
  .head > img {
    left: 150px;
  }
}
@media screen and (max-width: 1500px) {
  .head > img {
    left: 50px;
  }
}
@media screen and (max-width: 600px) {
  .head > img {
    left: 4vw;
  }
}
.head .logoB {
  opacity: 0;
  z-index: 1;
}
.head .item {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  height: 100%;
}
.head .item > div {
  position: relative;
  --color: #fff;
}
.head .item > div > a {
  color: var(--color);
  font-size: 16px;
  line-height: 85px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 2;
}
.head .item > div > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
  width: 0;
  height: 1px;
  background-color: var(--color);
  overflow: hidden;
  transition: all 0.2s ease;
}
.head .item > div + div {
  margin-left: 80px;
}
.head .item > div .more {
  position: absolute;
  left: 50%;
  top: 0;
  width: 150px;
  padding-top: 85px;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 1px 1px;
  transition: padding 0.1s ease-in-out, top 0.1s ease-in-out, -webkit-clip-path 0.5s ease-in-out;
  transition: clip-path 0.5s ease-in-out, padding 0.1s ease-in-out, top 0.1s ease-in-out;
  transition: clip-path 0.5s ease-in-out, padding 0.1s ease-in-out, top 0.1s ease-in-out, -webkit-clip-path 0.5s ease-in-out;
  -webkit-clip-path: polygon(-3px 0, calc(100% + 3px) 0, calc(100% + 3px) 0, -3px 0);
          clip-path: polygon(-3px 0, calc(100% + 3px) 0, calc(100% + 3px) 0, -3px 0);
  pointer-events: none;
}
.head .item > div .more a {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 55px;
  font-size: 15px;
  position: relative;
  z-index: 1;
  color: #fff;
  transition-duration: 0.4s;
}
.head .item > div .more a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #ddebff;
  transition-duration: 0.3s;
  z-index: -1;
}
.head .item > div .more a:hover {
  transition-delay: 0.1s;
  color: #3888fc;
}
.head .item > div .more a:hover::after {
  width: 100%;
}
.head .item .moreHover .more a {
  color: #333;
}
.head .item .moreHover:hover {
  --color: #3888fc;
}
.head .item .moreHover:hover .more {
  pointer-events: all;
  -webkit-clip-path: polygon(-3px 0, calc(100% + 3px) 0, calc(100% + 3px) calc(100% + 3px), -3px calc(100% + 3px));
          clip-path: polygon(-3px 0, calc(100% + 3px) 0, calc(100% + 3px) calc(100% + 3px), -3px calc(100% + 3px));
}
.head .item .Y, .head .item > div:hover > a:after {
  width: 100%;
  transition-duration: 0.4s;
}

.headBg,
.headTintBg,
.headTransparentBg {
  background-color: #fff;
  box-shadow: 0 1px 4px #f3f3f3;
}
.headBg .item > div,
.headTintBg .item > div,
.headTransparentBg .item > div {
  --color: #333;
}
.headBg .item > div:hover,
.headTintBg .item > div:hover,
.headTransparentBg .item > div:hover {
  --color: #3888fc;
}
.headBg .logoA,
.headTintBg .logoA,
.headTransparentBg .logoA {
  opacity: 0;
}
.headBg .logoB,
.headTintBg .logoB,
.headTransparentBg .logoB {
  opacity: 1;
}

.headTintBg {
  background-color: rgba(255, 255, 255, 0.55);
}

.headTransparentBg {
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0);
}

.headTintBg.headBg,
.headTransparentBg.headBg {
  background-color: #fff !important;
}

.headBg .more {
  padding-top: 0 !important;
  top: 100% !important;
}

/* 尾 */
.tail {
  padding: 0 360px;
  background-color: #282828;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1700px) {
  .tail {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  .tail {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .tail {
    padding: 0 4vw;
  }
}
.tail .tit {
  color: #b8b8b8;
  font-size: 18px;
}
.tail .cooperation {
  padding: 50px 0 40px;
  margin-bottom: 50px;
  border-bottom: 1px solid #4a4a4b;
}
.tail .cooperation .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
.tail .cooperation .list p,
.tail .cooperation .list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10%;
  height: 30px;
  margin: 15px 0;
  margin-left: 5%;
  transition-duration: 0.5s;
}
.tail .cooperation .list p img,
.tail .cooperation .list a img {
  width: 100%;
}
.tail .cooperation .list p:hover,
.tail .cooperation .list a:hover {
  transform: scale(1.1);
}
.tail .cooperation .list p:nth-child(7n+1),
.tail .cooperation .list a:nth-child(7n+1) {
  margin-left: 0 !important;
}
.tail .quick {
  display: flex;
  border-bottom: 1px solid #4a4a4b;
  padding-bottom: 30px;
}
.tail .quick .tit {
  margin-bottom: 20px;
}
.tail .quick > div .list {
  display: flex;
  flex-wrap: wrap;
}
.tail .quick > div .list a {
  color: #565656;
  font-size: 14px;
  line-height: 40px;
  display: block;
  width: 50%;
  transition-duration: 0.4s;
  white-space: nowrap;
}
.tail .quick > div .list a:hover {
  color: #b8b8b8;
}
.tail .quick .L {
  width: 200px;
}
.tail .quick .L .list a {
  width: 100% !important;
}
.tail .quick .C {
  width: 300px;
  margin-left: 120px;
  margin-right: 170px;
}
.tail .quick .R {
  width: 350px;
}
.tail .keeponrecord {
  text-align: center;
  padding: 20px 0;
  color: #b8b8b8;
  font-size: 14px;
}
.tail .keeponrecord a {
  color: #b8b8b8;
  padding-left: 8px;
}

@-webkit-keyframes antrItemRI {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes antrItemRI {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}
#newMediaKwai .banner {
  margin-top: 85px;
}
#newMediaKwai .title {
  text-align: center;
  color: #333;
}
#newMediaKwai .title p {
  font-size: 34px;
  line-height: 50px;
}
#newMediaKwai .title span {
  display: block;
  font-size: 18px;
  margin-top: 10px;
}
#newMediaKwai .nums {
  padding: 80px 0;
}
#newMediaKwai .nums .list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 360px;
  padding-top: 60px;
}
@media screen and (max-width: 1700px) {
  #newMediaKwai .nums .list {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaKwai .nums .list {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaKwai .nums .list {
    margin: 0 4vw;
  }
}
#newMediaKwai .nums .list div img {
  transition-duration: 0.4s;
}
#newMediaKwai .nums .list div img:hover {
  transform: translateY(-5px);
}
#newMediaKwai .nums .list div + div {
  margin-left: 120px;
  padding-left: 120px;
  border-left: 1px solid #d2d9e6;
}
#newMediaKwai .values {
  background-color: #f5f6ff;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
#newMediaKwai .values > img {
  position: absolute;
}
#newMediaKwai .values .bgL {
  left: 0;
  bottom: 0;
}
#newMediaKwai .values .bgR {
  right: 0;
  top: 0;
}
#newMediaKwai .values .list {
  margin: 0 360px;
  padding-top: 50px;
  box-sizing: border-box;
  height: 660px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1700px) {
  #newMediaKwai .values .list {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaKwai .values .list {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaKwai .values .list {
    margin: 0 4vw;
  }
}
#newMediaKwai .values .list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 330px;
  height: 330px;
  position: absolute;
  left: calc(50% - 165px);
  top: calc(50% - 165px);
  z-index: 2;
  transition-duration: 0.4s;
}
#newMediaKwai .values .list .item:hover {
  transform: scale(1.1);
}
#newMediaKwai .values .list .item:hover > img {
  transform: scale(0.9);
}
#newMediaKwai .values .list .item > div {
  position: absolute;
}
#newMediaKwai .values .list .item > div div {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 100px;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 24px;
  box-shadow: 0 0 10px #e4e4e4;
}
#newMediaKwai .values .list .item .outside {
  width: 100%;
  height: 100%;
  left: calc(50% - 165px);
  top: calc(50% - 165px);
  -webkit-animation: antrRI 30s linear infinite;
          animation: antrRI 30s linear infinite;
  z-index: 2;
}
#newMediaKwai .values .list .item .outside div {
  background-color: #ff5000;
  border: 6px solid #fff;
  color: #fff;
  width: 85px;
  height: 85px;
  box-sizing: border-box;
  -webkit-animation: antrItemRI 30s linear infinite;
          animation: antrItemRI 30s linear infinite;
}
#newMediaKwai .values .list .item .outside div:nth-child(1) {
  left: 0;
  top: 0;
}
#newMediaKwai .values .list .item .outside div:nth-child(2) {
  left: 190px;
  top: -20px;
  width: 80px;
  height: 80px;
}
#newMediaKwai .values .list .item .outside div:nth-child(3) {
  left: 250px;
  top: 210px;
  width: 70px;
  height: 70px;
}
#newMediaKwai .values .list .item .outside div:nth-child(4) {
  left: 110px;
  top: 260px;
}
#newMediaKwai .values .list .item .outside div:nth-child(5) {
  left: -20px;
  top: 170px;
  width: 60px;
  height: 60px;
}
#newMediaKwai .values .list .item .inner {
  width: 245px;
  height: 245px;
  left: calc(50% - 122.5px);
  top: calc(50% - 122.5px);
  -webkit-animation: antrItemRI 40s linear infinite;
          animation: antrItemRI 40s linear infinite;
  z-index: 1;
}
#newMediaKwai .values .list .item .inner div {
  width: 60px;
  height: 60px;
  background-image: linear-gradient(#f4f5fe, #e3e5f6);
  color: #666;
  -webkit-animation: antrRI 40s linear infinite;
          animation: antrRI 40s linear infinite;
}
#newMediaKwai .values .list .item .inner div:nth-child(1) {
  left: 60px;
  top: -15px;
  width: 45px;
  height: 45px;
}
#newMediaKwai .values .list .item .inner div:nth-child(2) {
  left: 190px;
  top: 35px;
}
#newMediaKwai .values .list .item .inner div:nth-child(3) {
  left: 5px;
  top: 170px;
  width: 50px;
  height: 50px;
}
#newMediaKwai .values .list .item > img {
  transition-duration: 0.4s;
  position: relative;
  z-index: 3;
}
#newMediaKwai .values .list .item > img:hover {
  transform: scale(1);
}
#newMediaKwai .values .list .item::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  left: calc(50% - 75px);
  top: calc(50% - 75px);
  background-color: rgba(255, 91, 15, 0.5);
  border-radius: 100px;
  z-index: -1;
  -webkit-animation: antrSOYI 4s linear infinite;
          animation: antrSOYI 4s linear infinite;
  pointer-events: none;
}
#newMediaKwai .values .list > img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1195px;
  transform: translate(calc(-50% - 52px), -50%);
  z-index: -1;
}
#newMediaKwai .processs {
  padding: 80px 0;
}
#newMediaKwai .processs .con {
  margin: 0 360px;
  padding-top: 50px;
}
@media screen and (max-width: 1700px) {
  #newMediaKwai .processs .con {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaKwai .processs .con {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaKwai .processs .con {
    margin: 0 4vw;
  }
}
#newMediaKwai .processs .con .img {
  position: relative;
  width: 100%;
  height: 350px;
}
#newMediaKwai .processs .con .img img {
  position: absolute;
  transition: all 0.4s ease-in-out;
  transform: translateY(0);
}
#newMediaKwai .processs .con .img img:nth-child(1) {
  left: 50px;
  top: 130px;
}
#newMediaKwai .processs .con .img img:nth-child(2) {
  left: 300px;
  top: 0;
}
#newMediaKwai .processs .con .img img:nth-child(3) {
  left: 590px;
  top: 155px;
}
#newMediaKwai .processs .con .img img:nth-child(4) {
  left: 865px;
  top: 20px;
}
#newMediaKwai .processs .con .img img:nth-child(5) {
  left: 275px;
  top: 145px;
}
#newMediaKwai .processs .con .img img:nth-child(6) {
  left: 520px;
  top: 110px;
}
#newMediaKwai .processs .con .img img:nth-child(7) {
  left: 810px;
  top: 155px;
}
#newMediaKwai .processs .con .img img:nth-child(5):hover,
#newMediaKwai .processs .con .img img:nth-child(6):hover,
#newMediaKwai .processs .con .img img:nth-child(7):hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 0 5px #ff5e15);
}
#newMediaKwai .processs .con .img .Y {
  -webkit-animation: antrImgYTBYI 3.5s ease-in-out infinite;
          animation: antrImgYTBYI 3.5s ease-in-out infinite;
  filter: drop-shadow(0 0 5px #f77134);
}
@-webkit-keyframes antrImgYTBYI {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes antrImgYTBYI {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
#newMediaKwai .processs .con .list {
  margin-top: 50px;
}
#newMediaKwai .processs .con .list .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #d9d9d9;
  box-sizing: border-box;
  padding: 0 30px;
  margin-bottom: 30px;
  position: relative;
}
#newMediaKwai .processs .con .list .tab div {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
  color: #333;
  font-size: 18px;
  transition-duration: 0.4s;
}
#newMediaKwai .processs .con .list .tab div + div {
  margin-left: 180px;
}
#newMediaKwai .processs .con .list .tab .Y {
  color: #ff5000;
}
#newMediaKwai .processs .con .list .tab .icon {
  display: block;
  pointer-events: none;
  position: absolute;
  width: 65px;
  height: 5px;
  background-color: #ff5000;
  bottom: -2.75px;
  left: -65px;
  transition: left 0.4s ease-in-out;
}
#newMediaKwai .processs .con .list .tabData {
  justify-content: space-around;
}
#newMediaKwai .processs .con .list .tabData > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
#newMediaKwai .processs .con .list .tabData > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition-duration: 0.4s;
}
#newMediaKwai .processs .con .list .tabData > div > div p {
  font-size: 16px;
  color: #666;
  margin-left: 5px;
}
#newMediaKwai .processs .con .list .tabData > div > div:hover {
  transform: translateX(-5px);
}
#newMediaKwai .effect {
  padding-top: 80px;
  background-color: #f5f6ff;
  position: relative;
  z-index: 2;
}
#newMediaKwai .effect > img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
#newMediaKwai .effect .text {
  margin: 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}
@media screen and (max-width: 1700px) {
  #newMediaKwai .effect .text {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaKwai .effect .text {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaKwai .effect .text {
    margin: 0 4vw;
  }
}
#newMediaKwai .effect .text > p {
  max-width: calc(100% - 520px);
  margin-right: 20px;
  font-size: 16px;
  color: #333;
  padding-top: 30px;
  position: relative;
  line-height: 30px;
}
#newMediaKwai .effect .text > p::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 5px;
  border-radius: 100px;
  background-color: #ff5000;
}
#newMediaKwai .effect .text img {
  width: 500px;
}
#newMediaKwai .effect .but {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 60px 0;
}
#newMediaKwai .effect .but .itemBg {
  width: auto;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
#newMediaKwai .effect .but a {
  display: block;
  font-size: 24px;
  color: #ff5000;
  text-align: center;
  background-image: linear-gradient(#fffefe, #ffbfa2);
  border-radius: 10px;
  padding: 12px 0;
  width: 445px;
  transition-duration: 0.4s;
}
#newMediaKwai .effect .but a:hover {
  box-shadow: 0 1px 20px #ffbfa2;
  transform: translateY(-5px);
}
#newMediaKwai .effect .but a + a {
  margin-left: 120px;
  background-image: linear-gradient(#fffefe, #aeb8f4);
  color: #333;
}
#newMediaKwai .effect .but a + a:hover {
  box-shadow: 0 1px 20px #aeb8f4;
}
#newMediaKwai .team {
  padding: 70px 0 110px;
  overflow: hidden;
  background-color: #fff;
}
#newMediaKwai .team .tit {
  text-align: center;
  margin-bottom: 40px;
}
#newMediaKwai .team .tit p {
  font-size: 34px;
  color: #333;
  padding-bottom: 15px;
}
#newMediaKwai .team .tit span {
  font-size: 18px;
  color: #666;
}
#newMediaKwai .team .con {
  margin: 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1700px) {
  #newMediaKwai .team .con {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaKwai .team .con {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaKwai .team .con {
    margin: 0 4vw;
  }
}
#newMediaKwai .team .con > img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition-duration: 0.4s;
  cursor: pointer;
}
#newMediaKwai .team .con .iconL {
  left: 0;
}
#newMediaKwai .team .con .iconL:hover {
  left: -3px;
}
#newMediaKwai .team .con .iconR {
  right: 0;
}
#newMediaKwai .team .con .iconR:hover {
  right: -3px;
}
#newMediaKwai .team .con .point {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -46px;
}
#newMediaKwai .team .con .point div {
  width: 13px;
  height: 13px;
  background-color: #d3d3d3;
  transition-duration: 0.4s;
  margin: 0 20px;
  border-radius: 100px;
  cursor: pointer;
}
#newMediaKwai .team .con .point .pointY {
  background-color: #ff5000;
}
#newMediaKwai .team .con .teamSwiper {
  margin: 0 170px;
}
#newMediaKwai .team .con .teamSwiper .swiper-slide .item {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
}
#newMediaKwai .team .con .teamSwiper .swiper-slide .item > p {
  width: 295px;
  height: 295px;
  border-radius: 100%;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
}
#newMediaKwai .team .con .teamSwiper .swiper-slide .item > p img {
  height: 100%;
  transition-duration: 0.4s;
  -o-object-fit: contain;
     object-fit: contain;
}
#newMediaKwai .team .con .teamSwiper .swiper-slide .item > p:hover img {
  transform: scale(1.1);
}
#newMediaKwai .team .con .teamSwiper .swiper-slide .item > div {
  width: calc(100% - 395px);
  margin-left: 100px;
  font-size: 16px;
}
#newMediaKwai .team .con .teamSwiper .swiper-slide .item > div p {
  font-size: 18px;
  color: #333;
}
#newMediaKwai .team .con .teamSwiper .swiper-slide .item > div span {
  color: #666;
  display: block;
  margin: 6px 0 25px;
}
#newMediaKwai .team .con .teamSwiper .swiper-slide .item > div div {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-line-clamp: 4 !important;
  color: #999;
  line-height: 30px;
  border-bottom: 1px solid #e0e0e0;
  height: 120px;
}
#newMediaKwai .team .con .teamSwiper .swiper-slide .item > div a {
  display: block;
  color: #fff;
  background-image: linear-gradient(#ffbe87, #ff5b0d);
  border-radius: 10px;
  width: 200px;
  text-align: center;
  margin-top: 15px;
  padding: 16px 0;
  float: right;
  transition-duration: 0.4s;
}
#newMediaKwai .team .con .teamSwiper .swiper-slide .item > div a:hover {
  transform: translateX(-5px);
}
#newMediaKwai .process {
  padding-top: 80px;
  overflow: hidden;
  background-color: #f5f6ff;
  position: relative;
  z-index: 2;
}
#newMediaKwai .process > img {
  position: absolute;
  z-index: -1;
}
#newMediaKwai .process .bgL {
  left: 0;
  bottom: 0;
}
#newMediaKwai .process .bgR {
  right: 0;
  top: 0;
}
#newMediaKwai .process .tit {
  text-align: center;
}
#newMediaKwai .process .tit p {
  font-size: 34px;
  color: #333;
}
#newMediaKwai .process .tit span {
  font-size: 16px;
  color: #666;
}
#newMediaKwai .process .list {
  padding: 0 360px;
  position: relative;
  z-index: 2;
  padding-bottom: 70px !important;
  transition-duration: 0.4s;
}
@media screen and (max-width: 1700px) {
  #newMediaKwai .process .list {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaKwai .process .list {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaKwai .process .list {
    padding: 0 4vw;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaKwai .process .list {
    padding-bottom: 40px !important;
  }
}
#newMediaKwai .process .list .bgL {
  position: absolute;
  left: 0;
  top: 40px;
}
#newMediaKwai .process .list .bgR {
  position: absolute;
  right: 0;
  top: -40px;
}
#newMediaKwai .process .list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#newMediaKwai .process .list .item > div {
  position: relative;
  margin-top: 50px;
  width: 25%;
  text-align: center;
}
#newMediaKwai .process .list .item > div img {
  width: 155px;
  transition: transform 0.4s ease-in-out;
}
#newMediaKwai .process .list .item > div p {
  position: absolute;
  left: 70px;
  bottom: 4px;
  font-size: 24px;
  color: #333;
}
#newMediaKwai .process .list .item > div:hover img {
  transform: translateX(30px);
}
#newMediaKwai .process .but {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-bottom: 30px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1300px) {
  #newMediaKwai .process .but {
    padding: 25px 0;
  }
}
#newMediaKwai .process .but .itemBg {
  width: auto;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
#newMediaKwai .process .but > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
#newMediaKwai .process .but > div img {
  transform: translateY(-20px);
  transition-duration: 0.4s;
}
#newMediaKwai .process .but > div img:hover {
  transform: translateY(-23px);
}
#newMediaKwai .process .but > div > div {
  color: #fff;
  margin-left: 20px;
}
#newMediaKwai .process .but > div > div p {
  font-size: 24px;
}
#newMediaKwai .process .but > div > div span {
  display: block;
  margin: 5px 0 15px;
  font-size: 36px;
}
#newMediaKwai .process .but > div > div div {
  display: inline-block;
  font-size: 18px;
  border: 1px solid;
  border-radius: 5px;
  padding: 10px 15px;
}
#newMediaKwai .process .but > div > div p,
#newMediaKwai .process .but > div > div span,
#newMediaKwai .process .but > div > div div {
  transition-duration: 0.4s;
}
#newMediaKwai .process .but > div > div p:hover,
#newMediaKwai .process .but > div > div span:hover,
#newMediaKwai .process .but > div > div div:hover {
  transform: translateX(3px);
}
#newMediaKwai .process .but a {
  margin-left: 100px;
  font-size: 30px;
  color: #ff5000;
  border-radius: 10px;
  transition-duration: 0.4s;
  background-image: linear-gradient(#fffefd, #ffba9a);
  padding: 10px 0;
  width: 280px;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  #newMediaKwai .process .but a {
    font-size: 20px;
  }
}
#newMediaKwai .process .but a:hover {
  box-shadow: 0 0 10px #ffba9a;
  transform: translateY(-5px);
}/*# sourceMappingURL=newMediaKwai.css.map */


@media screen and (max-width: 999px) {
	#newMediaKwai .nums {
	padding: 20px 0;
}
#newMediaKwai .title p {
	font-size: 20px;
	line-height: 30px;
}

#newMediaKwai .title span {
	font-size: 15px;
	padding: 0 20px;
}




#newMediaKwai .nums .list div {

}
#newMediaKwai .nums .list div + div {
	margin-left: 20px;
	padding-left: 20px;
}
#newMediaKwai .nums .list div img{ width:100%;}

#newMediaKwai .values .list {
	height: 460px;

}
#newMediaKwai .values .list > img {
	
}
#newMediaKwai .values .list .item {
	width: 230px;
	height: 230px;
	left: calc(50% - 115px);
	top: calc(50% - 115px);

}
	
#newMediaKwai .values .list .item .outside {

	left: calc(50% - 125px);
	top: calc(50% - 125px);

}
	
	#newMediaKwai .processs .con .img {
	height: 240px;
}
	
	
	
#newMediaKwai .processs .con .img img {
	width: 100px;
}
#newMediaKwai .processs .con .img img:nth-child(1) {
	left: 0;
	top: 130px;
}	
#newMediaKwai .processs .con .img img:nth-child(2) {
	left: 80px;
	top: 35px;
}
#newMediaKwai .processs .con .img img:nth-child(3) {
	left: 160px;
	top: 115px;
}
#newMediaKwai .processs .con .img img:nth-child(4) {
	left: auto;
	top: 20px;
	right: 0;
}
#newMediaKwai .processs .con .img img:nth-child(5) {
	left: auto;
	top: 89px;
	right: 70px;
	height: 25px;
	width: auto;
}
#newMediaKwai .processs .con .img img:nth-child(6) {
	left: 155px;
	top: 100px;
	height: 25px;
	width: auto;
}
#newMediaKwai .processs .con .img img:nth-child(7) {
	left: 75px;
	top: 105px;
	height: 25px;
	width: auto;
}


#newMediaKwai .processs .con .list .tab {
	padding: 0 0px;
	margin-bottom:10px;
	padding-bottom:10px;

}

#newMediaKwai .processs .con .list .tab div + div {
	margin-left: 20px;
}
#newMediaKwai .processs .con .list .tab div {
	font-size: 16px;
}
#newMediaKwai .processs .con .list .tabData > div {
	display: block;
}
#newMediaKwai .processs .con .list .tabData > div > div p {
	font-size: 14px;
	margin-left: 7px;
}


#newMediaKwai .processs .con .list .tabData > div > div {
	justify-content: left;
	width: 50%;
	float: left;
	text-align: left;
	line-height: 25px;
}
#newMediaKwai .effect .text {
	display: block;
}

#newMediaKwai .effect .text > p {
	max-width: 100%;
	margin-right: 0;
	font-size: 14px;
	padding-top: 30px;
	line-height: 26px;
}
#newMediaKwai .effect .text img {
	width: 100%;
}

#newMediaKwai .effect .but {
	padding: 20px;
}

#newMediaKwai .effect .but a {
	font-size: 20px;

}
#newMediaKwai .effect .but a + a {
	margin-left: 50px;
}
#newMediaKwai .process {
	padding-top: 20px;
}
#newMediaKwai .process .tit p {
	font-size: 20px;
	padding:0 30px;
}
#newMediaKwai .process .tit span {
	font-size: 14px;
	
}
#newMediaKwai .process .list .item > div {
	margin-top: 35px;
}
#newMediaKwai .process .list .item > div p {
	left: 10px;
	bottom: -25px;
	font-size: 14px;
}

#newMediaKwai .process .list .item > div img {
	width: 60px;
}
#newMediaKwai .process .list .item > div:hover img {
  transform: translateX(5px);
}



	#newMediaKwai .process .but > div img {
	width: 80px;
	display:none;
}
	
	
	
	
#newMediaKwai .process .but a {
	font-size: 18px;
	margin-left:10px;
	margin-right:10px;
	width:150px;
}	
#newMediaKwai .process .but > div > div div {
	display: none;
}
	
	#newMediaKwai .process .but > div > div p {
	font-size: 14px;
}


#newMediaKwai .process .but > div > div span {
	font-size: 14px;
}








}
