* {
  margin: 0;
  padding: 0;
}

.text-ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.text-ellipsis-multiple {
  display: -webkit-box;
  -webkit-box-orient:vertical;
  overflow:hidden;
  -webkit-line-clamp:2;
  text-overflow: ellipsis;    
}

.flex-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header {
  position: relative;
  width: 100%;
  height: 75px;
  line-height: 75px;
  text-align: center;
  background: url(../imgs/top-header.svg) no-repeat;
  /* background-size: 100% 100%; */
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 5px;
  color: #fff;
}

.header .back {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #66FFFF;
  cursor: pointer;
}

.date-info {
  position: relative;
  display: flex;
  justify-content: center;
  height: 43px;
  line-height: 43px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 40px;
}

.primary {
  margin-left: 10px;
  font-size: 22px;
  color: #66FFFF;
}

.remain-time {
  /* position: relative; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  width: 666px;
  background: url(../imgs/remain-time.svg) no-repeat;
  text-align: center;
  font-size: 18px;
  color: #00FFF4;
  font-weight: bold;
}

.remain-time img {
  margin-left: 10px;
}

.current-time {
  display: flex;
  align-items: center;
}

.current-time .item {
  display: flex;
  align-items: center;
  font-size: 15px;
}

.current-time .item:first-of-type span {
  color: #66FFFF;
  margin-left: 7px;
}

.current-time .item:last-of-type {
  margin-left: 23px;
  /* margin-right: 55px; */
}

.account-info {
  display: flex;
  align-items: center;
}

.account-info .item {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-left: 75px;
}

.account-info .item:first-of-type {
  /* margin-left: 55px; */
}

.content {
  position: relative;
  /* padding: 0 40px; */
  margin: 0 40px;
  box-sizing: border-box;
}

.center {
  position: relative;
  width: 1262px;
  height: 709px;
  margin: 0 auto;
}

video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.statistics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1040px;
  margin: 0 auto;
  height: 100%;
  padding: 0 50px;
  box-sizing: border-box;
  color: #fff;
}

.view_counts {
  text-align: center;
  margin-bottom: 32px;
}

.view_counts .number {
  width: 160px;
  height: 64px;
  line-height: 64px;
  background: url(../imgs/view_count.svg) no-repeat;
  background-size: cover;
  font-size: 25px;
  text-align: center;
}

.view_counts .text {
  font-size: 16px;
}

.statistics_left .view_counts:last-of-type,
.statistics_right .view_counts:last-of-type {
  margin-bottom: 0;
}

.statistics_center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}

.statistic_data {
  display: flex;
  align-items: center;
}

.statistic_data .name {
  display: flex;
  flex-direction: column;
  color: #FA2256;
  font-size: 24px;
  white-space: nowrap;
  margin-right: 12px;
  line-height: 32px;
}

.statistic_data .number {
  font-size: 78px;
  background: linear-gradient(180deg, #FF9872 0%, #FA2256 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
  text-stroke: 2px #fff;
  -webkit-text-stroke: 2px #fff;
}

.statistic_data .unit {
  font-size: 40px;
  line-height: 49px;
  color: #FA2256;
  align-self: flex-end;
}

.potential_clients .name {
  font-size: 14px;
  line-height: 20px;
  margin-right: 8px;
} 

.potential_clients .small_number {
  font-size: 40px;
  line-height: 32px;
  color: #FA2256;
}

.potential_clients .unit {
  font-size: 20px;
  line-height: 23px;
}

.statistics_center .line {
  width: 426px;
  height: 2px;
  margin: 12px 0 37px;
  background: #FA2256;
  box-shadow: 0px 3px 4px 1px rgba(255,255,255,0.36);
}

.statistics_bottom {
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 588px;
  height: 64px;
  padding: 0 82px 0 53px;
  box-sizing: border-box;
  bottom: -32px;
  background: url(../imgs/statistics_bottom.svg) no-repeat;
  background-size: cover;
  color: #fff;
}

.static_bot_item {
  display: flex;
  align-items: center;
}

.static_bot_item .text {
  margin-left: 12px;
}

.static_bot_item .text > div:first-of-type {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 4px;
} 

.static_bot_item .text > div:last-of-type {
  font-size: 12px;
}

.content_left,
.content_right {
  position: absolute;
  top: 0;
  left: 0;
}

.content_left .area:last-of-type,
.content_right .area:last-of-type {
  margin-bottom: 0;
}

.content_right {
  right: 0;
  left: auto;
}

.area {
  position: relative;
  padding: 24px 16px;
  box-sizing: border-box;
  width: 400px;
  background: rgba(11,27,153,0.5);
  box-shadow: inset 0px 1px 20px 1px rgba(43,166,255,0.51);
  border-radius: 10px 10px 10px 10px;
  opacity: 1;
  border: 2px solid #0E6AC8;
  margin-bottom: 40px;
}

.area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #00f2f1;
  animation: clippath 5s infinite linear;
}

@keyframes clippath {
  0%,
  100% {
    clip-path: inset(0 0 95% 0);
  }

  25% {
    clip-path: inset(0 95% 0 0);
  }

  50% {
    clip-path: inset(95% 0 0 0);
  }

  75% {
    clip-path: inset(0 0 0 95%);
  }
}

.area-1 .section {
  display: flex;
  justify-content: space-between;
  width: 368px;
  height: 160px;
  padding: 29px 21px;
  box-sizing: border-box;
  background: url(../imgs/area-1.svg) no-repeat;
  background-size: cover;
  color: #fff;
}

.area-1 .graph {
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
}

.area-1 .graph img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.area-1 .number {
  font-size: 16px;
}
  
.area-1 .name {
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  margin-top: 8px;
}

.top {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.top img {
  margin-right: 8px;
}

.top span {
  font-size: 25px;
  color: #01FFBC;
  font-weight: 500;
}

.top .top-number {
  height: 26px;
  line-height: 26px;
  padding: 0 8px;
  background: rgba(235,240,255, 0.2);
  border: 1px solid #34ADFF;
  border-radius: 8px;
  font-size: 16px;
  color: #34ADFF;
  text-align: center;
  margin-left: 12px;
  font-weight: 500;
}

.top.top_bg {
  align-items: flex-start;
  width: 368px;
  height: 42px;
  background: url(../imgs/top-bg.svg) no-repeat;
  background-size: cover;
}

.top.top_bg span {
  position: relative;
  top: -6px;
  margin-left: 25px;
}

.tabs {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 32px;
  line-height: 32px;
  background: #282C38;
  border-radius: 6px 6px 0px 0px;
  border-bottom: 1px solid #fff;
  display: flex;
  color: #fff;
}

.tabs .tab-item {
  width: 50%;
  text-align: center;
  cursor: pointer;
}

.tabs .tab-item:first-of-type {
  border-top-left-radius: 6px;
}

.tabs .tab-item:last-of-type {
  border-top-right-radius: 6px;
}

.tabs .tab-item.active {
  background-color: #246CF9;
}


.area-2 .list {
  margin-top: 24px;
  height: 465px;
  /* min-height: 375px; */
}
  
.area-2 .list-item {
  display: flex;
  justify-content: space-between;
  padding: 0 8px 21px 8px;
}

.area-2 .list-item:last-of-type {
  padding-bottom: 0;
}

.area-2 .order {
  width: 24px;
  height: 24px;
  line-height: 24px;
  background: #050D4B;
  border-radius: 4px;
  border: 1px solid #01FFBC;
  font-size: 17px;
  text-align: center;
  color: #01FFBC;
  margin-right: 16px;
}

.area-2 .order.order_1 {
  color: #fff;
  border: none;
  background: linear-gradient(180deg, #E5DC77 0%, #F24B01 100%);
}

.area-2 .order_2 {
  color: #fff;
  border: none;
  background: linear-gradient(180deg, #F0A58A 0%, #FC47A2 100%);
}

.area-2 .order_3 {
  color: #fff;
  border: none;
  background: linear-gradient(180deg, #43FFAF 0%, #179DFF 100%);
}

.area-2 .info {
  flex: 1;
}

.area-2 .title {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 12px;
  line-height: 26px;
}

.area-2 .title .title-left {
  flex: 1;
  margin-right: 10px;
}

.area-2 .progress {
  position: relative;
  width: 100%;
  height: 2px;
  background: #51568B;    
}

.area-2 .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  max-width: 100%;
  background: linear-gradient(90deg, #43FFAF 0%, #179DFF 100%);  
}

.area-2 .progress-bar.isFirstThree {
  background: linear-gradient(90deg, #E5DC77 0%, #F24B01 100%);
}

.area-2 .progress-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 0;
  width: 3px;
  height: 6px;
  transform: translateY(-50%);
  background: #fff;
}

.area-3 .list {
  margin-top: 20px;
  height: 400px;
  overflow: hidden;
}

.area-3 .list-item {
  width: 100%;
  height: 68px;
  /* background: rgba(52,173,255,0.24);
  border: 1px solid #01FFBC; */
  color: #fff;
  background: url(../imgs/comment-bg-default.png) no-repeat;
  background-size: 100% 68px;
  margin-bottom: 8px;
}

.area-3 .list-item:hover {
  background: url(../imgs/comment-bg.png) no-repeat;
  background-size: 100% 68px;
  transition: background .1s;
}

.area-3 .list-item:last-of-type {
  margin-bottom: 0;
}

.area-3 .list-item-inner {
  height: 60px;
  box-sizing: border-box;
  padding: 10px 12px;
  cursor: pointer;
}

.area-3 .info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 17px;
}

.area-3 .info .username {
  font-weight: 500;
}
 
.area-3 .con {
  margin-top: 6px;
  font-size: 14px;
  line-height: 17px;
}
    
.area-3::before {
  animation-duration: 3.5s;
}

.area-4 {
  margin-bottom: 28px;
}

.area-4 .table {
  margin-top: 28px;
  color: #fff;
}

.area-4 .table-head {
  display: flex;
  align-items: center;
  height: 41px;
  padding: 0 14px 0 8px;
  background: rgba(36, 108, 249, .5);
}

.area-4 .table-head .item:first-of-type {
  flex: 1;
}

.area-4 .table-head .item:last-of-type {
  margin-left: 41px;
}

.area-4 .table-con {
  margin-top: 20px;
  height: 450px;
  overflow: hidden;
}

.area-4 .table-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 8px;
}

.area-4 .table-item .keyword {
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
}

.area-4 .table-item .keyword .name {}

.area-4 .table-item .order {
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  border-radius: 50%;
  background: #050D4B;
  border: 1px solid #01FFBC;
  font-size: 17px;
  text-align: center;
  line-height: 22px;
  text-align: center;
  color: #01FFBC;
  margin-right: 12px;
}

.area-4 .table-item .order.order_1 {
  color: #fff;
  border: none;
  background: linear-gradient(180deg, #E5DC77 0%, #F24B01 100%);
}

.area-4 .table-item .order.order_2 {
  color: #fff;
  border: none;
  background: linear-gradient(180deg, #F0A58A 0%, #FC47A2 100%);
}

.area-4 .table-item .order.order_3 {
  color: #fff;
  border: none;
  background: linear-gradient(180deg, #43FFAF 0%, #179DFF 100%);
}

.area-4 .table-item .rank {
  width: 36px;
  text-align: center;
}

.area-4 .table-item .check {
  margin-left: 41px;
  color: #34ADFF;
  cursor: pointer;
}

.area-4 .table-item .check a,
.area-4 .table-item .check a:active,
.area-4 .table-item .check a:focus,
.area-4 .table-item .check a:hover {
  color: #34ADFF;
}

.area-4 .table-item:hover {
  background: url(../imgs/comment-bg.png) no-repeat;
  background-size: 100% 44px;
}

.area-4::before {
  animation-direction: reverse;
}

.area-5 .section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 368px;
  height: 200px;
  margin-top: 20px;
  background: url(../imgs/area-5.svg) no-repeat;
  background-size: cover;
}

.area-5 .list {
  min-height: 390px;
  color: #fff;
  margin-top: 26px;
}

.area-5 .list-item-left {
  flex: 1;
}

.area-5 .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.area-5 .list-item:last-of-type {
  margin-bottom: 0;
}

.area-5 .list-item > div {
  display: flex;
  align-items: center;
}

.area-5 .list-item .avatar {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 50%;
  overflow: hidden;
}

.area-5 .list-item .avatar img {
  width: 100%;
  height: 100%;
}

.area-5 .list-item .desc {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  flex-direction: column;
  height: 36px;
  flex: 1;
}

.area-5 .list-item .username {
  font-size: 14px;
  color: #fff;
  flex: 1;
}

.area-5 .list-item .info {
  display: flex;
  align-items: center;
}

.area-5 .line {
  width: 1px;
  height: 14px;
  background: #34ADFF;
  margin: 0 8px;
}

.area-5 .phone {
  font-size: 14px;
  opacity: 0.6;
}

.area-5 .type {
  font-size: 10px;
  opacity: 0.6;
}

.area-5 .date {
  font-size: 14px;
  opacity: 0.6;
}

.area-5::before {
  animation-direction: reverse;
}

.content_cen_bottom {
  width: 1040px;
  padding: 0 40px;
  box-sizing: border-box;
  margin: 0 auto;
}

.content_cen_bottom .area {
  margin-top: calc(80px + 32px);
  margin-bottom: 30px;
  width: 100%;
}

.content_cen_bottom .area .section {
  height: 515px;
}

.footer {
  width: 100%;
  height: 60px;
  background: url(../imgs/bottom.svg) no-repeat;
}

.pagination {
  text-align: center;
}


.el-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 4px;
}

.el-pager {
  display: flex;
  align-items: center;
}

.el-pagination .btn-prev, .el-pagination .btn-next,
.el-pager .number,
.el-pager .more {
  column-gap: 10px;
  height: 28px;
  line-height: 28px;
  width: 28px;
  text-align: center;
  border-radius: 2px;
  box-sizing: border-box;
  cursor: pointer;
  background-color: rgba(255, 255, 255, .2);
  border: 1px solid transparent;
  color: #fff;
  font-size: 13px;
  color: #fff;
}

.el-pager li.btn-quicknext, .el-pager li.btn-quickprev {
  color: #fff;
}

.el-pager .number,
.el-pager .more {
  margin: 0 5px;
}

.el-pager .number.active {
  border-color: #01FFBC;
  color: #01FFBC;
}
