* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: calc(1200px / 192);
}

body {
    width: 1200px;
    min-height: 100vh;
}

@media screen and (min-width:1200px) {
    html {
        overflow: -moz-hidden-unscrollable;
        font-size: calc(100vw / 192);
    }

    body::-webkit-scrollbar {
        display: none;
    }

    body {
        width: 100%;
        min-height: 100vh;
        -ms-overflow-style: none;
        overflow: auto;
    }
}

video {
    position: fixed;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.menu {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.menu .logo {
    height: 7rem;
    margin-left: 8rem;
    z-index: 5;
    cursor: pointer;
}

.menu .logo img {
    height: 100%;
    z-index: 5;
}

.menu .placeholder {
    height: 100%;
    flex: 1;
}

.menu .icon {
    width: 3.5rem;
    height: 3.5rem;
    background-image: url('/static/image/index/home_open_icon.png');
    background-size: 100% 100%;
    cursor: pointer;
    z-index: 5;
    margin-right: 8rem;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
}

.menu .icon-active {
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    background-image: url('/static/image/index/cd_close_icon.png');
}

.menu-list-container {
    position: absolute;
    left: 0;
    top: -8rem;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
}

.menu-list {
    display: flex;
    margin: 0;
    margin-right: 26.1rem;
    height: 100%;
}

.menu-list li {
    cursor: pointer;
}

.menu-list>li {
    width: 13rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-list>li>p {
    height: 100%;
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 2.4rem;
    color: white;
    position: relative;
}

.submenu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    font-size: 1.7rem;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 0;
    display: none;
}

.submenu>li {
    list-style: none;
    text-align: center;
    height: 4rem;
    line-height: 4rem;
    color: white;
}

.menu-list>li>p:hover,
.submenu>li:hover {
    color: #e60010;
    font-weight: bold;
}

.title-container {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-container img {
    width: 86rem;
    -webkit-filter: drop-shadow(5px 5px 5px black);
    filter: drop-shadow(5px 5px 5px black);
}
.radioBox{
	position: fixed;
	width: 100%;
	color: white;
	margin-top: 230px;
	display: flex;
	justify-content: center;
}
.core{
	display: flex;
	background-color: white;
	color: black;
	border-radius: 5px;
	padding: 15px 30px;
}
.ChineseBox{
	display: flex;
	padding-left: 10px;
	padding-right: 10px;
	align-items: center;
}
.EnglishBox{
	display: flex;
	padding-left: 10px;
	padding-right: 10px;
	align-items: center;
}
.ChineseInput{
	zoom: 1.5;
	margin-right: 5px;
}
.EnglishInput{
	zoom: 1.5;
	margin-right: 5px;
}
.ChineseTitle{
	font-size: 16px;
	padding-bottom: 5px;
}
.EnglishTitle{
	font-size: 16px;
	padding-bottom: 5px;
}