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

#newMediaRedbook .banner {
  margin-top: 85px;
}
#newMediaRedbook .title {
  text-align: center;
  color: #333;
}
#newMediaRedbook .title p {
  font-size: 34px;
  line-height: 54px;
}
#newMediaRedbook .title span {
  display: block;
  padding-top: 10px;
}
#newMediaRedbook .itemBg {
  width: auto !important;
  height: 100% !important;
}
#newMediaRedbook .why {
  padding: 70px 0;
}
#newMediaRedbook .why .con {
  padding: 0 360px;
  margin-top: 40px;
}
@media screen and (max-width: 1700px) {
  #newMediaRedbook .why .con {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaRedbook .why .con {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaRedbook .why .con {
    padding: 0 4vw;
  }
}
#newMediaRedbook .why .con .tabData .text {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  font-size: 18px;
  margin: 0 100px;
}
#newMediaRedbook .why .con .tabData .text > img {
  width: 425px;
}
#newMediaRedbook .why .con .tabData .text > div {
  color: #333;
  width: 450px;
}
#newMediaRedbook .why .con .tabData .text > div p {
  font-size: 18px;
  margin-bottom: 45px;
  position: relative;
  font-weight: bold;
}
#newMediaRedbook .why .con .tabData .text > div p::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: 1.5em;
  height: 4px;
  border-radius: 100px;
  background-color: #666666;
}
#newMediaRedbook .why .con .tabData .text > div span {
  font-size: 14px;
  line-height: 32px;
}
#newMediaRedbook .why .con .progress {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  position: relative;
  margin: 20px 170px 40px;
  z-index: 2;
}
#newMediaRedbook .why .con .progress > img {
  position: absolute;
  right: calc(50% - 22px);
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition-duration: 0.4s;
}
#newMediaRedbook .why .con .progress::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 50px);
  height: 2px;
  background-color: #d3d3d3;
  z-index: -2;
  transition-duration: 0.4s;
}
#newMediaRedbook .why .con .progress .spot {
  transition-duration: 0.4s;
  position: relative;
  width: 22px;
  cursor: pointer;
  height: 22px;
}
#newMediaRedbook .why .con .progress .spot img {
  transition-duration: 0.4s;
}
#newMediaRedbook .why .con .progress .spot .spotY {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
}
#newMediaRedbook .why .con .progress .spot:hover {
  transform: scale(1.1);
}
#newMediaRedbook .why .con .progress .spot.Y::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 36, 65, 0.862745098);
  border-radius: 100px;
  -webkit-animation: antrSOYI 2s linear infinite;
          animation: antrSOYI 2s linear infinite;
  z-index: 1;
}
#newMediaRedbook .why .con .progress .spot.Y img {
  opacity: 0;
}
#newMediaRedbook .why .con .progress .spot.Y .spotY {
  opacity: 1;
}
#newMediaRedbook .why .con .progress:hover > img {
  right: calc(48% - 25px);
}
#newMediaRedbook .why .con .progress.progressY > img {
  right: 22px;
}
#newMediaRedbook .why .con .progress.progressY::after {
  background-color: #ff2441;
}
#newMediaRedbook .why .con > a {
  display: block;
  width: 100%;
  padding: 12px 0;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  font-size: 28px;
  background-image: linear-gradient(90deg, #ff2442, #ff5e6e);
  transition-duration: 0.4s;
}
#newMediaRedbook .why .con > a:hover {
  transform: translateY(5px);
}
#newMediaRedbook .strategy {
  padding: 80px 0 120px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
#newMediaRedbook .strategy .list {
  margin: 0 360px;
  display: flex;
  position: relative;
  padding-top: 90px;
}
@media screen and (max-width: 1700px) {
  #newMediaRedbook .strategy .list {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaRedbook .strategy .list {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaRedbook .strategy .list {
    margin: 0 4vw;
  }
}
@media screen and (max-width: 1300px) {
  #newMediaRedbook .strategy .list {
    margin-right: 10px;
  }
}
#newMediaRedbook .strategy .list .tab {
  width: 40%;
}
#newMediaRedbook .strategy .list .tab > div + div {
  margin-top: 50px;
}
#newMediaRedbook .strategy .list .tab > div {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#newMediaRedbook .strategy .list .tab > div > p {
  position: relative;
  overflow: hidden;
  width: 75px;
  height: 75px;
  background-color: #f6dfe1;
  border-radius: 100px;
  text-align: center;
}
#newMediaRedbook .strategy .list .tab > div > p img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0.6;
  transform: translateY(5px);
  transition-duration: 0.4s;
}
#newMediaRedbook .strategy .list .tab > div > div {
  margin-left: 30px;
  width: calc(100% - 105px);
}
#newMediaRedbook .strategy .list .tab > div > div p {
  color: #333;
  font-size: 20px;
  padding: 5px 0;
  margin-bottom: 5px;
  transition-duration: 0.4s;
  position: relative;
  z-index: 3;
  display: inline-block;
}
#newMediaRedbook .strategy .list .tab > div > div p::before, #newMediaRedbook .strategy .list .tab > div > div p::after {
  content: "";
  position: absolute;
  opacity: 0;
  transition-duration: 0.5s;
}
#newMediaRedbook .strategy .list .tab > div > div p::before {
  left: -10px;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-image: linear-gradient(90deg, #f5e0e3 50%, rgba(255, 255, 255, 0));
  z-index: -1;
  transform: translateX(15px);
}
#newMediaRedbook .strategy .list .tab > div > div p::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translate(15px, -50%);
  z-index: -2;
  width: 0px;
  height: 0px;
  border-top: 6px solid transparent;
  border-right: 10px solid #f5e0e3;
  border-bottom: 6px solid transparent;
}
#newMediaRedbook .strategy .list .tab > div > div span {
  display: block;
  font-size: 18px;
  color: #666;
}
#newMediaRedbook .strategy .list .tab .Y > p > img {
  transform: translateY(0);
  opacity: 1;
}
#newMediaRedbook .strategy .list .tab .Y > div p {
  color: #ff2442;
}
#newMediaRedbook .strategy .list .tab .Y > div p::before {
  opacity: 1;
  transform: translateX(0);
}
#newMediaRedbook .strategy .list .tab .Y > div p::after {
  opacity: 1;
  transform: translate(0, -50%);
  transition-delay: 0.2s;
}
#newMediaRedbook .strategy .list .tabDataChoice {
  position: absolute;
  top: 170px;
  right: 50px;
  width: 655px;
  height: 455px;
  transition-duration: 0.4s;
}
@media screen and (max-width: 1300px) {
  #newMediaRedbook .strategy .list .tabDataChoice {
    transform: scale(0.9);
  }
}
#newMediaRedbook .strategy .list .tabDataChoice > div {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 85px;
  height: 85px;
  z-index: 3;
  border-radius: 100px;
  transition-duration: 0.4s;
  font-size: 18px;
  color: #333;
  background-color: #fff;
}
#newMediaRedbook .strategy .list .tabDataChoice > div::after, #newMediaRedbook .strategy .list .tabDataChoice > div::before {
  content: "";
  position: absolute;
  left: -12%;
  top: -12%;
  width: 124%;
  height: 124%;
  background-color: #fff;
  opacity: 0.2;
  border-radius: 100px;
  z-index: -1;
  transition-duration: 0.4s;
  pointer-events: none;
}
#newMediaRedbook .strategy .list .tabDataChoice > div::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0;
}
#newMediaRedbook .strategy .list .tabDataChoice > div:hover:after {
  transform: scale(1.2);
}
#newMediaRedbook .strategy .list .tabDataChoice .Y {
  background-color: #ff2442;
  color: #fff;
}
#newMediaRedbook .strategy .list .tabDataChoice .Y::after {
  background-color: #ff2442;
}
#newMediaRedbook .strategy .list .tabDataChoice .Y::before {
  background-color: #ff2442;
  -webkit-animation: antrSOYI 2s ease infinite;
          animation: antrSOYI 2s ease infinite;
  opacity: 0.5;
}
#newMediaRedbook .strategy .list .tabDataChoice > div:nth-child(1) {
  left: 10px;
  top: -50px;
}
#newMediaRedbook .strategy .list .tabDataChoice > div:nth-child(2) {
  right: 210px;
  top: 70px;
}
#newMediaRedbook .strategy .list .tabDataChoice > div:nth-child(3) {
  right: 10px;
  top: 20px;
}
#newMediaRedbook .strategy .list .tabDataChoice > div:nth-child(4) {
  left: 60px;
  bottom: 110px;
}
#newMediaRedbook .strategy .list .tabDataChoice > div:nth-child(5) {
  right: 130px;
  bottom: -20px;
}
#newMediaRedbook .strategy .list .tabDataChoice > img {
  position: absolute;
  right: 0;
  top: 0;
}
#newMediaRedbook .strategy .list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: -20px;
}
#newMediaRedbook .strategy .list .icon img {
  transform: scale(0.8);
  transition-duration: 0.4s;
}
#newMediaRedbook .strategy .list .icon img:hover {
  transform: scale(1);
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(1) {
  -webkit-animation: antrOI 1.5s linear infinite 0.1s;
          animation: antrOI 1.5s linear infinite 0.1s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(2) {
  -webkit-animation: antrOI 1.5s linear infinite 0.2s;
          animation: antrOI 1.5s linear infinite 0.2s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(3) {
  -webkit-animation: antrOI 1.5s linear infinite 0.3s;
          animation: antrOI 1.5s linear infinite 0.3s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(4) {
  -webkit-animation: antrOI 1.5s linear infinite 0.4s;
          animation: antrOI 1.5s linear infinite 0.4s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(5) {
  -webkit-animation: antrOI 1.5s linear infinite 0.5s;
          animation: antrOI 1.5s linear infinite 0.5s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(6) {
  -webkit-animation: antrOI 1.5s linear infinite 0.6s;
          animation: antrOI 1.5s linear infinite 0.6s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(7) {
  -webkit-animation: antrOI 1.5s linear infinite 0.7s;
          animation: antrOI 1.5s linear infinite 0.7s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(8) {
  -webkit-animation: antrOI 1.5s linear infinite 0.8s;
          animation: antrOI 1.5s linear infinite 0.8s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(9) {
  -webkit-animation: antrOI 1.5s linear infinite 0.9s;
          animation: antrOI 1.5s linear infinite 0.9s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(10) {
  -webkit-animation: antrOI 1.5s linear infinite 1s;
          animation: antrOI 1.5s linear infinite 1s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(11) {
  -webkit-animation: antrOI 1.5s linear infinite 1.1s;
          animation: antrOI 1.5s linear infinite 1.1s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(12) {
  -webkit-animation: antrOI 1.5s linear infinite 1.2s;
          animation: antrOI 1.5s linear infinite 1.2s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(13) {
  -webkit-animation: antrOI 1.5s linear infinite 1.3s;
          animation: antrOI 1.5s linear infinite 1.3s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(14) {
  -webkit-animation: antrOI 1.5s linear infinite 1.4s;
          animation: antrOI 1.5s linear infinite 1.4s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(15) {
  -webkit-animation: antrOI 1.5s linear infinite 1.5s;
          animation: antrOI 1.5s linear infinite 1.5s;
}
#newMediaRedbook .strategy .list .icon img:nth-last-child(16) {
  -webkit-animation: antrOI 1.5s linear infinite 1.6s;
          animation: antrOI 1.5s linear infinite 1.6s;
}
#newMediaRedbook .price {
  padding: 70px 0;
}
#newMediaRedbook .price .list {
  margin: 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding: 80px 0;
}
@media screen and (max-width: 1700px) {
  #newMediaRedbook .price .list {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaRedbook .price .list {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaRedbook .price .list {
    margin: 0 4vw;
  }
}
#newMediaRedbook .price .list > div {
  width: 23%;
  text-align: center;
  box-shadow: 0 1px 20px #ffd5d9;
  border-radius: 0 0 10px 10px;
  transition-duration: 0.4s;
}
#newMediaRedbook .price .list > div .T {
  position: relative;
  background-image: linear-gradient(90deg, #ff7784, #fff);
  border-radius: 10px 10px 0 0;
  height: 100px;
}
#newMediaRedbook .price .list > div .T .num {
  position: absolute;
  left: 10px;
  bottom: 0;
}
#newMediaRedbook .price .list > div .T .icon {
  position: absolute;
  top: -40px;
  right: 0;
}
#newMediaRedbook .price .list > div .B {
  padding: 20px 0 30px;
  height: 195px;
  box-sizing: border-box;
}
#newMediaRedbook .price .list > div .B p {
  font-size: 20px;
  color: #333;
  padding: 0 0 20px;
}
#newMediaRedbook .price .list > div .B span {
  font-size: 16px;
  color: #666;
  line-height: 30px;
}
#newMediaRedbook .price .list > div:hover {
  transform: translateY(-5px);
}
#newMediaRedbook .price .list > div:hover .T .icon {
  -webkit-animation: antrTBYI 2s ease-out infinite;
          animation: antrTBYI 2s ease-out infinite;
}
#newMediaRedbook .price a {
  color: #fff;
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 10px 0;
  width: 600px;
  border-radius: 10px;
  font-size: 28px;
  background-image: linear-gradient(90deg, #ff2442, #ff5e6e);
  transition-duration: 0.4s;
}
#newMediaRedbook .price a:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 20px #ffa4ad;
}
#newMediaRedbook .statistics {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
#newMediaRedbook .statistics .title {
  color: #fff;
}
#newMediaRedbook .statistics .itemBg {
  width: 100vw !important;
}
#newMediaRedbook .statistics .list {
  margin: 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding: 60px 0 20px;
}
@media screen and (max-width: 1700px) {
  #newMediaRedbook .statistics .list {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaRedbook .statistics .list {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaRedbook .statistics .list {
    margin: 0 4vw;
  }
}
#newMediaRedbook .statistics .list > div:first-child {
  border-radius: 10px 0 0 10px;
}
#newMediaRedbook .statistics .list > div:last-child {
  border-radius: 0 10px 10px 0;
}
#newMediaRedbook .statistics .list > div + div:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background-color: #e8e8e8;
  transition-duration: 0.5s;
}
#newMediaRedbook .statistics .list > div {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
  padding: 60px 0;
  width: 100%;
  transition-duration: 0.5s;
}
#newMediaRedbook .statistics .list > div:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
#newMediaRedbook .statistics .list > div:hover::after {
  opacity: 0;
}
#newMediaRedbook .statistics .list > div:hover > div > .y img {
  transform: translateY(-2px);
}
#newMediaRedbook .statistics .list > div > div {
  font-size: 16px;
  color: #666;
}
#newMediaRedbook .statistics .list > div > div > span {
  font-size: 34px;
  color: #333;
  padding-top: 5px;
}
#newMediaRedbook .statistics .list > div > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
}
#newMediaRedbook .statistics .list > div > div > div img {
  transition-duration: 0.4s;
  margin-left: 3px;
  transform: translateY(3px);
}
#newMediaRedbook .statistics .list > div > div .y span {
  color: #ff2442;
}
#newMediaRedbook .statistics .list > div > div .n img {
  transform: translateY(-3px);
}
#newMediaRedbook .statistics .list > div > div .n span {
  color: #00c847;
}
#newMediaRedbook .statistics .detailed {
  margin: 0 360px;
  display: flex;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1700px) {
  #newMediaRedbook .statistics .detailed {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaRedbook .statistics .detailed {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaRedbook .statistics .detailed {
    margin: 0 4vw;
  }
}
#newMediaRedbook .statistics .detailed img {
  pointer-events: none;
}
#newMediaRedbook .statistics .detailed .item {
  position: absolute;
  right: 0;
  top: 20px;
  width: 80%;
  z-index: -1;
}
#newMediaRedbook .statistics .detailed .item > div {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  background-image: linear-gradient(-90deg, #fff 30%, rgba(255, 255, 255, 0));
  width: 100%;
  padding: 30px 30px;
  padding-left: 52%;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
  transition-duration: 0.4s;
}
#newMediaRedbook .statistics .detailed .item > div:hover {
  transform: translateX(5px);
}
#newMediaRedbook .statistics .detailed .item > div p {
  position: relative;
  font-size: 16px;
  color: #666;
  margin-right: 50px;
  display: inline-block;
}
#newMediaRedbook .statistics .detailed .item > div p::after {
  content: "";
  position: absolute;
  left: -15px;
  top: calc(50% - 3px);
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background-color: #ff2442;
}
#newMediaRedbook .statistics .detailed .item > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 30px;
  color: #ff2442;
  font-size: 18px;
}
#newMediaRedbook .statistics .detailed .item > div > div::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 30px;
  background-color: #ff2442;
  transform: translateY(-50%);
}
#newMediaRedbook .statistics .detailed .item > div > div img {
  margin-left: 30px;
}
#newMediaRedbook .statistics .detailed .item > div + div {
  margin-top: 15px;
}
#newMediaRedbook .contrast {
  position: relative;
  padding-top: 80px;
}
#newMediaRedbook .contrast .list {
  margin: 0 360px;
  display: flex;
  padding: 50px 0;
}
@media screen and (max-width: 1700px) {
  #newMediaRedbook .contrast .list {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaRedbook .contrast .list {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaRedbook .contrast .list {
    margin: 0 4vw;
  }
}
#newMediaRedbook .contrast .list > div {
  position: relative;
  width: 100%;
  padding: 20px 20px 40px;
}
#newMediaRedbook .contrast .list > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
#newMediaRedbook .contrast .list > div .heads {
  margin-bottom: 40px;
}
#newMediaRedbook .contrast .list > div .heads div {
  font-size: 18px;
  padding: 5px 20px;
  border-radius: 10px;
}
#newMediaRedbook .contrast .list > div .item {
  padding: 6px 20px;
  position: relative;
}
#newMediaRedbook .contrast .list > div .item div {
  position: relative;
  text-align: left;
  padding: 20px 0;
  transition-duration: 0.5s;
}
#newMediaRedbook .contrast .list > div .item div img {
  position: absolute;
  left: 0;
  bottom: 0;
}
#newMediaRedbook .contrast .list .L {
  background-image: linear-gradient(90deg, #ff8da6, #ff2644);
  position: relative;
  z-index: 2;
}
#newMediaRedbook .contrast .list .L .heads {
  position: relative;
  justify-content: flex-start;
  margin-bottom: 40px;
}
#newMediaRedbook .contrast .list .L .heads > div {
  color: #ff2846;
  background-image: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}
#newMediaRedbook .contrast .list .L .heads > div:nth-child(2) {
  margin-left: 135px;
}
#newMediaRedbook .contrast .list .L .heads > div:nth-child(3) {
  background-image: none;
  position: absolute;
  left: calc(100% - 14px);
  white-space: nowrap;
  top: 0;
  color: #fff;
}
#newMediaRedbook .contrast .list .L > img {
  position: absolute;
  left: 100%;
  top: 15px;
}
#newMediaRedbook .contrast .list .L .item {
  justify-content: flex-start;
}
#newMediaRedbook .contrast .list .L .item span {
  display: block;
  color: #fff;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 100px;
  text-align: center;
  border: 1px solid;
}
#newMediaRedbook .contrast .list .L .item div {
  color: #fff;
  margin-left: 60px;
}
#newMediaRedbook .contrast .list .L .item p {
  position: absolute;
  left: calc(100% - 10px);
  white-space: nowrap;
  top: calc(50% - 29px);
  color: #fff;
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  border-radius: 100px;
  background-image: linear-gradient(90deg, #ff8da6, #ff2644);
  transition-duration: 0.5s;
}
#newMediaRedbook .contrast .list .L .item:hover div {
  padding-left: 5px;
}
#newMediaRedbook .contrast .list .L .item:hover p {
  transform: scale(1.1);
}
#newMediaRedbook .contrast .list .R {
  background-color: #f8f7f7;
}
#newMediaRedbook .contrast .list .R .heads > div {
  color: #333;
  background-image: linear-gradient(90deg, #ccc, rgba(255, 255, 255, 0));
}
#newMediaRedbook .contrast .list .R .item {
  justify-content: flex-start;
  margin-left: 120px;
}
#newMediaRedbook .contrast .list .R .item > div {
  padding-left: 20px;
}
#newMediaRedbook .contrast .list .R .item > div:hover {
  padding-left: 15px;
}
#newMediaRedbook .contrast .list .R .item > div img {
  position: absolute;
  left: 0;
  bottom: 0;
}
#newMediaRedbook .contrast .but {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 60px 0;
}
#newMediaRedbook .contrast .but .itemBg {
  width: auto;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
#newMediaRedbook .contrast .but a {
  display: block;
  font-size: 24px;
  color: #fff;
  text-align: center;
  background-image: linear-gradient(#ff869f, #ff2e4b);
  border-radius: 10px;
  padding: 12px 0;
  width: 445px;
  transition-duration: 0.4s;
}
#newMediaRedbook .contrast .but a:hover {
  box-shadow: 0 1px 20px #ff6080;
  transform: translateY(-5px);
}
#newMediaRedbook .contrast .but a + a {
  margin-left: 120px;
  background-image: linear-gradient(#faf8f8, #f6bdc3);
  color: #333;
}
#newMediaRedbook .contrast .but a + a:hover {
  box-shadow: 0 1px 20px #f6bdc3;
}
#newMediaRedbook .team {
  padding: 70px 0 110px;
  overflow: hidden;
  background-color: #f8eced;
}
#newMediaRedbook .team .tit {
  text-align: center;
  margin-bottom: 40px;
}
#newMediaRedbook .team .tit p {
  font-size: 34px;
  color: #333;
  padding-bottom: 15px;
}
#newMediaRedbook .team .tit span {
  font-size: 18px;
  color: #666;
}
#newMediaRedbook .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) {
  #newMediaRedbook .team .con {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaRedbook .team .con {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaRedbook .team .con {
    margin: 0 4vw;
  }
}
#newMediaRedbook .team .con > img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition-duration: 0.4s;
  cursor: pointer;
}
#newMediaRedbook .team .con .iconL {
  left: 0;
}
#newMediaRedbook .team .con .iconL:hover {
  left: -3px;
}
#newMediaRedbook .team .con .iconR {
  right: 0;
}
#newMediaRedbook .team .con .iconR:hover {
  right: -3px;
}
#newMediaRedbook .team .con .point {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -46px;
}
#newMediaRedbook .team .con .point div {
  width: 13px;
  height: 13px;
  background-color: #d3d3d3;
  transition-duration: 0.4s;
  margin: 0 20px;
  border-radius: 100px;
  cursor: pointer;
}
#newMediaRedbook .team .con .point .pointY {
  background-color: #ff2442;
}
#newMediaRedbook .team .con .teamSwiper {
  margin: 0 170px;
}
#newMediaRedbook .team .con .teamSwiper .swiper-slide .item {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
}
#newMediaRedbook .team .con .teamSwiper .swiper-slide .item > p {
  width: 295px;
  height: 295px;
  border-radius: 100%;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
}
#newMediaRedbook .team .con .teamSwiper .swiper-slide .item > p img {
  height: 100%;
  transition-duration: 0.4s;
  -o-object-fit: contain;
     object-fit: contain;
}
#newMediaRedbook .team .con .teamSwiper .swiper-slide .item > p:hover img {
  transform: scale(1.1);
}
#newMediaRedbook .team .con .teamSwiper .swiper-slide .item > div {
  width: calc(100% - 395px);
  margin-left: 100px;
  font-size: 16px;
}
#newMediaRedbook .team .con .teamSwiper .swiper-slide .item > div p {
  font-size: 18px;
  color: #333;
}
#newMediaRedbook .team .con .teamSwiper .swiper-slide .item > div span {
  color: #666;
  display: block;
  margin: 6px 0 25px;
}
#newMediaRedbook .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;
}
#newMediaRedbook .team .con .teamSwiper .swiper-slide .item > div a {
  display: block;
  color: #fff;
  background-image: linear-gradient(#ff5e6e, #ff2442);
  border-radius: 10px;
  width: 200px;
  text-align: center;
  margin-top: 15px;
  padding: 16px 0;
  float: right;
  transition-duration: 0.4s;
}
#newMediaRedbook .team .con .teamSwiper .swiper-slide .item > div a:hover {
  transform: translateX(-5px);
}
#newMediaRedbook .process {
  padding-top: 80px;
  overflow: hidden;
}
#newMediaRedbook .process .tit {
  text-align: center;
}
#newMediaRedbook .process .tit p {
  font-size: 34px;
  color: #333;
}
#newMediaRedbook .process .tit span {
  font-size: 16px;
  color: #666;
}
#newMediaRedbook .process .list {
  padding: 0 360px;
  position: relative;
  z-index: 2;
  padding-bottom: 70px !important;
  transition-duration: 0.4s;
}
@media screen and (max-width: 1700px) {
  #newMediaRedbook .process .list {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaRedbook .process .list {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #newMediaRedbook .process .list {
    padding: 0 4vw;
  }
}
@media screen and (max-width: 1500px) {
  #newMediaRedbook .process .list {
    padding-bottom: 40px !important;
  }
}
#newMediaRedbook .process .list .bgL {
  position: absolute;
  left: 0;
  top: 40px;
}
#newMediaRedbook .process .list .bgR {
  position: absolute;
  right: 0;
  top: -40px;
}
#newMediaRedbook .process .list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#newMediaRedbook .process .list .item > div {
  position: relative;
  margin-top: 50px;
  width: 25%;
  text-align: center;
}
#newMediaRedbook .process .list .item > div img {
  width: 155px;
  transition: transform 0.4s ease-in-out;
}
#newMediaRedbook .process .list .item > div p {
  position: absolute;
  left: 70px;
  bottom: 4px;
  font-size: 24px;
  color: #333;
}
#newMediaRedbook .process .list .item > div:hover img {
  transform: translateX(30px);
}
#newMediaRedbook .process .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) {
  #newMediaRedbook .process .but {
    padding: 25px 0;
  }
}
#newMediaRedbook .process .but p {
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 1300px) {
  #newMediaRedbook .process .but p {
    font-size: 20px;
  }
}
#newMediaRedbook .process .but a {
  margin-left: 100px;
  font-size: 30px;
  color: #ff2744;
  border-radius: 10px;
  transition-duration: 0.4s;
  background-image: linear-gradient(#f8f7f7, #ffa6b0);
  padding: 10px 0;
  width: 280px;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  #newMediaRedbook .process .but a {
    font-size: 20px;
  }
}
#newMediaRedbook .process .but a:hover {
  transform: translateY(-5px);
}/*# sourceMappingURL=newMediaRedbook.css.map */


@media screen and (max-width: 999px) {
	#newMediaRedbook .why {
	padding: 30px 0;
}
	#newMediaRedbook .title p {
	font-size: 18px;
	line-height: 24px;
}
#newMediaRedbook .why .con .tabData .text {
	display: block;
	font-size: 18px;
	margin: 0;
}	
#newMediaRedbook .why .con .tabData .text > img {
	width: 100%;
}
#newMediaRedbook .why .con .tabData .text > div {
	width: auto;
}
#newMediaRedbook .why .con .progress {
	margin: 20px 0px 40px;

}
#newMediaRedbook .why .con > a {
	padding: 10px 0;
	font-size: 20px;
}
#newMediaRedbook .strategy .list {
	display:block;
		padding-top: 30px;
}
#newMediaRedbook .strategy .list .tab {
	width: 100%;
}
#newMediaRedbook .strategy .list .tabDataChoice {
	position: relative;
	right:0;
	top:100px;
	height:385px;
	width:100%;
	
}
#newMediaRedbook .strategy .list .tabDataChoice > img {
	right: 0;
	top: 0;
	left: 0;
	width: 100%;
}

#newMediaRedbook .strategy .list .tabDataChoice > div {
	width: 65px;
	height: 65px;
	font-size: 14px;
}

#newMediaRedbook .strategy .list .tabDataChoice > div:nth-child(4) {
	left: 30px;
	bottom: 160px;
}
#newMediaRedbook .strategy .list .tabDataChoice > div:nth-child(5) {
	right: 80px;
	bottom: 180px;
}



#newMediaRedbook .strategy .list .tab > div > p img {
	bottom: 15px;
}
#newMediaRedbook .strategy .list .tab > div > div p {
	font-size: 18px;
}
#newMediaRedbook .strategy .list .tab > div > div span {
	font-size: 14px;
}

#newMediaRedbook .price {
	padding: 30px 0;
}


#newMediaRedbook .price .list {
	display: block;
}

#newMediaRedbook .price .list > div {
	width: 48%;
	margin:1%;
	margin-bottom:50px;
	float: left;
}


#newMediaRedbook .price .list > div .B span {
	font-size: 14px;
	line-height: 24px;
}




#newMediaRedbook .price a {
	clear:both;
	width: 90%;
	font-size: 20px;
}

#newMediaRedbook .statistics .list {
	display: block;
}

#newMediaRedbook .statistics .list > div {
	display: block;
	width: 48%;
	margin: 1%;
	float: left;
	border-radius: 10px !important;
}
#newMediaRedbook .statistics .detailed {
	display: block;
	clear: both;
}
#newMediaRedbook .statistics .list > div > div {
	text-align: center;
}

#newMediaRedbook .statistics .list > div > div > div {
	display: block;
}

#newMediaRedbook .statistics .detailed img {
	width: 100%;
}
#newMediaRedbook .statistics .detailed .item {
	position: relative;
	top: 20px;
	width: 100%;
}

#newMediaRedbook .statistics .detailed .item > div {
	padding: 30px 0px;
	padding-left: 0;
}


#newMediaRedbook .statistics .detailed .item > div p {
	font-size: 14px;
	color: #fff;
	margin-right: 40px;
}
#newMediaRedbook .statistics .detailed .item > div > div {
	right: 0px;
	padding-left: 10px;
	font-size: 16px;
}
#newMediaRedbook .statistics .detailed .item > div > div img {
	margin-left: 20px;
}
#newMediaRedbook .contrast .list {
	display: block;
}

#newMediaRedbook .contrast .list > div {
	width: auto;
}
#newMediaRedbook .contrast .list > div .item {
	padding: 6px 0px;

}
#newMediaRedbook .contrast .list .L .item div {
	margin-left: 25px;
	margin-right:35px;
	width:60%;
}

#newMediaRedbook .contrast .list .L .item p {
	left: calc(100% - 25px);
}
#newMediaRedbook .contrast .list .L .heads > div:nth-child(2) {
	margin-left: 55px;
}
#newMediaRedbook .contrast .list .L .heads > div:nth-child(3) {
	left: calc(100% - 30px);
}

#newMediaRedbook .contrast .list .R .item {
	margin-left: 0;
}
#newMediaRedbook .contrast .but {
	padding: 30px 0;
}
#newMediaRedbook .contrast .but a {
	font-size: 18px;
	padding: 12px 30px;
}
#newMediaRedbook .contrast .but a + a {
	margin-left: 20px;
}
#newMediaRedbook .team .tit p {
	font-size: 20px;
}
#newMediaRedbook .team .tit span {
	font-size: 16px;
	color: #666;
}
#newMediaRedbook .team .con .teamSwiper {
	margin: 0;
	width:100%;
}
#newMediaRedbook .team .con .teamSwiper .swiper-slide .item {
	display: block;
}
#newMediaRedbook .team .con .teamSwiper .swiper-slide .item > p {
	width: 150px;
	height: 150px;
	margin:0px auto;
	margin-bottom:20px;
}




#newMediaRedbook .team .con .teamSwiper .swiper-slide .item > div {
	width: 100%;
	margin-left:0;
	text-align:center;
	font-size: 16px;
}

#newMediaRedbook .team .con .teamSwiper .swiper-slide .item > div div {
	text-align: left;
	font-size: 14px;
	height:100px;
	line-height: 24px;
}
#newMediaRedbook .team .con .teamSwiper .swiper-slide .item > div a {
	margin: 0px auto;
	width: 150px;
	margin-top: 15px;
	float: none;
	
}

#newMediaRedbook .process .tit p {
	font-size: 20px;
}
#newMediaRedbook .process .tit span {
	padding: 0 20px;
}
#newMediaRedbook .process .list .item > div p {
	left: 13px;
	bottom: -30px;
	font-size: 14px;
}
#newMediaRedbook .process .list .item > div img {
	width: 55px;
}

#newMediaRedbook .process .but {
	padding: 15px;
}
#newMediaRedbook .process .but p {
	font-size: 14px;
}
#newMediaRedbook .process .but a {
	font-size: 16px;
	margin-left:50px;
}



}





