/* left */
.inner .left {
  position: relative;
  float: left;
  overflow: hidden;
  background-color: #f5f5f7;
  border-radius: 10px;
}
.inner .left .user {
  position: absolute;
  width: 30%;
  height: 30%;
  /* 居中显示 */
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  cursor: pointer;
}
.inner .left .user img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 5px #5c7b1e, 0 0 3px #d8ff46;
  transition: all 0.3s ease-out;
}
.inner .left .user img:hover {
  /* 旋转放大 */
  transform: rotate(360deg) scale(1.2);
}
.inner .left h1 {
  position: relative;
  margin-top: 18%;
  font-size: 40px;
  text-align: center;
}
.inner .left .link {
  display: flex;
  width: 60%;
  margin: 20px auto 0 auto;
  /* 让元素平均分配宽度 */
  justify-content: space-around;
  border-radius: 10px 10px 0 0;
  background: #56ab2f; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to left,
    #a8e063,
    #56ab2f
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to left,
    #a8e063,
    #56ab2f
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.inner .left .link img {
  width: 25%;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.inner .left .link img:hover {
  transform: scale(0.8);
}
/* left end  */

/* right */
.inner .right {
  float: left;
  margin-top: 15px;
  border-radius: 10px;
  background-color: #f5f5f7;
}
.inner .right .rightTop h1 {
  font-size: 20px;
  border-bottom: 2px solid #1d1d1f;
}
.inner .left .leftBottom .leftText {
  margin-top: 4%;
  border-radius: 10px;
  /* 背景居中 */
  background: url(https://shabox.oss-cn-beijing.aliyuncs.com/B/tianTai%28xsr%29.jpg)
    no-repeat center;
  background-size: cover;
}
/* left end  */

/* right */
.inner .right {
  padding: 0 2% 2% 2%;
}
.inner .right .rightTop {
  margin-top: 2%;
}
.inner .right .rightTop h1 {
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  border-bottom: 2px solid #1d1d1f;
}
.inner .right .rightTop .rightText1 {
  margin-top: 4%;
  text-shadow: 1px 1px 1px #1d1d1f;
  border-radius: 10px;
  /* 背景居中 */
  background: url(https://shabox.oss-cn-beijing.aliyuncs.com/BG/tianTai%28xsr%29.jpg)
    no-repeat center;
  background-size: cover;
}
.inner .right .rightTop .rightText1 .IDcard {
  text-align: center;
  text-indent: 0;
  font-size: 20px;
  line-height: 30px;
}
.inner .right .rightTop .rightText1 p {
  color: #f5f5f7;
  margin: 0 4%;
  padding: 4% 0;
  /* 首行缩进 */
  text-indent: 2em;
  line-height: 20px;
  /* 模糊 */
  backdrop-filter: blur(2px);
}
.inner .right em {
  color: yellowgreen;
  font-weight: bold;
}

.inner .right .rightBottom {
  margin-top: 2%;
}
.inner .right .rightBottom h1 {
  font-size: 20px;
  line-height: 50px;
  border-bottom: 2px solid #1d1d1f;
  text-align: center;
}
.inner .right .rightBottom .rightText2 {
  margin-top: 4%;
  border-radius: 10px;
  text-shadow: 0px 1px 1px #1d1d1f;
  /* 背景居中 */
  background: url(https://shabox.oss-cn-beijing.aliyuncs.com/BG/tianTai.jpg)
    no-repeat center;
  background-size: cover;
}
.inner .right .rightBottom .rightText2 p {
  color: #f5f5f7;
  margin: 0 4%;
  padding: 4% 0;
  /* 首行缩进 */
  text-indent: 2em;
  line-height: 20px;
  /* 模糊 */
  backdrop-filter: blur(2px);
}
/* right end  */

/* bottom */
.inner .bottom {
  display: flex;
  float: left;
  width: 100%;
}
.inner .bottom h1 {
  line-height: 40px;
  text-align: center;
  border-bottom: 1px solid #1d1d1f;
}
.inner .bottom h1 em {
  font-size: 12px;
  color: rgb(165, 165, 165);
}
.inner .bottom img {
  width: 100%;
  margin-top: 10px;
}
.inner .bottom .qqqQR {
  float: left;
  width: 150px;
  margin: auto;
}
.inner .bottom .wxQR {
  float: left;
  width: 150px;
  margin: auto;
}
/* bottom end  */

@media (min-width: 768px) {
  .inner .left {
    float: left;
    width: 50%;
  }
  .inner .right {
    float: right;
    margin: 0;
    width: 44%;
  }
  .right .rightTop {
    float: left;
    width: 48%;
  }
  .right .rightBottom {
    float: right;
    width: 48%;
  }
  .inner .bottom {
    width: 50%;
  }
}
