/*************Input********************/
.banner .item .myinput {
    background-color: transparent;
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    box-sizing: border-box;
    margin: 0px;
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px dotted dimgrey;
    border-radius: 0;
    max-width: 200px;
    min-width: 100px;
    width: 100%;
    outline: none;
    color: black;
}

/*************AutoCompelete********************/
.banner .item .myautocom-input {
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px dotted dimgrey;
    border-radius: 0;
    max-width: 300px;
    min-width: 100px;
    width: 100%;
    color: black;
}

/*************ComboBox********************/
.banner .item .mycombobox-input {
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px dotted dimgrey;
    border-radius: 0;
    color: black;
}

.banner .item .mycombobox-input input[type="text"] {
    color: black;
}

.banner .item .mycombobox-input input[type="button"] {
    background-color: transparent;
    border-radius: 4px;
    color: black;
}

.banner .item .mycombobox-input input[type="button"]:focus,
.banner .item .mycombobox-input input[type="button"]:hover {
    color: orange;
    background-color: rgba(255, 255, 255, 0.4);
}

.level-frame {
    margin: 0px;
    width: 100%;
    font-size: 18px;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    background-image: url('//cdn.eval100.com/img/background.jpg');
    box-sizing: border-box;
    flex: 1 1 0;
    overflow-x: hidden;
    overflow-y: auto;
}


.level-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    gap: 10px;
}


.level-box .level {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 310px;
    height: 310px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    background-color: #f0f0f0;
    overflow: hidden;
    /*
    background-image: url('//cdn.eval100.com/img/level_back.jpg');
    */
    padding: 5px;
    font-size: 0.9em;
    border-radius: 30px;
}

.level-box .level .level-title {
    font-family: 'Microsoft YaHei UI', serif;
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px black;
    text-align: center;
    padding: 10px 0px 15px 0px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 25px 25px 0px 0px;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 0.3em;
    cursor: pointer;
    color: white;
}

.level-box .level .level-title:hover {
    color: orange;
}

.level-box .level .level-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: center;
    width: 100%;
    margin-top: 5px;
    border-radius: 5px;
}

.level-box .level .level-body .icon-outer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
}

.level-box .level .level-body .icon-outer .icon {
    display: block;
    width: 96px;
    height: 96px;
    border-radius: 48px;
    background-image: url("//cdn.eval100.com/img/level_lock.png");
    background-size: cover;
}

.level-box .level .level-body .icon-outer .icon:hover {
}

.level-box .level .level-tail {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
    height: 50px;
    border-radius: 0px 0px 25px 25px;
}

.level-box .level .level-tail .pass {
    font-family: 'Microsoft YaHei UI', serif;
    color: black;
    letter-spacing: 1px;
    width: auto;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 0.3em;
    cursor: pointer;
    box-sizing: border-box;
}

/*******************************************************************************************/

.level-box .level .level-self {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: center;
    width: 100%;
    margin-top: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
}

.level-box .level .level-self .self-outer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
}

.level-box .level .level-self .self-outer .self {
    font-family: 'Microsoft YaHei UI', serif;
    color: black;
    letter-spacing: 1px;
    width: auto;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 0.3em;
    cursor: pointer;
    box-sizing: border-box;
}

.level-box .level .level-self .self-outer .self-no {
    font-family: 'Microsoft YaHei UI', serif;
    color: black;
    letter-spacing: 1px;
    width: auto;
    box-sizing: border-box;
}

/*******************************************************************************************/
.level-box .level-ready {
    background-color: cornsilk;
}

.level-box .level-ready .level-body .icon-outer .icon {
    background-image: url("//cdn.eval100.com/img/level_play.png");
    cursor: pointer;
}

.level-box .level-ready .level-body .icon-outer .icon:hover {
    box-shadow: 0px 0px 30px lime;
    margin-bottom: 3px;
    margin-right: 3px;
}

.level-box .level-ready .level-title {
    color: white;
    background-color: rgba(255, 128, 0, 0.5);
}

.level-box .level-ready .level-tail {
    background-color: rgba(255, 128, 0, 0.3);
}

.level-box .level-ready .level-self {
    background-color: rgba(255, 128, 0, 0.3);
}

/*******************************************************************************************/
.level-box .level-pass {
    background-color: honeydew;
}

.level-box .level-pass .level-body .icon-outer .icon {
    background-image: url("//cdn.eval100.com/img/level_pass.png") !important;
    cursor: pointer;
}

.level-box .level-pass .level-body .icon-outer .icon:hover {
    background-image: url("//cdn.eval100.com/img/level_play.png") !important;
    box-shadow: 0px 0px 30px lime;
    margin-bottom: 3px;
    margin-right: 3px;
}

.level-box .level-pass .level-title {
    color: lime;
    background-color: rgba(0, 0, 0, 0.3);
}

.level-box .level-pass .level-tail {
    background-color: rgba(0, 0, 0, 0.1);
}

.level-box .level-pass .level-self {
    background-color: rgba(0, 0, 0, 0.1);
}

/*******************************************************************************************/
.level-box .level-fail {
    background-color: cornsilk;
}

.level-box .level-fail .level-body .icon-outer .icon {
    background-image: url("//cdn.eval100.com/img/level_fail.png");
}

.level-box .level-fail .level-body .icon-outer .icon:hover {
    background-image: url("//cdn.eval100.com/img/level_play.png");
}

.level-box .level-fail .level-title {
    color: white;
    background-color: rgba(255, 128, 0, 0.5);
}

.level-box .level-fail .level-tail {
    background-color: rgba(255, 128, 0, 0.3);
}

.level-box .level-fail .level-self {
    background-color: rgba(255, 128, 0, 0.3);
}

.banner .item .button-detail {
    display: inline-block;
    line-height: 30px;
    height: 30px;
    width: 30px;
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    cursor: pointer;
    color: dimgrey;
    font-size: 20px;
    background-color: whitesmoke;
    box-sizing: border-box;
    text-align: center;
    border-radius: 4px;
}

.banner .item .button-detail:focus,
.banner .item .button-detail:hover {
    background-color: rgba(0, 0, 0, 0.3);
    color: orange;
}

.mybutton {
    background-color: #dfdfdf;
    color: black;
    border-radius: 4px;
    margin-right: 20px;
}
