body {
  font-family: "Microsoft YaHei", sans-serif;
}

a {
  text-decoration: none;
}
/* --banner部分 */

#banner {
  background-color: pink;
  background: url(../img/city/banner.jpg);
  padding: 40px;
  background-size: cover;
  position: relative;
}
#banner::before {
  /* 添加这个伪元素 */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.2
  ); /* 这里的 0.5 是半透明度，你可以根据需要调整 */
}

#banner h1 {
  font-size: 60px;
  color: #fff;
}
#banner p {
  font-size: 35px;
  color: #fff;
}
#banner p:nth-child(2) {
  color: #fff;
}
#banner p:nth-child(3) {
  color: #fff;
}

@media (max-width: 1200px) {
  #banner h1 {
    font-size: 60px;
  }
  #banner p {
    font-size: 25px;
  }
}
@media (max-width: 400px) {
  #banner h1 {
    font-size: 30px;
  }
  #banner p {
    font-size: 15px;
  }
}

/* --banner部分 */

/* ----关于我们---- */

#about-me img {
  /* object-fit: cover; */
  height: 380px;
  border-radius: 2px;
}

/* ----关于我们---- */

/* ----showcard部分---- */
#show-card {
  background-color: #fff;
}
#show-card .my-card {
  height: auto;
  margin: 10px;
  padding: 40px;
  border: 2px solid #fff;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

#show-card .my-card:hover {
  border: 2px solid #007bff;
  border-radius: 3px;
}
/* show-card部分的动画 */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

.my-card:nth-child(odd) {
  animation: slideInFromLeft 1s forwards;
}

.my-card:nth-child(even) {
  animation: slideInFromRight 1s forwards;
}
/* show-card部分的动画 */

.my-card b {
  margin: 1px;
}

.my-card b::before {
  display: block;
  content: "";
  width: 29px;
  height: 29px;
  background-image: url(../img/city/fl3.png);
  float: left;
  margin: 2px 8px 0 0;
}

.my-card :nth-child(2) b::before {
  background-position: -29px 0;
}
.my-card :nth-child(3) b::before {
  background-position: -58px 0;
}

.my-card :nth-child(4) b::before {
  background-position: -87px 0;
}

/* ----showcard部分---- */

/* ----伙伴---- */

/* ----伙伴---- */

/* ----服务---- */
#service .img-box {
  height: 130px;
  width: 100%;
  margin: 10px;
}
#service img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.btn-primary:hover {
  box-shadow: 02px 10px 15px rgba(3, 138, 255, 0.3);
}

/* ----服务---- */

/* ----系统展示---- */
#show-system .card-body div {
  width: 100%;
  height: 230px;
  /* padding-top:56.25% ; */
  /* overflow: hidden; */
  /* height: 200px; */
}

#show-system img {
  width: 100%;
  height: 100%;

  /* height: 200px; */
  box-shadow: 02px 10px 15px rgba(0, 0, 0, 0.3);
}

#show-system .img-16-9 {
  object-fit: cover;
}
#show-system .img-phone {
  object-fit: contain;
}

/* ----系统展示---- */

/* ----地区部分---- */
#area {
  background-color: #f2f2f2;
}

#area .list-unstyled a {
  display: inline-block;
  width: 160px;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  border-radius: 0px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
  #area .list-unstyled a {
    width: 120px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  #area .list-unstyled a {
    width: 90px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}

#area .list-unstyled a:hover {
  /*background: linear-gradient(to right, #4e92ff, #8074fe);*/
  color: #fff;
  /*box-shadow: 0 2px 10px 0 rgba(3, 138, 255, 0.3);*/
  text-decoration: none;
}

/* ----地区部分---- */

/* ----新闻---- */
#news a {
  color: #30343e;
  margin: 3px 0;
}
#news hr {
  border-width: 2px;
}

#news img {
  margin: 10px;
}

/* ----新闻---- */

#other .card {
  height: 200px;
}
/* ----其他产品---- */
#other .col-md-4:nth-child(1) .card-body  {
  border-radius: 5px;
  background: url(../img/city/other_1.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}   
#other .col-md-4:nth-child(2) .card-body  {
  border-radius: 5px;
  background: url(../img/city/other_2.jpg);
  background-size: 100% 100%;

  background-repeat: no-repeat;
}

#other .col-md-4:nth-child(3) .card-body  {
  border-radius: 5px;
  background: url(../img/city/other_3.jpg);
  background-size: 100% 100%;

  background-repeat: no-repeat;
}

#other .col-md-4:nth-child(4) .card-body  {
  border-radius: 5px;
  background: url(../img/city/other_4.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
#other .col-md-4:nth-child(5) .card-body  {
  border-radius: 5px;
  background: url(../img/city/other_5.jpg);
  background-size: 100% 100%;

  background-repeat: no-repeat;
}

#other .col-md-4:nth-child(6) .card-body  {
  border-radius: 5px;
  background: url(../img/city/other_6.jpg);
  background-size: 100% 100%;

  background-repeat: no-repeat;
}

#other .card-body h4 {
  color: #fff;
}
#other .card-body p {
  color: #fff;
  font-size: 14px;
}

/* ----其他产品---- */


.clink{text-decoration:underline;}
.city1{color:#ccc !important;font-size:12px !important;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}