body,
html {
	padding: 0;
	margin: 0;
	font-size: 14px;
	font-family：Arial,
	"Microsoft YaHei",
	PingFangSC-Regular,
	"Hiragino Sans GB",
	"Droid Sans Fallback",
	"WenQuanYi Micro Hei",
	sans-serif;
}

body {
	position: relative;
}

a {
	text-decoration: none;
}

img {
	vertical-align: bottom;
}

.loginContent {
	position: absolute;
	top: 20vh;
	left: 0;
	right: 0;
	width: 100%;
}

.loginContent .title {
	text-align: center;
	color: #000;
	font-size: 20px;
	font-weight: bolder;
	margin-bottom: 30px;
}

.loginContent .imgs {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.loginContent .imgs img {
	height: 8vw;
	margin: 0 8px;
}

.footer {
	position: absolute;
	bottom: 8vh;
	left: 0;
	right: 0;
	width: 100%;
}

.loginButton {
	display: block;
	color: #fff;
	background: #3091FF;
	border-radius: 6px;
	text-align: center;
	height: 42px;
	line-height: 42px;
	width: 85%;
	margin: 0 auto 25px;
}

.loginText {
	text-align: center;
	color: #737373;
}

.list {
	padding: 0 16px;
}

.list .row {
	background: #fff;
	padding: 15px 10px;
	margin-bottom: 10px;
	border-radius: 6px;
}

.row .rowTop {
	display: flex;
	align-items: flex-start;
	margin-bottom: 8px;
}

.rowTop img {
	width: 24vw;
	height: 24vw;
}

.rowTop .rowRight {
	flex: 1;
	margin-left: 10px;
}

.rowRight .title {
	color: #383838;
	font-weight: bold;
	margin-bottom: 8px;
}

.rowRight p {
	margin: 0;
	font-size: 12px;
	color: #737373;
	text-align: justify;
	text-justify: inter-ideograph;
}

.row .foot {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	color: #F6562A;
	font-size: 12px;
	font-weight: bold;
}

.foot div{
	flex: 1;
	padding-left: 10px;
	display: flex;
	justify-content: space-between;
}

.foot div span:first-child {
	color: #9c9c9c;
}

.foot img {
	width: 20vw;
	margin: 0 2vw;
}

.dialog-tip {
    position: fixed; /* 固定在窗口中 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 背景灰色半透明 */
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    z-index: 9999; /* 确保弹框在最前面 */
}

.dialog-tip .content {
    background-color: white; /* 白色背景 */
    padding: 20px;
    border-radius: 8px; /* 圆角 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 阴影效果 */
    text-align: center; /* 文字居中 */
    max-width: 300px;
    width: 60%;
}

.dialog-tip .content .phoneNum {
	font-size: 24px;
	font-weight: bold;
	color: #ff6c00;
	padding: 6px 0;
}

.dialog-tip .content p {
    margin: 0;
    font-size: 14px;
    color: #000000;
}
.dialog-tip .close-btn {
	display: block;
	width: 100%;
	margin: 20px auto 10px;
	height: 40px;
	line-height: 40px;
    background-color: #ff6c00;
    color: #ffffff;
    border: none;
    border-radius: 20px;
	font-size: 14px;
}
