header {
box-sizing: border-box;
	position: fixed;
	top: 0;
	width: 100%;
	/*width: calc(100% - 40px);*/
	/*width: -webkit-calc(100% - 40px);*/
	padding:0 20px;
	/*display: inline-block;*/
	transition: transform 0.3s ease;
	z-index: 1000;
}
.headers{
    width: 100%;
    margin: 10px 0;
	padding: 5px 10px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	display: inline-block;
}
header.on{
	    transform: translateY(-120%);
}
.logo {
    display: block;
	padding: 5px 15px;
	float: left;
	margin-top: 5px;
	position: relative;
	z-index: 10;
}

.logo img {
    width: auto;
	height: 18px;
}

.headea {
        width: calc(100% - 760px);
            width: -webkit-calc(100% - 760px);
	float: left;
	/* margin-top: 4px; */
	display: inline-block;
	
}

.headea li {
	margin-left: 20px;
	float: left;
}

.headea1 {
	background: #ffffff;
	color: #000000;
	border-radius: 20px;
	padding: 5px 15px;
	cursor: pointer;
	font-family: 'HS Bold', sans-serif;
	font-weight: bold;
	transition: all 0.3s ease;
	display: block;
	font-size: 18px;
	position: relative;
	z-index: 10;
}

.headea li:hover .headea1 {
	background: #000000;
	color: #ffffff;
}

.headeb {
	background: #ffffff;
	color: #FF520F;
	border: 2px solid #FF520F;
	font-family: 'HS Bold', sans-serif;
	font-weight: bold;
	padding: 1px 11px;
	border-radius: 10px;
	float: right;
	font-size: 18px;
	display: block;
	/* margin-top: 6px; */
	position: relative;
	z-index: 10;
}

.headeb:hover {
	background: #FF520F;
	color: white;
}

.headea2 {
	width: 100%;
	background: white;
	border-radius: 15px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	list-style: none;
	padding: 1rem 0;
	padding-top: calc(56px + 1rem);
	font-size: 18px;
	scrollbar-width: thin;
	scrollbar-color: #888 transparent;
	max-height: 90vh;
	overflow-y: auto;
}

.prints-div {
	display: flex;
	gap: 50px;
	padding: 0 10%;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.prints-div-mobile {
	flex-direction: column;
}

.prints-div div {
	cursor: pointer;
}

.prints-div div img {
	width: 200px;
	height: 200px;
}

.prints-div div span {
	font-size: 20px;
	font-family: 'HS Bold', sans-serif;
}

.headea li:hover .headea2 {
	display: block;
}

.div-container {
	display: flex;
	gap: 150px;
	justify-content: center;
}

.div-container-mobile {
	gap: 20px;
	flex-wrap: wrap;
	justify-content: space-around;
}

.div-img-text {
	width: 150px;
	text-align: center;
	cursor: pointer;
}

.div-img-text img {
	width: 150px;
}

.div-img-text p {
	font-size: 20px;
	font-family: 'HS Bold', sans-serif;
}

.software-div {
	display: flex;
	gap: 50px;
	padding: 0 10%;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.software-div div img {
	width: 200px;
	height: 200px;
}

.software-div div span {
	font-weight: bold;
	font-size: 20px;
	font-family: 'HS Bold', sans-serif;
}
/* 基础样式 */
.navbar {
    position: fixed;
    top: 0;
    width: calc(100% - 40px);
    width: -webkit-calc(100% - 40px);
    margin: 10px;
    padding: 10px 10px;
    background: white;
    transition: transform 0.3s ease;
    z-index: 1000;
}

.navbar-menu-close {
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-menu-open {
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 隐藏状态 */
.navbar--hidden {
    transform: translateY(calc(-100% - 20px));
}

/* 桌面菜单 */
.navbar__desktop-menu {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.logo-container {
    padding: 5px 15px;
    cursor: pointer;
    display: flex;
    align-items: center; /* 确保垂直居中 */
}

.nav-item-r {
    background: #ffffff;
    color: #FF520F;
    border: 2px solid #FF520F;
    cursor: pointer;
    font-family: 'HS Bold', sans-serif;
    font-weight: bold;
    padding: 1px 11px;
    border-radius: 10px;
}

.nav-item-r:hover {
    background: #FF520F;
    color: #ffffff;
}

.nav-item {
    background: #ffffff;
    color: #000000;
    border-radius: 20px;
    padding: 5px 15px;
    cursor: pointer;
    font-family: 'HS Bold', sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: #000000;
    color: #ffffff;
}

.mobile-menu {

}
.mobile-menu1{
	width: 100%;
}
.mobile-menu1.on .mobile-nav-item span{
	display: block;
}
.mobile-menu1.on .submenu {
	display: block;
}
.mobile-nav-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-family: 'HS Bold', sans-serif;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-nav-item span{
	display: none;
}
.submenu {
    padding: 10px 15px;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 5px 0;
	display: none;
}

.expand-enter-active, .expand-leave-active {
    transition: max-height 0.5s ease, opacity 0.5s ease;
    overflow: hidden;
}

.expand-enter-from, .expand-leave-to {
    max-height: 0;
    opacity: 0;
}

.expand-enter-to, .expand-leave-from {
    max-height: 500px;
    opacity: 1;
}