/****
提示信息
***/

.tips-info {
	width: fit-content;
	height: fit-content;
	padding: 10px;
	border-radius: 5px;
	font-size: 16px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	margin: auto;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	display: none;
	z-index: 9999;
}

body {
	width: 100%;
	height: 100vh;
	background: url(../images/bg.jpg) top center no-repeat;
    background-size: 100% 100%;
	padding: 0.88rem 0;
	position: relative;
	overflow: hidden;
}

.flex-row {
	display: flex;
	display: -webkit-flex;
}

.flex-column {
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
}

.flex-start {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
}

.flex-center {
	display: flex;
	display: -webkit-flex;
	align-items: center;
}

.flex-between {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}

.flex-around {
	display: flex;
	display: -webkit-flex;
	justify-content: space-around;
}

.flex-end {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
}

img {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

header {
	width: 100%;
	/* background: url(../images/bg.jpg) top center no-repeat;
	background-size: 100% 100%; */
	padding: 0 0.58rem;
	flex: auto;
}

.top {
	width: 100%;
	margin: 0 auto;
}

.top .logo {
	width: 3.46rem;
	height: 0.53rem;
}

.top h1 {
	font-family: "TXRHJ";
	font-size: 0.68rem;
	font-weight: bold;
	color: #204a6e;
	flex: 1;
	text-align: center;
	letter-spacing: 0.06rem;
	text-shadow: 
    -1px -1px 0 #fff,  
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff; /* 模拟4方向描边 */
}

.cont_info {
	background-color: rgba(255, 255, 255, 0.85);
	justify-content: space-between;
	width: 15.3rem;
	margin: auto;
	border-radius: 0.1rem;
	padding: 0.1rem 0.2rem;
	box-shadow: 0 0.05rem 0.1rem rgba(0, 0, 0, 0.1);
}

.cont_info .left-logo {
	width: 1.34rem;
	height: 1.35rem;
	margin-left: 1rem;
}

.form-box {
	margin-right: 0.26rem;
}

.form-box h3 {
	font-size: 0.45rem;
	color: #3d3b3b;
	margin-bottom: 0.25rem;
}

.input-box {
	padding: 0 0.1rem;
	border-radius: 0.04rem;
}

.input-box .t-box {
	height: 0.74rem;
	line-height: 0.74rem;
	background-color: #e9f1f8;
	font-size: 0.26rem;
	padding: 0 0.68rem;
	border-radius: 0.04rem 0 0 0.04rem;
	text-align: right;
}
	
.input-box .t-box:focus {
	box-shadow: inset 0 0 5px #16618b;
	transition: all 0.5s ease;
}

.input-box .t-box::placeholder {
	font-size: 0.26rem;
}

.input-box .btn {
	background-color: #16618b;
	font-size: 0.26rem;
	border: none;
	color: #fff;
	padding:  0 0.3rem;
	cursor: pointer;
	height: 0.74rem;
    line-height: 0.74rem;
	font-weight: bold;
}

.input-box .btn:active {
	background: #00a0e9;
	opacity: 0.86;
	box-shadow: inset 0 0 5px #16618b;
	transition: all 0.5s ease;
}

.main {
	justify-content: space-between;
	max-width: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 0.1rem 3rem;
}

.main .left-text, .main .right-box {
	flex: 1;
	padding: 0 0.56rem;
}

.main .line-box {
	width: 0.02rem;
	height: 1.55rem;
	background-color: #ddd;
	margin: 0 0.55rem;
	align-items: center;
}

.main .left-text p, .main .right-box p {
	color: #47514e;
	font-size: 0.2rem;
}
.main .left-text i, .main .right-box i {
	font-size: 0.45rem;
	margin-right: 0.1rem;
	color:#515151;
}
.main .left-text .hd-title h3, .main .right-box .hd-title h3 { 
	background-color: #00a0e9;
	color: #fff;
	border-radius: 0.1rem;
	padding: 0 0.1rem;
	font-weight: bold;
	font-size: 0.25rem;
}
.bg-box {
	padding: 0 0 0 0.6rem;
	/* font-size: 0.2rem; */
}


img {
	max-width: 100%;
	height: auto;
}

/* 添加响应式样式 */
@media screen and (max-width: 768px) {

	html {
		font-size: 50px !important;
	}

	.top {
		flex-direction: column;
	}

	.top h1 {
		margin-left: 0;
		font-size: 0.5rem;
		letter-spacing: 0;
	}

	.main {
		flex-direction: column;
		padding: 0.36rem;
        align-items: flex-start;
		bottom: 0.26rem;
	}
	.main .left-text, .main .right-box {
		margin-bottom: 0.36rem;
	}
	.main .left-text p, .main .right-box p {
		font-size: 0.28rem;
	}
	.main .left-text .hd-title h3, .main .right-box .hd-title h3 {
		font-size: 0.3rem;
	}
	.main .left-text .hd-title i, .main .right-box .hd-title i {
		font-size: 0.5rem;
	}
	.cont_info {
		width: 100%;
		flex-direction: column;
		padding: 15px;
		height: auto;
		margin: auto 0;
	}

	.left-logo {
		margin-bottom: 20px;
		margin-left: 0 !important;
	}

	.form-box {
		width: 100%;
		margin-left: 0;
	}

	.right-box {
		flex-direction: column;
		align-items: center;
	}

	.left-text {
		padding: 15px;
	}

	.line-box {
		display: none;
	}

	.input-box {
		flex-direction: column;
		padding: 15px;
	}

	.input-box .t-box {
		width: 100%;
		margin-bottom: 10px;
		text-align: center;
	}
	.input-box .btn {
		width: 100%;
	}
}