/* head :s */
#head {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    background: #fff;
    border-bottom: 1px solid #cfcfcf;
    z-index: 999;
}
#head .inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1560px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
#head .logo {
    width: 200px;
    height: 48px;
}
#head .logo a {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
/* logo */

#head .inner .nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
	align-items: center;
    width: 50%;
    height: 100%;
}
#head .inner .nav > li {
    position: relative;
	min-width: 140px;
    width: 33.333%;
    font-size: 20px;
    text-align: center;
}
#head .inner .nav .d1tit {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 78px;
}
#head .inner .nav .d2 {
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    display: none;
    width: 100%;
    padding: 20px;
    background: #fff;
}
#head .inner .nav .d2 li {
    font-size: 16px;
    line-height: 2.4rem;
    text-align: left;
}
#head .inner .nav > li:hover .d2 {
    border-top: 4px solid #0d8be8;
}
#head .inner .nav .d2 li:hover a {
    color: #0070E4;
}
#head .inner .nav .d2tit {}
/* nav */

#head .menu {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
	background-color: #fff;
    border: 0;
}
#head .menu span {
    position: absolute;
    right: 0;
    display: block;
    width: 35px;
    height: 2px;
    background: #666;
}
#head .menu span:nth-child(1) {
    top: 7px;
}
#head .menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
}
#head .menu span:nth-child(3) {
    bottom: 7px;
}

#head .menu.clicked {
    display: none;
}

#head .util-wrap {display: flex; align-items: center; gap: 30px;}

.close_menu {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 9999;
	border:0px;
	background: transparent;
}
.close_menu span {
    position: absolute;
    top: 50%;
    display: block;
    width: 35px;
    height: 2px;
    background: #666;
}
.close_menu span:nth-child(1) {
    transform: rotate(45deg);
}
.close_menu span:nth-child(2) {
    transform: rotate(-45deg);
}

.close_menu.clicked {
    display: block;
}


.open_menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    z-index: 999;
}

.open_menu .nav {
    position: absolute;
	top: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 950px;
    gap: 90px;
    flex-wrap: wrap;
}
.open_menu .d1 > li:hover .d1tit {
    padding-bottom: 10px;
    border-bottom: 3px solid #0070E4;
    color: #0070E4;
}
.open_menu .nav .d1tit {
    font-size: 24px;
    font-weight: 600;
}
.open_menu .d2 li:first-child {
    margin-top: 30px;
}
.open_menu .d2tit {
    font-size: 20px;
    line-height: 2.8rem;
}
.open_menu .d2tit:hover {
    color: #0d8be8;
}

/* menu */
/* head :e */