/* 全局样式 */
* {
	list-style: none;
	padding: 0;
	margin: 0;
}

html,
body {
	height: 100%;
	width: 100%;
}
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000012;
    height: 23px;
    border-radius: 4px;
    padding: 5px;
}
.dot {
    width: 5px;
    height: 5px;
    background-color: #000000a6;
    border-radius: 50%;
	margin: 0 3px;
    animation: pulse 1s infinite alternate;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse {
   to{
	opacity: .2;
	/* transform: translateY(-5px); */
   }
}
a:hover {
	text-decoration: none;
}

/* 主体  */
#ZTC_home {
	width: 100%;
	height: 100%;
	display: flex;
}


/* 左 */
#ZTC_nav {
	width: 70px;
	height: 100%;
	/* background-color: rgba(255, 255, 255, 0.4); */
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	/* backdrop-filter: blur(5px); */
}
#ZTC_nav_occlusion{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	margin-top: 0 !important;
	background-color: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(5px);
	transition: all 0.5s;
}

#leftMean {
	grid-template-rows: auto auto   auto 1fr;
	/* max-height: calc(100vH - 110px); */
	min-height: calc(var(--vh) * 100 - 110px);
	/* max-height: 500px; */
	display: grid;
}

#ZTC_nav>div {
	margin-top: 30px;
}

#ZTC_nav>div>ul>li {
	margin-top: 30px;
	cursor: pointer;
	display: none;
}

#ZTC_nav>div>ul>li>.subordinate {
	width: 400px;
	position: fixed;
	height: 100%;
	z-index: 9;
	background-color: rgba(0, 0, 0, .4);
	left: 70px;
	top: 0;
	display: none;
	backdrop-filter: blur(5px);
}

/* 默认位置伪元素 */
/* #ZTC_nav>div>ul>li>.subordinate::before {
	content: '';
	border-top: 20px solid transparent;
	border-left: 20px solid transparent;
	border-right: 20px solid rgba(32, 83, 130, 0.5);
	border-bottom: 20px solid transparent;
	position: absolute;
	left: -40px;
	top: 185px;
} */

@media (min-width: 900px) {
	#ZTC_nav>div>ul>li:hover .subordinate {
		display: block;
	}
	.synthesize-button .centerLists > button{
		font-size: 14px;
		padding: 10px;
	}
}
@media (max-width: 900px) {
	.synthesize-button .centerLists > button{
		font-size: 14px !important;
		padding: 10px !important;
	}
}

#ZTC_nav>div>ul>li>a {
	display: block;
	text-align: center;
	width: 100%;
}

#ZTC_nav>div>ul>li>a>i {
	font-size: 30px;
	color: #000;
}

#ZTC_nav>div>ul>li:hover i {
	color: rgb(64, 158, 255);
}

#ZTC_nav>div>ul>li:hover a>span {
	color: rgb(64, 158, 255);
	/* font-size: 13px; */
}

#ZTC_nav>div>ul>li>a>span {
	display: inline-block;
	text-align: center;
	width: 100%;
	padding: 0 3px;
	color: #000;
	font-size: 12px;
}

/* 搜索 */
#ZTC_nav>div>ul>li>.subordinate>.search_input {
	position: absolute;
	text-align: center;
	width: 100%;
}

.search_input_select {
	width: 100px;
	position: relative;
	cursor: pointer;
}

.search_input_select>input {
	text-align: center;
	width: 100%;
	height: 100%;
	border-radius: 12px 0 0 12px;
	background-color: #ffffff;
	border: none;
	padding: 5px 15px 5px 5px;
	color: #676767;
}

.search_input_select>i {
	position: absolute;
	top: 50%;
	right: -8px;
	font-size: 26px;
	transform: translate(0, -50%);
	color: #5a5a5a;
}

.fangdajing {
	width: 60px;
	background-color: #056ACB;
	border-radius: 0 12px 12px 0;
	cursor: pointer;
	transition: all .5s;
	line-height: 38px;
}

.fangdajing>i {
	font-size: 26px;
	color: #fff;
}

#search_select {
	background-color: #fff;
	z-index: 999;
	position: absolute;
	width: auto;
	top: 49px;
	min-width: 100px;
	box-shadow: 1px 2px 10px #c1c1c1;
}

#search_select>li {
	line-height: 30px;
	color: #535353 !important;
	cursor: pointer;
	padding: 5px 10px !important;
	transition: all .3s;
}

.search_input_content {
	width: calc(100% - 160px);
	border: none;
	padding: 5px 10px;
}

.subordinate>#search_content {
	margin-top: 70px;
	margin-bottom: 10px;
	/* overflow-x: hidden; */
	overflow: auto;
	padding-bottom: 60px;
	height: 100%;
}

/* 滚动条 */
.gun::-webkit-scrollbar {
	width: 6px;
	height: 2px;
}

.gun::-webkit-scrollbar-thumb {
	-webkit-border-radius: 2px;
	border-radius: 2px;
	background-color: rgba(79, 151, 219, 100);
}

.gun::-webkit-scrollbar-track {
	border-radius: 0;
	-webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, .1);
	box-shadow: inset 0 0 1px rgba(0, 0, 0, .1);
	border: 1px solid #ccc;
	background-color: rgba(224, 224, 224, 0.1);

}

.subordinate>#search_content .col-sm-3 {
	padding: 8px 4px 0 4px;
	width: 50% !important;
}

.backColor {
	overflow: hidden;
	color: #6d6d6d;
	background-color: #ffffff;
	background-image: linear-gradient(0deg, #fff, #effbff);
	/* box-shadow: 6px 6px 10px 0 rgb(5 84 212 / 20%), -8px -8px 20px 0 #fff; */
	border: 2px solid #ffffff;
	border-radius: 8px;
}

.school-center {
	height: 0;
	width: 100%;
	position: relative;
	padding-bottom: 55%;
}

.orgs .backColor p {
	line-height: 21px;
	height: 42px;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	color: #38627f;
	margin: 10px 0 8px;
	padding: 0 5px;
}

.school-center img {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	margin-bottom: 5px;
}

/* 热点 */
#ZTC_nav>div>ul>li:nth-child(3)>.subordinate::before {
	top: 260px;
}

#ZTC_nav>div>ul>li:nth-child(3)>.subordinate.important::before {
	top: 185px !important;
}

#SY_hotspot>h3 {
	text-align: center;
	margin-top: 20px;
	margin-left: 10px;
	margin-bottom: 10px;
	font-size: 18px;
	color: #fff;
}

.swiper {
	width: 85%;
	height: auto;
	--swiper-theme-color: #1981E4;
	--swiper-pagination-color: #1981E4;
}

.swiper-slide img {
	display: block;
	margin: auto;
	object-fit: cover;
	height: 100%;
}

#SY_hotspot ul {
	overflow-x: hidden;
	height: 100%;
}

#SY_hotspot ul li {
	margin: auto;
	width: 85%;
	color: #fff;
	padding: 10px 0px;
	border-bottom: 1px dotted #ccc;
}

#SY_hotspot ul li a {
	color: #fff;
}

/* 中 */
#ZTC_vr {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	transition: all .3s;
	z-index: 1;
}

#ZTC_vr iframe {
	width: 100%;
	height: 100%;
}

#ZTC_vr .Three_even_a_key {
	display: flex;
	align-items: center;
	justify-content: space-around;
	position: absolute;
	top: 10px;
	right: 10px;
	/* background-color: rgba(255, 255, 255, 0.4); */
	backdrop-filter: blur(5px);
	border-radius: 20px;
	font-size: 16px;
	text-align: center;
	transition: all .5s;
}

#ZTC_vr .Three_even_a_key .centerList {
	display: flex;
	align-items: center;
	justify-content: space-around;
	border-radius: 20px;
	font-size: 16px;
	text-align: center;
	max-width: 0;
	overflow: hidden;
	transition: all .2s;
}

#ZTC_vr .Three_even_a_key .centerList>div {
	width: 140px;
	color: rgb(49, 38, 38);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
}

#ZTC_vr .Three_even_a_key .centerList>div>p {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-left: 5px;
}

#ZTC_vr .Three_even_a_key .centerList>div>i {
	font-size: 30px;
}
#ZTC_vr .Three_even_a_key .centerList>div>div>span {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	word-break: break-all;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
#ZTC_vr .Three_even_a_key .centerList>div>div>a {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	word-break: break-all;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}


/* 中间底部按钮 */
.synthesize-button {
	display: block;
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translate(-50%,0);
	/* background-color: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(5px); */
	border-radius: 50px;
	font-size: 16px;
	overflow: hidden;
	text-align: center;
	z-index: 10000;
}

.synthesize-button .centerLists {
	display: flex;
	align-items: center;
	justify-content: space-around;
	/* border-radius: 50px; */
	font-size: 16px;
	text-align: center;
	/* overflow: hidden; */
	/* box-shadow: 0px 0px 1px #000000; */

}
.synthesize-button .centerLists > button {
	background-color: rgba(58, 58, 58, 0.6);
	/* backdrop-filter: blur(5px); */
	display: block;
	font-size: 16px;
	color: #fff;
	padding: 15px 20px;
	border: none;
}
.synthesize-button .centerLists > button:nth-child(1) {
	background-color: rgba(255, 255, 255, 0.5);
	color: #383838;
	font-weight: 700;
}
.synthesize-button .centerLists > button:hover {
	background-color: rgba(255, 255, 255, 0.5);
	color: #383838;
	font-weight: 700;
	/* background-color: rgba(58, 58, 58, 0.7); */
}
.synthesize-button .centerLists > button:nth-child(1):hover {
	background-color: rgba(255, 255, 255, 0.9);
}
.synthesize-button .centerLists > button .layui-icon{
	font-size: 25px;
	vertical-align: middle;
	margin-right: 10px;
}
.synthesize-button .centerLists > button span{
	vertical-align: middle;
}


/* 机构 */

/* 班级 */
#ZTC_nav>div>ul>li:nth-child(6)>.subordinate::before {
	top: 260px;
}

#ZTC_nav>div>ul>li:nth-child(7)>.subordinate::before {
	top: 335px;
}

/* 会议 */
#ZTC_nav>div>ul>li:nth-child(9)>.subordinate::before {
	top: 275px;
}

#ZTC_nav>div>ul>li:nth-child(10)>.subordinate::before {
	top: 350px;
}

/* 专家 */
#ZTC_nav>div>ul>li:nth-child(12)>.subordinate::before {
	top: 275px;
}


/* 右 */
/* user */
#user>a>img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

#ZTC_chatRoom .conceal {
	position: fixed;
	top: 30px;
	right: 30px;
}

#ZTC_chatRoom .conceal>a>span>img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
}

#ZTC_chatRoom .conceal>a>p {
	font-size: 14px;
	width: 80px;
	height: 30px;
	line-height: 30px;
	background-color: #fff;
	text-align: center;
	border-radius: 26px;
	box-shadow: 0px 2px 0px 0px rgb(0 0 0 / 40%);
	font-family: Roboto;
	font-style: italic;
	margin-top: 10px;
}

/* 聊天框 */
#ZTC_chatRoom .ztc_right_show {
	display: none;
	width: 360px;
	height: 100%;
	position: relative;
	background-color: #fff;
	z-index: 999;
}

.OS_chatFrame {
	width: 100%;
}

.OS_chatFrame .OS_chatFrame_top {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.OS_chatFrame .OS_chatFrame_top li {
	padding: 30px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.OS_chatFrame .OS_chatFrame_top li i {
	font-size: 30px;
	cursor: pointer;
}

.OS_chatFrame .OS_chatFrame_top li:nth-child(4) img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.layui-tab-title {
	text-align: center;
	border: none;
}

.layui-tab-title {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	margin-bottom: 2px;
	border: none;
}

.layui-tab-brief>.layui-tab-title .layui-this {
	color: #fff;
	background-color: rgba(79, 151, 219, 100);
}

.layui-tab-title li {
	width: 44%;
	margin: 0px 10px;
	border-radius: 20px;
	margin-bottom: 10px;
	height: 30px;
	color: #000;
	font-size: 12px;
	line-height: 33px;
	text-align: center;
	border-bottom: 1px dotted rgb(218, 216, 216);
}

.layui-tab-title>li {
	background-color: rgb(247, 247, 247);
	margin: 0px 10px;
	border-radius: 20px;
	margin-bottom: 10px;
}

.layui-tab-content {
	padding: 15px;
}

@media (max-height: 863px) {
	.layui-tab-item-list {
		height: 400px !important;
	}
}

@media (max-height: 763px) {
	.layui-tab-item-list {
		height: 300px !important;
	}
}

.layui-tab-item-list {
	height: 500px;
	/* overflow: hidden; */
	overflow-y: auto;
	background-color: rgba(236, 236, 236, 100);
	border-radius: 1px;
	padding: 10px;
}

.list_right {
	flex-direction: row-reverse;
}

.list_right>div {
	text-align: right;
}

.wb {
	font-size: 14px;
	color: #7d7b7b;
	width: 100%;
	display: flex;
	margin: 10px 0;
}

.wb>div {
	width: calc(100% - 40px);
	padding-right: 10PX;
}

.wb>div>span {
	display: block;
	font-size: 12px;
}

.wb>div>p {
	font-size: 12px;
	background-color: #fff;
	padding: 0 10px;
	border-radius: 5px;
	line-height: 24px;
	color: #000;
	opacity: 1;
	word-wrap: break-word;
	word-break: break-word;
	display: inline-block;
	white-space: pre-wrap;
	text-overflow: ellipsis;
	overflow: hidden;
	text-align: left;
}

.enter_user {
	border-radius: 50%;
	margin-right: 10px;
	width: 40px;
	height: 40px;
}

.input_box {
	width: 100%;
}

.face {
	display: flex;
}

.face span {
	display: inline-block;
	padding: 5px 10px;
	cursor: pointer;
}

.face span i {
	font-size: 24px;
}

.icon-xiaolian {
	color: #f7c608;
}

.icon-tupian {
	color: #4f97db;
}

.icon-a-wenjianjiawenjian {
	color: #26c7c7;
}

.case {
	width: 100%;
	text-align: left;
	line-height: 20px;
}

.layui-btn-sm {
	padding: 0 20px;
	border-radius: 4px;
	background-color: rgba(79, 151, 219, 100);
	font-size: 12px;
}

textarea {
	width: 100%;
	resize: none !important;
	height: 100%;
	background-color: rgba(242, 242, 242, 1) !important;
	border-radius: 12px !important;
}

#switch {
	width: 60px;
	height: 30px;
	border-radius: 26px 0px 0px 28px;
	background-color: rgba(255, 255, 255, 100);
	text-align: center;
	box-shadow: 0px 2px 0px 0px rgb(0 0 0 / 40%);
	line-height: 30px;
	position: absolute;
	top: 45%;
	left: -45px;
	font-weight: 700;
	font-style: italic;
	cursor: pointer;
	overflow: hidden;
	z-index: 9999999;
}

.layui-tab-brief>.layui-tab-title .layui-this:after {
	display: none;
}

#open>div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
#share{
	position: relative;
}
#share:hover .share{
	display: block;
}
#share>.share_button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
#share img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

#share>.share_button>span {
	cursor: pointer;
	color: #000;
}

#share>.share_button:hover span {
	color: #777;
}

#share>.share_button:hover a {
	color: #777;
}
.share{
	background:  rgba(64, 64, 64, 77%);
	position: absolute;
	top: 50px;
	display: none;
}
.share::before{
	content:"";
	position: absolute;
	width: 0;
	height: 0;
	top: -20px;
	left: 45%;
	border-top: solid 10px transparent;
	border-left: solid 10px transparent;
	border-bottom: solid 10px rgba(64, 64, 64, 77%);
	border-right: solid 10px transparent;
}
.share_herf{
	border-radius: 50px !important;
}
#open img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

#open>div>span {
	cursor: pointer;
	color: #000;
}

#open>div:hover span {
	color: #777;
}

#open>div:hover a {
	color: #777;
}

#unrightMean {
	display: flex !important;
}

.Three_even_a_key .user {
	cursor: pointer;
	display: block !important;
	width: 50px !important;
	padding: 0px !important;
	margin-right: 10px;
	padding-left: 10px !important;
	/* border-left: 1px solid rgb(169, 169, 169); */
	transition: all .5s;
}

.icon-heiban {
	font-size: 30px !important;
}

/* 自适应部分 */
body {
	position: fixed;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;
}

.video_meeting .layui-layer-content {
    padding: 0px;
    display: flex;
}
.switch_language{
	background-color: rgba(255, 255, 255, .7) !important;
	backdrop-filter: blur(5px);
	max-width: 600px;
}
.switch_language .layui-layer-content{
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.switch_language .layui-layer-content .layui-form-radio>i {
    color: #2f666c;
}
.openPhotos{
	max-width: 60%;
	max-height: 80%;
	background-color: rgb(0, 0, 0, 0.5) !important;
	backdrop-filter: blur(5px);
}
.openPhotos .layui-carousel {
    background-color: transparent;
}
.openPhotos .layui-carousel>[carousel-item]>* {
    background-color: transparent;
}
.openPhotos .layui-carousel>[carousel-item]:before {
    display: none;
}
.openPhotos-a{
	display: block;
	width: 60px;
	height: 60px;
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	background-image: url('../img/yuandian.gif');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 150% 150%;
	border-radius: 50%;
	opacity: .8;
	cursor: pointer;
}
.openPhotos-img{
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	padding: 30px 0 80px;
	background-origin: content-box;
}
.openPhotos-img-p{
	padding: 20px 20px 15px;
	width: 100%;
	color: #ffffff;
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(rgb(0, 0, 0, .0),rgb(0, 0, 0, .9));
}
.openPhotos-img-p > p{
	line-height: 21px;
	width: 100%;
	height: 42px;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
.openPhotos .layui-layer-content {
    font-size: 18px !important;
}
.layui-form table{
	border: none;
	width: 100%;
}
.layui-form table td.brazil{
	width: 100%;
	font-weight: 700;
}
.layui-form table td.brazil .layui-form-radio * {
    font-size: 18px;
}
.layui-form table td.asean{
	width: 33.3%;
	font-weight: 700;
}
.layui-form table td.asean .layui-form-radio * {
    font-size: 14px;
}
.subordinate .layui-flow-more {
	width: 100%;
	float: left;
}

.interior_Shanghai_appointment{
	background-color: rgba(255, 255, 255, .5) !important;
	backdrop-filter: blur(5px);
	max-width: 500px;
}
.interior_Shanghai_appointment .layui-form{
	padding: 20px;
	max-height: calc(100vW - 50px);
}
.layui-form-item{
	display: flex;
	align-items: center;
	width: 410px;
}
.interior_Shanghai_appointment .layui-form-label {
    width: 110px;
	padding: 10px;
	text-align: left;
	margin-bottom: 0px;
	font-weight: 700;
}
.interior_Shanghai_appointment .layui-input-block {
    width: 300px;
	padding-right: 10px;
	margin-left: 0;
}
.layui-form-item-button{
	justify-content: center;
}


/* ai */
.supply_Button{
	background-color: rgba(10, 10, 10, .6) !important;
	backdrop-filter: blur(5px);
	border-radius: 20px !important;

}
.layui-tab-title .layui-this:after{
	display: none;
}
#supply_Button{
	padding: 10px;
}
#supply_Button li{
	height:auto;padding: 0 15px;border-bottom: none;
	color: #000;
	background:none;
}
#supply_Button>div>div>div>div>button li:hover{
	background-color: rgba(0, 87, 104, 1);
	    color: #fff;
}
#supply_Button>div>div>div>div>div li:hover{
	/* background-color: #ccc; */
	    color: #ccc;
}
#supply_Button>div>div>div>div>ul{
	display: flex;flex-direction: inherit;flex-wrap: wrap;
	justify-content: flex-start;
	background-color: #fff;
	margin-left: 0px;
	align-items: flex-start;
}
#supply_Button>div>div>div>div>ul li{
	width: 48%;
	margin: 5px;
	border: 1px solid #bbbbbb;
	padding: 10px;
}
#supply_Button .layui-this{
	background-color: rgba(0, 87, 104, 1);
	color: #fff;
}
#supply_Button .layui-tab-content{
	background: #fff;
	height: 102%;
	width: 100%;
	border-radius: 20px;
	margin-left: 30px;
	overflow: overlay;
}
#supply_Button .layui-input:focus, .layui-textarea:focus {
   border: 2px solid rgba(0, 87, 104, 1) !important;
}
.aiChatButton{
	background-color: rgba(10, 10, 10, .6) !important;
	backdrop-filter: blur(5px);
	max-width: 500px;
	border-radius: 6px;
}
.aiChatButton .layui-layer-content{
	padding: 10px;
	/* display: flex;
	justify-content: center;
	align-items: center; */
}
.aiChatButton .layui-layer-content .layui-form-radio>i {
    color: #2f666c;
}

@media (max-width: 900px) {
	.openPhotos .layui-layer-content {
		font-size: 14px !important;
	}
	.supply_Button{
		transform: rotate(90deg);
	}
	.openPhotos-a{
		bottom: 50px;
	}
	.openPhotos-img{
		padding: 10px 0;
		background-origin: content-box;
	}
	.openPhotos-img-p {
	    padding: 20px 20px 10px;
	}
	.openPhotos-img-p > p{
		line-height: 20px;
		height: 40px;
	}
	/* 左 */
	#ZTC_nav {
		width: 70px;
		height: 100%;
		/* background-color: rgba(255, 255, 255, 0.4); */
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1000;
		/* backdrop-filter: blur(5px); */
		transition: all .5s;
	}

	#ZTC_nav_occlusion{
		margin-top: 0 !important;
	}

	#ZTC_nav>div>ul {
		/* display: none; */
		/* max-height: 0px; */
		/* overflow: hidden; */
		display: grid;
		transition: all 0.5s;
	}

	#ZTC_nav>div {
		margin-top: 10px;
	}

	#ZTC_nav>div>ul>li {
		margin-top: 10px;
		cursor: pointer;
		display: none;
	}

	#leftMean {
		/* grid-template-rows: auto auto auto 1fr; */
		min-height: calc(100vw - 80px);
		max-height: 500px;
	}

	#ZTC_nav>div>ul>li#unleftMean {
		display: list-item;
	}

	#ZTC_nav>div>ul>li>.subordinate {
		width: 400px;
		position: fixed;
		height: 100%;
		z-index: 9;
		background-color: rgba(0, 0, 0, .4);
		left: 70px;
		top: 0;
		display: none;
		backdrop-filter: blur(5px);
	}

	/* 默认位置伪元素 */
	/* #ZTC_nav>div>ul>li>.subordinate::before {
		content: '';
		border-top: 20px solid transparent;
		border-left: 20px solid transparent;
		border-right: 20px solid rgba(32, 83, 130, 0.5);
		border-bottom: 20px solid transparent;
		position: absolute;
		left: -40px;
		top: 120px;
	} */

	/* #ZTC_nav>div>ul>li:hover .subordinate {
		display: block;
	} */

	#ZTC_nav>div>ul>li>a {
		display: block;
		text-align: center;
		width: 100%;
	}

	#ZTC_nav>div>ul>li>a>i {
		font-size: 25px;
		color: #000;
	}

	#ZTC_nav>div>ul>li:hover i {
		color: #000;

	}

	#ZTC_nav>div>ul>li:hover a>span {
		color: #000;
		font-size: 12px;
	}

	#ZTC_nav>div>ul>li>a>span {
		display: inline-block;
		text-align: center;
		width: 100%;
		padding: 0 3px;
		color: #000;
		font-size: 12px;
	}

	/* 搜索 */
	#ZTC_nav>div>ul>li>.subordinate>.search_input {
		position: absolute;
		text-align: center;
		width: 100%;
	}

	.search_input_select {
		width: 100px;
		position: relative;
		cursor: pointer;
	}

	.search_input_select>input {
		text-align: center;
		width: 100%;
		height: 100%;
		border-radius: 12px 0 0 12px;
		background-color: #ffffff;
		border: none;
		padding: 5px 15px 5px 5px;
		color: #676767;
	}

	.search_input_select>i {
		position: absolute;
		top: 50%;
		right: -8px;
		font-size: 26px;
		transform: translate(0, -50%);
		color: #5a5a5a;
	}

	.fangdajing {
		width: 60px;
		background-color: #056ACB;
		border-radius: 0 12px 12px 0;
		cursor: pointer;
		transition: all .5s;
		line-height: 38px;
	}

	.fangdajing>i {
		font-size: 26px;
		color: #fff;
	}

	#search_select {
		background-color: #fff;
		z-index: 999;
		position: absolute;
		width: auto;
		top: 49px;
		min-width: 100px;
		box-shadow: 1px 2px 10px #c1c1c1;
	}

	#search_select>li {
		line-height: 30px;
		color: #535353 !important;
		cursor: pointer;
		padding: 5px 10px !important;
		transition: all .3s;
	}

	.search_input_content {
		width: calc(100% - 160px);
		border: none;
		padding: 5px 10px;
	}

	.subordinate>#search_content {
		margin-top: 70px;
		margin-bottom: 10px;
		/* overflow-x: hidden; */
		overflow: auto;
		padding-bottom: 60px;
		height: 100%;
	}

	/* 滚动条 */
	.gun::-webkit-scrollbar {
		width: 6px;
		height: 2px;
	}

	.gun::-webkit-scrollbar-thumb {
		-webkit-border-radius: 2px;
		border-radius: 2px;
		background-color: rgba(79, 151, 219, 100);
	}

	.gun::-webkit-scrollbar-track {
		border-radius: 0;
		-webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, .1);
		box-shadow: inset 0 0 1px rgba(0, 0, 0, .1);
		border: 1px solid #ccc;
		background-color: rgba(224, 224, 224, 0.1);

	}

	.subordinate>#search_content .col-sm-3 {
		padding: 8px 4px 0 4px;
		width: 50% !important;
	}

	.backColor {
		overflow: hidden;
		color: #6d6d6d;
		background-color: #ffffff;
		background-image: linear-gradient(0deg, #fff, #effbff);
		/* box-shadow: 6px 6px 10px 0 rgb(5 84 212 / 20%), -8px -8px 20px 0 #fff; */
		border: 2px solid #ffffff;
		border-radius: 8px;
	}

	.school-center {
		height: 0;
		width: 100%;
		position: relative;
		padding-bottom: 55%;
	}

	.orgs .backColor p {
		line-height: 21px;
		height: 42px;
		overflow: hidden;
		text-overflow: ellipsis;
		-webkit-line-clamp: 2;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		color: #38627f;
		margin: 10px 0 8px;
		padding: 0 5px;
	}

	.school-center img {
		width: 100% !important;
		height: 100% !important;
		position: absolute;
		margin-bottom: 5px;
	}

	/* 热点 */
	#ZTC_nav>div>ul>li:nth-child(3)>.subordinate::before {
		top: 180px;
	}

	#ZTC_nav>div>ul>li:nth-child(3)>.subordinate.important::before {
		top: 120px !important;
	}

	#SY_hotspot>h3 {
		text-align: center;
		margin-top: 20px;
		margin-left: 10px;
		margin-bottom: 10px;
		font-size: 18px;
		color: #fff;
	}

	.swiper {
		width: 85%;
		height: auto;
		--swiper-theme-color: #1981E4;
		--swiper-pagination-color: #1981E4;
	}

	.swiper-slide img {
		display: block;
		margin: auto;
		object-fit: cover;
		height: 100%;
	}

	#SY_hotspot ul {
		overflow-x: hidden;
		height: 100%;
	}

	#SY_hotspot ul li {
		margin: auto;
		width: 85%;
		color: #fff;
		padding: 10px 0px;
		border-bottom: 1px dotted #ccc;
	}

	#SY_hotspot ul li a {
		color: #fff;
	}

	/* 中 */
	#ZTC_vr {
		width: 100%;
		height: 100%;
		overflow: hidden;
		position: relative;
	}

	#ZTC_vr iframe {
		width: 100%;
		height: 100%;
		transform: scale(0.5);
		transform-origin: 0 0;
		width: 200%;
		height: 200%;
	}

	#ZTC_vr .Three_even_a_key {
		display: flex;
		align-items: center;
		justify-content: space-around;
		position: absolute;
		top: 10px;
		right: 10px;
		background-color: rgba(255, 255, 255, 0);
		backdrop-filter: blur(0px);
		border-radius: 20px;
		font-size: 12px;
		text-align: center;
	}

	#ZTC_vr .Three_even_a_key .centerList {
		font-size: 12px;
	}

	#ZTC_vr .Three_even_a_key .centerList>div {
		width: auto;
		padding: 10px 10px;
	}

	#ZTC_vr .Three_even_a_key .centerList>div>i {
		font-size: 20px;
	}

	.Three_even_a_key .user {
		cursor: pointer;
		display: block !important;
		width: 50px !important;
		padding: 0px !important;
		margin-right: 10px;
		padding-left: 10px !important;
		border-left: 1px solid rgb(169, 169, 169, 0);
	}

	/* 机构 */

	/* 班级 */
	#ZTC_nav>div>ul>li:nth-child(6)>.subordinate::before {
		top: 260px;
	}

	#ZTC_nav>div>ul>li:nth-child(7)>.subordinate::before {
		top: 335px;
	}

	/* 会议 */
	#ZTC_nav>div>ul>li:nth-child(9)>.subordinate::before {
		top: 275px;
	}

	#ZTC_nav>div>ul>li:nth-child(10)>.subordinate::before {
		top: 350px;
	}

	/* 专家 */
	#ZTC_nav>div>ul>li:nth-child(12)>.subordinate::before {
		top: 275px;
	}


	/* 右 */
	/* user */
	#ZTC_chatRoom .conceal {
		position: fixed;
		top: 30px;
		right: 30px;
	}

	#ZTC_chatRoom .conceal>a>span>img {
		width: 80px;
		height: 80px;
		border-radius: 50%;
	}

	#ZTC_chatRoom .conceal>a>p {
		font-size: 14px;
		width: 80px;
		height: 30px;
		line-height: 30px;
		background-color: #fff;
		text-align: center;
		border-radius: 26px;
		box-shadow: 0px 2px 0px 0px rgb(0 0 0 / 40%);
		font-family: Roboto;
		font-style: italic;
		margin-top: 10px;
	}

	/* 聊天框 */
	#ZTC_chatRoom .ztc_right_show {
		display: none;
		width: 360px;
		height: 100%;
		position: relative;
		background-color: #fff;
		z-index: 999;
	}

	.OS_chatFrame {
		width: 100%;
	}

	.OS_chatFrame .OS_chatFrame_top {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-around;
	}

	.OS_chatFrame .OS_chatFrame_top li {
		padding: 5px 0;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.OS_chatFrame .OS_chatFrame_top li i {
		font-size: 20px;
		cursor: pointer;
	}

	.OS_chatFrame .OS_chatFrame_top li span {
		font-size: 12px;
	}

	.OS_chatFrame .OS_chatFrame_top li:nth-child(4) img {
		width: 40px;
		height: 40px;
		border-radius: 50%;
	}

	.layui-tab-title {
		text-align: center;
		border: none;
	}

	.layui-tab-title {
		/* display: none; */
		justify-content: space-evenly;
		align-items: center;
		margin-bottom: 2px;
		border: none;
	}

	.right_hide {
		display: none;
	}

	#user>a>img {
		width: 30px;
		height: 30px;
	}

	.layui-tab {
		margin: 0;
	}

	.layui-tab-brief>.layui-tab-title .layui-this {
		color: #fff;
		background-color: rgba(79, 151, 219, 100);
	}

	.layui-tab-title li {
		width: 44%;
		margin: 0px 10px;
		border-radius: 20px;
		margin-bottom: 10px;
		height: 30px;
		color: #000;
		font-size: 12px;
		line-height: 33px;
		text-align: center;
		border-bottom: 1px dotted rgb(218, 216, 216);
	}

	.layui-tab-title>li {
		background-color: rgb(247, 247, 247);
		margin: 0px 10px;
		border-radius: 20px;
		margin-bottom: 10px;
	}

	.layui-tab-content {
		padding: 0 15px;
	}


	.face span i {
		font-size: 20px;
	}

	.layui-textarea {
		min-height: 35px;
		height: 35px;
		line-height: 20px;
		padding: 6px 85px 6px 10px;
		resize: vertical;
	}

	textarea {
		border-radius: 4px !important;
	}

	.right_comment {
		position: relative;
	}

	.right_comment #button {
		position: absolute;
		top: 0;
		right: 0;
		line-height: 35px;
		height: 35px;
		margin-top: 0 !important;
	}
}

@media screen and (orientation: portrait) {
	.wrap {
		position: absolute;
		width: calc(var(--vh) * 100) !important;
		height: 100vw !important;
		top: 0;
		left: 100vw;
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		transform-origin: 0% 0%;
	}

	.layui-layer.layui-layer-page.layui-layer-photos{
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
	}

	.switch_language{
		transform: rotate(90deg);
	}
	.aiChatButton{
		transform: rotate(90deg);
	}
	.openPhotos{
		transform: rotate(90deg);
		max-width: calc(100vh * 0.6);
		max-height: calc(100vw * 0.8);
	}
	.video_meeting{
	    transform: rotate(90deg);
	}
	.layui-layer-iframe{
		transform: rotate(90deg);
	}
	.interior_Shanghai_appointment{
		transform: rotate(90deg);
	}
	/* #live2dcanvas{
		transform: rotate(90deg);
	} */
	/* .interior_Shanghai_appointment .layui-form{
		max-height: calc(100vH - 50px);
	} */
	.layui-tab-item-list {
		height: calc(100vw - 170px) !important;
	}
}

@media screen and (orientation: landscape) {
	.wrap {
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw !important;
		height: calc(var(--vh) * 100) !important;
	}
	.interior_Shanghai_appointment .layui-form{
		max-height: calc(var(--vh) * 100 - 50px);
	}
	@media (max-width: 900px) {
		.layui-tab-item-list {
			height: calc(var(--vh) * 100 - 170px) !important;
		}

		#leftMean {
			min-height: calc(var(--vh) * 100 - 80px);
			max-height: 500px;
		}
	}
}

.layui-layer-content{
	font-size: 20px !important;
	padding: 12px 10px !important;
}