* {
    margin: 0px;
    padding: 0px;
    border: 0px;
    -webkit-tap-highlight-color: rgba(0, 0,0, 0);
}

html, body {
    height: 100%;
    -webkit-tap-highlight-color: transparent;
	
}
@font-face {
	font-family: 'ttq'; /* 自定义字体名称 */
	src: url('../font/HYBiRanTianTianQuanW.ttf') format('truetype'); /* 字体文件路径和格式 */
  }
  .ttq {
	font-family: "ttq";
  }
@media screen and (max-device-width:414px) {
    html {
        font-size: 120%;
    }
}

@media screen and (max-device-width:375px) {
    html {
        font-size: 110%;
    }
}

@media screen and (max-device-width:320px) {
    html {
        font-size: 90.5%;
    }
}
input::placeholder {
  color: #d0d5d9; /* 设置颜色 */  
}
textarea::-webkit-input-placeholder {
    color: #d0d5d9;
}

textarea::-moz-placeholder { /* Mozilla Firefox 19+ */

    color: #d0d5d9;
}

textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */

    color: #d0d5d9;
}

textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */

    color: #d0d5d9;
}
.posA{
	position: absolute;
}
.posR{
	position:relative;
}
.posF{
	position:fixed;
}
.show{
	opacity: 1 !important;
}
.star {
    position: absolute;
    top: -0.3rem;
    left: -0.68rem;
    width: 1.37rem;
    height: 1.37rem;
    -webkit-animation: flash 5s .2s ease infinite;
    -moz-animation: flash 5s .2s ease infinite;
}
.star1 {
    position: absolute;
    top: -0.3rem;
    left: 2.44rem;
    width: 1.37rem;
    height: 1.37rem;
    -webkit-animation: flash 5s .6s ease infinite;
    -moz-animation: flash 5s .6s ease infinite;
}
.guang1 {
    position: absolute;
    top: -0.14rem;
    left: 0.24rem;
    width: 1.42rem;
    height: .29rem;
    -webkit-animation: fadeOutRight 1.5s .2s infinite ease normal none;
    -moz-animation: fadeOutRight 1.5s .2s infinite ease normal none;
}
@-moz-keyframes fadeOutLeft {
    0% {
        -moz-transform: translateX(0px);
    }

    99% {
        -moz-transform: translateX(-1.5rem);
    }
}
.btnAn {
    -webkit-animation: btnAnimal 1s linear infinite;
    -moz-animation: btnAnimal 1s linear infinite;
}
.showinAn {
    -webkit-animation: showInAnimal .4s forwards;
    -moz-animation: showInAnimal .4s forwards;
	animation-delay: .7s;
}
@keyframes showInAnimal {
    0% {
        opacity: 0;
    }
 	100% {
        opacity:1;
    }
}
.lefteaseinAn {
    -webkit-animation: lefteaseinAnimate .3s forwards;
    -moz-animation: lefteaseinAnimate .3s linear infinite;
	animation-delay: .3s;
}
@keyframes btnAnimal {
    0% {
        scale: 1;
    }
 	50% {
        scale: 0.95;
    }
    100% {
        scale: 1;
    }
}
.bounceInLeftAn {
    -webkit-animation: bounceInLeftAnimate .5s forwards ease-out;
    -moz-animation: bounceInLeftAnimate .5s forwards ease-out;
	animation-delay: .7s;
}
@keyframes bounceInLeftAnimate{
    0%{ transform: translateX(-10.8rem);}   /*在0%时设置文字在想X轴-2000px位移处（左边），透明度为0，也就是看不见文字*/
    42%{ transform: translateX(0);}   
	60%{ transform: translateX(-0.8rem);}  
	78%{ transform: translateX(0rem);}
	89%{ transform: translateX(-0.8rem);} 
	100%{ transform: translateX(0);}        
}
@-webkit-keyframes bounceInLeftAnimate{	
	0%{ -webkit-transform: translateX(-10.8rem);}   /*在0%时设置文字在想X轴-2000px位移处（左边），透明度为0，也就是看不见文字*/
    42%{ -webkit-transform: translateX(0);}   
	60%{ -webkit-transform: translateX(-0.8rem);}  
	78%{ -webkit-transform: translateX(0rem);}
	89%{ -webkit-transform: translateX(-0.8rem);} 
	100%{ -webkit-transform: translateX(0);}      
}
@-ms-keyframes bounceInLeftAnimate{
    0%{ -webkit-transform: translateX(-10.8rem);}   /*在0%时设置文字在想X轴-2000px位移处（左边），透明度为0，也就是看不见文字*/
    42%{ -webkit-transform: translateX(0);}   
	60%{ -webkit-transform: translateX(-0.8rem);}  
	78%{ -webkit-transform: translateX(0rem);}
	89%{ -webkit-transform: translateX(-0.8rem);} 
	100%{ -webkit-transform: translateX(0);}   
}
@-moz-keyframes bounceInLeftAnimate{
    0%{ -webkit-transform: translateX(-10.8rem);}   /*在0%时设置文字在想X轴-2000px位移处（左边），透明度为0，也就是看不见文字*/
    42%{ -webkit-transform: translateX(0);}   
	60%{ -webkit-transform: translateX(-0.8rem);}  
	78%{ -webkit-transform: translateX(0rem);}
	89%{ -webkit-transform: translateX(-0.8rem);} 
	100%{ -webkit-transform: translateX(0);}   
}

@keyframes lefteaseinAnimate{
    0%{ transform: translateX(-0); opacity: 0;}   /*在0%时设置文字在想X轴-2000px位移处（左边），透明度为0，也就是看不见文字*/
    100%{ transform: translateX(14rem); opacity: 1;}         /*在100%时设置文字在想X轴0px位移处，也就是原始布局的位置，透明度为1，也就是文字可以看见了*/
}
@-webkit-keyframes lefteaseinAnimate{
    0%{ -webkit-transform: translateX(-0); opacity: 0;}
    100%{ -webkit-transform: translateX(14rem); opacity: 1;}    
}
@-o-keyframes lefteaseinAnimate{
    0%{ -webkit-transform: translateX(-0); opacity: 0;}
    100%{ -webkit-transform: translateX(14rem); opacity: 1;}    
}
@-ms-keyframes lefteaseinAnimate{
    0%{ -webkit-transform: translateX(-0); opacity: 0;}
    100%{ -webkit-transform: translateX(14rem); opacity: 1;}    
}
@-moz-keyframes lefteaseinAnimate{
    0%{ -webkit-transform: translateX(-0); opacity: 0;}
    100%{ -webkit-transform: translateX(14rem); opacity: 1;}    
}
.x-toast {
    position: fixed;
	display: none;
	left: 50%;
	top: 40%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	z-index: 9999;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	padding: 10px 20px;
	font-size: .3rem;
	color: #fff;
	border-radius: 5px;
	width: 45%;
	text-align: center;
	height: 0.9rem;
	line-height: .9rem;
	background-color: rgba(0, 0, 0, 0.7);
	line-height: 0.9rem;
}
.homeinfo{
	width: 10rem;
	height: 100vh;
}
.bgimgInfo{
	width: 10rem;
	height: 100vh;
	overflow: hidden;
	top: 0;
	left: 0;
}
.bgimg{
	width: 10rem;
	display: block;
}
.maininfo{
	width: 10rem;
	height: 80vh;
	top: 10vh;
	left: 0;
	text-align: center;
}
.title{
	width: 8rem;
}
.mainward{
	width: 8rem;
}
.btninfo{
	width: 9rem;
	height: 3.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	top: 52%;
	left: 0.5rem;
}
.btn1{
	width: 3.8rem;
	margin:0 0.25rem;
}
.time{
	width: 7.4rem;
	left: 1.3rem;
	bottom: 0;
}
.tkinfo{
	width: 10rem;
	height: 100vh;
	background-color: rgba(0,0,0,0.88);
}
.ruleInfo{
	width: 10rem;
	height: 100vh;
	top: 0;
	left: 0;
	overflow: hidden;
}
.rulebg{
	width: 10rem;
	top: 0;
	left: 0;
}
.backbtn {
	width: .5rem;
	top: 0.25rem;
	left: 0.4rem;
}
.rulebt{
	width: 10rem;
	bottom: 0;
	left: 0;
}
.rulemsg{
	width: 9.0rem;
	height: calc(100vh - 4.5rem);
	padding-right: 0.1rem;
	top: 1.4rem;
	left: 0.5rem;
	overflow-y: scroll;
}
.ruletxt{
	width: 9rem;
}
.kfInfo{
	width: 7rem;
	height: 10.9rem;
	left: 1.5rem;
	top: calc(50vh - 5.45rem);
}
.tkbg1{
	width: 7rem;
}
.codeinfo{
	width: 5.6rem;
	height: 5.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 1.9rem;
	left: 0.7rem;
}
.codebg{
	width: 4.6rem;
	height: 4.6rem;
}
.codeimg{
	width: 4.2rem;
	height: 4.2rem;
	top: 0.7rem;
	left: 0.7rem;
}
.codetips{
	width: 4.2rem;
	line-height: 0.45rem;
	text-align: center;
	font-size: .28rem;
	left: 1.4rem;
	top: 7.4rem;
	color: #fff;
}
.closetk{
	width: 1rem;
	height: 1rem;
	bottom: 0;
	left: 3rem;
	opacity: 0.6;
}
.tktitle4{
	width: 6.4rem;
	top: 0.7rem;
	left: 0.3rem;
}
.tkward{
	width: 4.6rem;
	left: 1.2rem;
	top: 2.1rem;
}
.tipstxt{
	width: 3.6rem;
	left: 1.7rem;
	top: 5.0rem;
}
.line{
	width: 6.0rem;
	left: 0.5rem;
	bottom: 3.9rem;
}
.lookrulebtn{
	width:3.6rem;
	top: 7.4rem;
	left: 1.7rem;
}
.involidcodetips{
	width: 4.2rem;
	line-height: 0.5rem;
	text-align: center;
	font-size: .32rem;
	left: 1.4rem;
	top: 2.2rem;
	color: #eceaea;
}
.tkward1{
	width: 5.2rem;
    left: 0.9rem;
    top: 3.5rem;
}
.kfInfo1{
	width: 7rem;
	height: 9.6rem;
	left: 1.5rem;
	top: calc(50vh - 4.8rem);
}
.surebtn{
	width:3.6rem;
	top: 6.1rem;
	left: 1.7rem;
}
.tktitle5{
	width: 6.4rem;
	top: 1.0rem;
	left: 0.3rem;
}
.tipstxt1{
	width: 4.8rem;
	top: 3.2rem;
	left: 1.1rem;
}
.submitetips{
	width: 4.2rem;
	line-height: 0.5rem;
	text-align: center;
	font-size: .32rem;
	left: 1.4rem;
	top: 3.7rem;
	color: #eceaea;
}
.lookdescbtn{
	width:3.6rem;
	top: 6.1rem;
	left: 1.7rem;
}
.limitTips{
	width: 4.2rem;
    line-height: 0.5rem;
    text-align: center;
    font-size: .32rem;
    left: 1.4rem;
    top: 3.6rem;
    color: #eceaea;
}
.tktitle7{
	width: 6.4rem;
	top: 2.6rem;
	left: 0.3rem;
}
.kfInfo2{
	width: 10rem;
	height: 100vh;
	overflow: hidden;
	top: 0;
	left: 0;
}
.bt{
	width: 10rem;
	bottom: 0;
	left: 0;
}
.getnoinfo{
	width: 9.0rem;
	height: calc(100vh - 2.2rem);
	left: 0.5rem;
	top: 1rem;
}
.getinfo{
	width: 9.0rem;
	height: calc(100vh - 2.2rem);
	left: 0.5rem;
	top: 0.5rem;
}
.info{
	width: 9.0rem;
	height: calc(100vh - 2.2rem);
	left: 0.5rem;
	top: 1.0rem;
}
.bginfo{
	width: 9.0rem;
	height: 100%;
	background-color: #000;
	border-radius: 0.1rem;
    transform: rotate(-2deg);
    top: 0.15rem;
    left: 0;
}
.topicinfo{
	width: 9.0rem;
	height: 100%;
	background-color: #fff;
	border-radius: .1rem;
	top: 0;
	left: 0;
}
.toppoi{
	width: 8.4rem;
	top: 0;
	left: 0.3rem;
}
.centerpoi{
	width: 9rem;
	bottom: 4.9rem;
	left: 0rem;
}
.bottompoi{
	width: 8.4rem;
	bottom: 0;
	left: 0.3rem;
}
.topicPicinfo{
	width: 8.4rem;
	height: calc(100vh - 9.9rem);
	border-radius: .2rem;
	top: 0.35rem;
	left: 0.3rem;
	box-shadow: inset 0px 0.05rem 0.5rem 0.05rem rgba(0, 0, 0, 0.5);
	overflow: hidden;
	background-image: url('../img/topic.jpg');
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.logo{
	width: 3.0rem;
	top: 0.2rem;
	left: 0.1rem;
}
.topictxt{
	width: 7.0rem;
	bottom: 0;
	left: 0.7rem;
}
.getwtitleimg{
	width: 8.4rem;
	bottom: 5.6rem;
	left: 0.3rem;
}
.wtitleimg{
	width: 8.4rem;
	bottom: 5.6rem;
	left: -13.7rem;
}
.bottomInfo{
	width: 8.4rem;
	height: 4.5rem;
	left: 0.3rem;
	bottom: 0.3rem;
	display: flex;
	/* align-items: center; */
	justify-content: center;
	flex-wrap: wrap;
}
.getbtnInfo{
	width: 8.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
}
.getbtn{
	width: 4rem;
	height: 0.9rem;
	line-height: .9rem;
	font-size: .4rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	background-color: #043d8e;
	border-radius: .4rem;
}
.gettips{
	width: 8.4rem;
	height: 0.8rem;
	line-height: .8rem;
	text-align: center;
	color: #063c92;
	font-size: .28rem;
	font-weight: bold;
	opacity: 0;
}
.wgettips{
	width: 5.7rem;
	height: 0.8rem;
	line-height: .4rem;
	text-align: center;
	color: #063c92;
	font-size: .28rem;
	font-weight: bold;
	opacity: 0;
}
.getexward{
	width: 8.1rem;
	height: 2.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.exward{
	width: 8.1rem;
	height: 3.0rem;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transform: translateX(-10.8rem);
}
.exwardimg{
	width: 2.4rem;
	margin: 0.0.15rem;
}
.erroricon{
	width: 2.8rem;
	height: 2.8rem;
}
.wardimg{
	width: 5.4rem;
}
.listtitle{
	width: 8.4rem;
	height: 2rem;
	margin:0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1rem;
}
.titleimg{
	width: 3.4rem;
}
.dtlist{
	width: 8.4rem;
	height: calc(100vh - 4rem);
	overflow-y: scroll;
	margin:0 auto;
	margin-top: .5rem;
}
.nodata{
	width: 8.4rem;
	height: 4rem;
	line-height: 3rem;
	text-align: center;
	color: #67030b;
	font-size: .32rem;
	font-weight: bold;
	border-radius: .2rem;
	background-color: #fff;
}
.wardinfo{
	width: 7.8rem;
	padding: 0.2rem 0.3rem;
	margin:0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fffef9;
	border-radius: .2rem;
	margin-bottom: .4rem;
}
.leftinfo{
	width: 5.6rem;
	display: flex;
	flex-wrap: wrap;
}
.wardtime{
	width: 5.6rem;
	height: .5rem;
	line-height: .5rem;
	font-size: .3rem;
	color: #56050e;
}
.wardname{
	width: 5.6rem;
	height: .6rem;
	line-height: .6rem;
	font-size: .4rem;
	font-weight: bold;
	color: #67030b;
}
.wardbtn{
	width: 1.8rem;
	margin-left: .3rem;
}
.formtitle{
	width: 9.4rem;
	height: 2rem;
	margin:0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1.4rem;
}
.formtitleimg{
	height: 1.7rem;
}
.forminfo{
	width: 8.4rem;
	margin: 0 auto;
}
.tkawardinfo{
	width: 4rem;
	height: 3rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: .3rem;
}
.tkawardimg{
	width: 4rem;
}
.txtname,.txtmobile,.txtarea,.txtcardnum,.txtaddress{
	width: 7.8rem;
	height: 0.7rem;
	line-height: .7rem;
	font-size: .4rem;
	background-color: #fff;
	border-radius: .1rem;
	padding:0.2rem 0.3rem;
	margin-bottom: 2vh;
}
.formtips{
	width: 6rem;
	line-height: .5rem;
	height: 1.0rem;
	text-align: center;
	font-size: .3rem;
	color: #fff;
	margin:0 auto;
	margin-top: .2rem;
}
.submitbtninfo{
	width: 8.4rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: .2rem;
}
.submitbtn{
	width: 3.0rem;
}