body {
  margin: 0;
}

.align-center {
  display: flex;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 2rem;
  cursor: pointer;
}
.logo img {
  width: 2.5rem;
  height: 2.5rem;
  margin-right:0.3rem;
}

.logo-title {
  font-weight: 400;
  font-size: 1.2rem;
}

.vip-btn .login {
  background-color: #14c9c9;
  color: #fff;
  margin:1rem 0;
}

.vip-btn a {
  height: 2.1rem;
  border-radius: 0.9rem;
  font-size: 0.9rem;
  border: #14c9c9 1px solid;
  min-width: 7rem;
  color: #14c9c9;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  text-align: center;
}

.vip-btn a:hover {
  background-color: #10b4b4;
  color: #fff;
}

/**链接*/
a {
  text-decoration: none;
  color: #4e5969;
}
a:hover {
  color: #14c9c9;
  text-decoration: none;
}

/**Banner**/
.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  font-size: 2rem;
  color: #86909c;
  padding: 1rem 0;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.info-section {
  padding: 3.6rem 13rem;
}

.info-section .title {
  font-size: 2rem;
  text-wrap: nowrap;
}

.info-section .sub-title {
  font-size: 1.5rem;
  padding:1rem 0;
  text-wrap: nowrap;
}

.info-section .content {
  font-size:1.2rem;
  color:#4e5969;
}

.card {
  border-radius: 0.5rem;
  border: 0;
  background-color: #f4fefc;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  min-height:12rem;
}

.card-title {
  font-size: 1.3rem;
  font-weight: bold;
}

.card-img{
  width: 3.9rem;
  height: 3.9rem;
}

.color-jw {
  color: #00aa99;
}
.color-hy {
  color: #ff510d;
}
.color-gray{  
  background-color: #f5f8ff;
}

.color-red {
  color: #f53f3f;
}

.color-arcoblue {
  color: #165dff;
}

.color-pinkpurple {
  color: #d91ad9;
}

.contact-me {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem;
  color: #666;
}

.contact-me .title {
  font-size: 1.5rem;
  color: #4e5969;
  margin-bottom: 1rem;
}

.contact-me-item {
  margin: 0.3rem 0;
  text-align: left;
}

/**页脚*/
.footer {
  color: #e2e2e2;
  font-size: 0.9rem;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #4e5969;
}
.footer a {
  margin-left: 0.2rem;
  color: #e2e2e2;
}

.nav-item-a {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav-item-a:hover {
  background-color: #e8ffea;
}

.nav-item-img {
  width: 1rem;
  margin-right: 0.3rem;
}

.product-img{
  width:498px;
}

.navbar{
  padding:0.5rem 5rem;
}

.span-round{
  justify-content: space-around;
}


/*** 屏幕适配 ****/
@media (min-width: 576px) {
  .footer {
    display: flex;
    justify-content: center;
  }
  .main-header-bg-cover {
    height: 398px;
  }
  .contact-me {
    height: 218px;
  }

}

@media (min-width: 768px) and (max-width: 991.98px) {
  .card {
    font-size: 1rem;
  }

  .info-section {
    padding: 5rem 5rem;
  }
}

@media(max-width:768px){
  .logo{
    margin-right:0;
  }

   .info-section {
    padding: 1rem 2.5rem;
  }
  .info-section .title{
    font-size:1.5rem;
  }
  .info-section .sub-title{
    font-size:1.2rem;
  }
  .info-section .content {
    font-size:1rem;
  }
  
  .product-img{
   width: 79vw;
  }

  .product-desc{
    margin:1rem 0;
  }

  .card{
    font-size: 0.9rem;
    margin:0.5rem 0;
  }
  .card-title{
    font-size:1rem;
  }
  .contact-me .title{
    font-size:1.3rem;
  }
}