/*公共样式*/
body {
    background-color: #000;
    position: relative;
    background-repeat: no-repeat;
}

* {
    padding: 0;
    margin: 0;
    font-size: 14px;
    transition: .5s all;
    color: #fff;
}

li {
    list-style: none
}

a {
    text-decoration: none;
    color: #fff;
}
@font-face {
    font-family: 'almm';
    src: url("/fonts/almm.ttf");
}
.almm-font{
    font-family: 'almm', sans-serif;
}
@font-face {
    font-family: 'albb-hp';
    src: url("/fonts/AlibabaPuHuiTi-3-65-Medium.ttf");
}
.albb-font{
    font-family: 'albb-hp', sans-serif;
}
.page_header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
}
.page_header_fixed, .page_header:hover{
    background-color: #000;
}
.page_header, .page_header .container .logo{
    transition: none;
}
.page_header .container{
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    --logo-src: url("/static/img/header-logo-colour.png");
    --menu-active: url("/static/img/header-menu-active-colour.png");
}
.page_header .container .logo{
    width: 166px;
    height: 45px;
    background-image: var(--logo-src);
    background-size: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
}
.page_header .menu-container{
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}
.page_header .menu-container .menu-item{
    padding: 0 19px;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}
.page_header .menu-container .menu-item .menu-text{
    color: #fff;
    height: 20px;
    line-height: 20px;
    font-weight: bold;
    font-size: 16px;
}
.page_header .menu-container .menu-item-active{
    position: absolute;
    z-index: 1;
    height: 16px;
    top: 40px;
    /*transition: 0s background;*/
    background-image: var(--menu-active);
    background-size: 33px 16px;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: .5s all, 0s background;
}
.page_header .container .tool{
    display: flex;
    align-items: center;
    height: 100%;
}
.page_header .container .tool .box{
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
.page_header .container .tool .box .icon{
    width: 21px;
    height: 21px;
    display: block;
    cursor: pointer;
}
.page_header .container .tool .box .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.page_header .container .tool .box .made{
    width: 84px;
    height: 40px;
    display: block;
}
.page_header .container .tool .box .made img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.page_header .container .tool .box.operate-box + .box.operate-box{
    margin-left: 50px;
}
.page_header .container .tool .box.made-box{
    margin-left: 85px;
}
.page_header .container .tool .box .lang-container{
    display: none;
    position: absolute;
    width: 160px;
    top: 70px;
    right: -40px;
    background-color: #000;
    border-radius: 7px;
    padding: 5px;
}
.page_header .container .tool .box .lang-container .item{
    height: 36px;
    line-height: 36px;
    width: 100%;
    text-align: center;
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 3px;
    border: 1px solid transparent;
}
.page_header .container .tool .box .lang-container .item + .item{
    margin-top: 5px;
}
.page_header .container .tool .box .lang-container .item::before{
    opacity: 0;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid;
    box-sizing: border-box;
    filter: blur(10px);
    border-image: linear-gradient(135.48deg, rgba(15, 123, 255, 1) 0%, rgba(18, 255, 184, 1) 29.91%, rgba(255, 235, 59, 1) 63.74%, rgba(255, 91, 186, 1) 100%) 4;
}
.page_header .container .tool .box .lang-container .item.is-active,
.page_header .container .tool .box .lang-container .item:hover{
	border: 1px solid rgba(219, 219, 219, 0.5);
}
.page_header .container .tool .box .lang-container .item.is-active::before,
.page_header .container .tool .box .lang-container .item:hover::before{
    opacity: 1;
}
.page_header .container .tool .box:hover .lang-container{
    display: block;
}
.header_search_container{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}
.header_search_container .page_header{
    background-color: #000;
}
.header_search_container .page_header .container{

}
.header_search_container .search-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 550px;
}
.header_search_container .search-box input {
    border-width: 0;
    color: #000;
    border-radius: 15px;
    background-color: #fff;
    flex: 1;
    height: 40px;
    line-height: 40px;
    background-image: url("/static/img/header-search-icon.png");
    background-size: 21px;
    padding-left: 50px;
    background-position: 10px 50%;
    background-repeat: no-repeat;
    overflow: hidden;
    font-size: 16px;
}
.header_search_container .search-box input:focus{
     border-width: 0;
     box-shadow: 0 0 0;
     outline: none;
 }
.header_search_container .search-box .close-icon{
    font-size: 50px;
    display: flex;
    align-items: center;
    margin-left: 20px;
    margin-top: -10px;
    line-height: 1em;
    cursor: pointer;
    user-select: none;
}
.header_search_container .seat-box{
    width: 166px;
}
.header_search_container .header_search_list_container{
    margin-top: 70px;
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 50px;
}
.header_search_container .header_search_list_container .group-box{
    width: 550px;
    margin: 10px auto 0 auto;
}
.header_search_container .header_search_list_container .group-box .group-title{
    margin: 15px 10px 10px 10px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1em;
}
.header_search_container .header_search_list_container .group-box .group-content .list-item{
    padding: 8px 10px;
    display: block;
}
.header_search_container .header_search_list_container #search-result-list{
    display: none;
}
.page_footer{
    padding-top: 169px;
}
.page_footer .box{
    display: flex;
    justify-content: space-between;
    padding-bottom: 140px;
}
.page_footer .box .email-list{
    display: flex;
    flex-direction: column;
}
.page_footer .box .email-list .item{
    padding-left: 38px;
    background-image: url("/static/img/h_footer_email.png");
    background-repeat: no-repeat;
    background-size: 21px 18px;
    background-position: 3px 50%;
    font-size: 14px;
    height: 21px;
    line-height: 21px;
}
.page_footer .box .email-list .item + .item{
    margin-top: 21px;
}
.page_footer .box .apply-list{
    width: 300px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.page_footer .box .apply-list .apply-icon{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 20px;
    margin-left: 20px;
    display: block;
    overflow: hidden;
}
.page_footer .box .apply-list .apply-icon img{
    height: 100%;
    width: 100%;
}
.page_footer .company{
    width: 412px;
}
.page_footer .company .thumb,
.page_footer .company .map-container{
    width: 100%;
    height: 200px;
    border-radius: 10px;
    background-color: rgba(127, 133, 138, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.page_footer .company .thumb img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.page_footer .company .text{
    margin-top: 15px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.page_footer .sub-box{
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    width: 418px;
    padding-bottom: 20px;
}
.page_footer .sub-box .h-box{
    width: 345px;
    padding-bottom: 40px;
}
.page_footer .sub-box .h-box img{
    width: 100%;
}
.page_footer .sub-box .title{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}
.page_footer .sub-box .des{
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
    font-weight: 400;
}
.page_footer .sub-box .input_box{
    height: 50px;
    border: 1px solid #fff;
    box-sizing: border-box;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 18px;
    display: flex;
}
.page_footer .sub-box .input_box .icon{
    width: 52px;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_footer .sub-box .input_box .icon img{
    width: 36px;
}
.page_footer .sub-box .input_box .value{
    flex: 1;
    height: 100%;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    box-sizing: border-box;
    color: rgba(105, 105, 105, 1);
}
.page_footer .sub-box .input_box .value input{
    width: 100%;
    height: 100%;
    border-width: 0;
    font-size: 18px;
    text-align: center;
    background-color: transparent;
    box-sizing: border-box;
    font-weight: 500;
}
.page_footer .sub-box .input_box .value input:focus{
    border-width: 0;
    box-shadow: 0 0 0;
    outline: none;
}
.page_footer .sub-box .input_box .value input::placeholder{
    color: rgba(105, 105, 105, 1);
}
.page_footer .sub-box .input_box .btn{
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: transparent;
    border-width: 0;
    cursor: pointer;
}
.page_footer .sub-box .input_box .btn img{
    width: 24px;
    height: 24px;
}
.page_title{
    padding-top: 110px;
    color: #fff;
    text-align: center;
}
.page_title .title{
    font-size: 60px;
    line-height: 72px;
    padding-bottom: 30px;
    background-repeat: no-repeat;
    background-image: url("/static/img/page_title_icon.png");
    background-position: 50% 55px;
    margin-bottom: 40px;
    font-family: 'almm', sans-serif;
    font-weight: 400;
}
.page_title .sub_title{
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 6px;
}
.page_title .des{
    line-height: 24px;
}
.page_title .des * {
    font-size: 18px;
}
.page-box-border{
    position: relative;
    border: 1px solid rgba(219, 219, 219, 1);
}
.page-box-border:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid;
    box-sizing: border-box;
    filter: blur(18px);
    border-image: linear-gradient(135.48deg, rgba(15, 123, 255, 1) 0%, rgba(18, 255, 184, 1) 29.91%, rgba(255, 235, 59, 1) 63.74%, rgba(255, 91, 186, 1) 100%) 4;
}
.pre_video_container .pre_video{
    display: none !important;
}
.pre_video_container:hover .pre_video{
    display: flex !important;
}