
/********************************** 入场 **********************************/
/* 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;
}

#newMediaPublicAccount .banner {
  margin-top: 85px;
}
#newMediaPublicAccount .title {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 50px 0 40px;
}
#newMediaPublicAccount .title span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: 0 auto;
  font-size: 72px;
  color: #ececec;
  text-transform: Uppercase;
}
#newMediaPublicAccount .title > div {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
}
#newMediaPublicAccount .title > div img {
  padding-top: 10px;
}
#newMediaPublicAccount .title > div p {
  display: block;
  font-size: 38px;
  color: #333;
  padding: 0 40px;
  font-weight: bold;
}
#newMediaPublicAccount .title > p {
  font-size: 18px;
  line-height: 34px;
  padding-top: 10px;
}
#newMediaPublicAccount .marketing {
  padding: 0 360px;
  margin: 50px 0;
}
@media screen and (max-width: 1700px) {
  #newMediaPublicAccount .marketing {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaPublicAccount .marketing {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaPublicAccount .marketing {
    padding: 0 4vw;
  }
}
#newMediaPublicAccount .marketing .list {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
}
#newMediaPublicAccount .marketing .list > div {
  height: 100%;
  box-sizing: border-box;
}
#newMediaPublicAccount .marketing .list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-end;
  padding: 60px 50px 90px;
  text-align: center;
  font-size: 24px;
  color: #333;
  background-color: #d7d7d7;
  white-space: nowrap;
  cursor: pointer;
}
#newMediaPublicAccount .marketing .list .item img {
  margin-bottom: 10px;
}
#newMediaPublicAccount .marketing .list .exp {
  width: 0;
  overflow: hidden;
  transition-duration: 0.5s;
  background-image: linear-gradient(90deg, #04c15f, #47e76f);
  color: #fff;
  padding: 60px 0 50px;
}
#newMediaPublicAccount .marketing .list .exp p {
  position: relative;
  font-size: 24px;
  margin-bottom: 24px;
  width: 270px;
  display: block;
}
@media screen and (max-width: 1300px) {
  #newMediaPublicAccount .marketing .list .exp p {
    width: 255px;
  }
}
#newMediaPublicAccount .marketing .list .exp p::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  width: 1em;
  height: 3px;
  border-radius: 100px;
  background-color: #fff;
}
#newMediaPublicAccount .marketing .list .exp span {
  width: 270px;
  font-size: 14px;
  line-height: 30px;
  display: block;
}
@media screen and (max-width: 1300px) {
  #newMediaPublicAccount .marketing .list .exp span {
    width: 255px;
  }
}
#newMediaPublicAccount .marketing .list .exp.Y {
  width: 400px !important;
  padding: 60px 65px 50px !important;
}
@media screen and (max-width: 1500px) {
  #newMediaPublicAccount .marketing .list .exp.Y {
    padding: 60px 55px 50px !important;
  }
}
@media screen and (max-width: 1300px) {
  #newMediaPublicAccount .marketing .list .exp.Y {
    width: 300px !important;
    padding: 60px 30px 50px !important;
  }
}
#newMediaPublicAccount .difficulty {
  position: relative;
  background-color: #f0f0f0;
  padding: 60px 0;
}
#newMediaPublicAccount .difficulty .title > span {
  color: #dedede;
}
#newMediaPublicAccount .difficulty > img {
  position: absolute;
}
#newMediaPublicAccount .difficulty .bgL {
  left: 0;
  bottom: 50px;
}
#newMediaPublicAccount .difficulty .bgR {
  right: 0;
  top: 50px;
}
#newMediaPublicAccount .difficulty .list {
  margin: 0 360px;
}
@media screen and (max-width: 1700px) {
  #newMediaPublicAccount .difficulty .list {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaPublicAccount .difficulty .list {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaPublicAccount .difficulty .list {
    margin: 0 4vw;
  }
}
#newMediaPublicAccount .difficulty .list .itemBg {
  width: auto;
  height: 100%;
  left: auto;
  right: 0;
  transition-duration: 0.4s;
}
#newMediaPublicAccount .difficulty .list > div {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
  width: 100%;
  box-sizing: border-box;
  margin: 20px 0;
  padding: 50px 70px;
  overflow: hidden;
  cursor: pointer;
}
#newMediaPublicAccount .difficulty .list > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  transition-duration: 0.4s;
}
#newMediaPublicAccount .difficulty .list > div::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: left 0.5s ease-in-out;
  background-image: linear-gradient(90deg, #04c15f, #f0f0f0);
}
#newMediaPublicAccount .difficulty .list > div .textN p {
  font-size: 24px;
  padding-left: 15px;
  margin-left: 15px;
  color: #444;
  border-left: 1px solid #8d8d8d;
}
#newMediaPublicAccount .difficulty .list > div .textY {
  position: absolute;
  left: 80px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  opacity: 0;
  color: #fff;
  transition: all 0.4s ease-in-out;
  white-space: nowrap;
}
#newMediaPublicAccount .difficulty .list > div .textY p {
  font-size: 24px;
  padding: 10px 0;
  margin-left: 15px;
  margin-right: 50px;
  padding-right: 50px;
  border-right: 1px solid #fff;
}
#newMediaPublicAccount .difficulty .list > div .textY span {
  font-size: 14px;
}
#newMediaPublicAccount .difficulty .list > div:hover::after {
  left: 0 !important;
  transition-duration: 0.4s;
}
#newMediaPublicAccount .difficulty .list > div:hover .textY {
  left: 70px;
  opacity: 1;
  transition-delay: 0.2s;
}
#newMediaPublicAccount .difficulty .list > div:hover .itemBg {
  transform: scale(1.2);
}
#newMediaPublicAccount .difficulty .list > div:hover .textN {
  opacity: 0;
  transform: translateX(10px);
}
#newMediaPublicAccount .team {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 40px;
}
#newMediaPublicAccount .team > img {
  position: absolute;
  z-index: -1;
}
#newMediaPublicAccount .team .bgL {
  left: 0;
  bottom: 20px;
}
#newMediaPublicAccount .team .bgR {
  right: 0;
  top: -200px;
}
#newMediaPublicAccount .team .list {
  padding: 0 360px;
}
@media screen and (max-width: 1700px) {
  #newMediaPublicAccount .team .list {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaPublicAccount .team .list {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaPublicAccount .team .list {
    padding: 0 4vw;
  }
}
#newMediaPublicAccount .team .list > div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  overflow: hidden;
}
#newMediaPublicAccount .team .list > div > div {
  box-sizing: border-box;
}
#newMediaPublicAccount .team .list > div .heats {
  width: 565px;
  height: 270px;
  position: relative;
  overflow: hidden;
}
#newMediaPublicAccount .team .list > div .heats img {
  transition-duration: 0.4s;
}
#newMediaPublicAccount .team .list > div .heats > img {
  width: 100%;
  height: 100%;
}
#newMediaPublicAccount .team .list > div .heats > div {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  padding: 35px 75px 35px 55px;
  background-color: #04c15f;
}
#newMediaPublicAccount .team .list > div .heats > div p {
  padding-left: 15px;
  font-size: 24px;
  color: #fff;
}
#newMediaPublicAccount .team .list > div .heats:hover > img {
  transform: scale(1.2);
}
#newMediaPublicAccount .team .list > div .heats:hover > div > img {
  transform: translateX(3px);
}
#newMediaPublicAccount .team .list > div .item {
  width: calc(100% - 565px);
  height: 270px;
  background-color: #f0f0f0;
  font-size: 18px;
  color: #444;
}
#newMediaPublicAccount .team .list .itemL .heats > div {
  left: 0;
  border-radius: 0 70px 0 0;
}
#newMediaPublicAccount .team .list .itemL .item {
  padding: 50px 70px;
}
#newMediaPublicAccount .team .list .itemL .item a, #newMediaPublicAccount .team .list .itemL .item > div {
  display: block;
  transition-duration: 0.4s;
}
#newMediaPublicAccount .team .list .itemL .item a > div, #newMediaPublicAccount .team .list .itemL .item > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  margin-bottom: 5px;
}
#newMediaPublicAccount .team .list .itemL .item a > div p, #newMediaPublicAccount .team .list .itemL .item > div > div p {
  padding-left: 2px;
}
#newMediaPublicAccount .team .list .itemL .item a span, #newMediaPublicAccount .team .list .itemL .item > div span {
  font-size: 14px;
  line-height: 26px;
}
#newMediaPublicAccount .team .list .itemL .item a:hover, #newMediaPublicAccount .team .list .itemL .item > div:hover {
  transform: translateX(5px);
}
#newMediaPublicAccount .team .list .itemL .item a + a, #newMediaPublicAccount .team .list .itemL .item > div + div {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1.2px dashed #666;
}
#newMediaPublicAccount .team .list .itemL .item a + a:hover, #newMediaPublicAccount .team .list .itemL .item > div + div:hover {
  transform: translateX(0);
  padding-left: 5px;
}
#newMediaPublicAccount .team .list .itemR .heats > div {
  right: 0;
  border-radius: 70px 0 0 0;
}
#newMediaPublicAccount .team .list .itemR .item {
  display: flex;
  flex-wrap: wrap;
}
#newMediaPublicAccount .team .list .itemR .item a, #newMediaPublicAccount .team .list .itemR .item > div {
  display: block;
  width: 33%;
  text-align: center;
  font-size: 18px;
  color: #444;
  padding-top: 40px;
  transition-duration: 0.4s;
}
#newMediaPublicAccount .team .list .itemR .item a p, #newMediaPublicAccount .team .list .itemR .item > div p {
  padding-top: 5px;
}
#newMediaPublicAccount .team .list .itemR .item a:hover, #newMediaPublicAccount .team .list .itemR .item > div:hover {
  box-shadow: 0 0 10px rgb(119, 119, 119);
}
#newMediaPublicAccount .team .list .itemR .item a:nth-child(2),
#newMediaPublicAccount .team .list .itemR .item a:nth-child(5), #newMediaPublicAccount .team .list .itemR .item > div:nth-child(2), #newMediaPublicAccount .team .list .itemR .item > div:nth-child(5) {
  border-left: 1px dashed #666;
  border-right: 1px dashed #666;
}
#newMediaPublicAccount .team .list .itemR .item a:nth-child(4),
#newMediaPublicAccount .team .list .itemR .item a:nth-child(5),
#newMediaPublicAccount .team .list .itemR .item a:nth-child(6), #newMediaPublicAccount .team .list .itemR .item > div:nth-child(4), #newMediaPublicAccount .team .list .itemR .item > div:nth-child(5), #newMediaPublicAccount .team .list .itemR .item > div:nth-child(6) {
  border-top: 1px dashed #666;
}
#newMediaPublicAccount .team .list .itemF .heats > div {
  left: 0;
  border-radius: 0 70px 0 0;
}
#newMediaPublicAccount .team .list .itemF .item {
  padding: 0 20px;
}
#newMediaPublicAccount .team .list .itemF .item a, #newMediaPublicAccount .team .list .itemF .item > div {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  padding: 14px 0;
  padding-left: 30px;
  white-space: nowrap;
  transition-duration: 0.4s;
}
#newMediaPublicAccount .team .list .itemF .item a:hover, #newMediaPublicAccount .team .list .itemF .item > div:hover {
  padding-left: 35px;
}
#newMediaPublicAccount .team .list .itemF .item a > div, #newMediaPublicAccount .team .list .itemF .item > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  border-right: 1px solid #666;
  padding-right: 25px;
  margin-right: 25px;
  width: 125px;
  box-sizing: border-box;
}
#newMediaPublicAccount .team .list .itemF .item a > div p, #newMediaPublicAccount .team .list .itemF .item > div > div p {
  padding-left: 5px;
}
#newMediaPublicAccount .team .list .itemF .item a span, #newMediaPublicAccount .team .list .itemF .item > div span {
  font-size: 14px;
}
#newMediaPublicAccount .team .list .itemF .item a + a, #newMediaPublicAccount .team .list .itemF .item > div + div {
  border-top: 1.2px dashed #666;
}
#newMediaPublicAccount .interactive {
  position: relative;
}
#newMediaPublicAccount .interactive .title span {
  color: #565656;
}
#newMediaPublicAccount .interactive .title p {
  color: #fff;
}
#newMediaPublicAccount .interactive .itemBg {
  height: 100%;
}
#newMediaPublicAccount .interactive .con {
  width: 100%;
}
#newMediaPublicAccount .interactive .but {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 40px;
  padding: 50px 0;
}
#newMediaPublicAccount .interactive .but .itemBg {
  height: 100%;
}
#newMediaPublicAccount .interactive .but a {
  font-size: 24px;
  color: #04c15f;
  background-color: #fff;
  text-align: center;
  padding: 10px 100px;
  background-image: linear-gradient(#fff, #baeed3);
  transition-duration: 0.4s;
}
@media screen and (max-width: 1300px) {
  #newMediaPublicAccount .interactive .but a {
    font-size: 20px;
  }
}
#newMediaPublicAccount .interactive .but a:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 20px #baeed3;
}
#newMediaPublicAccount .interactive .but a + a {
  color: #444;
  margin-left: 120px;
  background-image: linear-gradient(#fff, #ecddcf);
}
#newMediaPublicAccount .interactive .but a + a:hover {
  box-shadow: 0 1px 20px #ecddcf;
}
#newMediaPublicAccount .operationteam {
  padding: 70px 0;
}
#newMediaPublicAccount .operationteam .list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 360px;
  margin: 40px 0;
}
@media screen and (max-width: 1700px) {
  #newMediaPublicAccount .operationteam .list {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaPublicAccount .operationteam .list {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaPublicAccount .operationteam .list {
    padding: 0 4vw;
  }
}
#newMediaPublicAccount .operationteam .list .tabSwiper {
  width: 175px;
  height: 350px;
}
#newMediaPublicAccount .operationteam .list .tabSwiper .item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#newMediaPublicAccount .operationteam .list .tabSwiper .item p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 110px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 5px #eee;
}
#newMediaPublicAccount .operationteam .list .tabSwiper .item p img {
  height: 100%;
  transition-duration: 0.5s;
}
#newMediaPublicAccount .operationteam .list .tabSwiper .item p:hover img {
  transform: scale(1.1);
}
#newMediaPublicAccount .operationteam .list .tabSwiper .item > img {
  width: 15px;
  margin-left: 25px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
#newMediaPublicAccount .operationteam .list .tabSwiper .item.Y > img {
  opacity: 1;
}
#newMediaPublicAccount .operationteam .list .tabData {
  width: calc(100% - 215px);
  margin-left: 30px;
}
#newMediaPublicAccount .operationteam .list .tabData > div {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
}
#newMediaPublicAccount .operationteam .list .tabData > div > p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 465px;
  height: 350px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 5px #eee;
}
#newMediaPublicAccount .operationteam .list .tabData > div > p img {
  height: 100%;
  transition-duration: 0.4s;
}
#newMediaPublicAccount .operationteam .list .tabData > div > div {
  width: calc(100% - 495px);
  margin-left: 30px;
  font-size: 16px;
}
#newMediaPublicAccount .operationteam .list .tabData > div > div p {
  font-size: 18px;
  color: #333;
}
#newMediaPublicAccount .operationteam .list .tabData > div > div span {
  color: #666;
  display: block;
  margin: 6px 0 25px;
}
#newMediaPublicAccount .operationteam .list .tabData > div > 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;
}
#newMediaPublicAccount .operationteam .list .tabData > div > div a {
  display: block;
  color: #fff;
  width: 200px;
  text-align: center;
  margin-top: 15px;
  padding: 16px 0;
  float: right;
  transition-duration: 0.4s;
  background-image: linear-gradient(#3de26c, #0bc561);
}
#newMediaPublicAccount .operationteam .list .tabData > div > div a:hover {
  transform: translateX(-5px);
}
#newMediaPublicAccount .serviceprocess {
  position: relative;
  background-color: #f0f0f0;
  padding-top: 80px;
}
#newMediaPublicAccount .serviceprocess .title span {
  color: #dedede;
}
#newMediaPublicAccount .serviceprocess > img {
  position: absolute;
}
#newMediaPublicAccount .serviceprocess .bgL {
  left: 0;
  bottom: 150px;
}
#newMediaPublicAccount .serviceprocess .bgR {
  right: 0;
  top: 10px;
}
#newMediaPublicAccount .serviceprocess .list {
  padding: 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 120px;
}
@media screen and (max-width: 1700px) {
  #newMediaPublicAccount .serviceprocess .list {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaPublicAccount .serviceprocess .list {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaPublicAccount .serviceprocess .list {
    padding: 0 4vw;
  }
}
#newMediaPublicAccount .serviceprocess .list > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 32px;
  color: #666;
  padding: 15px 55px;
  position: relative;
  z-index: 2;
  height: 90px;
  box-sizing: border-box;
  white-space: nowrap;
}
#newMediaPublicAccount .serviceprocess .list > div .itemBg {
  width: auto;
  height: 100%;
}
#newMediaPublicAccount .serviceprocess .list > div div {
  margin-left: 15px;
}
#newMediaPublicAccount .serviceprocess .list > div + div {
  margin-left: -18px;
}
#newMediaPublicAccount .serviceprocess .list > div:first-child {
  color: #fff;
  margin-right: -5px;
}
#newMediaPublicAccount .serviceprocess .but {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 30px 0;
  letter-spacing: 1px;
}
@media screen and (max-width: 1300px) {
  #newMediaPublicAccount .serviceprocess .but {
    padding: 25px 0;
  }
}
#newMediaPublicAccount .serviceprocess .but .itemBg {
  height: 100%;
}
#newMediaPublicAccount .serviceprocess .but p {
  font-size: 24px;
  color: #333;
}
@media screen and (max-width: 1300px) {
  #newMediaPublicAccount .serviceprocess .but p {
    font-size: 20px;
  }
}
#newMediaPublicAccount .serviceprocess .but a {
  margin-left: 100px;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
  transition-duration: 0.4s;
  background-image: linear-gradient(#6fe587, #0bc561);
  padding: 10px 0;
  width: 280px;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  #newMediaPublicAccount .serviceprocess .but a {
    font-size: 20px;
  }
}
#newMediaPublicAccount .serviceprocess .but a:hover {
  transform: translateY(-5px);
}/*# sourceMappingURL=newMediaPublicAccount.css.map */


@media screen and (max-width: 999px) {
	
	#newMediaPublicAccount .marketing {
	margin: 20px 0;
}
	#newMediaPublicAccount .title span {
	top: 25px;
	font-size: 36px;
}

#newMediaPublicAccount .title > div p {
	font-size: 24px;

}

#newMediaPublicAccount .marketing .list {
	display: block;
	height: auto;
}
#newMediaPublicAccount .marketing .list .exp {
	width: 70%;
	padding: 10px;
	float: left;
	border-bottom:1px solid #eee;
}
#newMediaPublicAccount .marketing .list .exp p {
	font-size: 18px;
	margin-bottom: 24px;
	width: auto;
}

#newMediaPublicAccount .marketing .list .exp span {
	width:auto;
	font-size: 14px;
	line-height: 22px;
}
#newMediaPublicAccount .marketing .list .exp.Y {
	width: 70% !important;
	padding: 10px !important;
}
#newMediaPublicAccount .marketing .list .item {
	display: block;
	font-size: 16px;
	padding: 30px 0 20px;
}

#newMediaPublicAccount .marketing .list > div {
	height: 150px;
}

#newMediaPublicAccount .team .list > div {
	display: block;

}
#newMediaPublicAccount .team .list > div .heats {
	width: auto;
	height: 200px;
}
#newMediaPublicAccount .team .list > div .heats > div {
	padding: 10px 25px 10px 25px;
}
#newMediaPublicAccount .team .list .itemL .heats > div {
	border-radius: 0 30px 0 0;
}
#newMediaPublicAccount .team .list > div .heats > div p {
	font-size: 16px;
}
#newMediaPublicAccount .team .list > div .item {
	width: auto;
	height:auto;

}
#newMediaPublicAccount .team .list .itemL .item {
	padding: 15px;
}
#newMediaPublicAccount .team .list > div {
	margin: 10px 0;
}
#newMediaPublicAccount .team .list .itemR .item a, #newMediaPublicAccount .team .list .itemR .item > div {
	font-size: 16px;
	padding-top: 20px;
	padding-bottom: 20px;
}

#newMediaPublicAccount .team .list > div .item {

	font-size: 16px;
}


#newMediaPublicAccount .team .list .itemF .item a, #newMediaPublicAccount .team .list .itemF .item > div {
	display:block;
	padding-left: 0px;
}
#newMediaPublicAccount .team .list .itemF .item a > div, #newMediaPublicAccount .team .list .itemF .item > div > div {
	padding-right:0;
	margin-right: 0;
	border-right:0;
}

#newMediaPublicAccount .interactive .but a {
	padding: 10px 20px;
}
#newMediaPublicAccount .interactive .but a + a {
	margin-left: 20px;
}
#newMediaPublicAccount .operationteam {
	padding: 20px 0;
}
#newMediaPublicAccount .operationteam .list .tabSwiper {
	width: 85px;
	height:auto;
}
#newMediaPublicAccount .operationteam .list .tabSwiper .item > img {
	width: 10px;
	margin-left: 15px;
}
#newMediaPublicAccount .operationteam .list .tabSwiper .item p {
	width: 80px;
	height: 75px;
}

#newMediaPublicAccount .operationteam .list .tabData {
	width: calc(100% - 115px);
	margin-left: 10px;
}
#newMediaPublicAccount .operationteam .list .tabData > div {
	display: block;
}

#newMediaPublicAccount .operationteam .list .tabData > div > p {
	width: auto;
	height: 150px;
}
#newMediaPublicAccount .operationteam .list .tabData > div > p img {
	height: auto;
	width: 100%;
}


#newMediaPublicAccount .operationteam .list .tabData > div > div {
	width: auto;
	margin-top: 20px;
	margin-left: 10px;
	font-size: 16px;
}
#newMediaPublicAccount .operationteam .list .tabData > div > div span {

	margin: 6px 0 15px;
}
#newMediaPublicAccount .operationteam .list .tabData > div > div div {
	line-height: 22px;
	height: 120px;
	font-size: 14px;
}
#newMediaPublicAccount .operationteam .list .tabData > div > div a {
	width: 120px;
	text-align: center;
	padding: 10px 0;
	float: none;
	margin: 0px auto;
	margin-top: 15px;
}
#newMediaPublicAccount .serviceprocess .list {
	display:block;
	margin: 30px 0 20px;
}


#newMediaPublicAccount .serviceprocess .list > div .itemBg {
	display:none;
}

#newMediaPublicAccount .serviceprocess .list > div img{

}
#newMediaPublicAccount .serviceprocess .list > div:first-child {
	background:#14C257;
	margin-right: 0;
}

#newMediaPublicAccount .serviceprocess .but {
	padding: 25px;
}
#newMediaPublicAccount .serviceprocess .but p {
	font-size: 16px;
}



#newMediaPublicAccount .team {

	padding-top: 30px;
}


	
}
