body {
  font-family: "Montserrat", serif;
  color: #222222;
}

[v-cloak] {
  display: none !important;
}

/*common css*/
.d-block {
  display: block;
}

.m-5 {
  margin: 5px;
}

.m-10 {
  margin: 10px;
}

.m-20 {
  margin: 20px;
}

.m-30 {
  margin: 30px;
}

.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-70 {
  margin-top: 70px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mx-5 {
  margin-left: 5px;
  margin-right: 5px;
}

.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.px-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.fz-12 {
  font-size: 12px;
}

.fz-14 {
  font-size: 14px;
}

.fz-16 {
  font-size: 16px;
}

.fz-18 {
  font-size: 18px;
}

.fz-20 {
  font-size: 20px;
}

.fz-24 {
  font-size: 24px;
}

.fz-28 {
  font-size: 28px;
}

.fz-32 {
  font-size: 32px;
}

.fz-36 {
  font-size: 36px;
}

.full-image {
  width: 100%;
  height: auto;
}

.hide {
  display: none;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-fill {
  flex: 1;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.block {
  display: block;
}

.w100p {
  width: 100%;
}

.h100p {
  height: 100%;
}

.bg-primary {
  background: #004df0;
}

.bg-success {
  background: #53ac5b;
}

.bg-danger {
  background: #ea5527;
}

.color-primary {
  color: #004df0;
}

.color-success {
  color: #53ac5b;
}

.color-danger {
  color: #ea5527;
}

.br-10 {
  border-radius: 10px;
}

.br-4 {
  border-radius: 4px;
}

.br-2 {
  border-radius: 2px;
}

.br-6 {
  border-radius: 6px;
}

.br-8 {
  border-radius: 8px;
}

.overflow-hidden {
  overflow: hidden;
}

.fwb {
  font-weight: bold;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.fwn {
  font-weight: normal;
}

.cursor-pointer {
  cursor: pointer;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.line-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/*page css*/
.container {
  width: 100%;
  min-height: 100%;
  background: url("../images/tracker/banner-bg.webp") no-repeat top;
  background-size: 100% auto;
  max-width: 100% !important;
}

.wrap {
  max-width: 1264px;
  margin: 0 auto;
}

.search-content {
  background: url("../images/tracker/banner-search.svg") no-repeat center;
  height: 250px;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 10px;
}

.search {
  width: 560px;
  height: 64px;
  border: 2px solid #004df0;
  border-radius: 4px;
  display: flex;
  position: relative;
}

.search-input {
  flex: 1;
  padding: 0 20px;
  font-size: 18px;
  border: none;
  border-radius: 4px 0 0 4px;
}

.search-input:focus {
  outline: none;
}

.search-btn {
  width: 90px;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #004df0;
  color: #fff;
  cursor: pointer;
}

.search-result {
  position: absolute;
  left: -2px;
  border: 2px solid #004df0;
  border-top: none;
  top: 64px;
  border-radius: 0 0 4px 4px;
  background: #fff;
  width: 470px;
  z-index: 99;
}

.search-item-image {
  width: 80px;
  height: 45px;
  flex-shrink: 0;
}

.search-highlight {
  background: #fbf719;
}

.top-content {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.top-item {
  flex: 1;
  overflow: hidden;
}

.top-item-head {
  font-size: 20px;
  color: #fff;
  height: 54px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-item-list {
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 10px 20px;
  min-height: 500px;
}

.top-item-project {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.top-item-image {
  width: 80px;
  height: 45px;
  position: relative;
  flex-shrink: 0;
}

.top-item-image img {
  border-radius: 4px;
}

.rank-num {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: #fff;
  font-size: 12px;
  border-radius: 10px;
}

.tag-item {
  padding: 0 13px;
  height: 17px;
  line-height: 17px;
  background: #eeeeee;
  border-radius: 10px;
  font-size: 12px;
}

.featured-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.featured-item {
  width: 285px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.featured-item-image {
  width: 100%;
}

.featured-item-pledge {
  height: 59px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: auto;
}

.featured-item-tag {
  padding: 0 15px;
  height: 30px;
  line-height: 30px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.featured-item-tag.tag-Technology {
  background: rgba(0, 77, 240, 0.1);
  border: 1px solid #004df0;
  color: #004df0;
}

.featured-item-tag.tag-Design {
  background: rgba(0, 157, 14, 0.1);
  border: 1px solid #53ac5b;
  color: #53ac5b;
}

.featured-item-tag.tag-Games {
  background: rgba(234, 85, 39, 0.1);
  border: 1px solid #ea5527;
  color: #ea5527;
}

.trend-item {
  display: flex;
}

.trend-categories {
  padding-top: 67px;
}

.trend-category {
  width: 109px;
  height: 46px;
  line-height: 46px;
  background: #ffffff;
  border-radius: 10px 0 0 10px;
  border: 1px solid #404040;
  border-right: none;
  margin-bottom: 10px;
  text-align: center;
  font-size: 22px;
}

.trend-category.active {
  background: #404040;
  color: #fff;
}

.trend-result {
  flex: 1;
}

.trend-num {
  padding: 30px 25px;
  background: #ffffff;
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #404040;
  text-align: center;
}

.trend-launched {
  width: 100%;
  height: 63px;
  line-height: 63px;
  background: rgba(0, 77, 240, 0.1);
  border-radius: 5px 5px 5px 5px;
}

.trend-successed {
  width: 100%;
  height: 63px;
  line-height: 63px;
  background: rgba(0, 157, 14, 0.1);
  border-radius: 5px 5px 5px 5px;
}

.trend-download {
  text-decoration: underline;
}

.banner-search {
  width: 100%;
  padding: 30px 0;
  background: #ebf0ff;
  display: flex;
  justify-content: center;
}

.project-image {
  width: 615px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  font-size: 0;
}

.project-tag {
  position: absolute;
  left: 15px;
  bottom: 15px;
}

.project-cate {
  padding: 0 10px;
  height: 24px;
  line-height: 24px;
  display: inline-block;
  background: rgba(79, 158, 114, 0.54);
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
}

.project-location {
  padding: 0 10px;
  height: 24px;
  line-height: 24px;
  display: inline-block;
  background: rgba(0, 77, 240, 0.5);
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
}

.project-btn {
  width: 475px;
  height: 55px;
  line-height: 55px;
  background: #004df0;
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.project-progress {
  width: 100%;
  height: 10px;
  background: #d9d9d9;
  border-radius: 13px;
}

.project-progress-bar {
  height: 10px;
  background: #53ac5b;
  border-radius: 13px;
}

.project-pledged {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  border: 1px solid #404040;
  display: flex;
  padding: 30px 0;
  box-sizing: content-box;
}

.project-pledged.successful {
  background: #67c23a12;
  border: 1px solid #67c23a;
}

.project-pledged.failed {
  background: #f1f1f1;
}

.project-pledged-item {
  border-right: 1px solid #404040;
  padding: 0 20px;
  flex: auto;
  text-align: center;
}

.project-pledged-item:last-of-type {
  border-right: none;
}

.chart-content {
  width: 100%;
  height: 560px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.chart-head {
  height: 90px;
  background: #f2f2f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  padding: 0 30px;
}

.chart-item {
  height: 470px;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.tabs {
  border-bottom: 1px solid #e6e6e6;
  display: flex;
}

.tab {
  font-size: 20px;
  padding: 0 30px;
  height: 45px;
  line-height: 45px;
  color: #9a9a9a;
  font-weight: 600;
}

.tab.active {
  border-bottom: 1px solid #000000;
  color: #404040;
}

.tips-color {
  color: #9a9a9a;
}

.list-featured {
  position: relative;
  border: 1px solid #9a9a9a;
  border-radius: 10px;
  padding: 10px;
  width: 244px;
}

.list-featured-head {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  padding: 5px 10px;
  background: #fff;
  white-space: nowrap;
}

.list-container {
  align-items: flex-start;
}

.category-list {
  padding-top: 30px;
}

.category-item {
  width: 140px;
  height: 46px;
  line-height: 46px;
  background: #ffffff;
  border-radius: 10px 0 0 10px;
  border: 1px solid #9a9a9a;
  border-right: none;
  margin-bottom: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.category-item.active {
  background: #404040;
  color: #fff;
}

.list-projects {
  border: 1px solid #9a9a9a;
  border-radius: 10px;
  padding: 25px;
  min-height: 1000px;
}

.list-projects-head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.list-projects-item {
  display: flex;
  padding: 20px 0;
  border-top: 1px solid #9a9a9a;
}

.list-projects-item-image {
  width: 235px;
  overflow: hidden;
  margin-right: 10px;
  flex-shrink: 0;
}

.image-with-tag {
  position: relative;
  font-size: 0;
}

.pwl-tag {
  background: url("../images/tracker/icon-pjw.webp") no-repeat;
  display: inline-block;
  background-size: 100%;
  width: 102px;
  height: 19px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.list-projects-item-image img {
  border-radius: 6px;
}

.list-projects-item-funded {
  color: #06ce78;
  font-size: 12px;
  font-weight: 600;
}

.list-projects-item-upcoming {
  font-size: 12px;
  color: #979797;
  font-weight: 600;
}

.list-item-pledged {
  display: flex;
  align-items: center;
}

.list-item-pledged-group {
  display: flex;
}

.list-item-pledged-group:nth-child(2) {
  border-left: 2px solid rgb(64, 64, 64);
  padding-left: 8px;
}

.list-item-pledged-item {
  margin-right: 20px;
  margin-bottom: 8px;
}

.list-item-pledged-btn {
  font-size: 14px;
  background: #004df0;
  padding: 0 15px;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
}

.el-button--primary {
  background-color: #004df0;
  border-color: #004df0;
}

.countdown-container {
  display: flex;
  justify-content: left;
  align-items: center;
}

.countdown-element {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 50px;
  border: 2px solid #212121;
  background-color: #ffffff;
  margin: 0 5px;
}

.countdown-days,
.countdown-hours,
.countdown-minutes,
.countdown-seconds {
  font-size: 24px;
  font-weight: bold;
  color: #212121;
}

.countdown-label {
  font-size: 12px;
  color: #212121;
}

/*pad*/
@media (min-width: 640px) and (max-width: 1280px) {
  .mobile-mt-20 {
    margin-top: 20px !important;
  }

  .mobile-mb-20 {
    margin-bottom: 20px !important;
  }

  .mobile-ml-0 {
    margin-left: 0 !important;
  }

  .mobile-fz-16 {
    font-size: 16px !important;
  }

  .tracker-index {
    padding: 30px 20px;
  }

  .search-content {
    height: calc(calc(calc(100vw - 40px) * 250) / 1264);
  }

  .top-content {
    margin-top: 20px;
  }

  .top-item {
    margin-bottom: 20px;
    width: 100%;
  }

  .trend-item-box {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .featured-item {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }

  .tabs {
    padding: 0 20px;
  }

  .list-container {
    padding: 0 20px;
  }

  .list-projects-item {
    flex-direction: column;
  }

  .list-projects-item-image {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .list-featured {
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .tarcker-detail {
    padding: 30px 20px;
  }

  .project-info-content {
    flex-direction: column;
  }

  .project-image {
    width: 100%;
    height: auto;
  }

  .project-info {
    width: 100%;
  }

  .project-pledged-item {
    padding: 0 10px;
  }

  .project-pledged-item .fz-28 {
    font-size: 22px;
  }

  .project-pledged-item .fz-18 {
    font-size: 14px;
  }
}

/*Mobile*/
@media (max-width: 640px) {
  .mobile-mt-20 {
    margin-top: 20px !important;
  }

  .mobile-mb-20 {
    margin-bottom: 20px !important;
  }

  .mobile-ml-0 {
    margin-left: 0 !important;
  }

  .mobile-fz-16 {
    font-size: 16px !important;
  }

  .mobile-flex-wrap {
    flex-wrap: wrap !important;
  }

  .container {
    background: none;
  }

  .wrap {
    padding: 20px 15px;
  }

  .search-content {
    background: none;
    border: none;
    height: auto;
  }

  .top-content {
    margin-top: 20px;
  }

  .top-item {
    margin-bottom: 20px;
  }

  .tag-item {
    padding: 0 5px;
  }

  .featured-item {
    width: 100%;
    margin-top: 20px;
  }

  .featured-item-image {
    height: auto;
  }

  .trend-launched {
    width: 198px;
  }

  .trend-successed {
    width: 198px;
  }

  .banner-search {
    padding: 20px 15px;
    box-sizing: border-box;
  }

  .project-image {
    width: 100%;
    height: auto;
  }

  .project-info {
    width: 100%;
  }

  .project-btn {
    width: 100%;
  }

  .project-pledged {
    flex-wrap: wrap;
    height: auto;
  }

  .project-pledged-item {
    border-right: none;
    padding-bottom: 30px;
    width: 100%;
    position: relative;
  }

  .project-pledged-item::after {
    content: "";
    position: absolute;
    height: 1px;
    background: #404040;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
  }

  .project-pledged-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .project-pledged-item:last-of-type::after {
    display: none;
  }

  .chart-head {
    font-size: 24px;
    padding: 20px;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .tabs {
    display: none;
  }

  .mobile-tabs {
    display: block;
    width: 100%;
  }

  .list-container {
    flex-direction: column;
  }

  .category-list {
    display: none;
  }

  .list-projects {
    padding: 15px;
  }

  .list-projects-head {
    font-size: 18px;
  }

  .list-content {
    display: block;
  }

  .list-projects-item {
    flex-direction: column;
  }

  .list-projects-item-image {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .list-featured {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 30px;
    box-sizing: border-box;
  }

  .list-featured-head {
    font-size: 14px;
  }

  .list-item-pledged {
    flex-wrap: wrap;
  }

  .list-item-pledged-group:nth-child(2) {
    border-left: none;
    padding-left: 0;
  }

  .upcoming.list-item-pledged .list-item-pledged-item:last-of-type {
    margin-top: 10px;
    margin-left: 0 !important;
  }

  .el-dropdown-menu {
    width: calc(100vw - 30px);
  }
}
