@charset "utf-8";
body {
  /* margin: 0;
  height: 100vh;
  background: linear-gradient(45deg, #ff0080, #ff8c00, #00bfff, #ff1493);
  background-size: 400% 400%;
  animation: gradientBackground 15s ease infinite; */
}

@keyframes gradientBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 20px;
}
.content {
  padding-top: 40px;
  padding-bottom: 40px;
  /*
background-color: rgba(255, 255, 255, 0.4); 
border-radius: 20px;
box-shadow: 0 6px 30px rgba(255, 255, 255, 0.7);
*/
}

.template-common {
  padding: 0 235px;
}

.t-icon {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  margin: 0 auto;
  img {
    width: 105px;
    height: 105px;
    border-radius: 30px;
    border: 1px solid #e5e5e5;
    margin: 0 auto;
    max-width: 100%;
    display: block;
  }
}

.glyphicon-hand-right:before {
  content: "\e127";
}

.template-common .t-name {
  color: #333;
  text-align: center;
}

.template-common .t-name .tit {
  font-size: 28px;
  margin-bottom: 10px;
  margin-top: 15px;
}

.template-common .t-name .name-info span {
  margin-right: 10px;
  color: #666;
}

.template-common .t-apply {
  color: #666;
  text-align: center;
}

.template-common .t-code {
  color: #666;
  width: 200px;
  overflow: hidden;
  margin: 35px auto 0;
  text-align: center;
}
.template-common .t-code img {
  border: 1px solid #e5e5e5;
  width: 150px;
  height: 150px;
  margin: 0 auto 5px;
}
.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}
.template-common .t-introduce {
  color: #333;
}
.template-common .t-introduce .tit {
  font-size: 20px;
  margin-top: 25px;
}

.template-common .t-introduce p {
  margin-top: 5px;
}

.dialog {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: none;
  border: none;
}
.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.block {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin: 20px;
}
.block .icon-close {
  position: absolute;
  right: 10px;
  top: 10px;
}
.block .content {
  width: 100%;
  padding: 30px 20px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  background: linear-gradient(135deg, #43beff, #3ba2f9);
}
.block .content img {
  width: 50px;
  height: 50px;
  border: 3px solid #fff;
  border-radius: 50%;
  margin-right: 15px;
}
.block .content .text-safari {
  color: red;
}
.bottom {
  background: #fff;
  padding: 20px 10px;
  text-align: center;
}

.bottom .btn-copy {
  width: 200px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #43beff, #3ba2f9);
  border-radius: 50px;
  height: 40px;
  border: none !important;
  outline: none;
}

.close{
  font-size: 30px;
  color:#fff;
  position: absolute;
  right: 10px;
  top: 3px;
}

.toast{
  position: fixed;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.8);
  color:#fff;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 99999;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

@media (min-width: 1170px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1300px) {
  .container {
    width: 1300px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 312.5%;
  }
  body {
    font-size: 0.28rem;
  }
  .content {
    padding-top: 40px;
  }
  .template-common {
    padding: 0;
  }
  .template-common .t-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
  }
  .template-common .t-icon img {
    width: 65px;
    height: 65px;
    border-radius: 15px;
    margin: 0 auto;
  }
  .template-common .t-name .tit {
    margin-top: 10px;
    font-weight: 600;
    margin-top: 0.3rem;
    font-size: 0.4rem;
    margin-bottom: 8px;
  }
  .template-common .t-name .name-info span {
    color: #999 !important;
  }
  .template-common .t-name .name-info span:last-of-type {
    display: block;
    margin-top: 5px;
  }
  .template-btn-wrap {
    border-top: 1px solid #e5e5e5;
    margin-top: 25px;
    text-align: center;
  }
  .t-apply {
    color: #999 !important;
    font-size: 0.24rem;
  }

  .template-common .template-btn {
    padding: 0 35px;
    height: 36px;
    line-height: 36px;
    border-radius: 20px;
    text-align: center;
    font-size: 0.32rem;
    color: #fff;
    background-color: #157df1;
    margin: 35px auto 15px;
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    margin-bottom: 0.2rem;
  }
  a,
  a:focus,
  a:hover,
  a:active {
    outline: 0 !important;
  }
  .template-common .t-code {
    color: #999;
    font-size: 0.24rem;
    margin-top: 25px;
    width: 200px;
  }
  .template-common .t-code img {
    width: 130px;
    height: 130px;
  }
  .template-common .t-introduce .tit {
    font-size: 0.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 25px;
  }
  .template-common .t-introduce p {
    font-size: 0.24rem;
    margin-top: 5px;
  }
}
