﻿.single-page .single-page-list {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	margin-right: -0.75rem;
	margin-bottom: -1.25rem;
}

.single-page .single-page-list-item {
	width: 18rem;
	position: relative;
	margin-right: 0.75rem;
	margin-bottom: 1.25rem;
}

.single-page .single-page-list-item-image {
	height: 7.75rem;
	width: 100%;
	border-radius: 0.5rem;
	background-position: 50%;
	overflow: hidden;
}

.single-page .single-page-list-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0.3125rem;
	transition: all .5s ease-in-out;
}

.single-page .single-page-list-item:hover .single-page-list-item-image img {
	transform: scale(1.1);
}

.single-page-list-item-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 0.5rem;
	position: relative;
	top: -0.5rem;
}

.single-page-list-item-content .c-top-title {
	padding-top: 1.875rem;
	padding-bottom: 0.75rem;
	color: #333;
	font-weight: 600;
	font-size: 0.875rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.single-page-list-item-content .c-top-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.c-top {
	padding: 0 0.625rem;
}

.c-top-flex .c-top-flex-item {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.c-top-flex-item-title {
	color: #ff4343;
	font-size: 0.75rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.c-top-flex-item-desc {
	color: #bbb;
	font-size: 0.75rem;
	font-weight: 400;
}

.c-bottom {
	display: flex;
	bottom: -0.5rem;
	position: relative;
}

.c-bottom .c-bottom-btn {
	flex: 1;
	height: 2.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 0.875rem;
	cursor: pointer;
	background-color: #3183ff;
}

.c-bottom-btn a {
	color: #fff;
}

.c-bottom .c-bottom-btn:first-child {
	border-right: 1px dotted #fff;
	border-bottom-left-radius: 0.5rem;
}

.c-bottom .c-bottom-btn:last-child {
	border-bottom-right-radius: 0.5rem;
}

.single-page .content {
	padding-bottom: 1.875rem;
	padding-top: 1.875rem;
	background-color: #f6f8f9;
}

.single-page .banner img{
	width: 100%;
	display: block;
	margin: auto;
	height: auto;
}

.single-page .banner a {
	display: block;
}

.single-page .demo {
	display: none;
	position: fixed;
	top: 0rem;
	right: 0rem;
	bottom: 0rem;
	left: 0rem;
	overflow: auto;
	z-index: 9999;
}

.demo-dialog {
	width: 45%;
	margin: 10vh auto;
	min-height: 6.25rem;
	background-color: #fff;
	z-index: 1000;
	border-radius: 0.375rem;
	padding: 1.25rem;
	position: relative;
}

#floor {
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	display: none;
}

#demo .close-btn {
	position: absolute;
	top: 0.625rem;
	right: 0.625rem;
	z-index: 1000;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	border: 1px solid #bbb;
	cursor: pointer;
}

#demo .close-btn span {
	display: inline-block;
	width: 0.75rem;
	height: 1px;
	background-color: #bbb;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
}

#demo .close-btn span:first-child {
	transform: rotate(45deg);
	left: 20%;
}

#demo .close-btn span:last-child {
	transform: rotate(-45deg);
	right: 15%;
}

.demo-mobile {
	width: 22.5rem;
	max-width: 100%;
	height: 40rem;
	position: relative;
	display: block;
	background-image: url(../../static/image/mobile.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	padding: 2.5rem 0rem;
}

#iframe {
	width: 80%;
	height: 100%;
	display: block;
	margin: 0 auto;
}



.new-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.new-list .new-list-item{
    width: 36.875rem;
    display: flex;
    background-color: #fff;
    box-sizing: border-box;
    padding: 0.9375rem 1.25rem;
    margin-bottom: 1.25rem;
}

.new-list .new-list-item-img {
    flex: 0 0 16.5rem;
    height: 7.5rem;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    border-radius: 0.375rem;
    margin-right: 0.9375rem;
}

.new-list .new-list-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-list .content-wrap .order{
    display: flex;
    justify-content: space-between;
}

.new-list .order .order-item {
    text-align: center;
    font-size: 0.875rem;
}

.new-list .new-list-item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 0;
}

.new-list .new-list-item-content-title {
    display: flex;
}

.new-list .new-list-item-content-title span  {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 98%;
}

.new-list .new-list-item-content .content-wrap {
    flex: 1;
    margin-top: 0.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.new-list .order-item .order-item-title {
    color: #ff4343;
    margin-bottom: 0.3125rem;
}

.new-list .order-item .order-item-content {
    color: #bbb;
}

.new-list .content-wrap .button {
    display: flex;
    justify-content: space-between;
}

.new-list .content-wrap .button-item {
    padding: 0.4375rem 0.875rem;
    border-radius: 0.25rem;
    color: #fff;
    font-size: 0.875rem;
    background-color: #409eff;
    border: 1px solid #409eff;
    cursor: pointer;
}

.new-list .content-wrap .button-item a {
    color: #fff;
}

.new-list .content-wrap .button-item:hover {
    background-color: #66b1ff;
    border-color: #66b1ff;
}

.demo-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.6rem;
}

.qrcode-text {
	height: 3.2rem;
	line-height: 3.2rem;
	text-align: center;
}