/* banner */
.banner{
  background: linear-gradient(135deg, #214397 0%, #3779E9 100%);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}
.banner-img{
  height: 80%;
}
/* .banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s infinite linear;
}
@keyframes float {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} */

.page-body{
  background-image: url('../img/bg.png');
  background-size: 100% auto;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 3.75rem;
}
.page-box{
  background-color: rgba(255, 255, 255, 0.5);
}
.page-title span{
  background-image: linear-gradient(180deg, #079BF7 0%, #0E67CC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* 平台简介&入驻指南 */
.platform-box{
  position: relative;
  overflow: hidden;
  max-height: 20rem;
}
.platform-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .75rem;
}
.platform-text{
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--bs-gutter-x) * .5);
  right: calc(var(--bs-gutter-x) * .5);
  padding-right: calc(var(--bs-gutter-x));
  padding-left: calc(var(--bs-gutter-x));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* 平台动态 */
#newsBanner .carousel-indicators button {
  width: .625rem;
  height: .625rem; 
  border-radius: 50%;
}
.news-banner-img{
  width: 100%;
  height: 27.5rem;
  object-fit: cover;
}
.news-banner-title{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(14, 103, 204, 0.5) 0%, rgba(14, 103, 204, 1) 100%);
}
.news-banner-date{
  font-size: 0.875rem;
}
.news-banner-label{
  font-size: 1.125rem;
}
.news-ul{
  display: flex;
  flex-direction: column;
}
.news-li{
  flex: 1;
  background-color: #fff;
  border-radius: .25rem;
}
.news-li-title{
  font-size: 1.125rem;
  color: #363636;
  font-weight: 600;
}
.news-li-tag{
  color: #fff;
  background-color: #0E67CC;
  border-radius: .25rem;
  margin-right: .625rem;
}
.news-li-label{
  font-size: 0.875rem;
  color: #666;
  margin-top: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-more{
  color: #999;
  text-align: right;
  text-decoration: none;
  margin-top: .75rem;
}
/* 入住机构 */
.org-ul{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1.25rem;
}
.org-li{
  background-color: #fff;
  border-radius: .375rem;
  overflow: hidden;
  /* box-shadow: 0 .5rem 1.25rem .25rem rgba(72, 102, 125, .08); */
  box-shadow: 0 .25rem .375rem rgba(0, 0, 0, .07);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.org-li:hover {
  transform: translateY(-.3125rem);
  box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .1);
}
.org-li > img{
  width: 100%;
  height: 8.44rem; /* 16/9 */
  object-fit: contain;
}

.org-li-title{
  flex: auto;
  text-align: center;
  padding-top: 1rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 联系我们 */
.contact-ul{
  padding: 2rem 2.5rem;
  background-color: #fff;
  border-radius: .25rem;
  box-shadow: 0 .5rem 1.25rem .25rem rgba(72, 102, 125, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-li{
  flex: 1;
  margin-bottom: 1rem;
}
.contact-li-title{
  font-size: 1.125rem;
  font-weight: bold;
}
.contact-li-title > i{
  color: #079BF7;
}
.contact-li-label{
  border-top: 1px solid #eee;
}