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

#baijiaAgency .banner {
  margin-top: 85px;
}
#baijiaAgency .conversion {
  padding: 62px 0;
}
#baijiaAgency .conversion .tit {
  text-align: center;
  font-size: 34px;
  padding-bottom: 30px;
}
#baijiaAgency .conversion .cont {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  position: relative;
  margin: 0 320px;
}
@media screen and (max-width: 1700px) {
  #baijiaAgency .conversion .cont {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #baijiaAgency .conversion .cont {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #baijiaAgency .conversion .cont {
    margin: 0 4vw;
	display:block;
  }
}
#baijiaAgency .conversion .cont .info {
  font-size: 16px;
  line-height: 30px;
  transition-duration: 0.4s;
  position: relative;
}
#baijiaAgency .conversion .cont .info::before {
  content: "";
  position: absolute;
  left: 0;
  top: -22px;
  width: 48px;
  height: 6px;
  background-color: #3a56d4;
  border-radius: 3px;
}
#baijiaAgency .conversion .cont .info:hover {
  transform: translateY(-5px);
}
#baijiaAgency .conversion .cont .list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#baijiaAgency .conversion .cont .list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 188px;
  height: 76px;
  background-color: #e7e7e7;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
  transition-duration: 0.4s;
}
#baijiaAgency .conversion .cont .list .item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 76px;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #7d94f6, #3f5ad6);
  transition-duration: 0.4s;
}
#baijiaAgency .conversion .cont .list .item > div {
  transition-duration: 0.4s;
  position: relative;
}
#baijiaAgency .conversion .cont .list .item > div .Y {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  opacity: 0;
}
#baijiaAgency .conversion .cont .list .item > p {
  font-size: 16px;
  line-height: 30px;
  color: #333;
  margin-left: 10px;
}
#baijiaAgency .conversion .cont .list .item:hover {
  transform: translateY(-5px);
}
#baijiaAgency .conversion .cont .list .item:hover::after {
  width: 100%;
}
#baijiaAgency .conversion .cont .list .item:hover .N {
  opacity: 0;
}
#baijiaAgency .conversion .cont .list .item:hover .Y {
  opacity: 1;
}
#baijiaAgency .conversion .cont .list .item:hover p {
  color: #fff;
  z-index: 1;
}
#baijiaAgency .conversion .cont > img {
  transition-duration: 0.4s;
}
#baijiaAgency .conversion .cont > img:hover {
  transform: scale(1.02);
}
#baijiaAgency .ecology {
  height: 1052px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#baijiaAgency .ecology .title {
  padding-top: 70px;
  text-align: center;
}
#baijiaAgency .ecology .title h1 {
  font-size: 34px;
}
#baijiaAgency .ecology .title p {
  font-size: 18px;
  padding-top: 15px;
}
#baijiaAgency .ecology .cont {
  margin: 0 360px;
  padding-top: 45px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 1700px) {
  #baijiaAgency .ecology .cont {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #baijiaAgency .ecology .cont {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #baijiaAgency .ecology .cont {
    margin: 0 4vw;
	display:block;
  }
}
#baijiaAgency .ecology .cont .etab {
  width: 423px;
  box-sizing: border-box;
}
#baijiaAgency .ecology .cont .etab .item {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding: 30px 35px;
  position: relative;
}
#baijiaAgency .ecology .cont .etab .item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-image: linear-gradient(to right, #7d94f6, #3f5ad6);
  transition-duration: 0.4s;
}
#baijiaAgency .ecology .cont .etab .item .left {
  display: flex;
  align-items: center;
  justify-content: center;
}
#baijiaAgency .ecology .cont .etab .item .left p {
  font-family: Impact;
  font-size: 48px;
  color: #333;
  font-weight: lighter;
}
#baijiaAgency .ecology .cont .etab .item .left > div {
  padding-left: 15px;
}
#baijiaAgency .ecology .cont .etab .item .left > div p {
  font-size: 20px;
  color: #333;
  padding-bottom: 5px;
}
#baijiaAgency .ecology .cont .etab .item .left > div span {
  color: #999999;
  font-size: 10px;
  text-transform: uppercase;
}
#baijiaAgency .ecology .cont .etab .item .right {
  transition-duration: 0.4s;
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#baijiaAgency .ecology .cont .etab .item .right .N {
  width: 14px;
  height: 12px;
}
#baijiaAgency .ecology .cont .etab .item .right .Y {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
#baijiaAgency .ecology .cont .etab .item:hover::after {
  width: 100%;
}
#baijiaAgency .ecology .cont .etab .item:hover .left {
  z-index: 1;
}
#baijiaAgency .ecology .cont .etab .item:hover .left p {
  color: #fff;
}
#baijiaAgency .ecology .cont .etab .item:hover .left div p {
  color: #fff;
}
#baijiaAgency .ecology .cont .etab .item:hover .left div span {
  color: #fff;
}
#baijiaAgency .ecology .cont .etab .item:hover .right {
  width: 38px;
  height: 38px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}
#baijiaAgency .ecology .cont .etab .item:hover .right .N {
  opacity: 0;
}
#baijiaAgency .ecology .cont .etab .item:hover .right .Y {
  opacity: 1;
}
#baijiaAgency .ecology .cont .etabData {
  margin-top: 25px;
  margin-left: 160px;
  width: 590px;
}
#baijiaAgency .ecology .cont .etabData > div {
  display: none;
}
#baijiaAgency .ecology .cont .etabData > div .tit {
  font-size: 24px;
  position: relative;
  color: #333333;
  display: block;
  padding-bottom: 20px;
}
#baijiaAgency .ecology .cont .etabData > div .tit::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 18px;
  height: 6px;
  background-color: #3a56d4;
  border-radius: 3px;
}
#baijiaAgency .ecology .cont .etabData > div .info {
  padding: 20px 0;
  font-size: 16px;
  color: #666666;
  margin-bottom: 30px;
  line-height: 32px;
}
#baijiaAgency .ecology .cont .etabData .Y {
  display: block;
}
#baijiaAgency .value {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 360px;
}
@media screen and (max-width: 1700px) {
  #baijiaAgency .value {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #baijiaAgency .value {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #baijiaAgency .value {
    margin: 0 4vw;
	display:block;
  }
}
#baijiaAgency .value .title {
  width: 280px;
  margin-right: 80px;
}
#baijiaAgency .value .title p {
  font-size: 34px;
  line-height: 55px;
}
#baijiaAgency .value .list {
  display: flex;
  align-items: center;
  justify-content: center;
}
#baijiaAgency .value .list .item {
  box-sizing: border-box;
  height: 547px;
  padding: 60px 0;
  width: 275px;
  border-left: 1px solid #e7e7e7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition-duration: 0.4s;
}
#baijiaAgency .value .list .item img {
  display: block;
  width: 158px;
  margin: 60px auto;
}
#baijiaAgency .value .list .item .tit {
  font-size: 20px;
  color: #333333;
  padding-left: 30px;
}
#baijiaAgency .value .list .item .text {
  padding-top: 10px;
  padding-left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#baijiaAgency .value .list .item .text p {
  width: 48%;
  text-align: left;
  line-height: 24px;
}
#baijiaAgency .value .list .item:hover {
  border-left-color: transparent;
  box-shadow: 0 0 12px rgba(163, 176, 237, 0.21);
}
#baijiaAgency .value .list .item:hover + .item {
  border-left-color: transparent;
}
#baijiaAgency .but {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 360px;
  position: relative;
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
@media screen and (max-width: 1700px) {
  #baijiaAgency .but {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #baijiaAgency .but {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #baijiaAgency .but {
    padding: 0 4vw;
  }
}
#baijiaAgency .but img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#baijiaAgency .but a {
  padding: 15px 0;
  width: 100%;
  box-sizing: border-box;
  margin: 0 100px;
  border-radius: 10px;
  background-color: #ff6868;
  color: #fff;
  text-align: center;
  font-size: 16px;
  transition-duration: 0.4s;
}
#baijiaAgency .but a:hover {
  transform: translateY(-3px);
}
#baijiaAgency .but a + a {
  background-color: #3a56d4;
}
#baijiaAgency .team {
  padding: 90px 0 0 0;
  overflow: hidden;
  height: 661px;
  box-sizing: border-box;
}
#baijiaAgency .team .tit {
  text-align: center;
  margin-bottom: 40px;
}
#baijiaAgency .team .tit p {
  font-size: 34px;
  color: #333;
  padding-bottom: 15px;
}
#baijiaAgency .team .tit span {
  font-size: 18px;
  color: #666;
}
#baijiaAgency .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) {
  #baijiaAgency .team .con {
    margin: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #baijiaAgency .team .con {
    margin: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #baijiaAgency .team .con {
    margin: 0 4vw;
  }
}
#baijiaAgency .team .con > img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition-duration: 0.4s;
}
#baijiaAgency .team .con .iconL {
  left: 0;
}
#baijiaAgency .team .con .iconL:hover {
  left: -3px;
}
#baijiaAgency .team .con .iconR {
  right: 0;
}
#baijiaAgency .team .con .iconR:hover {
  right: -3px;
}
#baijiaAgency .team .con .point {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -46px;
}
#baijiaAgency .team .con .point div {
  width: 13px;
  height: 13px;
  background-color: #d3d3d3;
  transition-duration: 0.4s;
  margin: 0 20px;
  border-radius: 100px;
  cursor: pointer;
}
#baijiaAgency .team .con .point .pointY {
  background-color: #3a56d4;
}
#baijiaAgency .team .con .teamSwiper {
  margin: 0 170px;
}
#baijiaAgency .team .con .teamSwiper .swiper-slide .item {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
}
#baijiaAgency .team .con .teamSwiper .swiper-slide .item > p {
  width: 295px;
  height: 295px;
  border-radius: 100%;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
}
#baijiaAgency .team .con .teamSwiper .swiper-slide .item > p img {
  height: 100%;
  transition-duration: 0.4s;
  -o-object-fit: contain;
     object-fit: contain;
}
#baijiaAgency .team .con .teamSwiper .swiper-slide .item > p:hover img {
  transform: scale(1.1);
}
#baijiaAgency .team .con .teamSwiper .swiper-slide .item > div {
  width: calc(100% - 395px);
  margin-left: 100px;
  font-size: 16px;
}
#baijiaAgency .team .con .teamSwiper .swiper-slide .item > div p {
  font-size: 18px;
  color: #333;
}
#baijiaAgency .team .con .teamSwiper .swiper-slide .item > div span {
  color: #666;
  display: block;
  margin: 6px 0 25px;
}
#baijiaAgency .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;
}
#baijiaAgency .team .con .teamSwiper .swiper-slide .item > div a {
  display: block;
  color: #fff;
  background-image: linear-gradient(to bottom, #fb686d, #fb4040);
  border-radius: 10px;
  width: 200px;
  text-align: center;
  margin-top: 15px;
  padding: 16px 0;
  float: right;
  transition-duration: 0.4s;
}
#baijiaAgency .team .con .teamSwiper .swiper-slide .item > div a:hover {
  transform: translateX(-5px);
}
#baijiaAgency .process {
  padding-top: 70px;
  overflow: hidden;
}
#baijiaAgency .process .tit {
  text-align: center;
}
#baijiaAgency .process .tit p {
  font-size: 34px;
  color: #333;
}
#baijiaAgency .process .tit span {
  font-size: 16px;
  color: #666;
}
#baijiaAgency .process .list {
  padding: 0 360px;
  position: relative;
  z-index: 2;
  padding-bottom: 70px !important;
  transition-duration: 0.4s;
}
@media screen and (max-width: 1700px) {
  #baijiaAgency .process .list {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #baijiaAgency .process .list {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #baijiaAgency .process .list {
    padding: 0 4vw;
  }
}
@media screen and (max-width: 1500px) {
  #baijiaAgency .process .list {
    padding-bottom: 40px !important;
  }
}
#baijiaAgency .process .list .bgL {
  position: absolute;
  left: -2%;
  top: -125%;
}
#baijiaAgency .process .list .bgR {
  position: absolute;
  right: 0;
  top: -100px;
}
#baijiaAgency .process .list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#baijiaAgency .process .list .item > div {
  position: relative;
  margin-top: 50px;
  width: 25%;
  text-align: center;
}
#baijiaAgency .process .list .item > div img {
  width: 155px;
  transition: transform 0.4s ease-in-out;
}
#baijiaAgency .process .list .item > div p {
  position: absolute;
  left: 70px;
  bottom: 4px;
  font-size: 24px;
  color: #333;
  text-shadow: #fff 1px 0 0, #fff 0 1px 0, #fff -1px 0 0, #fff 0 -1px 0;
}
#baijiaAgency .process .list .item > div:hover img {
  transform: translateX(30px);
}
#baijiaAgency .process .consult {
  padding: 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1700px) {
  #baijiaAgency .process .consult {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1500px) {
  #baijiaAgency .process .consult {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  #baijiaAgency .process .consult {
    padding: 0 4vw;
  }
}
@media screen and (max-width: 1300px) {
  #baijiaAgency .process .consult {
    padding: 0 0 0 50px;
  }
}
#baijiaAgency .process .consult > img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}
#baijiaAgency .process .consult > div {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
}
#baijiaAgency .process .consult > div img {
  width: 429px;
  margin-bottom: 20px;
  transition-duration: 0.4s;
}
#baijiaAgency .process .consult > div img:hover {
  transform: translateY(-3px);
}
#baijiaAgency .process .consult > div > div {
  color: #fff;
  margin-left: 0px;
}
#baijiaAgency .process .consult > div > div p {
  font-size: 24px;
  transition-duration: 0.4s;
}
#baijiaAgency .process .consult > div > div p:hover {
  transform: translateX(3px);
}
#baijiaAgency .process .consult > div > div div {
  font-size: 36px;
  margin: 15px 0 20px;
  background-image: linear-gradient(#fff, #c2d3ff);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  transition-duration: 0.4s;
}
#baijiaAgency .process .consult > div > div div:hover {
  transform: translateX(3px);
}
#baijiaAgency .process .consult > div > div span {
  font-size: 18px;
  display: inline-block;
  border-radius: 10px;
  border: 1px solid #fff;
  padding: 10px 20px;
  transition-duration: 0.4s;
}
#baijiaAgency .process .consult > div > div span:hover {
  transform: translateX(3px);
}
#baijiaAgency .process .consult a {
  color: #3564db;
  border-radius: 10px;
  padding: 15px 0;
  font-size: 24px;
  width: 245px;
  text-align: center;
  margin-right: 40px;
  background-image: linear-gradient(#fff, #a9c1ff);
  transition-duration: 0.4s;
}
#baijiaAgency .process .consult a:hover {
  transform: translateY(-5px);
}/*# sourceMappingURL=baijiaAgency.css.map */


@media screen and (max-width: 999px) {
#baijiaAgency .conversion {
	padding: 30px 0;
}	
#baijiaAgency .conversion .tit {
	font-size: 22px;
}	
	#baijiaAgency .conversion .cont .info {
	font-size: 14px;
	line-height: 24px;
}
#baijiaAgency .conversion .cont .list .item {
	width: 48%;
	height: 46px;
	margin-right: 1%;
	margin: 1%;
}
#baijiaAgency .conversion .cont .list .item::after {
  height: 46px;

}


#baijiaAgency .conversion .cont .list .item > p {
	font-size: 14px;
}
#baijiaAgency .conversion .cont > img {
	width: 100%;
	margin-top: 20px;
}


#baijiaAgency .ecology {
	height: auto;
}
#baijiaAgency .ecology .title {
	padding-top: 30px;
}
#baijiaAgency .ecology .title h1 {
	font-size: 22px;
}
#baijiaAgency .ecology .title p {
	font-size: 16px;
	padding: 15px;
}
#baijiaAgency .ecology .cont .etab {
	width: 100%;
	height:180px;
}

#baijiaAgency .ecology .cont .etab .item {
	padding: 10px 10px;
	width: 50%;
	height:50px;
	float: left;
}

#baijiaAgency .ecology .cont .etab .item .left p {
	font-size: 20px;
}
#baijiaAgency .ecology .cont .etab .item .left > div p {
	font-size: 14px;
	padding-bottom: 0;
}
#baijiaAgency .ecology .cont .etab .item .left > div span {
	display: none;
}

#baijiaAgency .ecology .cont .etabData {
	margin-top: 0px;
	margin-left: 0;
	width: 100%;
}

#baijiaAgency .ecology .cont .etabData > div .tit {
	font-size: 18px;
}
#baijiaAgency .ecology .cont .etabData > div .info {
	font-size: 14px;
	line-height: 24px;
}
#baijiaAgency .ecology .cont .etabData > div img {
	width:100%;
}

#baijiaAgency .value .title {
	width: 100%;
	margin-right: 0;
}
#baijiaAgency .value .title p {
	font-size: 22px;
}
#baijiaAgency .value .list {
	display: block;
}
#baijiaAgency .value .list .item {
	height: auto;
	padding: 5px;
	width: auto;
	border-left: 0;
}
	
#baijiaAgency .value .list .item img {
	margin: 0px auto;
}	
	
	
#baijiaAgency .value .list .item .tit {
	padding-left: 0;
}	
#baijiaAgency .value .list .item .text {
	padding-left: 0;
}	
	
#baijiaAgency .value .list .item .text p {
	width: 33%;
}	
	
#baijiaAgency .but {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
	margin-top: 20px;
}	
#baijiaAgency .but a {
	margin: 0 20px;
}	
#baijiaAgency .team .tit p {
	font-size: 22px;
	padding: 0 20px;
	padding-bottom: 15px;
}

#baijiaAgency .team .tit span {
	font-size: 16px;
	color: #666;
}
#baijiaAgency .process .tit p {
	font-size: 22px;
}

#baijiaAgency .process .list .item > div img {
	width: 50px;
}
#baijiaAgency .process .list .item > div:hover img {
  transform: translateX(10px);
}
#baijiaAgency .process .list .item > div p {
	left: 10px;
	bottom: -24px;
	font-size: 14px;
}
#baijiaAgency .process .consult {
	padding: 0;
}
#baijiaAgency .process .consult > div {
	margin:20px;
}
#baijiaAgency .process .consult > div img {
	display: none;
}
#baijiaAgency .process .consult > div > div span {
	display: none;
}


#baijiaAgency .process .consult > div > div div {
	font-size: 14px;
}

#baijiaAgency .process .consult > div > div p {
	font-size: 14px;
}
#baijiaAgency .process .consult a {

	padding: 12px 0;
	font-size: 18px;
	width: 150px;
	margin-right: 10px;
}


#baijiaAgency .process .consult > img {
	top: 0;
}

#baijiaAgency .team .con .teamSwiper .swiper-slide .item > div a{ display:none}

	
	
	
}