/* 防止图片闪一下 */
image {
	will-change: transform
}

/* scroll-view */
.scroll-row {
	width: 100%;
	white-space: nowrap;
	line-height: 44px;
}

.scroll-row-item {
	display: inline-block !important;
}


body {
	--primary: #007bff;
	--secondary: #6c757d;
	--success: #28a745;
	--danger: #dc3545;
	--warning: #ffc107;
	--info: #17a2b8;
	--light: #f8f9fa;
	--dark: #343a40;
	--muted: #6c757d;
	--white: #fff;
	--borderColor: #dee2e6;
	--lightmuted: #B2B2B2;
}

/* 阴影 */
.shadow-sm {
	box-shadow: 0 2px 4px rgba(114, 130, 138, 0.2) !important;
}

.shadow {
	box-shadow: 0 8px 16px rgba(114, 130, 138, 0.2) !important;
}

.shadow-lg {
	box-shadow: 0 16px 48px rgba(114, 130, 138, 0.2) !important;
}

/* 定位 */
.position-absolute {
	position: absolute;
}

.position-fixed {
	position: fixed;
}

.position-relative {
	position: relative;
}

.left-0 {
	left: 0;
}

.top-0 {
	top: 0;
}

.bottom-0 {
	bottom: 0;
}

.right-0 {
	right: 0;
}

/* 宽高 */
.w-100 {
	width: 100%;
}

.w-50 {
	width: 50%;
}

.w-25 {
	width: 25%;
}

.w-20 {
	width: 20%;
}

.h-100 {
	height: 1250px;
}

.h-50 {
	width: 625px;
}

/* 字体 */
.font {
	font-size: 25px;
}

.font-sm {
	font-size: 22px;
}

.font-md {
	font-size: 30px;
}

.font-lg {
	font-size: 40px;
}

.font-big {
	font-size: 60px;
}

.font-weight {
	font-weight: bold !important;
}

.font-weight-100 {
	font-weight: 100 !important;
}

.line-h0 {
	line-height: 0 !important;
}

.line-h {
	line-height: 1 !important;
}

.line-h-sm {
	line-height: 1.2 !important;
}

.line-h-md {
	line-height: 1.5 !important;
}

.line-h-lg {
	line-height: 2 !important;
}

.line-h-big {
	line-height: 3 !important;
}

.line-through {
	text-decoration: line-through;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.row {
	box-sizing: border-box !important;
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap;
}

[class*='col-'],
[class*='span-'],
[class*='span24-'] {
	min-height: 1px;
	box-sizing: border-box !important;
}

/* 栅栏一 */
.col-1 {
	width: 62.5px;
}

.col-2 {
	width: 125px;
}

.col-3 {
	width: 187.5px;
}

.col-4 {
	width: 250px;
}

.col-5 {
	width: 312.5px;
}

.col-6 {
	width: 375px;
}

.col-7 {
	width: 437.5px;
}

.col-8 {
	width: 500px;
}

.col-9 {
	width: 562.5px;
}

.col-10 {
	width: 625px;
}

.col-11 {
	width: 687.5px;
}

.col-12 {
	width: 750px;
}

/* 栅栏二 */
.span-1 {
	width: 5%;
}

.span-2 {
	width: 10%;
}

.span-3 {
	width: 15%;
}

.span-4 {
	width: 20%;
}

.span-5 {
	width: 25%;
}

.span-6 {
	width: 30%;
}

.span-7 {
	width: 35%;
}

.span-8 {
	width: 40%;
}

.span-9 {
	width: 45%;
}

.span-10 {
	width: 50%;
}

.span-11 {
	width: 55%;
}

.span-12 {
	width: 60%;
}

.span-13 {
	width: 65%;
}

.span-14 {
	width: 70%;
}

.span-15 {
	width: 75%;
}

.span-16 {
	width: 80%;
}

.span-17 {
	width: 85%;
}

.span-18 {
	width: 90%;
}

.span-19 {
	width: 95%;
}

.span-20 {
	width: 100%;
}

/* 栅栏三 */
.span24-1 {
	width: 4.17%;
}

.span24-2 {
	width: 8.33%;
}

.span24-3 {
	width: 12.5%;
}

.span24-4 {
	width: 16.67%;
}

.span24-5 {
	width: 20.83%;
}

.span24-6 {
	width: 25%;
}

.span24-7 {
	width: 29.17%;
}

.span24-8 {
	width: 33.33%;
}

.span24-9 {
	width: 37.5%;
}

.span24-10 {
	width: 41.67%;
}

.span24-11 {
	width: 45.83%;
}

.span24-12 {
	width: 50%;
}

.span24-13 {
	width: 54.17%;
}

.span24-14 {
	width: 58.33%;
}

.span24-15 {
	width: 62.5%;
}

.span24-16 {
	width: 66.67%;
}

.span24-17 {
	width: 70.83%;
}

.span24-18 {
	width: 75%;
}

.span24-19 {
	width: 79.17%;
}

.span24-20 {
	width: 83.33%;
}

.span24-21 {
	width: 87.5%;
}

.span24-22 {
	width: 91.67%;
}

.span24-23 {
	width: 95.83%;
}

.span24-24 {
	width: 100%;
}


/* flex布局 */
.d-flex {
	display: flex;
	flex-direction: row !important;
}

.d-block {
	display: block;
}

.d-inline-block {
	display: inline-block;
}

.flex-1 {
	flex: 1;
}

.flex-column {
	flex-direction: column !important;
}

.flex-row {
	flex-direction: row;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-nowrap {
	flex-wrap: nowrap;
}

.flex-shrink {
	flex-shrink: 0;
}

.j-start {
	justify-content: flex-start;
}

.j-center {
	justify-content: center !important;
}

.j-end {
	justify-content: flex-end;
}

.j-sb {
	justify-content: space-between;
}
.j-sa {
	justify-content: space-around
}

.a-center {
	align-items: center !important;
}

.a-start {
	align-items: flex-start;
}

.a-end {
	align-items: flex-end;
}

.a-stretch {
	align-items: stretch;
}

.a-self-start {
	align-self: flex-start;
}

.a-self-auto {
	align-self: auto;
}

.a-self-end {
	align-self: flex-end;
}

.a-self-stretch {
	align-self: stretch;
}

.a-self-baseline {
	align-self: baseline;
}

/* Border */
.border {
	border-width: 1px;
	border-style: solid;
	border-color: var(--borderColor);
}

.border-top {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: var(--borderColor);
}

.border-right {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: var(--borderColor);
}

.border-bottom {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: var(--borderColor);
}

.border-left {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: var(--borderColor);
}

.border-0 {
	border-width: 0;
}

.border-top-0 {
	border-top-width: 0;
}

.border-right-0 {
	border-right-width: 0;
}

.border-bottom-0 {
	border-bottom-width: 0;
}

.border-left-0 {
	border-left-width: 0;
}

.border-primary {
	border-color: var(--primary) !important
}

.border-secondary {
	border-color: var(--secondary) !important
}

.border-success {
	border-color: var(--success) !important
}

.border-danger {
	border-color: var(--danger) !important
}

.border-warning {
	border-color: var(--warning) !important
}

.border-info {
	border-color: var(--info) !important
}

.border-light {
	border-color: var(--light) !important
}

.border-dark {
	border-color: var(--dark) !important
}

.border-white {
	border-color: var(--white) !important
}

.border-light-secondary {
	border-color: #F1F1F1 !important;
}

.rounded {
	border-radius: 5px;
}

.rounded-circle {
	border-radius: 100%;
}

.rounded-0 {
	border-radius: 0;
}

/* color */
.text-primary {
	color: var(--primary) !important;
}

.text-secondary {
	color: var(--secondary) !important;
}

.text-success {
	color: var(--success) !important;
}

.text-danger {
	color: var(--danger) !important;
}

.text-warning {
	color: var(--warning) !important;
}

.text-info {
	color: var(--info) !important;
}

.text-light {
	color: var(--light) !important;
}

.text-dark {
	color: var(--dark) !important;
}

.text-muted {
	color: var(--muted) !important;
}

.text-light-muted {
	color: var(--lightmuted) !important;
}

.text-white {
	color: var(--white) !important;
}

.bg-primary {
	background-color: var(--primary) !important;
}

.bg-secondary {
	background-color: var(--secondary) !important;
}

.bg-success {
	background-color: var(--success) !important;
}

.bg-danger {
	background-color: var(--danger) !important;
}

.bg-warning {
	background-color: var(--warning) !important;
}

.bg-info {
	background-color: var(--info) !important;
}

.bg-light {
	background-color: var(--light) !important;
}

.bg-dark {
	background-color: var(--dark) !important;
}

.bg-white {
	background-color: var(--white) !important;
}

.bg-light-secondary {
	background-color: #F1F1F1 !important;
}

/* Spacing */
.m-0 {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0;
}

.m {
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.m-1 {
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.m-2 {
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.m-3 {
	margin-left: 30px;
	margin-right: 30px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.m-4 {
	margin-left: 40px;
	margin-right: 40px;
	margin-top: 40px;
	margin-bottom: 40px;
}

.m-5 {
	margin-left: 50px;
	margin-right: 50px;
	margin-top: 50px;
	margin-bottom: 50px;
}

.mx-0 {
	margin-left: 0;
	margin-right: 0;
}

.mx {
	margin-left: 5px;
	margin-right: 5px;
}

.mx-1 {
	margin-left: 10px;
	margin-right: 10px;
}

.mx-2 {
	margin-left: 20px;
	margin-right: 20px;
}

.mx-3 {
	margin-left: 30px;
	margin-right: 30px;
}

.mx-4 {
	margin-left: 40px;
	margin-right: 40px;
}

.mx-5 {
	margin-left: 50px;
	margin-right: 50px;
}

.my-0 {
	margin-top: 0;
	margin-bottom: 0;
}

.my {
	margin-top: 5px;
	margin-bottom: 5px;
}

.my-1 {
	margin-top: 10px;
	margin-bottom: 10px;
}

.my-2 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.my-3 {
	margin-top: 30px;
	margin-bottom: 30px;
}

.my-4 {
	margin-top: 40px;
	margin-bottom: 40px;
}

.my-5 {
	margin-top: 50px;
	margin-bottom: 50px;
}

.mt-0 {
	margin-top: 0;
}

.mt {
	margin-top: 5px;
}

.mt-auto {
	margin-top: auto;
}

.mt-1 {
	margin-top: 10px;
}

.mt-2 {
	margin-top: 20px;
}

.mt-3 {
	margin-top: 30px;
}

.mt-4 {
	margin-top: 40px;
}

.mt-5 {
	margin-top: 50px;
}

.mb-0 {
	margin-bottom: 0;
}

.mb {
	margin-bottom: 5px;
}

.mb-auto {
	margin-bottom: auto;
}

.mb-1 {
	margin-bottom: 10px;
}

.mb-2 {
	margin-bottom: 20px;
}

.mb-3 {
	margin-bottom: 30px;
}

.mb-4 {
	margin-bottom: 40px;
}

.mb-5 {
	margin-bottom: 50px;
}

.ml-0 {
	margin-left: 0;
}

.ml {
	margin-left: 5px;
}

.ml-auto {
	margin-left: auto;
}

.ml-1 {
	margin-left: 10px;
}

.ml-2 {
	margin-left: 20px;
}

.ml-3 {
	margin-left: 30px;
}

.ml-4 {
	margin-left: 40px;
}

.ml-5 {
	margin-left: 50px;
}

.mr-0 {
	margin-right: 0;
}

.mr {
	margin-right: 5px;
}

.mr-1 {
	margin-right: 10px;
}

.mr-2 {
	margin-right: 20px;
}

.mr-3 {
	margin-right: 30px;
}

.mr-4 {
	margin-right: 40px;
}

.mr-5 {
	margin-right: 50px;
}

.p-0 {
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.p {
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
}

.p-1 {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.p-2 {
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.p-3 {
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 30px;
	padding-bottom: 30px;
}

.p-4 {
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 40px;
	padding-bottom: 40px;
}

.p-5 {
	padding-left: 50px;
	padding-right: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
}

.px-0 {
	padding-left: 0;
	padding-right: 0;
}

.px {
	padding-left: 5px;
	padding-right: 5px;
}

.px-1 {
	padding-left: 10px;
	padding-right: 10px;
}

.px-2 {
	padding-left: 20px;
	padding-right: 20px;
}

.px-3 {
	padding-left: 30px;
	padding-right: 30px;
}

.px-4 {
	padding-left: 40px;
	padding-right: 40px;
}

.px-5 {
	padding-left: 50px;
	padding-right: 50px;
}

.py-0 {
	padding-top: 0;
	padding-bottom: 0;
}

.py {
	padding-top: 5px;
	padding-bottom: 5px;
}

.py-1 {
	padding-top: 10px;
	padding-bottom: 10px;
}

.py-2 {
	padding-top: 20px;
	padding-bottom: 20px;
}

.py-3 {
	padding-top: 30px;
	padding-bottom: 30px;
}

.py-4 {
	padding-top: 40px;
	padding-bottom: 40px;
}

.py-5 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.pt-0 {
	padding-top: 0;
}

.pt {
	padding-top: 5px;
}

.pt-1 {
	padding-top: 10px;
}

.pt-2 {
	padding-top: 20px;
}

.pt-3 {
	padding-top: 30px;
}

.pt-4 {
	padding-top: 40px;
}

.pt-5 {
	padding-top: 50px;
}

.pb-0 {
	padding-bottom: 0;
}

.pb {
	padding-bottom: 5px;
}

.pb-1 {
	padding-bottom: 10px;
}

.pb-2 {
	padding-bottom: 20px;
}

.pb-3 {
	padding-bottom: 30px;
}

.pb-4 {
	padding-bottom: 40px;
}

.pb-5 {
	padding-bottom: 50px;
}

.pl-0 {
	padding-left: 0;
}

.pl {
	padding-left: 5px;
}

.pl-1 {
	padding-left: 10px;
}

.pl-2 {
	padding-left: 20px;
}

.pl-3 {
	padding-left: 30px;
}

.pl-4 {
	padding-left: 40px;
}

.pl-5 {
	padding-left: 50px;
}

.pr-0 {
	padding-right: 0;
}

.pr {
	padding-right: 5px;
}

.pr-1 {
	padding-right: 10px;
}

.pr-2 {
	padding-right: 20px;
}

.pr-3 {
	padding-right: 30px;
}

.pr-4 {
	padding-right: 40px;
}

.pr-5 {
	padding-right: 50px2;
}
.support-box {
    background: #f6f6f6;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}
.support-cellbox {
    width: 90%;
    text-align: left;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 500;
    color: #333333;
    background: #ffffff;
    padding: 0.5rem;
    margin: 1rem auto;
    border-radius: 1rem;
    min-height: 100px;
}
.support-imgbox {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.support-titlebox {
    text-align: center;
}
.support-btnbox {
    margin: 1rem;
}
.support-min {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e6e3e3;
}
.support-min .name {
    color: #323223;
    font-size: .9rem;
}
.support-min .value {
    color: #323223;
}
.a_333 {
    color: #333333;
}
.a_333:hover {
    color: #333333;
    text-decoration: none;
}
.span_999 {
    color: #999999;
}
.text-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
@media only screen and (min-width: 1000px) {
    .text-box .first, .text-box .second {
        flex: 2;
    }
}
@media only screen and (min-width: 1000px) {
    .text-box .third {
        flex: 5;
    }
}
.text-box .four {
    display: flex;
    height: 1.25rem;
    align-content: center;
}
@media only screen and (min-width: 1000px) {
    .text-box .four {
        flex: 1;
    }
}
.text-box .four img {
    width: 1.125rem;
    height: 1.25rem;
    margin-right: .6rem;
}
.text-box .four a {
    color: #333333;
    font-size: .875rem;
    transition: .3s all;
    border-bottom: 1px solid transparent;
}
.text-box p {
    font-size: .875rem;
}
@media only screen and (min-width: 1000px) {
    .text-box .five {
        flex: 8;
    }
}
.list-unstyled .list:nth-child(even) {
    background: #eeeeee;
}
.list-unstyled .list,.list-unstyled .list2 {
    border-bottom: 0!important;
}
.list-unstyled .list2 {
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%);
    background: #ffffff;
}
.list-unstyled .list .name,.list-unstyled .list2 .name {
    width: 100%;
    font-weight: bold;
    font-size: 1.125rem;
}
.service-content {
    justify-content: space-between;
    float: left;
    /* min-width: 100px; */
}

.branch-service-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.service-content>p {
    font-size: .875rem;
    min-width: 75px;
}
.list-unstyled .list .purpose-line table,.list-unstyled .list2 .purpose-line table {
    /* width: 100%; */
    border-collapse: collapse;
}
.branch-service-row .row-content div {
    line-height: 1.5rem;
    padding-left: 1rem;
    width: 10rem;
}
.list-unstyled .list .purpose-line table tbody td,.list-unstyled .list2 .purpose-line table tbody td {
    height: 1.5rem;
    position: relative;
}
.far {
    font-weight: 400;
}
.fa-check-circle:before {
    content: "\f058";
}
.list-unstyled .list .purpose-line table tbody td:after,.list-unstyled .list2 .purpose-line table tbody td:after {
    content: '';
    position: absolute;
    right: 0;
    top: 12.5%;
    height: 75%;
    width: 1px;
    background: #cccccc;
}
.list-unstyled .list .purpose-line table tbody td:last-child:after,.list-unstyled .list2 .purpose-line table tbody td:last-child:after {
    display: none;
}
.list-box {
    width: 100%;
    margin-bottom: 1.875rem;
}
.list-box .list-table-head {
    width: 100%;
    height: 3.125rem;
    display: flex;
    justify-content: space-between;
    line-height: 3.125rem;
    padding: 0 1.25rem;
    background: #f6f6f6;
}
.list-box .list-table-head span:nth-child(1) {
    width: 8%;
}
.list-box .list-table-head span:nth-child(2) {
    width: 28%;
}
.list-box .list-table-head span:nth-child(3) {
    width: 12%;
}
.list-box .list-table-head span:nth-child(4) {
    width: 12%;
}
.list-box .list-table-head span:nth-child(5) {
    width: 40%;
}
.list-box .list-table-head span {
    color: #333333;
    font-weight: bold;
    text-align: center;
}
.list-box .list .block:nth-child(1) {
    width: 8%;
    justify-content: center;
}
.list-box .list .block:nth-child(2) {
    width: 28%;
    text-align: justify;
    padding-left: .625rem;
}
.list-box .list .block:nth-child(3) {
    width: 12%;
    justify-content: center;
}
.list-box .list .block:nth-child(4) {
    width: 12%;
    justify-content: center;
}
.list-box .list .block:nth-child(4) img {
    object-fit: cover;
    width: 3.25rem;
    vertical-align: middle;
}
.list-box .list .block:nth-child(5) {
    width: 40%;
    text-align: justify;
}
.list-box .list .block {
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    text-align: center;
}
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.list-box .list {
    width: 100%;
    display: flex;
    min-height: 3.75rem;
    line-height: 3.75rem;
    position: relative;
    padding: 0 1.25rem;
    transition: .2s all;
}
.list-box .list:hover {
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
}
.detail-window {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    opacity: 0;
    z-index: -999;
    align-items: center;
    transition: .3s opacity;
    background: rgba(0, 0, 0, 0.6);
}
.detail-window .close-btn {
    position: absolute;
    right: .25rem;
    top: .625rem;
    color: #333333;
    font-size: 2.25rem;
    cursor: pointer;
    transition: .3s all;
    line-height: 0;
}
.detail-window .close-btn:hover {
    color: #999999;
}
.detail-window.merchant .inside {
    display: flex;
    padding: 0 1.25rem;
    align-items: center;
}
.detail-window .inside {
    width: 95%;
    margin: 0 auto;
    background: #ffffff;
    max-width: 1200px;
    position: relative;
    min-height: 13.125rem;
}
.detail-window.merchant .inside .left-img img {
    border-radius: .375rem;
    max-width: 21.25rem;
}
.detail-window.merchant .inside .mid-text {
    width: 37.5rem;
    margin-left: 1.875rem;
    color: #333333;
    display: flex;
    flex-wrap: wrap;
}
.detail-window.merchant .inside .mid-text .name {
    width: 100%;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.detail-window.merchant .inside .mid-text p {
    width: 50%;
    line-height: 1.625rem;
    font-size: .875rem;
}
.detail-window.merchant .inside .mid-text p .pay-icon {
    width: 2.25rem;
    height: 1.1875rem;
    vertical-align: middle;
    margin-left: .9375rem;
    object-fit: cover;
}
.detail-window.merchant .inside .right-location {
    position: absolute;
    right: 1.25rem;
    bottom: 3.125rem;
    display: flex;
    align-content: center;
}
.detail-window.merchant .inside .right-location img {
    width: 1.125rem;
    height: 1.25rem;
    object-fit: cover;
    margin-right: .625rem;
}
.detail-window.merchant .inside .right-location a {
    font-size: .875rem;
    color: #333333;
    transition: .3s all;
    border-bottom: 1px solid transparent;
}
.list-box2 {
    width: 100%;
}
.list-box2 .list {
    width: 100%;
    background: #ffffff;
    min-height: 7.1875rem;
    display: flex;
    padding: 0 .625rem;
    align-items: center;
    position: relative;
}
.list-box2 .list:nth-child(even) {
    background: #f6f6f6;
}
.list-box2 .list .left {
    height: inherit;
}
.list-box2 .list .left img {
    width: 100%;
    max-width: 10.3125rem;
    border-radius: .375rem;
}
.list-box2 .list .mid {
    flex: 1;
    overflow: hidden;
    margin-left: 1.875rem;
    color: #333333;
}
.list-box2 .list .mid .name {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: .9375rem;
}
.list-box2 .list .mid .text-block {
    width: 100%;
    display: flex;
}
.list-box2 .list .mid .text-block p {
    font-size: .875rem;
    line-height: 1.5rem;
}
.list-box2 .list .mid .text-block p:nth-child(1) {
    min-width: 13.4375rem;
}
.list-box2 .list .mid .text-block p:nth-child(2) {
    min-width: 12.5rem;
    margin-right: 1.25rem;
}
.list-box2 .list .right {
    right: .9375rem;
    top: .625rem;
    position: absolute;
    display: flex;
    align-items: center;
}
.list-box2 .list .right img {
    width: 1.125rem;
    height: 1.25rem;
    object-fit: contain;
    margin-right: .625rem;
}
.list-box2 .list .right a {
    color: #333333;
    font-size: .875rem;
    cursor: pointer;
    transition: .3s all;
    border-bottom: 1px solid transparent;
}
.question-block {
    margin-top: 1.25rem;
}
.cus-block-title {
    display: flex;
    height: 1.875rem;
    align-self: center;
    border-left: 2px solid #a6cc1f;
}
.cus-block-title span {
    font-weight: bold;
    color: #333333;
    font-size: 1rem;
    line-height: 1.875rem;
    margin: 0 .625rem 0 .9375rem;
}
.question-block .list-box3 {
    margin-top: .3125rem;
    margin-left: 1.5625rem;
    width: calc(100% - 1.5625rem);
}
.question-block .list-box3 .list3 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    line-height: 2rem;
}
.question-block .list-box3 .list3 a {
    font-size: 1rem;
    color: #333333;
    display: inline-block;
    position: relative;
    text-indent: 1rem;
    transition: .3s all;
    cursor: pointer;
    max-width: 70%;
}
.question-block .list-box3 .list3 a::before {
    content: '';
    width: .375rem;
    height: .375rem;
    border-radius: 50%;
    background: #9ebc2d;
    position: absolute;
    left: 0;
    top: calc(50% - .1875rem);
}
.question-block .list-box3 .list3 a:hover {
    color: #9ebc2d;
    text-decoration: none;
}
.right-container {
    /*margin-left: 18.75rem;*/
    /*width: calc(100% - 18.75rem);*/
    /*float: right;*/
    padding: 0 1.25rem;
}
.right-container.index .inside {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.right-container.index .inside .group {
    cursor: pointer;
    width: calc(100% / 3);
    max-width: 17.5rem;
    max-height: 14.0625rem;
    padding: .9375rem;
    transition: .3s all;
    position: relative;
}
.right-container.index .inside .group:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.right-container.index .inside .group img {
    width: 100%;
    object-fit: cover;
}
.right-container.index .inside .group span {
    width: 100%;
    display: block;
    font-size: 1rem;
    color: #333333;
    text-align: center;
    margin-top: .9375rem;
}
.right-container.index .inside .group a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.right-container.detail {
    padding-bottom: 1.875rem;
}
.right-container.padding-none {
    padding: 0;
}
.right-container.detail .card-banner {
    margin-left: 1.25rem;
    width: calc(100% - 1.25rem);
    min-width: 14.375rem;
    background: #f6f6f6;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.right-container.detail .card-banner img {
    /* width: 100%; */
    object-fit: cover;
    max-width: 18.375rem;
}
.right-container.detail .card-banner .right {
    margin-left: 1.25rem;
    align-self: flex-start;
}
.right-container.detail .card-banner .right .name {
    font-size: 1.125rem;
    font-weight: bold;
    color: #333333;
    display: block;
    width: 100%;
    margin-bottom: .9375rem;
}
.right-container.detail .card-banner .right p {
    font-size: .875rem;
    color: #999999;
}
.right-container.detail .second-box {
    width: 100%;
    padding: 0 1.25rem;
}
.right-container.detail .second-box .consumption-block, .main .content .right-container.detail .second-box .service-block {
    margin-top: 1.25rem;
}
.right-container.detail .second-box .cus-block-title {
    display: flex;
    height: 1.875rem;
    align-self: center;
    border-left: 2px solid #a6cc1f;
}
.right-container.detail .second-box .cus-block-title span {
    font-weight: bold;
    color: #333333;
    font-size: 1rem;
    line-height: 1.875rem;
    margin: 0 .625rem 0 .9375rem;
}
.right-container.detail .second-box .cus-block-title img {
    object-fit: contain;
    height: 1.1rem;
    margin-top: 6px;
}
.right-container.detail .second-box .consumption-block .group-container, .main .content .right-container.detail .second-box .service-block .group-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: .625rem;
}
.right-container.detail .second-box .consumption-block .group-container .group, .main .content .right-container.detail .second-box .service-block .group-container .group {
    width: 7.5rem;
    height: 2.25rem;
    border: 1px solid #dddddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: .875rem;
    color: #333333;
    cursor: pointer;
    margin-right: .1875rem;
}
.right-container.detail .second-box .consumption-block .group-container .group:nth-child(1) img {
    width: 1.5rem;
}
.right-container.detail .second-box .consumption-block .group-container .group:nth-child(2) img {
    width: 1.5625rem;
}
.right-container.detail .second-box .consumption-block .group-container .group:nth-child(3) img {
    width: 1.375rem;
}
.right-container.detail .second-box .consumption-block .group-container .group img.selected, .main .content .right-container.detail .second-box .service-block .group-container .group img.selected {
    display: none;
}
.right-container.detail .second-box .consumption-block .group-container .group img, .main .content .right-container.detail .second-box .service-block .group-container .group img {
    object-fit: contain;
}
.card-color01 {
    color: #1f2a66!important;
}
.card-color02 {
    color: #e9c121!important;
}
.card-color03 {
    color: #c81970!important;
}
.card-color04 {
    color: #e9c121!important;
}
.card-color05 {
    color: #2479b8!important;
}
.card-color06 {
    color: #1f6bd3!important;
}
.card-color07 {
    color: #9ebc2d!important;
}
.content-box .contenet-text .list-box-new {
    width: 100%;
    height: 100%;
}
.content-box .contenet-text .list-box-new .list-new {
    width: 100%;
    min-height: 12rem;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
}
.content-box .contenet-text .list-box-new .list-new {
    display: block;
    padding: 0;
    padding-top: 0.6rem;
}
.content-box .contenet-text .list-box-new .list-new .item-new {
    float: left;
    height: 18rem;
    border: 1px solid #ccc;
    width: 12.5rem;
    margin: 0.4rem;
    text-align: center;
    padding-top: 1.625rem;
}
.content-box .contenet-text .list-box-new .list-new .item-new img {
    height: 11.25rem;
    width: 10.625rem;
    margin-bottom: 1rem;
}
.content-box .contenet-text .list-box-new .list-new .item-new p {
    font-size: .875rem;
    margin-top: 0.3rem;
    color: #999;
}
.content-box .contenet-text {
    width: 100%;
    /*height: 100%;*/
}
.zty-name {
    padding: 0 10px;
    max-height: 42px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    box-orient: vertical;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000000;
}
.meta-box {
    /*margin-left: 1rem;*/
    padding: 1rem;
    background: #f8f8f8;
    min-height: 21rem;
}
.meta-box .banner {
    background: #fff;
    padding: 1rem;
    padding-right: 0;
    float: left;
    width: 43%;
}
.meta-box .banner .show {
    float: left;
    height: 16.5rem;
    width: 15rem;
}
.meta-box .banner .show img {
    max-width: 14rem;
    max-height: 15.5rem;
}
.meta-box .banner .thumb {
    width: 6rem;
    height: 16.5rem;
    overflow-y: scroll;
    overflow-x: hidden;
    float: left;
}
.meta-box .banner .thumb img.active {
    border: 1px solid #a5cb1f;
}

.meta-box .banner .thumb img {
    width: 4.53rem;
    height: 4.53rem;
    display: block;
    margin-bottom: 0.5rem;
    padding: 0.2rem;
}
.meta-box .info {
    float: left;
    width: 57%;
    padding-left: 2rem;
}
.meta-box .info .phone-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: bold;
}
.meta-box .info p {
    color: #999;
    font-size: 0.93rem;
}
.properties-box {
    padding: 2rem;
}
.properties-box p {
    float: left;
    width: 50%;
    margin-bottom: 1rem;
}
.news-box {
    width: 100%;
    float: right;
    padding: 0 1.25rem;
}
.news-box .group {
    display: flex;
    height: 3.5rem;
    width: 100%;
    line-height: 3.5rem;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
}
.news-box .group .left {
    flex: 3;
    font-size: 1rem;
    color: #333333;
}
.news-box .group .left a {
    transition: .3s all;
    color: #333333;
}
.news-box .group .left a:hover {
    color: #007bff;
}
.news-box .group .mid, .news-box .group .right {
    cursor: default;
    flex: 1;
    font-size: .875rem;
    color: #333333;
    text-align: right;
    margin-left: 1.25rem;
}
a:hover {
    text-decoration: none;
}
.content-box .contenet-text .article-content p {
    font-size: .875rem;
    color: #000000;
    margin-bottom: 1.25rem;
    text-indent: 2rem;
    line-height: 1.5rem;
}
.content-box .contenet-text .article-content li {
    list-style: none;
}
.act-content {
    display: flex;
    flex-direction: column;
    background: #f6f6f6;
}
.act-content .act-list-box {
    width: 100%;
    padding: 0 1.25rem;
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.875rem;
    justify-content: space-between;
}
.act-content .act-list-box .act-list {
    margin-bottom: 1.25rem;
    width: calc(96% / 3);
    max-width: 22.5rem;
    display: flex;
    flex-direction: column;
    padding: .625rem;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    transition: .3s all;
}
.act-list-box .act-list:hover {
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
}
.act-content .act-list-box .act-list img {
    width: 100%;
    border-radius: .375rem;
    object-fit: cover;
    margin-bottom: .9375rem;
}
.act-content .act-list-box .act-list p {
    font-size: 1.125rem;
    color: #333333;
    font-weight: bold;
    margin-bottom: .3125rem;
}
.act-content .act-list-box .act-list.finish p, .act-content .act-list-box .act-list.finish .act-time span {
    color: #cccccc;
}
.act-content .act-list-box .act-list .act-time {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.act-content .act-list-box .act-list .act-time span {
    font-size: 1rem;
    color: #333333;
}
.act-content .act-list-box .act-list a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.act-content .act-list-box .act-list.finish:after {
    content: '';
    position: absolute;
    right: .9375rem;
    bottom: .9375rem;
    width: 9.3125rem;
    height: 8.125rem;
    background: url(../img/activity-page-end-logo.png) no-repeat;
    background-size: cover;
}
.ad-content {
    display: flex;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.25rem;
    background: #f6f6f6;
}
.ad-content .ad-left-container {
    width: 18.75rem;
}
.ad-content .ad-left-container .ad-title {
    width: 100%;
    height: 3.75rem;
    background: #a6cc1f;
    line-height: 3.75rem;
    color: #ffffff;
    text-indent: 1rem;
    font-size: 1.125rem;
}
.ad-content .ad-left-container .ad-block-group {
    width: 100%;
}
.ad-content .ad-left-container .ad-block-group .ad-block.ad-selected {
    pointer-events: none;
    border: 2px solid #a6cc1f;
}
.ad-content .ad-left-container .ad-block-group .ad-block {
    width: 100%;
    display: flex;
    margin-bottom: 1.25rem;
    border: 1px solid #eeeeee;
    padding: .625rem;
    cursor: pointer;
    position: relative;
    flex-direction: column;
    margin-bottom: 1.25rem;
}
.ad-content .ad-left-container .ad-block-group .ad-block img {
    width: 100%;
    object-fit: cover;
    border-radius: .375rem;
}
.ad-content .ad-left-container .ad-block-group .ad-block p {
    width: 100%;
    font-size: 1rem;
    color: #333333;
    margin-top: .625rem;
}
.ad-content .ad-left-container .ad-block-group .ad-block a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.ad-content .ad-right-container {
    padding-left: 1.25rem;
    width: calc(100% - 18.75rem);
    color: #333333;
}
.ad-content .ad-right-container .ad-banner {
    width: 100%;
    object-fit: cover;
}
.ad-content .ad-right-container .ad-info {
    width: 100%;
    margin-top: 1.25rem;
    text-align: center;
}
.ad-content .ad-right-container .ad-info span {
    font-size: 1.125rem;
    line-height: 2.25rem;
    font-weight: bold;
}
.ad-content .ad-right-container .ad-info .ad-time {
    font-size: 1rem;
}
.ad-content .ad-right-container .ad-text-content {
    margin-left: 1.875rem;
    margin-top: 1.875rem;
    width: calc(100% - 1.875rem);
    color: #333333;
}
.ad-content .ad-right-container .ad-text-content p {
    font-size: .875rem;
}
