.bg_div {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	border: none;
}

.bg_div2 {
	width: 100%;
	height: auto;
	border: none;
}

.bblack {
	background: #000;
}

.bwhite {
	background: #fff;
}

.bgray {
	background: #E6E6E6;
}

.toppanelbg {
	width: 100%;
	height: 140px;
	background: #333333;
}

.toplogo {
	left: 5%;
	top: 50%;
	margin: -40px 0;
}

.coverbg {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.64);
}

.menubtndiv0 {
	width: 100%;
	top: 400px;
	bottom: 130px;
	overflow-y: scroll;
	padding: 10px 0;
}

.menubtndiv {
	width: 100%;
	top: 0;
	height: 448px;
}

.btn1 {
	left: 12px;
	top: 0;
}

.btn2 {
	left: 12px;
	top: 151px;
}

.btn3 {
	left: 12px;
	top: 302px;
}

.btn4 {
	right: 12px;
	top: 0;
}

.btn5 {
	right: 12px;
	bottom: 0;
}

.menubottompanelbg {
	width: 100%;
	height: 130px;
	background: #000;
	bottom: 0;
}

.bottompanelbg {
	width: 100%;
	height: 130px;
	background: #fff;
}

.menukv {
	width: 100%;
	height: auto;
	top: 0;
}

.bottomlogo {
	left: 0;
	top: 50%;
	margin: -51.5px 0;
}

.agendabg {
	top: 0;
	bottom: 130px;
	width: 100%;
	background: rgba(0, 0, 0, 0.95);
}

.wxqrbg {
	top: 0;
	bottom: 130px;
	width: 100%;
	background: rgba(0, 0, 0, 0.95);
}

.agendaimg {
	top: 50%;
	left: 50%;
	margin: -312px -320px;
}

.wxqrimg {
	top: 50%;
	left: 50%;
	margin: -312px -282px;
}

.pbtn1 {
	right: 5%;
	bottom: 28%;
}

.pbtn2 {
	left: 5%;
	bottom: 6%;
}

.pbtn3 {
	left: 5%;
	bottom: 25%;
}

.selectdiv {
	width: 100%;
	height: 150px;
}

.optionbg {
	width: 336px;
	height: 68px;
	top: 50%;
	margin: -34px 0;
	left: 88px;
}

.selectoptionbg {
	width: 332px;
	top: 50%;
	margin: 34px 0;
	left: 0;
	background: #fff;
	z-index: 10;
	border: 2px solid #808080;
	overflow-y: scroll;
	padding-bottom: 10px;
}

.selectitem {
	width: 272px;
	font-size: 24px;
	color: #000;
	padding: 0 30px;
	margin-top: 10px;
}

.optionttxt {
	width: 250px;
	height: 68px;
	top: 50%;
	margin: -34px 0;
	left: 30px;
	color: #434343;
	font-size: 24px;
	line-height: 68px;
}

.submitimg {
	width: 128px;
	height: 68px;
	top: 50%;
	margin: -34px 0;
	left: 432px;
}

.titlediv {
	padding: 20px 5%;
	color: #000;
	font-size: 34px;
	min-height: 34px;
	line-height: 34px;
}

.slogondiv {
	width: 90%;
	padding: 40px 5% 0 5%;
	color: #000;
	font-size: 24px;
	line-height: 1.4;
	text-align: center;
}

#maindiv {
	min-height: 34px;
}

.itemdiv {
	border-top: 2px solid #CCCCCC;
	width: 100%;
	padding: 90px 0;
	display: table;
	vertical-align: middle;
}

.pdimg {
	width: 100%;
	height: auto;
	padding: 0;
}

.pdimg2 {
	width: 100%;
	height: auto;
	padding: 40px 0;
}

.pdimg0 {
	width: 100%;
	height: auto;
	padding: 0;
}

.pdimgb {
	width: 100%;
	height: auto;
	padding: 0 0 80px 0;
}

.pageLoading {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	height: 100%;
	width: 100%;
	/* background: rgba(248, 248, 248, 0.30); */
}

.show {
	z-index: 10;
	display: block;
	opacity: 1;
}

.hide {
	z-index: 5;
	display: none;
	opacity: 0;
}

.pageLoading img,
.m-cover img {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 100px;
	width: 100px;
	margin: -50px -50px;
	opacity: 0.8;
}

@font-face {
	font-family: 'PSAGroupeHMISans-Regular';
	src: url("../fonts/PSAGroupeHMISans-Regular.woff");
}

.ff-PSAG-R {
	font-family: PSAGroupeHMISans-Regular;
	/*  margin-right: 5px;
        margin-left: 5px; */
}

/* width, height */
.w100 {
	width: 100%;
}

.h100 {
	height: 100%;
}

/*flex*/
.flex {
	display: flex;
}

.flexwrap {
	flex-wrap: wrap;
}

.flexfe {
	align-items: flex-end;
}


.flexlr {
	justify-content: space-between;
}

/*flex center center - 主轴*/
.flexcc {
	justify-content: center;
	align-items: center;
}

/*flex center auto - 水平居中*/
.flexca {
	justify-content: center;
}

/*flex auto center - 垂直居中*/
.flexac {
	align-items: center;
}

/*flex left right*/
.flex-item {
	flex: 1;
}

.flex-item2 {
	flex: 2;
}

.flexcul {
	flex-flow: column;
}

.flexdc {
	flex-direction: column;
}

.flexab {
	align-items: baseline;
}

.pos-rel {
	position: relative;
	top: 0;
	left: 0;
}

.pos-abs {
	position: absolute;
	z-index: 33;
}

.pos-fix {
	position: fixed;
	z-index: 99;
}

.pos-fix-page {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.center {
	text-align: center;
}

.ver-center {
	vertical-align: center;
}

/* 水平两端对齐 */
.t-lr {
	text-align: justify;
	text-align-last: justify;
}

/* 垂直两端对齐 */
.t-tb {
	writing-mode: vertical-lr;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.f-ss {
	font-weight: 100;
}

.f-s {
	font-weight: 300;
}

.f-xs {
	font-weight: 400;
}


.f-m {
	font-weight: 500;
}

.f-b {
	font-weight: bolder;
}

.f-bb {
	font-weight: bold;
}

.f-underline {
	text-decoration: underline;
}

.f-line-through {
	text-decoration: line-through;
}

.f-spacing {
	letter-spacing: 2px;
}

.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ellipsis2 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	word-break: break-all;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -moz-box;
	-moz-line-clamp: 2;
	-moz-box-orient: vertical;
	overflow-wrap: break-word;
	word-break: break-all;
	white-space: normal;
	overflow: hidden;
}


.over-auto {
	overflow: hidden;
	overflow-y: auto;
}

::-webkit-scrollbar {
	width: 0;
	height: 0;
	color: transparent;
}

view,
text {
	/* line-height: 1; */
}

textarea {
	box-sizing: border-box;
	font-size: 28px;
	line-height: 1.8;
	height: 350px;
}

.f-10 {
	font-size: 10px;
}

.f-12 {
	font-size: 12px;
}


.f-14 {
	font-size: 14px;
}

.f-16 {
	font-size: 16px;
}

.f-18 {
	font-size: 18px;
}

.f-20 {
	font-size: 20px;
}

.f-22 {
	font-size: 22px;
}

.f-24 {
	font-size: 24px;
}

.f-26 {
	font-size: 26px;
}

.f-28 {
	font-size: 28px;
}

.f-30 {
	font-size: 30px;
}

.f-32 {
	font-size: 32px;
}

.f-34 {
	font-size: 34px;
}


.f-36 {
	font-size: 36px;
}

.f-38 {
	font-size: 38px;
}

.f-40 {
	font-size: 40px;
}

.f-44 {
	font-size: 44px;
}

.f-46 {
	font-size: 46px;
}

.f-48 {
	font-size: 48px;
}

.f-52 {
	font-size: 52px;
}

.f-54 {
	font-size: 54px;
}

.f-56 {
	font-size: 56px;
}

.f-58 {
	font-size: 58px;
}

.f-60 {
	font-size: 60px;
}

.f-62 {
	font-size: 62px;
}

.f-64 {
	font-size: 64px;
}

.f-70 {
	font-size: 70px;
}

.f-74 {
	font-size: 74px;
}

.f-80 {
	font-size: 80px;
}


.f-white {
	color: #ffffff !important;
}

.f-black {
	color: #313131 !important;
}

.f-black2 {
	color: #515151 !important;
}

.f-red {
	color: #600404 !important;
}


.f-blue {
	color: #007BC2 !important;
}

.f-yellow {
	color: yellow !important;
}

.f-blue2 {
	color: rgb(0, 255, 255) !important;
}

.f-grey {
	color: #999 !important;
}

.f-grey2 {
	color: rgb(102, 102, 102) !important;
}

.f-grey-form {
	color: #666 !important;
}


.bg-white {
	background: #ffffff !important;
}

.bg-blue {
	background: rgb(0, 122, 255) !important;
}

.bg-grey {
	background: #666 !important;
}

.bg-red {
	background: #ba0a30 !important;
}

.bg-black {
	background: #313131 !important;
}

.bg-yellow {
	background-color: #f3eee7 !important;
}

.bg-blue2 {
	background-color: rgb(0, 255, 255) !important;
}

.l-h28 {
	line-height: 28px;
}

.l-h30 {
	line-height: 30px;
}

.l-h32 {
	line-height: 32px;
}

.l-h34 {
	line-height: 34px;
}

.l-h36 {
	line-height: 36px;
}

.l-h40 {
	line-height: 40px;
}

.l-h52 {
	line-height: 52px;
}

.lh15 {
	line-height: 1.5;
}

.lh18 {
	line-height: 1.8;
}

.lh2 {
	line-height: 2;
}

.textwww {
	word-wrap: break-word;
	word-break: break-all;
	white-space: normal;
}

.border-radius4 {
	border-radius: 4px;
}

.border-radius10 {
	border-radius: 10px;
}

.banner-dots {
	bottom: 50px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 37;
}

.banner-dot {
	width: 80px;
	max-width: 80px;
	height: 4px;
	/* border-radius: 4px; */
	background: rgba(255, 255, 255, .5);
}

.banner-dot-active {
	width: 80px;
	max-width: 80px;
	height: 4px;
	background: rgba(255, 255, 255, 1);
}

.banner-dot+.banner-dot {
	/* margin-left: 10px; */
	margin-left: 0px;
}

.banner-dot-black {
	width: 80px;
	max-width: 80px;
	height: 4px;
	background: #DEDCDA;
}

.banner-dot-black-active {
	width: 80px;
	max-width: 80px;
	height: 4px;
	background: #979792;
}


.pos-rel .phone-auth {
	width: 100%;
	height: 100%;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	background-color: transparent;
}



.service-btn.pos-abs {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 999;
}

.margin-xs {
	margin: 10px;
}

.margin-sm {
	margin: 20px;
}

.margin {
	margin: 30px;
}

.margin-lg {
	margin: 40px;
}

.margin-xl {
	margin: 50px;
}

.margin-top-xs {
	margin-top: 10px;
}

.margin-top-sm {
	margin-top: 20px;
}

.margin-top {
	margin-top: 30px;
}

.margin-top-lg {
	margin-top: 40px;
}

.margin-top-xl {
	margin-top: 50px;
}

.margin-top-ll {
	margin-top: 60px;
}

.margin-bottom-xs {
	margin-bottom: 10px;
}

.margin-bottom-sm {
	margin-bottom: 20px;
}

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

.margin-bottom-lg {
	margin-bottom: 40px;
}

.margin-bottom-xl {
	margin-bottom: 50px;
}

.margin-left-xs {
	margin-left: 10px;
}

.margin-left-sm {
	margin-left: 20px;
}

.margin-left {
	margin-left: 30px;
}

.margin-left-lg {
	margin-left: 40px;
}

.margin-left-xl {
	margin-left: 50px;
}

.margin-right-xs {
	margin-right: 10px;
}

.margin-right-sm {
	margin-right: 20px;
}

.margin-right {
	margin-right: 30px;
}

.margin-right-lg {
	margin-right: 40px;
}

.margin-right-xl {
	margin-right: 50px;
}

.padding-xs {
	padding: 10px;
}

.padding-sm {
	padding: 20px;
}

.padding {
	padding: 30px;
}

.padding-lg {
	padding: 40px;
}

.padding-xl {
	padding: 50px;
}

.padding-top-sm {
	padding-top: 20px;
}

.padding-top {
	padding-top: 30px;
}

.padding-top-lg {
	padding-top: 40px;
}

.padding-left-xs {
	padding-left: 10px;
}

.padding-left-sm {
	padding-left: 20px;
}


.padding-left {
	padding-left: 30px;
}

.padding-left-xl {
	padding-left: 50px;
}


.padding-right-xs {
	padding-right: 10px;
}

.padding-right-sm {
	padding-right: 20px;
}

.padding-right {
	padding-right: 30px;
}

.padding-right-lg {
	padding-right: 40px;
}

.padding-right-xl {
	padding-right: 50px;
}

.padding-bottom-sm {
	padding-bottom: 20px;
}

.padding-bottom {
	padding-bottom: 30px;
}

.padding-bottom-lg {
	padding-bottom: 40px;
}

.dialog,
.dialog2 {
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 0;
	z-index: 99999999999999999;
	background: rgba(0, 0, 0, .7);
	overflow: hidden;
}

.dialog-cons {
	width: 690px;
	margin: 0 auto;
	border-radius: 20px;
	padding: 128px 40px 100px;
}

.dialog-logo {
	width: 238px;
	max-height: 100px;
	margin: 0 auto;
}

.dialog-tit {
	padding: 70px 0 24px;
}

.dialog-txt {
	padding-bottom: 70px;
}

.dialog-btn {
	width: 280px;
	height: 80px;
	border-radius: 43px;
	margin: 0 auto;
}

.nullView10 {
	width: 100%;
	height: 10px;
}

.nullView20 {
	width: 100%;
	height: 20px;
}

.nullView30 {
	width: 100%;
	height: 30px;
}

.nullView50 {
	width: 100%;
	height: 50px;
}

.nullView80 {
	width: 100%;
	height: 80px;
}

.nullView100 {
	width: 100%;
	height: 100px;
}

.opacity0 {
	opacity: 0;
}

.opacity1 {
	opacity: 1;
}



.mobileMode {
	display: none;
}

.pcMode {
	display: block;
}

@media screen and (max-width: 992px) {
	.pcMode {
		display: none;
	}

	.mobileMode {
		display: block;
	}
}

.cvTextMedia__video__aid {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 2;
	background-color: rgba(0, 0, 0, .1);
	cursor: pointer;
	opacity: 0;
	transition: opacity .3s ease-in-out .3s;
}

/* :not(:root):fullscreen::backdrop{
    position: fixed;
    inset: 0px;
    background: black;
} */


