body, html {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
}

.test_main {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 130vh;
    background-color: #0f5c8c;
}

/* The hero image */
.hero-image {
    /* Set a specific height */
    height: 100%;
    /* The background image used */
    background-image: url("../images/space.jpg");

    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
/* Place text in the middle of the image */
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size:20px;
}
@media screen and (max-width: 480px) {
    .hero-text {
        font-size: 12px;
    }
    .show-main{
        height:100%;
    }
    h1{
        font-size:20px;
    }
}
.header_box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    margin: 0;
    background: #FADE54;
}
.header_welcome {
    position: absolute;
    right: 20px;
    top: 20px;
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header_welcome .welc{
    height: 100%;
    float:right;
    margin-right: 0px;
    font-size: 16px;
    color: #666666;
    display: flex;
    align-items: center;
}
.header_welcome .welc a {

    color: #cc3333;
    z-index: 99;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
}
.hesder_bar {
    position: absolute;
    left: 15%;
    top: 20px;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;

}

.navitem {
    position: relative;
    height: 60px;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    width: fit-content;
    color: #666666;
}
.navitem:active {
    color: #333333;
}
.navitem .subline{
    height: 5px;
    width: 100%;
    margin-top: 10px;
    background: #333333;
}
.navitem .nosubline{
    height: 5px;
    width: 100%;
    margin-top: 10px;
}
.navitem span{
    font-weight:bold;
}
.navitem span a {
    display: block;

    text-align: center;
    text-decoration: none;
    font-size: 22px;
}
.navitem span a:active {
    color: #333333;
}
.color_black {
    color: #333333;
}
.color_grey {
    color: #666666;
}
/*navigation box */
.navbox {
    background-color: orangered;
    width: 100%;
    height: 60px;
    opacity: 0.5;
    overflow: hidden;
}
.navbox .navbtn {
    width: 160px;
    height: 60px;
    float: left;
    display: block;
    margin-left: 10px;
    background-image: url("../images/navbtn.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4px;
}
.navbox .actived {
    text-decoration-color: orangered;
}
.navbox .navbtn a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Gaegu';
}
.navbox .navbtn a.actived {
    color: #0000ff;
}
.navbox .navbtn a:hover {
    color: black;
}

.mid_block {
    width: 50%;
    height: 100%;
    float: left;
    font-size:120%;
}
.center_block {
    margin: 10%;
    width: 80%;
    float: none;
    color: #333333;
}

.center_block  h1 {
    font-size:160%;
    font-family: 'Gaegu';
}
.center_block  p {
    letter-spacing: 3px;
    text-indent: 2em;
}

/*navigation background color */
.topnav {
    background-color: #354C63;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Gaegu';
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #cce9ff;
    color: black;
}

/* Add an active class to highlight the current page */
.active {
    opacity: 1;
    color: orangered;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}


/* The dropdown container */
.dropdown {
    float: left;
    overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-size: 20px;
    font-family: 'Gaegu'; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
}
.dropdown:hover .dropbtn {
    background-color: #cce9ff;
    color:black;
}
/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}
@media screen and (max-width: 600px) {
    .topnav a:not(:first-child), .dropdown .dropbtn {
        display: none;
    }
    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: left;
    }
}
.footer {
    position:relative;
    bottom:0;
    width:100%;
    height:40px;   /* Height of the footer */
    background-color: #354C63;
    font-size:100%;
    padding-top:1px;
    color: white;
    text-align: center;
}

/* css for index */
.menu_main{
    width:100%;
    height:100%;
    left: 0;
    background-image: url("../images/index_mt.png");
    background-position: top;
    background-size: cover;
    padding: 0;
    margin: 0;
    overflow: visible;
}
.index_box {
    position: relative;
    width: 70%;
    height: 70%;
    margin-left: 15%;
    margin-top: 150px;

    background: #FFFFFF;
    border: 1px solid #D5D5D5;
    box-shadow: 0px 1px 2px rgba(213, 213, 213, 0.5);
    border-radius: 20px;

    display: flex;
    flex-direction: column;
}
.index_title {
    position: relative;
    height: 40px;
    margin-top: 100px;
    margin-left: 80px;
    font-size: 36px;
    font-weight: bold;
    color: #333333;
}
.index_explain {
    position: relative;
    height: 24px;
    margin-top: 24px;
    margin-left: 80px;
    font-size: 22px;
    font-weight: bold;
    color: #666666;
}
.login_box {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.list_title {
    position: relative;
    width: 100%;
    margin-top: 2%;
    display: block;
    padding-right: 10px;
    color: #333333;
}
.list_title .list_intro {
    position: relative;
    width:90%;
    margin: 5%;
}
.list_title .list_intro h1 {
    width: 100%;
    font-size:26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}
.list_title .list_intro p {
    text-indent: 40px;
    font-size:18px;
    margin-top:5px;
}
.list_title .logo_img {
    position: relative;

    width: 15%;
    float: left;
    margin-left: 5%;
    margin-top: 3%;
}
.list_title .list_explain {
    position: relative;
    width:75%;
    margin-left: 5%;

    float: left;
}
.list_title .list_explain h1 {
    font-size:26px;
    font-weight: bold;

}
.list_title .list_explain p {
    text-indent: 40px;
    font-size:18px;
    margin-top:5px;
}
.list_button_explain {
    padding: 20px;
    font-size:26px;
    font-weight: bold;
}
.list_button_box {
    position: relative;
    height: 100%;
    margin-right: 2%;
    margin-top: 20px;

    display: flex;
    flex-direction: row;
    justify-content:flex-end;
    align-items: center;
}
.list_button_box a {
    font-size:22px;
    color: #FADE54;
}
.list_button {
    position: relative;
    width: 280px;
    height: 50px;
    margin: 0 20px;

    background: #FADE54;
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #FFFFFF;
    box-shadow: 5px 5px 10px rgba(255, 190, 26, 0.5);
    border-radius: 20px;

    font-size: 32px;
    font-weight: bold;
    line-height: 158.5%;
    letter-spacing: 1px;
    text-align: center;

    color: #333333;
}

.index_main{
    width:100%;
    height:100%;
    padding-left: 50px;
    overflow:hidden;
}
.fbtest_main{
    width:100%;
    height:100%;
    left: 0;
    overflow: visible;

}
/* 顶部 */
header{
    width:100%;
    overflow:hidden;
    display:block;
}
header h1{
    margin-top:12px;
    padding-left:25px;
    float:left;
}
header img{
    margin-left: 60px;
}
header .boxemp{
    width: 30px;
    height: 80px;
}
.top_right {
    width: 70%;
    float:right;
    margin-top:12px;
}
.divtop {
    width:100%;
    height: 40px;
    font-weight:bold;
}
.divtop  .wel{
    float:right;
    margin-right: 60px;
    color: #62ff48;
}
.divtop  .wel a {
    color: #333333;
    text-decoration: none;
}
.divtop  div{
    float:left;
    margin-left:15px;
}
.divtop span {
    font-weight:bold;
}
.divtop span a {
    display: block;
    color: #333333;
    text-align: center;
    padding: 4px 10px;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Gaegu';
}
.divtop .active {
    color: orangered;
    font-size: 130%;
}
.divtop span a:link {
    color:#333333;
}
.divtop span a:visited{
    color:#333333;
}
.divtop span a:hover{
    color:#000000;
}
.divtop span a:active {
    color: orange;
}
.top-center{
    width:50%;
    float:right;
    margin-top:40px;
}
.top-center div{
    float:left;
    margin-left:15px;
}
.time{
    font-weight:bold;
    color:#ae0311;
}
.wel{
    font-size:14px;
    font-weight:bold;
    color:#000000;
}
.top-center span a:link{
    color:#ae0311;
}
.top-center span a:visited{
    color:#ae0311;
}
.top-center span a:hover{
    color:#000000;
}

.navline {
    width: 98%;
    height: 3px;
    background-color: snow;
    opacity: 0.2;
    margin: 10px 6px;
}

/* 底部 */
footer{

    width:100%;
    height:72px;
    overflow:hidden;
    display:block;
}
.footcon{
    width:1000px;
    margin:0 auto;
    overflow:hidden;
}
.footcon ul{
    margin:0 auto;
    width:33%;
    padding-top:15px;
    overflow:hidden;
}
.footcon ul li{
    float:left;
    margin-left:15px;
}
.foottext{
    width:100%;
    text-align:center;
}
/* knowledge list */
.know_box {

    overflow:hidden;
    padding-bottom:10px;
    padding-bottom:15px;
    opacity: 0.9;
}
.know_list{
    width:98%;
    margin:10px auto;

    border-radius: 3px;
    opacity: 0.8;
    overflow:hidden;
}
.know_list p {
    font-size:14px;
    margin-top:8px;
}
.know_list ul{
    width:96%;
    margin:0 auto;
}
.know_list ul li{
    width:68%;
    float:left;
    font-size:24px;
    padding-left:25px;
    margin-top:8px;
    margin-bottom: 8px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.know_list ul li{
    background-image:url(../images/icon02.jpg);
    background-position:left;
    background-repeat:no-repeat;
}
.know_list ul li a{
    color:#273401;
}
.know_list ul li a:hover{
    color:#656564;
}
.know_title{
    overflow:hidden;
    padding-top:10px;
    padding-left: 10px;
}
.know_title img{
    padding:2px;
    border:1px solid #a9a8a8;
    float:left;
}
.know_title dd{
    width:81%;
    float:right;
}
.know_title dd h1{
    font-size:120%;
    font-weight: bold;
    padding:5px;
}
.know_title dd h1 a{
    color:#1f2a00;
}
.know_title dd h1 a:hover{
    color:#025f94;
}
.know_title dd p{
    padding:8px;
    font-size:20px;
}
.know_title dd p a{
    color:#f84101;
}
.know_title dd p a:hover{
    color:#666666;
}

/* bundle list title */
.tech_main {
    margin: 0;
    margin-top: 70px;
    width: 100%;
    left: 0;

    opacity: 0.9;
}
.bundle_title {

    overflow:hidden;
    padding-bottom:15px;
    opacity: 0.9;
}
.bundle_title .tab_info {
    height:25px;
    float:left;
    padding-left:15px;
    margin-bottom: 10px;
}
.bundle_title .iconbg {
    width:2px;
    height:15px;
    background-color:#00CC66;
    border:1px solid #84b001;
    float:left;
    margin-top:8px;
}

.bundle_title .tab_info h1 {
    float:left;
    color:#c7d4a1;
    padding-left:8px;
    font-size:14px;
    padding-top:1px;
    vertical-align: top;
}
.bundle_box{
    width:98%;
    margin:0 auto;


    overflow:hidden;
}
.bundle_box a{
    color:#333333;
    text-decoration: none;
}
.bundle_box ul{
    width:96%;
    margin:0 auto;
}
.bundle_box ul li{
    width:60%;
    float:left;
    font-size:24px;
    padding-left:25px;
    margin-top:8px;
    margin-bottom: 8px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.bundle_box ul li{
    background-image:url(../images/icon05.jpg);
    background-position:left;
    background-repeat:no-repeat;
}
.bundle_box ul li a{
    color:#273401;
    text-decoration: none;
}
.bundle_box ul li a:hover{
    color:#656564;
}
.hr0{
    height:1px;
    border:none;
    border-top:1px dashed #84b001;
}
.bundle_list{
    overflow:hidden;
    padding-top:10px;
    padding-left: 10px;
}
.bundle_list img{
    padding:2px;

    float:left;
}
.bundle_list dd{
    width:81%;
    float:right;
}
.bundle_list dd h1{
    font-size:18px;
    padding:5px;
}
.bundle_list dd h1 a{
    color:#1f2a00;
}
.bundle_list dd h1 a:hover{
    color:#025f94;
}
.bundle_list dd p{
    padding:8px;
}
.bundle_list dd p a{
    color:#f84101;
}
.bundle_list dd p a:hover{
    color:#666666;
}

/*  */
.fbt_main {
    position: relative;
    height: 100vh;
    margin: 0px;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Gaegu';
}
.button_index {
    position: relative;
    width: 380px;
    height: 80px;
    margin-top: 100px;
    background: #FADE54;
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #FFFFFF;
    box-shadow: 5px 5px 10px rgba(255, 190, 26, 0.5);
    border-radius: 41px;

    font-size: 32px;
    font-weight: bold;
    line-height: 158.5%;
    letter-spacing: 30px;

    color: #333333;
}
.button_star{
    position: relative;
    width: 280px;
    height: 55px;
    margin-top: 50px;
    background: #FADE54;
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #FFFFFF;
    box-shadow: 5px 5px 10px rgba(255, 190, 26, 0.5);
    border-radius: 41px;

    font-family: syst-light;
    font-style: normal;
    font-size: 24px;
    line-height: 158.5%;

    color: #333333;
}
.btn_start{
    width: 320px;
    height: 60px;

    background: #EEC591;
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #FFFFFF;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    border-radius: 15px;

    display: flex;
    flex-direction: row;
    justify-content: center;/* 横轴居中排列 */
    align-items: center;/* 纵轴居中排列 */
}
.intro_mt_start {
    width: 280px;
    height: 55px;

    background: #FADE54;
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #FFFFFF;
    box-shadow: 5px 5px 10px rgba(255, 190, 26, 0.5);
    border-radius: 41px;



    display: block;

    color: #333333;
    padding: 10px 20px;
    text-align: center;
    font-size: 120%;
    margin: 0 auto;
    margin-top:20px;


}
.intro_mt_start:hover {
    background-color:#cce9ff;
    color:black;
}
.for_main {
    background-image: url(../images/mt_background.png);
    background-size: cover;
}
.intro_mt {
    width: 280px;
    height: 45px;

    background: #FADE54;
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #FFFFFF;
    box-shadow: 5px 5px 10px rgba(255, 190, 26, 0.5);
    border-radius: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: #333333;
    padding: 10px 20px;
    text-align: center;
    font-size: 24px;
    margin-left: 30px;
    margin-top:20px;

    letter-spacing: 2px;
}
.intro_mt:hover {
    background-color:#FADE54;
    color:black;
}
.biak_main {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../images/space.jpg");
    background-position: top;

    background-repeat: no-repeat;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Gaegu';
}
.fbtext_box {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    border-radius: 5px;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.1); /* Black w/ opacity */
    font-size:150%
}
.fbtext_content {
    background-color: #fefefe;
    opacity:0.7;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    border-radius: 15px;
    width: 80%; /* Could be more or less, depending on screen size */
    font-size: 150%;
}
.fbtext_content h2{
    color:black;
    text-align:center;
    font-weight: bold;
}
.fbtext_content p {
    letter-spacing: 2px;
    text-indent: 50px;
    line-height: 30px;
}
.fbtext_content ul {
    width: 90%;
    margin: 10px auto;
}

.fbtext_content ul li {
    padding:8px;
    overflow:hidden;
}
.fbtext_content ul li input[type=radio] {
    zoom: 1.5;
}
.login-con {
    width: 90%;
}
.login-con ul {
    width: 90%;
    margin: 10px auto;
}
.login-con ul li {
    padding:8px;
    overflow:hidden;
}
.login-con ul li div{
    float:left;
    overflow:hidden;
}
.login-con ul li div.l_c_name{
    width:25%;
    text-align:right;
    padding-top:2px;
}
.login-con ul li div.l_c_con{
    width:73%;
}
.login-con ul li div.l_c_con .ipt{
    line-height: 30px;
    border-radius: 2px;
    border:1px solid #83879b;
    background-color: #354C63;
    padding: 5px;
    height: 30px;
    text-align: center;
    font-size: 12px;
}


/* xx_intro files */
.intro_main {
    font-family: 'Gaegu';
    background-image: url("../images/space.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
    position: relative;
}
.intro_main h2{
    text-align: center;
}
.intro_text {
    color:white;
    margin:20px;
    font-size:25px;
}
.intro_run {
    padding-top:20px;
    padding-bottom:20px;
    font-size:25px;
}
.btn_affirm {
    border-radius: 5px;
    background-color: #1867a5;
    float: left;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 120%;
    margin: 0 auto;
    margin-top:20px;
    opacity: 1;
    transition: 0.3s;
    width:fit-content;
}
.intro_login {
    position: relative;
    width: 280px;
    height: 55px;
    margin-top: 50px;
    background: #FADE54;
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #FFFFFF;
    box-shadow: 5px 5px 10px rgba(255, 190, 26, 0.5);
    border-radius: 41px;

    font-family: syst-light;
    font-style: normal;
    font-size: 24px;
    line-height: 158.5%;

    color: #333333;
}
.intro_login:hover{
    color: #000000;
}
.intro_start {
    border-radius: 5px;
    background-color: #1867a5;
    display: block;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 120%;
    margin: 0 auto;
    margin-top:20px;
    opacity: 1;
    transition: 0.3s;
    width:fit-content;
}
.intro_start:hover {
    background-color:#cce9ff;
    color:black;
}

.sublist{
    overflow:hidden;

}
.sublist ul{
    overflow:hidden;
    width:98%;
    margin:0 auto;
    border:1px solid #dfdfdf;
}
.sublist ul li{
    overflow:hidden;
}
.sublist ul li:hover{
    background-color:#dcfdfd;
    overflow:hidden;
}
.sublist ul li.report-t{
    background-color:#eff8d5;
    overflow:hidden;
}
.sublist ul li div{
    width:29%;
    float:left;
    text-align:center;
    overflow:hidden;
}
.sublist ul li div.cz{
    width:12%;
    border:0;
}
.sublist ul li div.cz a{
    color:#FF0000;
    text-decoration:underline;
}
.sublist ul li div.cz a:hover{
    color:#000000;
    text-decoration:none;
}
.sublist_title {
    height:35px;
    padding-left:15px;
}
.sublist_title h1{
    float:left;
    color:#273401;
    padding-left:8px;
    font-size:14px;
    padding-top:1px;
}

.mainpic {
    align-self: center;
    vertical-align: middle;
    width: 764px;
    height: 478px;
    max-width:800px;
    padding:50px 50px 50px 50px;
}

/* register */
.register_box {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
     /* Fallback color   background-color: rgb(0,0,0);*/
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 20px;
}
.register_content {
    background-color: #FFFFFF;

    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border-radius: 15px;
    border: 1px solid #FFFFFF;
    width: 35%; /* Could be more or less, depending on screen size */
}
.register_content .container {
    padding: 16px;
}
.register_content input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.reg_animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}
.register_content button:hover {
    opacity: 0.8;
}
.register_content .loginbtn1 {
    background-color: #5aa4a5;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 35%;
}
.register_content .cancelbtn1 {
    background-color: #5aa4a5;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    margin-left: 18%;
    border: none;
    cursor: pointer;
    width: 35%;
}
.register_content .loginbtn {
    width: 35%;

    padding: 14px 20px;
    margin: 8px 0;
    margin-left: 10%;
    cursor: pointer;

    background: #FADE54;
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #FFFFFF;
    box-shadow: 5px 5px 10px rgba(255, 190, 26, 0.5);
    border-radius: 20px;

    font-style: normal;
    font-size: 24px;

    color: #333333;
}
.register_content .cancelbtn {
    width: 35%;

    padding: 14px 20px;
    margin: 8px 0;
    margin-left: 10%;

    cursor: pointer;

    background: #FADE54;
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #FFFFFF;
    box-shadow: 5px 5px 10px rgba(255, 190, 26, 0.5);
    border-radius: 20px;

    font-style: normal;
    font-size: 24px;

    color: #333333;
}
.register_content_wap {
    background-color: #0055aa;
    opacity: 0.8;
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border-radius: 5px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}
.register_content_wap .container {
    padding: 16px;
}
.register_content_wap input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/*  */
.user_content {
    background-color: #0055aa;
    opacity: 0.8;
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border-radius: 5px;
    border: 1px solid #888;
    width: 25%; /* Could be more or less, depending on screen size */
}
.user_content .container {
    padding: 16px;
}
.user_content input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.user_content .info-item {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.user_content button:hover {
    opacity: 0.8;
}
.user_content .loginbtn {
    background-color: #5aa4a5;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 35%;
}
.user_content .cancelbtn {
    background-color: #5aa4a5;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    margin-left: 18%;
    border: none;
    cursor: pointer;
    width: 35%;
}

/*  */
.person_content {
    background-color: #104577;
    opacity: 0.7;
    margin: 2% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border-radius: 5px;
    border: 1px solid #888;
    width: 60%; /* Could be more or less, depending on screen size */
}
.person_content input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.person_content .loginbtn {
    background-color: #aa4455;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    font-size: 120%;
    width: 35%;
}
.person_info{
    background-color: #fefefe;
    opacity:0.7;
    margin: 2% auto; /* 15% from the top and centered */
    padding: 10px;
    border: 1px solid #888;
    border-radius: 15px;
    width: 70%; /* Could be more or less, depending on screen size */
    font-size: 120%;
}
.person_info h2{
    color:black;
    text-align:center;
    font-weight: bold;
}
.person_info p{
    letter-spacing: 2px;
    text-indent: 50px;
    line-height: 30px;
}
.person_info ul{
    width:90%;
    margin:0 auto;
    border:0;
}
.person_info ul li{
    margin: 20px auto;
    padding-bottom:5px;
    padding-top:5px;
    overflow:hidden;
    border:0;
}
.person_info ul li dd{
    float:left;
    margin-left:80px;
}
.person_info ul li div.infor-t{
    width:25%;
    float:left;
    text-align:right;
    margin-top: 2px;
    transform:translateY(-5%);
    border:0;
}
.person_info ul li div.infor-t2{
    width:25%;
    float:left;
    text-align:left;
    transform:translateY(-20%);
    border:0;
}
.person_info ul li div.infor-con{
    width:73%;
    float:left;
    text-align:left;
    border:0;
}
.person_info ul li div.infor-con input[type=text] {
    width: 100%;
    padding: 5px 10px;
    margin: 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.person_info .loginbtn {
    border-radius: 5px;
    background-color: #1867a5;
    display: block;
    border: none;
    color: white;
    padding: 5px 20px;
    text-align: center;
    font-size: 120%;
    margin: 0 auto;
    margin-top:10px;
    opacity: 1;
    transition: 0.3s;
    width:20%;
}

/** coco index **/
.avatar {
    vertical-align: middle;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    max-width:600px;
    padding:25px 25px 25px 25px;
}
@media screen and (max-width: 600px) {
    .avatar {
        max-width:300px;
        max-height:300px;
        padding:10px 10px 10px 10px;
    }
}
* {
    box-sizing: border-box;
}

/* Create two unequal columns that floats next to each other */
.column {
    position:relative;
    float: left;
    padding: 10px;
    color:white;
    word-wrap:break-word;
}
.left-about {
    position: relative;
    left:0;
    width: 25%;
}

.cog-test {
    position: relative;
    left:0;
    width: 100%;
    padding: 40px;
    word-wrap:break-word;
    color:black;
    font-size:25px;
    font-family: 'Gaegu';
}
.left-research {
    position: relative;
    left:0;
    width: 100%;
    padding: 40px;
    word-wrap:break-word;
    color:white;
    font-size:25px;
    font-family: 'Gaegu';
}
.research-bg{
    background-color: white;
}
.btn-resume {
    width: 70px;
    height: 70px;
    margin-left: 20px
}
.link{
    color:white;
}
.link-research{
    color: black;
}
.resume-bg{
    color: white;
    margin-top:20px;
    margin-bottom:20px;
}
.score_box{
    width: 30%;
    height: 20px;
    float: left;
    display: inline-flex;
}
.person_info ul li div.infor-con div.score_box input[type=text] {
    width: 60%;
    padding: 3px 2px;
    margin: 2px 10px;
    display: inline;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}