@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	min-width: 1330px;
	font-size: 16px;
	background: #fefcf7;
	position: relative;
}
html {
	font-family: "Microsoft YaHei", 微软雅黑, "MicrosoftJhengHei", 华文细黑,
		STHeiti, MingLiu, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	/* for chrome */
	/* for firefox */
	scrollbar-width: thin;
}
html::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
html::-webkit-scrollbar-track {
	border-radius: 7px;
}
html::-webkit-scrollbar-thumb {
	border-radius: 7px;
	background-image: linear-gradient(25deg, #dc430e, #dc430e, #dc430e);
}
::-webkit-input-placeholder { color:#f00; }
::-moz-placeholder { color:#f00; } /* firefox 19+ */
:-ms-input-placeholder { color:#f00; } /* Internet Explorer 10+ */
:-moz-placeholder { color:#f00; } /* firefox 14-18 */


.clearfix {
    zoom: 1;
    
}
.clearfix:after,
.clearfix:before {
	content: "";
	/*加一段内容*/
	display: block;
	clear: both;
	height: 0;
	overflow: hidden;
	visibility: hidden;
}
ul li {
	list-style: none;
}
a {
	cursor: pointer;
	text-decoration: none;
}
a:hover,a:active,a:link{
    color: initial;
}
img{
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
input, textarea, a, div, button, select {
    border: 0;
    outline: 0;
}
input:focus {
	box-shadow: 0 0 0px 0px #777;
}
/* input type number 隐藏上下加减符号 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}
input[type='number'] {
  -moz-appearance: textfield !important;
}

.absolute{
	position: absolute;
}
.relative{
	position: relative;
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}
p {
	word-wrap: break-word;
}
.transition {
	transition: 0.4s ease all;
}
.cursor-pointer {
	cursor: pointer;
}
.hoverBright {
	transition: 0.25s ease-out all;
}
.hoverBright:hover {
	filter: brightness(1.1);
}
.hoverUnderline {
	transition: 0.25s ease-out all;
}
.hoverUnderline:hover {
	text-decoration: underline;
}
.show {
	display: block !important;
}
.hide {
	display: none !important;
}
.block {
	display: block;
}
.inline-block {
	display: inline-block;
}
.user-select-none {
	user-select: none;
	touch-action: none;
}
.row{
    display: flex;
	display: -webkit-flex;
    justify-content: center;
    align-items: center;
	/* flex-wrap: nowrap; */
}
.row-start-end{
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-items: flex-end;
}
/* 水平两边 垂直靠后 */
.row-between-end{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: flex-end;
}
/* 水平两边 垂直靠上 */
.row-between-start{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: flex-start;
}
.row-center-start{
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-items: center;
}
/* 水平靠后 垂直居中 */
.row-end-center{
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	align-items: center;
}
/* 水平靠前 垂直居中 */
.row-start-center{
	display: flex;
	display: -webkit-flex;
	justify-content: start;
	align-items: center;
}
.row-start-start{
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
/* 水平环绕 垂直居中 */
.row-around-center{
	display: flex;
	display: -webkit-flex;
	justify-content: space-around;
	align-items: center;
}
/* 水平两边 垂直居中 */
.row-between-center{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: center;
}
.col{
    display: flex;
	display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	/* flex-wrap: nowrap; */
}
/* 垂直居中水平靠后  */
.col-center-end{
    display: flex;
	display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
/* 垂直靠上水平居中  */
.col-start-center{
    display: flex;
	display: -webkit-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.col-center-start{
    display: flex;
	display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.col-end-center{
    display: flex;
	display: -webkit-flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.fixed-full {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
}
.w-full {
	width: 100%;
}
.h-full {
	height: 100%;
}
.flex {
	display: flex;
}
.grid {
	display: grid;
}
.flex-row {
	flex-direction: row;
}
.flex-column {
	flex-direction: column;
}
.flex-1 {
	flex: 1;
}
.flex-c {
	display: flex;
	align-items: center;
	justify-content: center;
}
.items-center {
	align-items: center;
}
.items-start {
	align-items: flex-start;
}
.justify-center {
	justify-content: center;
}
.justify-round {
	justify-content: space-around;
}
.justify-between {
	justify-content: space-between;
}
.justify-start {
	justify-content: flex-start;
}
.justify-end {
	justify-content: flex-end;
}
.text-center {
	text-align: center;
}
.padding-5 {
	padding: 5px;
}
.padding-10 {
	padding: 10px;
}
.margin-0-auto {
	margin: 0 auto;
}
.margin-5 {
	margin: 5px;
}
.margin-10 {
	margin: 10px;
}
.fade-enter-active,
.fade-leave-active {
	transition: 0.4s ease all;
}
.fade-enter-from,
.fade-leave-to {
	opacity: 0;
}
.gradual-mask {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30vh;
	background: linear-gradient(to bottom, transparent, #25282edc);
	pointer-events: none;
}
.gradual-mask.mask-top {
	bottom: unset;
	top: 0;
	background: linear-gradient(to top, transparent, #25282edc);
}
.layout {
	overflow-x: hidden;
}

.foot {
	text-align: center;
	background: #000;
	color: #666;
	font-size: 14px;
	line-height: 40px;
	padding-top: 50px;
	padding-bottom: 50px;
}
.foot .line-1 {
	line-height: 55px;
	color: #999;
}
.foot .line-2 {
	padding-top: 5px;
	color: #999;
}
.modal {
	display: none;
	background: #00000091;
	z-index: 101;
}
.modal .modal-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: fadeDown 0.4s ease-out;
}
@keyframes fadeDown {
	from {
		transform: translate(-50%, -55%);
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.modal .modal-header {
	position: relative;
	padding: 40px 10px 10px;
}
.tab-list {
	position: relative;
	width: 649px;
}
.tab-list .tab-hint {
	position: absolute;
	font-size: 18px;
	top: -45px;
	left: 0;
}
.tab-list .tab-nav {
	font-size: 20px;
	margin-bottom: 40px;
	color: #56393d;
}
.tab-list .tab-item {
	height: 48px;
	border: 2px solid #eeda99;
}
.tab-list .tab-item.active {
	background: #eeda99;
}
.tab-list .tab-pane {
	display: none;
}
.tab-list .tab-pane section {
	margin-left: -20px;
	margin-bottom: 20px;
}
.tab-list .tab-pane .label {
	width: 110px;
	text-align: right;
}
.tab-list .tab-pane.active {
	display: block;
}
.swiper-button-disabled {
	cursor: not-allowed;
	filter: grayscale(1);
}
.swiper-button-disabled:hover {
	filter: grayscale(1);
}
.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.toast{
    position: fixed;
    padding: 0.15rem 0.3rem;
    font-size: 0.26rem;
    color: #fff;
    background: #000;
    border-radius: 0.1rem;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: none;
}
/* 移动端 rem弹窗类 */
/* 弹窗 */
.pop{
    width: 7.5rem;
	height: 100%;
    /* position: fixed; */
	top: 0;
	left: 50%;
	margin-left: -3.75rem;
    position: absolute;
    z-index: 101;
	background-color: rgba(0,0,0,.7);
	filter: alpha(opacity=100);
}
.pop-pc{
    width: 100%;
	height: 100%;
    position: fixed;
	top: 0;
	left: 50%;
	margin-left: -50%;
    /* position: absolute; */
    z-index: 101;
	background-color: rgba(0,0,0,.7);
	filter: alpha(opacity=100);
}
/* 关闭按钮 */
.close{
    display: block;
	position: absolute;
	cursor: pointer;
}
.close img{
    width: 100%;
}
/* 弹窗内包 */
.pop-wrap{
	position: absolute;
	animation: tcpopwrap 0.5s;
	-webkit-animation: tcpopwrap 0.5s;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	/* margin-left: -50%; */
	/* transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%); */
}
/* 表单错误提示 */
/* .form-wrap .err-tip{
	height: 0.3rem;
	line-height: 0.3rem;
	color: #ff0000;
	font-size: 0.18rem;
} */
/* 发送验证码 */
.fycode{
	
}
.fycode input{
	
}
.getcode{
   
}
.sendcode{
	
}
.tcaptcha-transform{
	
}
/* 遮罩 */
.Layer.on {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 100;
}
.Layer {
    position: fixed;
    top: -10%;
    left: 50%;
    margin-left: -3.75rem;
    width: 7.5rem;
    height: 120%;
    background: rgba(0,0,0,.8);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: -1;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
/* 视频弹窗遮罩层 */
.videoLay{
	position: fixed;
	z-index: 100;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.60);
}
.videoLay .layContent{
	position: relative;
	width: 100%;
	height: 100%;
}
.videoLay .layContent .video{
	width: 90%;
	/* height: 4.62px; */
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
}

/*单个确定框  + 回调*/
.m-mask-c {
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.6;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 100;
}

.m-mask-c-1 {
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.6;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 101;
}

.confirm-box {
	width: 70%;
	position: fixed;
	top: 5.6rem;
	left: 15%;
	background-color: #FFFFFF;
	height: auto;
	border-radius: 6px;
	z-index: 102;
}

.u-confirm-h,
.u-confirm-p {
	text-align: center;
}

.u-confirm-h {
	height: 1.154rem;
	line-height: 1.154rem;
	font-size: 16px;
	border-bottom: solid 1px #f2f2f2;
}

.u-confirm-p {
	line-height: 1rem;
	font-size: 14px;
	border-bottom: solid 1px #f2f2f2;
}

.u-confirm-btn {
	display: block;
	width: 100%;
	height: 1.154rem;
	line-height: 1.154rem;
	color: #1d82ff;
	font-size: 16px;
	text-align: center;
}
/* 轉圈 */
.rotateCircle{
	animation: rotateCircle 5s infinite linear both;
	-webkit-animation: rotateCircle 5s infinite linear both;
}
@keyframes rotateCircle{
	from{-webkit-transform: rotate(0deg);transform: rotate(0deg);}
	to{-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
@-webkit-keyframes rotateCircle{
	from{-webkit-transform: rotate(0deg);transform: rotate(0deg);}
	to{-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
/* 箭头上下 */
/* animation: flight 2s ease infinite alternate both;
-moz-animation: flight 2s ease infinite alternate both;
-webkit-animation: flight 2s ease infinite alternate both;
-o-animation: flight 2s ease infinite alternate both; */
@keyframes flight{
	0% {
	    -webkit-transform: translateY(0px);
	    -moz-transform: translateY(0px);
	    -ms-transform: translateY(0px);
	    -o-transform: translateY(0px);
	    transform: translateY(0px);
	    opacity: 0.2;
	}
	100% {
	    -webkit-transform: translateY(-12px);
	    -moz-transform: translateY(-12px);
	    -ms-transform: translateY(-12px);
	    -o-transform: translateY(-12px);
	    transform: translateY(-12px);
	    opacity: 0.6;
	}
}
@-webkit-keyframes flight{
	0% {
	    -webkit-transform: translateY(0px);
	    -moz-transform: translateY(0px);
	    -ms-transform: translateY(0px);
	    -o-transform: translateY(0px);
	    transform: translateY(0px);
	    opacity: 0.2;
	}
	100% {
	    -webkit-transform: translateY(-12px);
	    -moz-transform: translateY(-12px);
	    -ms-transform: translateY(-12px);
	    -o-transform: translateY(-12px);
	    transform: translateY(-12px);
	    opacity: 0.6;
	}
}
/* 缩放 */
/* .scal {
    animation: scalable 0.3s ease-in-out 0s infinite alternate none;
    -webkit-animation: scalable 0.3s ease-in-out 0s infinite alternate none;
} */

@-webkit-keyframes scalable{
	0% {
	    -webkit-transform: scale(0.9);
	    -moz-transform: scale(0.9);
	    -ms-transform: scale(0.9);
	    -o-transform: scale(0.9);
	    transform: scale(0.9);
	    opacity: 1;
	}
	100% {
	    -webkit-transform: scale(0.8);
	    -moz-transform: scale(0.8);
	    -ms-transform: scale(0.8);
	    -o-transform: scale(0.8);
	    transform: scale(0.8);
	    opacity: 1;
	}
}
@keyframes scalable{
	0% {
	    -webkit-transform: scale(0.9);
	    -moz-transform: scale(0.9);
	    -ms-transform: scale(0.9);
	    -o-transform: scale(0.9);
	    transform: scale(0.9);
	    opacity: 1;
	}
	100% {
	    -webkit-transform: scale(0.8);
	    -moz-transform: scale(0.8);
	    -ms-transform: scale(0.8);
	    -o-transform: scale(0.8);
	    transform: scale(0.8);
	    opacity: 1;
	}
}
/* 缩放 */
@-webkit-keyframes flashzoom{
    to{
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
		opacity: 0.8;
    }
}
@keyframes flashzoom{
    to{
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
		opacity: 0.8;
    }
}
/*toast 样式*/

.m-tiphtml-box {
    position: fixed;
	z-index: 999;
    left: 50%;
    top: 30%;
    transform: translate(-50%);
    border-radius: 0.2rem;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transform: translate(-50%);
	font-size: 0;
}

.m-tiphtml-box .tip-box-op0 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #f1fbfe;
    opacity: 0.7;
    z-index: -1;
	font-size: 18px;
}

.m-tiphtml-box .tip-box-op1 {
    padding: 0.15rem 0.3rem;
    font-size: 0.26rem;
    color: #000000;
}

/*toast 样式 -- pc*/

.pc-tiphtml-box {
    position: fixed;
	z-index: 999;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
    border-radius: 2px;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transform: translate(-50%);
	font-size: 0;
}

.pc-tiphtml-box .tip-box-op0 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #f1fbfe;
    opacity: 0.8;
    z-index: -1;
	font-size: 14px;
}

.pc-tiphtml-box .tip-box-op1 {
    padding: 10px 18px;
    font-size: 14px;
    color: #000000;
	border-radius: 5px;
}

/* 弹窗显示隐藏 */

@keyframes tcpopwrap{
	0% {
	    transform: scale(0);
	}
	100% {
	    transform: scale(1);
	}
}
/*  */
/* .slogan{
	-webkit-animation: framesflash 6s steps(50,end) infinite normal none;
	animation: framesflash 6s steps(50,end) infinite normal none;
} */
/* 帧动画 */
@keyframes framesflash {
	
	from{
		background-position: 0 0;
	}
	to{
		background-position: 0 -25000px ;
	}
}
@-webkit-keyframes framesflash {
	from{
		background-position: 0 0;
	}
	to{
		background-position: 0 -25000px ;
	}
}
/*  */
/* .dom{
	animation: 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s 1 normal both running flip-2-hor-top-1;
} */
/* @keyframes name{
	0% {
		-webkit-transform: translateY(0) rotateX(0);
		transform: translateY(0) rotateX(0);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
	}
	100% {
		-webkit-transform: translateY(-100%) rotateX(-180deg);
		transform: translateY(-100%) rotateX(-180deg);
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%;
	}
} */
/* 
 .dom{
	 0.7s linear 0s 1 normal both running rotate-scale-up;
 }
 */

@-webkit-keyframes rotate-scale-down {
    0% {
        -webkit-transform: scale(1) rotateZ(0);
        transform: scale(1) rotateZ(0)
    }

    50% {
        -webkit-transform: scale(.5) rotateZ(180deg);
        transform: scale(.5) rotateZ(180deg)
    }

    to {
        -webkit-transform: scale(1) rotateZ(360deg);
        transform: scale(1) rotateZ(360deg)
    }
}

@keyframes rotate-scale-down {
    0% {
        -webkit-transform: scale(1) rotateZ(0);
        transform: scale(1) rotateZ(0)
    }

    50% {
        -webkit-transform: scale(.5) rotateZ(180deg);
        transform: scale(.5) rotateZ(180deg)
    }

    to {
        -webkit-transform: scale(1) rotateZ(360deg);
        transform: scale(1) rotateZ(360deg)
    }
}

/* 从下滑入 */
.slide-top{
	animation: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s 1 normal both running slide-top;
}
.slide-down{
	animation: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s 1 normal both running slide-down;
}
@keyframes slide-top{
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
	100% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}
@keyframes slide-down{
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
		opacity: 1;
	}
}
@-webkit-keyframes slide-down{
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
		opacity: 1;
	}
}
/*  翻失*/
.rotateLeft {
    -webkit-animation-name: rotateLeft;
    animation-name: rotateLeft;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	
}

@-webkit-keyframes rotateLeft {
    0% {
        opacity: 1;
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: perspective(800px) rotateY(0deg) translateZ(0);
        transform: perspective(800px) rotateY(0deg) translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: perspective(800px) rotateY(-180deg) translateZ(300px);
        transform: perspective(800px) rotateY(-180deg) translateZ(300px)
    }
}

@keyframes rotateLeft {
    0% {
        opacity: 1;
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: perspective(800px) rotateY(0deg) translateZ(0);
        transform: perspective(800px) rotateY(0deg) translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: perspective(800px) rotateY(-180deg) translateZ(300px);
        transform: perspective(800px) rotateY(-180deg) translateZ(300px)
    }
}

/* 缩失 */
.holeOut {
    -webkit-animation-name: holeOut;
    animation-name: holeOut;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes holeOut {
    0% {
        opacity: 1;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: scale(1) rotateY(0deg);
        transform: scale(1) rotateY(0deg)
    }

    to {
        opacity: 0;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: scale(0) rotateY(180deg);
        transform: scale(0) rotateY(180deg)
    }
}

@keyframes holeOut {
    0% {
        opacity: 1;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: scale(1) rotateY(0deg);
        transform: scale(1) rotateY(0deg)
    }

    to {
        opacity: 0;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: scale(0) rotateY(180deg);
        transform: scale(0) rotateY(180deg)
    }
}

/* 闪烁灯 */
@-webkit-keyframes lightflash {
    0% {
        opacity: 0.5;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        opacity: 1;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
}

@keyframes lightflash {
    30%,
    40%{
        opacity: 0.5;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    
    70%,
    80% {
        opacity: 1;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
	
}
/* 淡入 */
.fadin {
    -webkit-animation-name: fadin;
    animation-name: fadin;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: fadin;
	animation-fill-mode: fadin;
}

@-webkit-keyframes fadin {
    0% {
        opacity: 0;
        
    }

    to {
        opacity: 1;
        
    }
}

@keyframes fadin {
    0% {
        opacity: 0;
        
    }
    
    to {
        opacity: 1;
        
    }
}