.indexPop {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
}

.indexPop_bg {
    width: 20%;
  /*background: url(https://www.huatu.com/images/sk/24skbs/indexPop_bg.png) no-repeat;*/
	background: url(https://u3.huatu.com/uploads/allimg/220208/202006051.png) no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    padding: 2%;
    position: relative;
    margin-top: 15%;
    font-size: 14px;
}
.indexPop_ct{
	margin: 20% auto 0 auto;
	width:90%;
}
.indexPop_tit1 {
    font-size: 20px;
    font-family: "FZLanTingHeiS-DB-GB";
    color: rgb(255, 255, 255);
    text-align: center;
}

.indexPop_tit2 {
    font-size: 24px;
    /* font-family: "FZLanTingHeiS-H-GB"; */
    color: rgb(255, 255, 255);
    background: linear-gradient(to right, #fdedc4, #fffae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-top: 3%;
    font-weight: bolder;
}

.indexPop ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5%;
}

.indexPop ul li {
    width: 30%;
}

.indexPop ul li a {
    display: block;
    /*padding: 1% 0;*/
    background-color: rgb(254, 243, 210);
    box-shadow: inset 3.597px 3.473px 8px 0px rgba(255, 255, 255, 0.9);
    text-align: center;
    border-radius: 4px 30px 30px 30px;
    font-size: 14px;
    font-weight: bold;
    /* font-family: "FZLanTingHeiS-B-GB"; */
    color: rgb(130, 40, 33);
}

.indexPop_code img {
    display: block;
    width: 35%;
    max-height: 200px;
    margin: 6% auto 0;
}

.indexPop_code p {
    font-size: 16px;
    font-family: "FZLanTingHeiS-DB-GB";
    color: rgb(255, 255, 255);
    text-align: center;
    margin-top: 0%;
}

.indexPop_bot {
    border-radius: 4px 16px;
    background-color: rgb(255, 255, 255);
    opacity: 0.902;
    box-shadow: 0px 7px 18px 0px rgba(164, 19, 8, 0.004);
    padding: 4% 2% 4% 2%;
    margin-top: 4%;
}

.indexPop_bot span {
    display: block;
    background: #ffdcdc;
    text-align: center;
    font-size: 16px;
    font-family: "FZLanTingHeiS-DB-GB";
    color: rgb(57, 45, 45);
    padding: 4% 0;
}

.indexPop_bot a {
    margin-top:1%;
    display: block;
    width: 80%;
    padding: 1% 0;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(254, 243, 210);
    border-radius: 52px;
    background-image: -moz-linear-gradient(90deg, rgb(142, 16, 13) 0%, rgb(245, 32, 15) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(142, 16, 13) 0%, rgb(245, 32, 15) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(142, 16, 13) 0%, rgb(245, 32, 15) 100%);
    box-shadow: inset 3.597px 3.473px 8px 0px rgba(255, 255, 255, 0.9);
    position: relative;
    text-align: center;
    margin: 4% auto 0;
    font-size: 24px;
    font-family: "FZLanTingHeiS-B-GB";
    color: rgb(255, 255, 255);
}
.indexPop_bot a img{
    position: absolute;
    right: 6%;
    top: 40%;
    width: 18%;
    animation: pulsate-bck 1.4s ease-in-out infinite both;
}
@-webkit-keyframes pulsate-bck {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
              transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes pulsate-bck {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
              transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  
.indexPop_close{
    position: absolute;
    right: -3%;
    top: 5%;
    width: 6%;
    cursor: pointer;

}
@media screen and (max-width:1500px) {
    .indexPop_tit2{font-size: 30px;}
}
@media screen and (max-width:1400px) {
	.indexPop_ct{margin-top: 25%;}	
    .indexPop_tit2{font-size: 24px;}
    .indexPop_tit1{font-size: 16px;}
    .indexPop ul li a{font-size: 12px;}
    .indexPop_bot a{font-size: 14px;}
    .indexPop_bot span{font-size: 14px;}
	.indexPop_code{padding:2%;}
    .indexPop_code p{font-size: 14px;}
	
	.indexPop ul {
		width: 90%;
		margin: 5% auto;
		justify-content: space-evenly;
	}
}