html,
body {
	margin: 0;
	height: 0;
}

:root {
	--primaryColor: #D2BAA1;
	--primaryColor1: #796D60;
	--fontColor: #ffffff;
}

[v-cloak]{
	display: none;
}

#app {
	width: 100%;
	height: 100vh;
	font-size: 60.5%;
	overflow: hidden;
	overflow-y: auto;
	color: var(--fontColor);
}

.contactInformationMask {
    position: fixed;
    background: rgba(0 0 0/50%);
    width: 100%;
    height: 100vh;
    z-index: 9999;
    top: 0;
    left: 0;
	display: none;
}

.contactInformation {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 1em 10em;
    border-radius: 1em;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contactInformation img {
    width: 20em;
}

a{
	color: inherit;
	text-decoration: none;
}

#app::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.el-dropdown {
	font-size: 1em;
}

.head {
    width: 100%;
    height: 10vh;
    position: sticky;
    top: 0;
    background-color: #000;
    display: grid;
    padding: 0 1em;
    box-sizing: border-box;
    z-index: 5;
    grid-template-columns: 15em 1fr 15em;
    grid-template-rows: 10vh;
    align-items: center;
    justify-items: center;
}

.moreMenu{
	display: none;
	width: 3.5em;
	height: 2px;
	background-color: #fff;
	position: relative;
}

.moreMenu::before{
	content: "";
	width: 100%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 0;
	transform: translateY(-500%) rotate(0deg);
	transition: transform .2s linear;
}

.moreMenu::after{
	content: "";
	width: 100%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	bottom: 0;
	transform: translateY(500%) rotate(0deg);
	transition: transform .2s linear;
}

.moreMenuClose{
	background-color: transparent;
}

.moreMenuClose::before{
	transform: translateY(0%) rotate(-135deg);
}
.moreMenuClose::after{
	transform: translateY(0%) rotate(135deg);
}

.logo {
	height: 45%;
}

.headMenu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	font-weight: 700;
}

.headMenuItem {
	padding: 0 1em;
	margin: 0 1em;
	color: var(--fontColor);
	font-size: 1.5em;
	height: 8vh;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer !important;
}

.currentMenu::before {
	content: "";
	width: 50%;
	border-top: 2px solid var(--fontColor);
	left: 25%;
	bottom: 0;
	position: absolute;
}

.moreMenuCon {
    position: fixed;
    background: rgba(0 0 0/50%);
    width: 100%;
    height: 92vh;
    z-index: 4;
	display: none;
}

.moreMenus {
    position: absolute;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 1em 0;
    box-sizing: border-box;
    font-size: 1.7em;
	top: -100%;
	transition: top .1s;
	font-weight: bold;
}

.moreMenuItem {
    width: 100%;
    height: 3.5em;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.moreMenuItem::before{
	display: none;
}

.toDashboard {
	border: 1px solid var(--fontColor);
	padding: 0.3em 1em;
	border-radius: 10em;
	cursor: pointer;
}

.toDashboard:hover {
	background-color: var(--primaryColor1);
}

.body {
	width: 100%;
	min-height: 90vh;
	height: auto;
	color: #000;
}

.menuPage {
	width: 100%;
	min-height: 100%;
	height: auto;
}

.editor,
.minip,
.price,
.about {
	display: none;
}

/* ---------------------indexPage-------------------- */
.indexItem {
	width: 100%;
	height: 90vh;
}

.indexItemTop {
	background: url(/static/image/index/indexbeijing.gif);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: 0 0;
	display: grid;
	grid-template-columns: 50% 50%;
	color: #fff;
	justify-items: center;
	align-items: center;
    transform: scale(1);
}

.mark {
    position: fixed;
    display: grid;
    grid-template-columns: repeat(2,50%);
    bottom: 2em;
    left: 50%;
    transform: translateX(-50%);
	width: 10em;
}

.mark div {
    height: 1em;
    width: 4em;
    background: #fff;
    margin-right: 1em;
    z-index: 0;
    border-radius: 1em;
	cursor: pointer;
}

.move{
	position: absolute;
	background-color: var(--primaryColor) !important;
	/* animation: indexLunBo1 10s infinite cubic-bezier(0.1, -0.01, 0, 1); */
	left: 0;
	pointer-events: none;
}

@keyframes indexLunBo1{
	0%,42%{
		left: 0;
	}
	50%,92%{
		left: 50%;
	}
	100%{
		left: 0;
	}
}

.topLeft {
    font-size: 2.4em;
    margin-bottom: 20%;
    z-index: 1;
    width: 19em;
    height: 16em;
	overflow-x: auto;
	position: relative;
	pointer-events: none;
}

.topLeft::-webkit-scrollbar{
	display: none;
}

.topLeftScroll{
	position: absolute;
	left: 0;
	top: 0;
	width: fit-content;
	display: flex;
	/* animation: indexLunBo 10s infinite cubic-bezier(0.1, -0.01, 0, 1); */
}

.topLeftScroll>div{
    flex-shrink: 0;
    width: 19em;
}

@keyframes indexLunBo{
	0%,42%{
		left: 0;
	}
	50%,92%{
		left: -19em;
	}
	100%{
		left: -38em;
	}
}

.topLeftScroll:hover{
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}

.mark:hover~.topLeftScroll,
.mark:hover>.move{
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}

.topLeft>p:nth-child(4){
	font-size: 0.7em;
	margin-bottom: 1em;
}

.topLeftBtn {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	margin-top: 1.5em;
}

.topLeftBtn div {
	border: 1px solid #fff;
	padding: 0.8em 3em;
	border-radius: 10em;
	font-size: 0.7em;
	cursor: pointer;
    pointer-events: all;
}

.topLeftBtn div:nth-child(1) {
	background: linear-gradient(45deg, var(--primaryColor), var(--primaryColor1));
	border-color: transparent;
}

div#viewport {
    width: 100%;
    height: 100%;
	pointer-events: none;
}

.oneImage,
.cooperation,
.advantage {
    font-size: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 2em 0;
	height: auto;
}

.oneImage,
.cooperation{
	background-color: #efefef;
}

.oneImage img{
	width: 90%;
}

.cooperation h1,
.advantage h1{
	margin-bottom: 0.5em;
}

.cooperation b,
.advantage b{
	display: block;
	position: relative;
}

.cooperation b::before,
.advantage b::before{
	content: "";
	width: 5em;
	border-top: 5px solid var(--primaryColor1);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,400%);
}

.advantageItems {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3,33.33%);
    margin-top: 5em;
}

.advantageItem {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
	transform: scale(1);
	transition: transform .1s;
    border-radius: 0.5em;
    overflow: hidden;
}

.advantageItem:hover{
	transform: scale(1.05);
	box-shadow: 0 0 20px #c5c5c5;
}

.advantageItem img {
    width: 100%;
	height: 63%;
    aspect-ratio: 2/1.5;
}

.advantageItem div {
    font-size: 1.3em;
    margin: 1em 0;
}

.advantageItem span {
    font-size: 0.8em;
	box-sizing: border-box;
	padding: 0 1em;
}

.cooperation{
	padding-bottom: 3em;
	height: auto;
}

.cooperations {
    margin-top: 3em;
    display: grid;
    grid-template: repeat(auto-fit,minmax(10em,100%))/repeat(4,25%);
    width: 100%;
    justify-items: center;
    align-items: center;
}

.cooperations img {
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 2em;
}

.footer1 {
    width: 100%;
    height: 40vh;
    position: relative;
}

.footer1Con {
    background: url(/static/image/index/xiugai.png) no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
    width: 80%;
    height: 6em;
    aspect-ratio: 1/0.228;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -30%);
    color: #fff;
    font-size: 4em;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.footer1btn {
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: space-between;
    font-size: 0.6em;
}

.footer1btn div {
    background: linear-gradient(45deg, var(--primaryColor), var(--primaryColor1));
    padding: 0.5em 2em;
    border-radius: 0.5em;
    cursor: pointer;
}
/* ---------------------indexPage-------------------- */

/* ---------------------editorPage-------------------- */
.editorTop{
	width: 100%;
	height: 90vh;
	background: url(/static/image/index/banner5.jpg);
	background-position-y: -1px !important;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: 0 0;
	display: grid;
	grid-template-columns: 50% 50%;
	color: #fff;
	justify-items: center;
	align-items: center;
}

.editorTopLeft {
    font-size: 2.4em;
    margin-bottom: 20%;
}

.editorTopLeft>p:nth-child(4){
	font-size: 0.7em;
	margin-bottom: 1em;
}

.editorIntroduce {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10em;
}

.editorIntroduceItem {
    width: 80%;
    height: 12em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: #efefef;
    margin-top: 2em;
    box-sizing: border-box;
    font-size: 2.5em;
    border-radius: 0.5em;
}

.editorIntroduceLeft {
    position: absolute;
    word-break: break-all;
	left: 40%;
	width: 18%;
	transform: translateX(-100%);
}

.editorIntroduceRight {
    position: absolute;
	right: 55%;
	transform: translateX(100%);
	width: 40%;
}

.editorIntroduceRight video {
    width: 100%;
    height: 10em;
}

.editorIntroduceItem:nth-child(odd) .editorIntroduceLeft {
    right: 40%;
    width: 18%;
    transform: translateX(100%);
}

.editorIntroduceItem:nth-child(odd) .editorIntroduceRight {
    left: 55%;
    transform: translateX(-100%);
    width: 40%;
}

.editorAdvantage {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 2em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.5em;
    background: #efefef;
}

.editorAdvantages {
    display: grid;
    grid-template: repeat(2,22em)/repeat(3,33.33%);
    margin-top: 2em;
    font-size: 0.6em;
    width: 85%;
    justify-items: center;
    align-items: center;
}

.editorAdvantageItem {
    width: 20em;
    height: 20em;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 1.5em;
    margin-bottom: 2em;
    border-radius: 0.5em;
    transform: scale(1);
	transition: transform .1s;
}

.editorAdvantageItem:hover{
	transform: scale(1.05);
	box-shadow: 0 0 20px #c5c5c5;
}

.editorAdvantageItem img {
    width: 4em;
    height: 4em;
}

.editorAdvantageItem div {
    font-size: 1.5em;
    margin: 1em 0;
}

.FAQ {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.5em;
    box-sizing: border-box;
    padding: 2em 0 6em;
}

.FAQCon {
    width: 80%;
    margin-top: 1em;
}

.FAQCon b{
	font-size: 1.2em;
}
/* ---------------------editorPage-------------------- */

/* ---------------------pricePage-------------------- */
.pricePage {
    width: 100%;
    height: 90vh;
    background: #efefef;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em 0;
    font-size: 2em;
    padding-bottom: 18em;
}

.pricePage h1{
	margin-bottom: 0.5em;
}

.pricePage>b{
	display: block;
	position: relative;
}

.pricePage>b::before{
	content: "";
	width: 5em;
	border-top: 5px solid var(--primaryColor1);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,400%);
}

.pricePageDetial {
    width: 80%;
    height: 100%;
    margin-top: 3em;
    display: grid;
    grid-template-columns: repeat(4,25%);
    justify-items: center;
    align-items: start;
}

.pricePageDetialItem {
    background: #fff;
    box-sizing: border-box;
    padding: 1em 0.5em;
    width: 95%;
    height: 100%;
    border-radius: 0.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
	position: relative;
}

.pricePageDetialTitle {
    display: flex;
    align-items: center;
	height: 4em;
}

.pricePageDetialTitle img {
    width: 2em;
    height: 2em;
    margin-right: 0.5em;
}

.pricePageDetialTitle1 {
    font-size: 0.5em;
    margin-top: 1em;
	height: 2em;
    color: #cdcdcd;
    max-width: 70%;
}

.pricePageDetialFee {
    display: flex;
    align-items: flex-end;
    font-size: 0.9em;
    color: var(--primaryColor1);
    margin: 1.5em 0;
}

.pricePageDetialFee h1 {
    margin: 0 0.1em;
    line-height: 1;
}

.pricePageDetialBtn {
    background: var(--primaryColor1);
    color: var(--fontColor);
    font-size: 0.8em;
    padding: 0.5em 0;
    width: 70%;
    text-align: center;
    border-radius: 0.5em;
}

.pricePageDetialBtn a{
	width: 100%;
	height: 100%;
	display: block;
	text-align: center;
}

.pricePageDetialItem>b {
    margin: 1.5em 0 0.5em;
    width: 70%;
    height: 3em;
}

.pricePageDetial ul {
    width: 70%;
    font-size: 0.8em;
    margin-top: 0em;
    font-weight: 700;
    line-height: 2;
}

.pricePageDetial .tips {
    font-size: 0.3em;
}

.pricePageDetialItem1{
	position: absolute;
	width: 100%;
	box-sizing: border-box;
	padding: 2em 15%;
}

.pricePageDetialItem1 {
    position: absolute;
    width: 100%;
    height: 10em;
    box-sizing: border-box;
    padding: 0 15%;
    border-radius: 0.5em;
    background: #fff;
    bottom: -3PX;
    transform: translateY(100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricePageDetialItem1 span:nth-child(1) {
    color: var(--primaryColor1);
    display: block;
}

.pricePageDetialItem1 span:nth-child(2) {
    font-size: 0.7em;
	margin: 1em 0;
}

.pricePageDetialBtn1{
	background: var(--primaryColor1);
	color: var(--fontColor);
	font-size: 0.8em;
	padding: 0.5em 0;
	width: 70%;
	text-align: center;
	border-radius: 0.5em;
}
/* ---------------------pricePage-------------------- */

/* ---------------------aboutPage-------------------- */
.aboutTop {
    height: 40vh;
    width: 100%;
    background: url(/static/image/index/aboutZGbanner1.png) no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #fff;
    font-size: 3em;
}

.aboutTop>div{
	display: flex;
	flex-direction: column;
	align-items: center;
    line-height: 2;
}

.aboutJideb {
    width: 65%;
    height: 50vh;
    display: grid;
    margin-left: 15%;
    justify-items: center;
    align-items: center;
    grid-template-columns: 50% 50%;
}

.aboutJidebDetial {
    font-size: 1.6em;
    width: 60%;
	margin-left: 40%;
}

.aboutJidebTitle {
    font-size: 2em;
    margin-bottom: 1em;
}

.aboutJidebImg {
	width: 75%;
	position: relative;
}

.aboutJidebImg::before{
	content: "——ABOUT US";
	width: 100%;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	font-size: 3em;
	color: #fff;
}

.aboutJidebImg img{
    width: 100%;
}

.mission {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 12em 20%;
    background: #efefef;
}

.missionItem {
    display: grid;
    font-size: 1.5em;
    grid-template-rows: 7em auto auto auto;
    justify-items: center;
    align-items: end;
}

.missionItem div {
    font-size: 1.4em;
    margin: 0.5em 0;
}

.missionItem img {
    width: 7em;
    max-height: 7em;
}

.missionItem p {
    margin: 0.3em 0;
}

.developmentHistory {
    width: 100%;
    box-sizing: border-box;
    padding: 1.75em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 3em;
}

.developmentHistoryDetials {
    margin-top: 2em;
    font-size: 0.7em;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.developmentHistoryItem {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    color: var(--primaryColor);
}

.developmentHistoryItem:nth-child(even) {
    justify-content: flex-end;
}

.developmentHistoryItem:nth-child(even)>div {
	width: 50%;
	height: 6em;
    text-align: left;
    border-left: 2px solid var(--primaryColor);
    box-sizing: border-box;
    padding-left: 4em;
    position: relative;
    margin-right: 2px;
}

.developmentHistoryItem:nth-child(even)>div::before {
    content: "";
    width: 25px;
    height: 25px;
    background: var(--primaryColor);
    position: absolute;
    border-radius: 25px;
    left: -1px;
    top: 0;
    transform: translateX(-50%);
}

.developmentHistoryItem:nth-child(even)>div:after {
    content: "";
    position: absolute;
    width: 2em;
    border-top: 1px solid var(--primaryColor);
    top: 0.5em;
    left: 0;
    transform: translateX(50%);
}

.developmentHistoryItem>div p {
    font-size: 0.75em;
    margin: 0.5em 0;
}

.developmentHistoryItem:nth-child(odd)>div {
    width: 50%;
	height: 6em;
    text-align: right;
    border-right: 2px solid var(--primaryColor);
    box-sizing: border-box;
    padding-right: 4em;
    position: relative;
}

.developmentHistoryItem:nth-child(odd)>div::before {
    content: "";
    width: 25px;
    height: 25px;
    background: var(--primaryColor);
    position: absolute;
    border-radius: 25px;
    right: -1px;
    top: 0;
    transform: translateX(50%);
}

.developmentHistoryItem:nth-child(odd)>div:after {
    content: "";
    position: absolute;
    width: 2em;
    border-top: 1px solid var(--primaryColor);
    top: 0.5em;
    right: 0;
    transform: translateX(-50%);
}

.developmentHistoryItemFocus{
	color: var(--primaryColor1) !important;
}

.developmentHistoryItemFocus>div::before {
	background-color: #fff !important;
	box-shadow: inset 0px 0px 0px 10px var(--primaryColor1);
}

.developmentHistoryItemFocus>div:after {
    border-top: 1px solid var(--primaryColor1) !important;
}

.developmentHistoryItemFocus>div{
	border-color: var(--primaryColor1) !important;
}
/* ---------------------aboutPage-------------------- */

/* ---------------------aboutPage-------------------- */
.minipTop {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
}

.minipTop:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(140deg, rgba(0 0 0/70%), rgba(0 0 0/30%));
}

.minipTop img {
    width: 100%;
}

.minipTop>div {
    position: absolute;
    color: #fff;
    font-size: 2.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3em;
}

.minipTop h1{
	margin: 0;
	margin-top: 0.5em;
	letter-spacing: 0.15em;
}

.minipTopBtn {
    font-size: 0.7em;
    background: linear-gradient(45deg, var(--primaryColor), var(--primaryColor1));
    padding: 0.8em 2em;
    border-radius: 10em;
    margin-top: 4em;
	cursor: pointer;
}

.createShopStep {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.5em;
    font-weight: 700;
    box-sizing: border-box;
    padding: 4em 0;
}

.createShopStepDetial {
    display: grid;
    grid-template-columns: repeat(4,25%);
    width: 80%;
    font-size: 0.5em;
    margin-top: 5em;
    justify-items: center;
}

.createShopStepItem {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.createShopStepItem img {
    width: 11em;
    max-height: 13em;
}

.createShopStepItemFooter {
    margin-top: 2em;
    font-size: 1.5em;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.createShopStepItemFooter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1em;
    height: 1em;
    background: #fff;
    transform: translate(-50%, -50%);
    border-radius: 10em;
    z-index: 1;
    box-shadow: 0 0 0 4px #fff, inset 0 0 0 2px #d9d9d9;
}

.createShopStepItemFooter::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 100%;
    border-top: 2px solid #d9d9d9;
}

.createShopStepItem:nth-child(1) .createShopStepItemFooter::before,
.createShopStepItem:nth-child(2) .createShopStepItemFooter::before{
	background: var(--primaryColor);
	box-shadow: 0 0 0 4px #fff,inset 0 0 0 0px var(--primaryColor);
}

.createShopStepItem:nth-child(1) .createShopStepItemFooter::after{
	border-top: 2px solid var(--primaryColor);
}

.createShopStepItem:last-child .createShopStepItemFooter::after{
	border: none;
}

.stepNum {
    font-size: 1.5em;
    font-style: italic;
    margin: 0.8em 0 0.2em;
}

.minipIntroduceItem {
    width: 100%;
    height: 50vh;
    background: #efefef;
    box-sizing: border-box;
    padding: 3em 20%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    overflow: hidden;
}

.minipIntroduceItem:nth-child(even){
	background-color: #fff;
}

.minipIntroduceLeft {
    height: 100%;
    position: relative;
}

.minipIntroduceLeft img {
    height: 100%;
}

.minipIntroduceLeft::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 45em;
    height: 45em;
    background: #796d6030;
    box-shadow: 0 0 0 12em #796d600a, 0 0 0 8em #796d600a, 0 0 0 4em #796d600a;
    border-radius: 100em;
}

.minipIntroduceItem:nth-child(even) .minipIntroduceLeft::after{
	display: none;
}

.minipIntroduceRight {
    margin-left: 10em;
    width: 24em;
	font-size: 1.5em;
}

.minipIntroduceItem:nth-child(even) .minipIntroduceRight {
	margin-left: 0;
	margin-right: 10em;
}

.minipIntroduceTitle {
    font-size: 2em;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 1.5em;
    white-space: nowrap;
}

.minipIntroduceTitle img {
    height: 1.5em;
    margin-right: 0.5em;
}

.minipIntroduceRight ul {
    padding: 0;
    padding-left: 1.2em;
    line-height: 1.5;
}

.minipIntroduceRight li {
    margin-top: 0.5em;
}

.minipIntroduceRight li::marker {
    color: red;
    font-size: 15px;
    line-height: 0;
}
/* ---------------------aboutPage-------------------- */

/* ---------------------footer-------------------- */
.footer {
	width: 100%;
	background-color: #000;
	color: var(--fontColor);
	box-sizing: border-box;
	padding: 3em;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
}

.footerTop {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 80%;
}

.footerItemTitle {
	font-size: 3em;
	margin-bottom: 0.5em;
}

.footerItem:nth-child(1) .footerItemTitle {
	font-weight: 700;
}

.footerItemBodyItem {
	display: flex;
	align-items: center;
	font-size: 1.5em;
	margin-bottom: 1em;
}

.footerItemBodyItem svg {
	width: 1.5em;
	height: 1.5em;
	margin-right: 0.5em;
}

.footerItem img {
	width: 13em;
	height: 13em;
}

.makeAnAppointment {
	padding: 0.5em 2em;
	border-radius: 10em;
	cursor: pointer;
	background: linear-gradient(224deg, var(--primaryColor1), var(--primaryColor));
}

.footerBottom {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 1em;
	position: relative;
}

.footerBottom::after {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	width: 100%;
	transform: translate(-110%, -50%);
	border-top: 1px solid var(--fontColor);
}

.footerBottom::before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	width: 100%;
	transform: translate(110%, -50%);
	border-top: 1px solid var(--fontColor);
}
/* ---------------------footer-------------------- */

@media screen and (max-width:1025px){
	.head {
	    height: 8vh;
	    padding: 0 2em;
	    grid-template-rows: 8vh;
	    font-size: 1.1em;
	}
	.indexItemTop {
	    height: 35vh;
	}
	.topLeft,
	.editorTopLeft {
	    font-size: 1.9em;
	}
	.pricePage {
	    height: 81vh;
	    padding-bottom: 9vh;
	}
	.pricePageDetial {
		width: 100%;
	    display: flex;
	    overflow: hidden;
	    overflow-x: auto;
	}
	.pricePageDetialItem {
	    width: 40%;
		height: 70%;
	    margin-left: 5%;
	    flex-shrink: 0;
	}
	.pricePageDetialItem:last-child {
	    margin-right: 5%;
	}
	.pricePageDetialTitle1 {
	    font-size: 0.7em;
	}
	.pricePageDetialItem>b {
	    height: 2em;
	}
	.pricePageDetial .tips {
	    font-size: 0.7em;
	}
	.editorTop {
	    height: 35vh;
	}
	.editorAdvantageItem {
	    width: 18em;
	    height: 18em;
	}
	.footer1 {
	    height: 25vh;
	}
	.footer1btn {
	    width: 65%;
	}
	.footer1btn div {
	    font-size: 0.9em;
	}
	.aboutTop {
	    height: 25vh;
	}
	.aboutJideb {
	    width: 80%;
	    height: 30vh;
	}
	.aboutJidebDetial {
	    width: 80%;
	    margin-left: 10%;
	}
	.minipIntroduceItem {
	    height: 30vh;
	    padding: 3em 15%;
	}
	.minipIntroduceLeft {
	    height: 70%;
	}
	.minipIntroduceLeft::after {
	    width: 25em;
	    height: 25em;
	}
}

@media screen and (max-width:900px){
	.head{
		display: flex;
		justify-content: space-between;
	}
	.moreMenus {
	    font-size: 2em;
	}
	.createShopStep {
	    padding: 2em 0;
	}
	.createShopStepDetial {
	    width: 90%;
	}
	.createShopStepItem {
	    font-size: 0.8em;
	}
	.currentMenu{
		color: var(--primaryColor);
	}
	.moreMenu{
		display: block;
	}
	.headMenu{
		display: none;
	}
	.toDashboard{
		display: none;
	}
	.topLeft {
	    font-size: 1.5em;
	}
	.topLeftBtn {
	    margin-top: 1.5em;
	    font-size: 0.7em;
	}
	.minipTop>div {
	    font-size: 1.5em;
	}
	.editorTop {
	    height: 40vh;
	}
	.editorTopLeft {
	    font-size: 1.8em;
	}
	.footerTop {
	    display: flex;
	    justify-content: space-between;
	    align-items: flex-start;
	    width: 95%;
	    font-size: 0.8em;
	}
	.pricePage {
		font-size: 1.5em;
	    height: 90vh;
	    padding-bottom: 0vh;
	}
	.pricePageDetialItem>b {
	    height: 3em;
	}
	.pricePageDetialTitle {
	    height: 4em;
	    font-size: 1.2em;
	}
	.pricePageDetialTitle1 {
	    height: 3em;
	}
	.editorIntroduceItem {
	    height: 14em;
	    font-size: 1.8em;
	}
	.editorIntroduceItem:nth-child(odd) .editorIntroduceLeft {
	    width: 32%;
	    right: 35%;
		left: auto;
	}
	.editorIntroduceLeft {
	    width: 32%;
	    left: 35%;
	}
	.editorIntroduceItem:nth-child(odd) .editorIntroduceRight {
	    width: 60%;
	    left: 63%;
	}
	.editorIntroduceRight {
	    width: 60%;
	    right: 63%;
	}
	.editorAdvantage {
	    font-size: 2.5em;
	}
	.editorAdvantages {
	    grid-template: repeat(2,15.5em)/repeat(3,33.33%);
	}
	.editorAdvantageItem {
	    width: 17.5em;
	    height: 18em;
	    font-size: 0.8em;
		margin: 0;
	}
	.FAQ {
	    font-size: 2em;
	}
	.FAQCon b {
	    font-size: 1.1em;
	}
	.footer1 {
	    height: 20vh;
	}
	.footer1Con {
	    font-size: 2.5em;
	}
	.footer1btn div {
	    font-size: 1.1em;
	}
	.aboutJideb {
	    height: 35vh;
		margin-left: 10%;
	}
	.aboutJidebDetial {
	    font-size: 1em;
	}
	.aboutJidebImg {
	    width: 100%;
	}
	.developmentHistory {
	    font-size: 2.3em;
	}
	.developmentHistoryItem:nth-child(odd)>div::before {
	    width: 20px;
	    height: 20px;
	}
	.developmentHistoryItem:nth-child(even)>div::before {
	    width: 20px;
	    height: 20px;
	}
	.developmentHistoryItemFocus>div::before {
	    background-color: #fff !important;
	    box-shadow: inset 0px 0px 0px 8px var(--primaryColor1);
	}
	.mission {
	    padding: 12em 15%;
	}
	.oneImage, .cooperation, .advantage {
	    font-size: 1.3em;
	}
	.minipIntroduceRight {
	    font-size: 1em;
	}
}

@media screen and (max-width:500px){
	.head {
	    height: 10vh;
	    padding: 0 1em;
	    grid-template-rows: 8vh;
	    font-size: 1em;
	}
	.moreMenu {
	    width: 3em;
	}
	.oneImage, .cooperation, .advantage {
	    font-size: 1em;
	}
	.cooperations img {
	    padding: 0 0.5em;
	}
	.minipTop>div {
	    font-size: 0.8em;
	}
	.createShopStep {
	    font-size: 2em;
	    padding: 2em 0;
	}
	.createShopStepDetial {
	    display: flex;
	    font-size: 0.5em;
		width: 90%;
	}
	.createShopStepItem {
	    flex-shrink: 0;
	    width: 25%;
	    font-size: 0.5em;
	}
	.minipIntroduceItem {
	    position: relative;
	    height: 40vh;
	}
	.minipIntroduceRight {
	    margin-left: 0;
	    font-size: 1em;
	    position: absolute;
	    color: #fff;
	    background: rgba(0 0 0/45%);
	    width: 100%;
	    height: 100%;
	    box-sizing: border-box;
	    padding: 5em 7em;
	    z-index: 1;
	}
	.minipIntroduceItem:nth-child(even) .minipIntroduceRight {
	    margin-left: 0;
	    margin-right: 0em;
	}
	.contactInformation {
	    padding: 1em 10em;
	    font-size: 0.7em;
	}
	.footerTop {
	    display: flex;
	    justify-content: space-between;
	    align-items: flex-start;
	    width: 95%;
	    font-size: 0.6em;
	    flex-direction: column;
	}
	.pricePage {
	    font-size: 1em;
	    height: auto;
	    padding-bottom: 0vh;
	}
	.pricePageDetial {
	    width: 100%;
	    height: auto;
	    display: flex;
	    overflow: hidden;
	    flex-direction: column;
	    align-items: center;
	}
	.pricePageDetialItem {
	    width: 85%;
	    height: auto;
	    margin-left: 0;
	    flex-shrink: 0;
	    margin-bottom: 1em;
	    padding-bottom: 2em;
	    font-size: 1.8em;
	}
	.pricePageDetialItem:last-child {
	    margin-right: 0;
	}
	.pricePageDetialItem:last-child .pricePageDetialFee{
		height: 0;
		margin: 0.2em;
	}
	.pricePageDetialItem:first-child>b {
	    height: 0;
	}
	.pricePageDetialItem:nth-child(2){
		margin-bottom: 11em;
	}
	.aboutTop {
	    height: 20vh;
		font-size: 1.8em;
	}
	.aboutJideb {
	    height: auto;
	    margin-left: 0;
	    width: 100%;
	    box-sizing: border-box;
	    display: block;
	    transform: rotate(180deg);
	    position: relative;
	}
	.aboutJidebDetial {
	    font-size: 1.2em;
	    transform: translate(-50%, -50%) rotate(180deg);
	    margin: 0;
	    width: 80%;
	    position: absolute;
	    z-index: 1;
	    color: #fff;
	    left: 50%;
	    top: 50%;
	}
	.aboutJidebImg {
	    width: 100%;
	    transform: rotate(180deg);
	    overflow: hidden;
	}
	.aboutJidebImg::before {
	    display: none;
	}
	.mission {
	    padding: 4em 2em;
	    font-size: 0.7em;
	}
	.developmentHistory {
	    font-size: 2em;
	}
	.developmentHistoryDetials {
	    font-size: 0.5em;
	}
	.developmentHistoryItem:nth-child(even)>div,
	.developmentHistoryItem:nth-child(odd)>div {
	    height: 10em;
	}
	.developmentHistoryItem:nth-child(odd)>div::before,
	.developmentHistoryItem:nth-child(even)>div::before {
	    width: 15px;
	    height: 15px;
	}
	.developmentHistoryItemFocus>div::before {
	    box-shadow: inset 0px 0px 0px 6px var(--primaryColor1);
	}
	.oneImage, .cooperation, .advantage {
	    font-size: 1em;
	}
	.advantageItems {
	    width: 90%;
	    grid-template-columns: repeat(2,50%);
	}
	.advantageItem {
	    margin-bottom: 1em;
	}
	.indexItemTop {
	    background: url(/static/image/index/indexbeijing.gif);
	    background-repeat: no-repeat;
	    background-size: 100% 100%;
	    background-position: 0 0;
	    height: 50vh;
	    position: relative;
	    color: #fff;
	}
	.topLeft {
	    position: absolute;
	    font-size: 1em !important;
	    left: 50%;
	    bottom: 0;
	    transform: translate(-50%, 0%);
	    width: 25em;
	    height: 50%;
	    margin: 0;
	    white-space: nowrap;
	}
	
	.topLeft::-webkit-scrollbar{
		display: none;
	}
	
	.topLeftScroll>div{
	    flex-shrink: 0;
	    width: 25em;
	}
	
	@keyframes indexLunBo{
		0%,40%{
			left: 0;
		}
		50%,90%{
			left: -25em;
		}
		100%{
			left: -52em;
		}
	}
	div#viewport {
	    width: 100%;
	    height: 80%;
	    position: absolute;
	    top: 0;
	    left: 0;
	}
	.editorAdvantage {
	    font-size: 2em;
	}
	.editorAdvantages {
	    width: 95%;
	    grid-template: repeat(3,17em)/repeat(2,50%);
	}
	.editorAdvantageItem {
	    width: 90%;
	    height: 20.5em;
	    font-size: 0.8em;
	    margin: 0;
	}
	.FAQ {
	    font-size: 1.5em;
	}
	.FAQCon b {
	    font-size: 1em;
	}
	.footer1Con {
	    font-size: 1.5em;
	}
	.footer1btn {
	    width: 80%;
	}
	.editorTop {
	    height: 40vh;
	    position: relative;
	    background-size: auto 100%;
	    background-position: 75% 0;
	}
	.editorTopLeft {
	    font-size: 1em;
	    position: absolute;
	    left: 50%;
	    top: 50%;
	    transform: translate(-50%, -50%);
	    width: 100%;
	    height: 100%;
	    box-sizing: border-box;
	    padding: 7vh 20%;
	    background: rgba(0 0 0/22%);
	    margin: 0;
	}
	.editorIntroduce {
	    padding-bottom: 2em;
	}
	.editorIntroduceItem {
	    font-size: 1em;
	    width: 90%;
	    height: auto;
	    display: flex;
	    position: relative;
	    margin-top: 2em;
	    flex-direction: column;
	    box-sizing: border-box;
	    padding: 1em;
	    border-radius: 1em;
	    transform: rotate(180deg);
	}
	.editorIntroduceLeft {
	    position: relative !important;
	    left: 0;
	    width: 100% !important;
	    margin-bottom: 1em;
	    transform: rotate(180deg) !important;
	}
	.editorIntroduceRight {
	    position: relative;
	    width: 100% !important;
	    transform: rotate(180deg) !important;
	    right: 0;
	    left: 0 !important;
	}
	.editorIntroduceRight video {
	    width: 100%;
	    height: auto !important;
	    border-radius: 1em;
	}
	.editorIntroduceItem:nth-child(odd) .editorIntroduceLeft {
	    width: 32%;
	    right: 0;
	    left: auto;
	}
	.moreMenus {
	    font-size: 1.3em;
	}
}