
@import url('reset.css?1');
/* @import url('normalize.css'); */
/* @import url('lib.css'); */
/* @import url('layout.css?111'); */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/********** body **********/
body {
	margin: 0;
	background: white;
	/* background-size: 100% 100%; */
	padding: 0;
	overflow-x: hidden;
	/*position: relative;*/
}



/********** popup **********/
.popup-mask {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10001;
	width: 100%;
	height: 100%;
	background-color: #000;
	filter: opacity(0.5);
}

.popup {
	display: none;
	position: fixed;
	z-index: 10002;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 90%;
	overflow-y: auto;
	border-radius: 10px;
	background-color: rgba(237, 246, 253, 1);
	background: url(img/pop-bg.png) no-repeat;
	background-size: 100% 100%;
	padding-top: 40px;
}

.popup .title {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	height: 40px;
	line-height: 40px;
	color: #000000;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	padding-right: 20px;
}

.popup .content {
	padding: 10px 30px 10px 10px;
}




/********** lang-popup **********/

.lang-popup ul {
	display: flex;
	flex-wrap: wrap;
}



.lang-popup ul li a {
	display: flex;
	justify-content: start;
	align-items: center;
}

.lang-popup ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	width: 50%;
	border-bottom: 1px solid #eee;
}

.lang-popup ul li a {
	box-sizing: border-box;
	padding: 5px;
	width: 100%;
	color: #fff;
}

.lang-popup ul li .icon {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	margin-right: 3px;
}



.lang-popup ul li .label {
	color: #333;
	line-height: 20px;
	font-size: 14px;
	text-align: center;
}



/********** header **********/

.venom-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	z-index: 999;
	background: transparent;
	height: 55px;
	padding: 0;
	margin: 0;
}

.venom-header.active {
	background: white;
}

.venom-header .header-title {
	color: rgba(16, 24, 40, 1);
	font-weight: 700;
	flex: 1;
	text-align: center;
	line-height: 55px;
}

.venom-header .header-top .header-title img {
	width: 100px;
}

.venom-header .header-top {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;

}

.venom-header .header-top .header-lang {
	width: 30px;
}

.venom-header .header-top .header-online {
	width: 30px;
}


.venom-header .header-top .header-go {
	/* width:10px; */
	height: 30px;
	position: absolute;
	left: 10px;
	top: 15px;
}

.venom-header .header-top img {
	width: 100%;
	height: 100%;
}


.venom-header .header-bottom {
	text-align: center;
}

.venom-header .header-bottom img {
	width: 150px;
}


/********** main **********/
.main {
	background: transparent;
	width: 100%;
	margin-top: 55px;
	border-radius: 20px 20px 0 0;
	padding-bottom: 100px;
	min-height: calc(100vh - 55px);
	/* overflow-x: hidden; */
	/* display: flex;
	flex-direction: column; */
}



/********** bottom **********/
.venom-bottom {
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 10;
}

.venom-bottom ul {
	display: flex;
	align-items: center;
	background: url(./img/public/menu-bg.png) no-repeat;
	background-size: 100% 100%;
	padding: 0;
	margin: 0;
	box-shadow: 0px 0px 30px  rgba(5, 13, 71, 0.05);
}

.venom-bottom ul li .iconfont {
	font-size: 30px;
}

.venom-bottom ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 25%;
	height: 72px;
}

.venom-bottom ul li:nth-child(3) div:nth-child(1) {
	padding: 20px;
	background-image: url(/new-img/public/5.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border-radius: 50%;
	transform: translateY(-35%);
}


.venom-bottom ul li a {
	display: block;
	color: #888;
	text-align: center;
	width: 100%;
}

.venom-bottom ul li .icon {
	display: block;
	margin: 0 auto;
	width: 25px;
	height: 25px;
}

.venom-bottom .grab {
	position: absolute;
	left: 50%;
	top: -30px;
	transform: translateX(-50%);

}

.venom-bottom .grab-hidden img {
	width: 50px;
	visibility: hidden;
}

.venom-bottom .grab img {
	width: 65px !important;
	height: 65px !important;
	border-radius: 50%;
}

.venom-bottom ul li.active {
	color: rgba(119, 67, 219, 1);
}

.venom-bottom ul li.active a {
	color: rgba(119, 67, 219, 1);
	text-align: center;
}

.venom-bottom ul li.active .icon {
	fill: #fff;
}

.venom-bottom ul li .label {
	font-size: 14px;
	text-align: center;
	line-height: 22px;
}

/********** common **********/
.m-b-5 {
	margin-bottom: 5px;
}


.m-b-10 {
	margin-bottom: 10px;
}


.m-b-20 {
	margin-bottom: 20px;
}

.m-b-30 {
	margin-bottom: 30px;
}


.big-button {
	width: 100%;
	margin: 0 auto;
	padding: 10px 0;
	color: #ffffff;
	border-radius: 10px;
}


/********** other **********/
.empty {
	text-align: center;
	padding: 20px 0;
}

.empty img {
	width: 200px;
}


.float-service {
	width: 35px;
	position: fixed;
	top: 30%;
	right: 10px;
	z-index: 999;
}



.logout-new {
	width: 20px;
}

.log-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	gap: 2px;
	right: 10px;
	top: 15px;
}

.log-header .header-lang {
	margin-right: 10px;
}

.button {
	border-radius: 16px;
	background: rgba(59, 56, 235, 1);
	height: 50px;
	position: relative;
	width: 100%;
	line-height: 50px;
	font-size: 18px;
	font-weight: 700;
	color: white;
	text-align: center;
}

.button-confirm {
	border-radius: 16px;
	background: rgba(59, 56, 235, 1);
	height: 50px;
	position: relative;
	width: 100%;
	line-height: 50px;
	font-size: 18px;
	font-weight: 700;
	color: white;
	text-align: center;
}

/* .button::before {
	content: ' ';
	background-image: url(../img/button-bg.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	display: block;
	position: absolute;
	left: 10px;
    top: 7px;
	width: 56px;
	height: 56px;
} */

button.button {
	display: inline-block;
	padding: 10px 12px;
	line-height: 26px;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	color: white;
	border-radius: 60px;
	background: rgba(119, 67, 219, 1);
	box-shadow: none;
	border: none;
	outline: none;
}
button.button[round] {
	border-radius: 50px;
}
button.button[block] {
	display: block;
	width: 100%;
}
button.button[size="small"] {
	padding: 6px 8px;
}

button.button:disabled {
	background: #ccc;
}
