@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 199;
    width: 100%;
    display: block;
}

header .logo {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 52px;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -ms-flex-line-pack: center;
    /* align-content: center; */
    align-items: flex-end;
    z-index: 100;
    left: 4%;
    top: 52px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

header .logo img {
    position: relative;
    width: 254px;
    margin-right: 6px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

header .logo .name {
    /* position: relative; */
    position: static;
    font-size: 22px;
    line-height: 1.125em;
    color: white;
    font-weight: bold;
    letter-spacing: 2px;
    padding-bottom: 6px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-family: "Montserrat", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

header .head_top {
    position: absolute;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 58px 4% 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 80;
}

header .down_menu_close {
    position: fixed;
    background-color: black;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

header .down_menu_close.show {
    opacity: .7;
    pointer-events: all;
}

header .right_block {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 28px;
    opacity: 1;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

header .right_block .go_download {
    position: relative;
    cursor: pointer;
    padding: 0 7px;
    margin-right: 20px;
    width: 33px;
}

header .right_block .go_download svg {
    stroke: white;
    fill: white;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

header .right_block .go_download img {
    position: relative;
    width: 32px;
}

header .right_block .go_game {
    position: relative;
    padding: 0 5px;
    margin-right: 35px;
    height: 80px;
    width: 35px;
}

header .right_block .go_game .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #fff;
    stroke-width: 60;
    stroke-miterlimit: 10;
}

header .right_block .go_game .st00 {
    fill: #fff;
}

header .right_block .go_game img {
    position: relative;
    width: 35px;
}

header .right_block .go_game .tip {
    position: absolute;
    background-color: white;
    font-size: 16px;
    padding: 10px 16px;
    width: 93px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 56px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

header .right_block .go_game .tip::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent #ffffff transparent;
    top: -8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

header .right_block .search_box {
    position: relative;
    width: 185px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 25px;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
}

header .right_block .search_box form {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

header .right_block .search_box .inputbox {
    position: relative;
    width: 150px;
    background-color: transparent;
    color: white;
    font-size: 16px;
    padding-right: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

header .right_block .search_box .input_send {
    position: relative;
    font-size: 0;
    background-image: url(../../images/search.svg);
    width: 34px;
    height: 29px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 21px;
    background-position: right;
    cursor: pointer;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

header .right_block .mail_box {
    position: relative;
    width: 185px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 25px;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
}

header .right_block .mail_box form {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

header .right_block .mail_box .inputbox {
    position: relative;
    width: 150px;
    background-color: transparent;
    color: white;
    font-size: 16px;
    padding-right: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

header .right_block .mail_box .input_send {
    position: relative;
    font-size: 0;
    background-image: url(../../images/mail.svg);
    width: 34px;
    height: 29px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 21px;
    background-position: right;
    cursor: pointer;
}

header .right_block .lang {
    position: relative;
    height: 80px;
}

header .right_block .lang .icon {
    position: relative;
    padding: 0 7px;
    cursor: pointer;
    width: 30px;
}

header .right_block .lang .icon svg {
    stroke: white;
    fill: white;
}

header .right_block .lang .icon img {
    position: relative;
    width: 32px;
}

header .right_block .lang .lang_list {
    position: absolute;
    background-color: white;
    font-size: 16px;
    padding: 10px 16px;
    width: 93px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 56px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

header .right_block .lang .lang_list .name {
    position: relative;
    display: block;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 3px;
    margin-bottom: 3px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-weight: bold;
}

header .right_block .lang .lang_list .name.active {
    position: relative;
    color: #009944;
}

header .right_block .lang .lang_list .name:last-child {
    border-bottom: 0;
}

header .right_block .lang .lang_list::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent #ffffff transparent;
    top: -8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

header.fullbg .down_menu::after {
    background-color: #ffffff;
}

header.down .right_block {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}

header.down .down_menu {
    pointer-events: all;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    z-index: 90;
}

header.down .logo .name {
    color: #121212;
}

header.down .logo {
    top: 36px;
}

header.down .logo img {
    width: 200px;
}

header .down_menu {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 40;
    right: 0;
    width: calc(100% - 665px);
    pointer-events: none;
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

header .down_menu::after {
    content: '';
    background-color: #ffffffed;
    position: absolute;
    width: 100vw;
    right: 0;
    height: 100%;
    z-index: -1;
    -webkit-box-shadow: 5px 5px 5px #0000000f;
    box-shadow: 5px 5px 5px #0000000f;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

header .down_menu .menu_box {
    position: relative;
    width: 100%;
}

header .down_menu .menu_box .name {
    position: relative;
    height: 126px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    cursor: pointer;
    padding-left: 26px;
    color: #000000;
    font-weight: bold;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

header .down_menu .menu_box .name::before {
    content: '';
    height: 37px;
    width: 2px;
    position: absolute;
    left: 0;
    background-color: #cbcbcb;
    top: 40px;
}

header .down_menu .menu_box .sub_box {
    position: relative;
    width: 70%;
    display: none;
    padding-bottom: 30px;
    left: 26px;
}

header .down_menu .menu_box .sub_box .link {
    position: relative;
    display: block;
    font-size: 14px;
    padding: 36px 0;
    border-bottom: 1px solid #d0d0d0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

header .down_menu .menu_box .sub_box .link:last-child {
    border-bottom: 0;
}

#menu_inner {
    position: fixed;
    width: 50%;
    height: 100%;
    z-index: 90;
    left: 0;
    top: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

#menu_inner.show {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    pointer-events: all;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
    width: 100%;
}

#menu_inner.show .pic {
    -webkit-transition: all 1s ease .3s;
    transition: all 1s ease .3s;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

#menu_inner.show .close_button,
#menu_inner.show .file_download {
    opacity: 1;
    -webkit-transition: all .8s ease 1.2s;
    transition: all .8s ease 1.2s;
}

#menu_inner::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: #f8f8f8;
    z-index: 5;
}

#menu_inner .close_button {
    opacity: 0;
}

#menu_inner .sub_box {
    position: absolute;
    width: 22%;
    background-image: url(../../images/bg_green_down.jpg);
    height: 100%;
    left: 50%;
    z-index: 15;
    top: 0;
    min-width: 280px;
    display: none;
}

#menu_inner .sub_box .sub_block {
    top: 50%;
    position: absolute;
    width: 100%;
    padding: 0 13%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
}

#menu_inner .sub_box .sub_block .back {
    display: none;
}

#menu_inner .sub_box .sub_block .back+.sub_link {
    padding-top: 0;
}

#menu_inner .sub_box .sub_block .sub_link {
    display: block;
    position: relative;
    border-bottom: 1px solid #ffffff61;
    color: white;
    padding: 28px 0 28px 0;
    font-size: 16px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

#menu_inner .sub_box .sub_block .sub_link .name {
    position: relative;
}

#menu_inner .sub_box .sub_block .sub_link:first-child {
    padding-top: 0;
}

#menu_inner .sub_box .sub_block .sub_link:last-child {
    border-bottom: 0;
}

#menu_inner .menu_inner_box {
    position: relative;
    top: 50%;
    left: 20%;
    width: 27%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 5;
}

#menu_inner .menu_inner_box .box {
    position: relative;
}

#menu_inner .menu_inner_box .box .link {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    padding: 28px 70px 28px 0;
    border-bottom: 1px solid #dbdbdb;
    display: block;
    cursor: pointer;
}

#menu_inner .menu_inner_box .box .link.active b {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

#menu_inner .menu_inner_box .box .link.active::after {
    width: 100%;
}

#menu_inner .menu_inner_box .box .link::after {
    content: '';
    background-color: #009944;
    width: 0%;
    height: 1px;
    bottom: -1px;
    display: block;
    position: absolute;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

#menu_inner .menu_inner_box .box .link .name {
    position: relative;
}

#menu_inner .menu_inner_box .box .link b {
    position: absolute;
    font-size: 30px;
    right: 0;
    bottom: 16px;
    font-weight: bold;
    color: #009944;
    font-family: "Montserrat", "Microsoft JhengHei", Myriad, Aria, sans-serif;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

#menu_inner .menu_inner_box .box .link:first-child {
    padding-top: 0;
}

#menu_inner .menu_inner_box .box .link:last-child {
    border-bottom: 0;
}

#menu_inner .pic {
    position: absolute;
    width: 50%;
    height: 100%;
    left: 50%;
    top: 0;
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 1;
}

#menu_inner .pic img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#menu_inner .file_download {
    position: absolute;
    background-color: #009944;
    color: white;
    font-size: 16px;
    padding: 22px 68px;
    right: 35px;
    z-index: 10;
    bottom: 35px;
    margin-left: 33px;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
}

#menu_inner .file_download::after {
    content: '';
    background-color: white;
    position: absolute;
    width: 0;
    height: 3px;
    left: 50%;
    bottom: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

#menu_control {
    position: absolute;
    left: 4%;
    top: 50%;
    width: 70px;
    height: 70px;
    z-index: 199;
    cursor: pointer;
    margin-left: -34px;
    margin-top: -35px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
}

#menu_control.active {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    position: fixed;
}

#menu_control.active div {
    background-color: #1e1b19;
}

#menu_control div {
    position: absolute;
    width: 23px;
    height: 2px;
    background-color: white;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 24px;
}

#menu_control div:nth-child(2) {
    top: 50%;
    margin-top: -1px;
}

#menu_control div:nth-child(3) {
    top: 50%;
    margin-top: 10px;
}

.jump_boxer {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1010;
    position: fixed;
    display: none;
    left: 0;
    top: 0;
}

.jump_boxer.final_succees .bg {
    width: 27%;
}

.jump_boxer.final_succees .imgs {
    position: relative;
    width: 50%;
    background-color: #050d0b;
}

.jump_boxer.final_succees .imgs img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: relative;
    display: block;
}

.jump_boxer.final_succees .box {
    position: relative;
    width: 50%;
    padding: 70px 75px 35px 75px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.jump_boxer.final_succees .box h4 {
    font-family: "Montserrat", "Microsoft JhengHei", Myriad, Aria, sans-serif;
    font-size: 50px;
    color: #252525;
    padding: 0;
    margin: 0;
    font-weight: 700;
}

.jump_boxer.final_succees .box .link {
    width: 100%;
}

.jump_boxer.final_succees .light_wrap {
    width: 950px;
    position: relative;
    padding: 0;
}

.jump_boxer .light_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1000px;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: #fff;
    padding: 35px 85px;
    width: 464px;
    overflow: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.jump_boxer .box {
    position: relative;
    text-align: center;
}

.error_msg.jump_boxer .box .title {
    font-size: 20px;
    display: block;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 20px;
    text-align: center;
    color: #ea5504;
}

.jump_boxer .light_wrap .close {
    position: absolute;
    right: -28px;
    top: -28px;
    width: 78px;
    height: 78px;
    text-align: center;
    line-height: 45px;
    font-size: 25px;
    background-color: #009944;
    color: #fff;
    cursor: pointer;
    z-index: 20;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.jump_boxer .light_wrap .close::before {
    content: '';
    background-color: white;
    width: 28px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.jump_boxer .light_wrap .close::after {
    content: '';
    background-color: white;
    width: 28px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.jump_boxer .bg {
    position: absolute;
    top: -18px;
    pointer-events: none;
    overflow: hidden;
    width: 55%;
    right: 0;
}

.jump_boxer .bg img {
    width: 512px;
    max-width: 100vw;
}

.jump_boxer .box .icon {
    display: block;
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    padding-top: 72px;
}

.jump_boxer .box .title {
    font-size: 20px;
    display: block;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.jump_boxer .box .text {
    font-size: 16px;
    display: block;
    margin-bottom: 0;
    line-height: 2.4;
}

.jump_boxer .box .link {
    width: 293px;
    height: 72px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    background-color: #009944;
    color: white;
    font-size: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 34px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 80px;
    font-weight: bold;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.jump_boxer .box .link::after {
    content: '';
    width: 11px;
    height: 11px;
    position: absolute;
    right: 29px;
    top: 50%;
    border-top: 2px solid white;
    border-right: 2px solid white;
    -webkit-transform: rotate(45deg) translateY(-50%) scale(1);
    transform: rotate(45deg) translateY(-50%) scale(1);
    margin-top: -1px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.jump_boxer .box .link::before {
    content: '';
    background-color: white;
    width: 21px;
    height: 2px;
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

#___gcse_0 {
    background-color: transparent;
}

#___gcse_0 .gsc-control-cse {
    background-color: transparent;
    background-color: transparent;
    border: 0;
    padding: 0;
}

#___gcse_0 .gsc-control-cse .gsc-search-button-v2 {
    position: relative;
    font-size: 0;
    background-image: url(../../images/search.svg);
    width: 34px;
    height: 29px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 21px;
    background-position: right;
    cursor: pointer;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

#___gcse_0 .gsc-results-wrapper-visible {
    background-color: gray;
}

@media (min-width: 1199px) {
    header .down_menu .menu_box .name:hover {
        color: #009944;
    }
    .jump_boxer .light_wrap .close:hover::before {
        width: 40px;
    }
    .jump_boxer .light_wrap .close:hover::after {
        width: 40px;
    }
    .jump_boxer .box .link:hover::after {
        -webkit-transform: rotate(45deg) translateY(-50%) scale(1.2);
        transform: rotate(45deg) translateY(-50%) scale(1.2);
    }
    .jump_boxer .box .link:hover:before {
        width: 30px;
    }
    header .right_block .go_download:hover svg {
        stroke: #ea5504;
        fill: #ea5504;
    }
}

@media only screen and (max-width: 1500px) {
    header .down_menu {
        width: 60%;
    }
}

@media only screen and (max-width: 1300px) {
    header .down_menu {
        width: 65%;
    }
}

@media only screen and (min-width: 1199px) {
    header .right_block .lang .lang_list .name:hover {
        color: #009944;
    }
    header .right_block .lang:hover .lang_list {
        opacity: 1;
        pointer-events: all;
    }
    header .right_block .go_game:hover .tip {
        opacity: 1;
        pointer-events: all;
    }
    header .down_menu .menu_box .sub_box .link:hover,
    header .down_menu .menu_box a.name:hover {
        color: #009944;
    }
    #menu_inner .menu_inner_box .box .link:hover b {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    #menu_inner .menu_inner_box .box .link:hover::after {
        width: 100%;
    }
    #menu_inner .sub_box .sub_block .sub_link:hover {
        border-bottom: 1px solid #ffffff;
    }
    #menu_inner .file_download:hover::after {
        width: 100%;
        left: 0;
    }
}

@media only screen and (max-width: 1200px) {
    header .down_menu,
    header .right_block .mail_box,
    header .right_block .search_box,
    header .right_block .go_game,
    #menu_inner .close_button {
        display: none;
    }
    #menu_inner .file_download {
        padding: 15px 46px;
    }
    #menu_inner .sub_box .sub_block {
        top: 28%;
    }
    #menu_inner .menu_inner_box {
        position: relative;
        top: 28%;
        left: 4%;
        width: 27%;
    }
    #menu_inner::before {
        width: 36%;
    }
    #menu_inner .sub_box {
        left: 36%;
    }
    #menu_inner .pic {
        width: 64%;
        left: 36%;
    }
    header .logo img,
    header.down .logo img {
        width: 190px;
    }
    header .logo .name {
        font-size: 16px;
        color: black;
        /* font-weight: bold; */
    }
    header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 199;
        width: 100%;
        display: block;
        background-color: #fffffff5;
        height: 80px;
        border-bottom: 1px solid #dfdfdf;
    }
    header .logo,
    header.down .logo {
        top: 18px;
    }
    #menu_control {
        position: fixed;
        top: 40px;
        right: 2%;
        left: auto;
    }
    #menu_control div {
        background-color: black;
    }
    header .right_block .lang .icon svg,
    header .right_block .go_download svg {
        fill: black;
        stroke: black;
    }
    header .head_top {
        padding-top: 0;
        padding-right: 0;
        right: 2%;
        margin-right: 80px;
    }
    header.down .right_block,
    header .right_block {
        opacity: 1;
        pointer-events: all;
        -webkit-transform: none;
        transform: none;
        padding-top: 25px;
    }
    header .right_block .lang .lang_list.show {
        opacity: 1;
        pointer-events: all;
    }
    .jump_boxer .light_wrap .close {
        right: 0;
        top: 0;
    }
    .jump_boxer.final_succees .light_wrap {
        width: 90%;
        position: relative;
        padding: 0;
        display: block;
        max-width: 500px;
    }
    .jump_boxer.final_succees .light_wrap .imgs {
        height: 40vh;
        width: 100%;
        min-height: 300px;
    }
    .jump_boxer.final_succees .light_wrap .box {
        width: 100%;
        padding: 50px 50px 35px 50px;
    }
    .jump_boxer.final_succees .light_wrap .box h4 {
        font-size: 30px;
    }
    .jump_boxer.final_succees .light_wrap .box .title {
        font-size: 16px;
        display: block;
        font-weight: bold;
        margin-bottom: 0;
    }
    .jump_boxer.final_succees .light_wrap .box .link {
        margin-top: 20px;
    }
    .jump_boxer.final_succees .light_wrap .bg {
        width: 54%;
        top: 37vh;
    }
}

@media only screen and (max-width: 850px) {
    #menu_inner .pic {
        display: none;
    }
    #menu_inner::before {
        width: 100%;
    }
    #menu_inner .menu_inner_box {
        position: relative;
        top: 0;
        left: 5%;
        width: 90%;
        margin-top: 128px;
    }
    #menu_inner .menu_inner_box .box .link,
    #menu_inner .menu_inner_box .box .link:first-child {
        padding: 20px 65px;
    }
    #menu_inner .menu_inner_box .box .link b {
        opacity: 1;
        right: auto;
        left: 0;
        color: black;
        -webkit-transform: none;
        transform: none;
        font-size: 20px;
        top: 50%;
        margin-top: -19px;
    }
    #menu_inner .menu_inner_box .box div.link::before {
        content: "";
        font-weight: bold;
        position: absolute;
        border: 1px solid #009944;
        right: 8px;
        width: 8px;
        height: 8px;
        top: 24px;
        border-left: 0;
        border-top: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    #menu_inner .file_download {
        bottom: 56px;
    }
    header .copyright {
        position: absolute;
        bottom: 45px;
        z-index: 20;
        left: 5%;
        font-size: 14px;
        color: #878787;
    }
    #menu_inner .menu_inner_box .box .link.active::after {
        display: none;
    }
    #menu_inner .sub_box {
        left: 0;
        width: 100%;
        top: 80px;
    }
    #menu_inner .sub_box .sub_block {
        top: 0;
        padding: 0;
        left: 5%;
        width: 90%;
        font-weight: bold;
    }
    #menu_inner .sub_box .sub_block .sub_link,
    #menu_inner .sub_box .sub_block .back+.sub_link {
        padding: 20px 0;
    }
    #menu_inner .sub_box .sub_block .back {
        display: block;
        margin-top: 68px;
        color: white;
        border-bottom: 1px solid #ffffff61;
        padding-bottom: 20px;
        text-align: right;
        font-weight: bold;
        position: relative;
        font-family: "Montserrat", "Microsoft JhengHei", Myriad, Aria, sans-serif;
    }
    #menu_inner .sub_box .sub_block .back::before {
        content: '';
        border: 2px solid white;
        width: 8px;
        height: 8px;
        border-right: 0;
        border-bottom: 0;
        position: absolute;
        left: 2px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 9px;
    }
    #menu_inner .sub_box .sub_block .back::after {
        content: '';
        background: white;
        width: 18px;
        height: 2px;
        position: absolute;
        left: 1px;
        top: 13px;
    }
    .jump_boxer .light_wrap .box {
        display: block;
        width: 100%;
    }
}

@media only screen and (max-width: 650px) {
    body {
        padding-top: 60px;
    }
    header {
        height: 60px;
        border-bottom: 1px solid #dfdfdf;
    }
    header .logo,
    header.down .logo {
        top: 20px;
        width: 188px;
        height: 30px;
        left: 30px;
    }
    header .logo img,
    header.down .logo img {
        width: 95px;
    }
    header .right_block .lang .lang_list {
        position: fixed;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background-color: #009944;
        top: 60px;
        border-bottom: 0;
    }
    header .right_block .lang .lang_list::after {
        position: absolute;
        width: 1px;
        height: 13px;
        border: 0;
        top: 14px;
        background-color: white;
        opacity: .8;
        left: 50%;
    }
    header .right_block .lang .lang_list .name,
    header .right_block .lang .lang_list .name.active {
        width: 50%;
        color: white;
        padding-bottom: 0;
        border-bottom: 0;
        margin-bottom: 0;
        font-size: 12px;
    }
    header .head_top {
        padding-top: 0;
        padding-right: 0;
        right: 5%;
        margin-right: 40px;
    }
    #menu_control {
        position: fixed;
        top: 31px;
        right: 2%;
        left: auto;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    #menu_control.active {
        -webkit-transform: rotate(90deg) scale(0.7);
        transform: rotate(90deg) scale(0.7);
    }
    #menu_inner .sub_box .sub_block .sub_link,
    #menu_inner .menu_inner_box .box .link,
    #menu_inner .menu_inner_box .box .link:first-child {
        padding-top: 14px;
        padding-bottom: 14px;
    }
    #menu_control div {
        width: 26px;
    }
    header .logo .name {
        font-size: 12px;
        width: 85px;
        left: -6px;
    }
    header .right_block .go_download {
        width: 20px;
        margin-right: 0;
        top: -1px;
    }
    header .right_block .lang .icon {
        width: 20px;
    }
    header.down .right_block,
    header .right_block {
        padding-top: 22px;
        height: 35px;
    }
    #menu_inner .sub_box .sub_block .back {
        margin-top: 55px;
    }
    #menu_inner .file_download {
        bottom: 86px;
        width: 80%;
        text-align: center;
        left: 10%;
        margin: 0;
        font-size: 14px;
    }
    header .copyright {
        left: 10%;
        font-size: 12px;
    }
    #menu_inner .menu_inner_box {
        position: relative;
        top: 0;
        left: 10%;
        width: 80%;
        margin-top: 98px;
    }
    #menu_inner::before {
        top: 61px;
    }
    #menu_inner .menu_inner_box .box .link b {
        font-size: 13px;
        margin-top: -9px;
    }
    #menu_inner .menu_inner_box .box .link,
    #menu_inner .menu_inner_box .box .link:first-child {
        padding-left: 45px;
    }
    #menu_inner .sub_box .sub_block {
        left: 10%;
        width: 80%;
    }
    #menu_inner .sub_box {
        top: 61px;
    }
    .jump_boxer .light_wrap .close {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        -webkit-transform-origin: right top;
        transform-origin: right top;
    }
    .jump_boxer .box .icon img {
        width: 68px;
    }
    .jump_boxer .bg {
        position: absolute;
        left: auto;
        right: 0;
        width: 50%;
        top: 0;
        pointer-events: none;
    }
    .jump_boxer .bg img {
        width: 76vw;
        max-width: 100vw;
    }
    .jump_boxer .box .link {
        width: 100%;
        height: 48px;
        margin-top: 40px;
        font-size: 14px;
        padding-left: 18px;
    }
    .jump_boxer .light_wrap {
        -ms-flex-pack: distribute;
        justify-content: space-around;
        width: calc(100% - 60px);
        padding: 40px 35px;
    }
    .jump_boxer .box .title {
        font-size: 16px;
        display: block;
        font-weight: bold;
        margin-bottom: 30px;
        text-align: center;
    }
    .jump_boxer .box .link::after {
        content: '';
        width: 8px;
        height: 8px;
        position: absolute;
        right: 24px;
    }
    .jump_boxer .box .link::before {
        content: '';
        background-color: white;
        width: 18px;
        height: 2px;
        margin-top: -1px;
        position: absolute;
        right: 22px;
    }
    .jump_boxer.final_succees .light_wrap {
        width: calc(100% - 60px);
    }
    .jump_boxer.final_succees .light_wrap .imgs {
        min-height: 100px;
    }
    .jump_boxer.final_succees .light_wrap .bg {
        width: 63%;
        top: 37vh;
    }
    .jump_boxer.final_succees .light_wrap .bg img {
        width: 100vw;
    }
    .jump_boxer.final_succees .light_wrap .box {
        padding: 50px 40px 35px 40px;
    }
    .jump_boxer.final_succees .light_wrap .box h4 {
        font-size: 28px;
    }
    .jump_boxer.final_succees .light_wrap .box img {
        width: 68px;
    }
    .ans_succees .bg img {
        width: 100vw;
    }
    .ans_succees .box img {
        width: 65px;
    }
    .ans_succees .box .icon {
        padding-top: 25px !important;
        margin-bottom: 0 !important;
    }
    .error_msg.jump_boxer .box .title {
        font-size: 16px;
        margin-bottom: 0;
        margin-top: 12px;
    }
}


/*# sourceMappingURL=main_menu.css.map */