
/* 开始按钮 */
input[type="button"] {
    color: black;
}

#startbutton {
    position: absolute;
    top: 50%;
    left: 50%;
    #transform: translateX(-50%);
    transform:translate(-50%,-50%);
    font-size: 40px;
    padding: 10px 20px;
    z-index: 100;
    outline: none;
    border-radius: 25px;
    cursor: pointer;
    display: none;
    background-color: #fff;
}



/* 摇杆容器 */
#joystick_box {
    position: absolute;
    transform: translateX(-50%,-50%);
    z-index: 900;
}
/* 未反转摇杆 */
.joystick_box_normal {
    bottom: 120px;
    left: 120px; 
}
/* 反转了的摇杆 */
.joystick_box_fan {
    /*top: 130px; */
    /*left: 130px; */
}


/* 攻击按钮容器 */
.btn_box_att {
    position: absolute;
    bottom: 150px;
    right: 200px;
    transform: translateX(-50%,-50%);
    z-index: 200;
}

/* 选择，开始按钮容器 */
.btn_box_select {
    position: absolute;
    bottom: 20px;
    right: 50%;
    transform: translateX(-50%,-50%);
    z-index: 200;
    background-color: transparent;
    display: flex;
    flex-direction: column;
}
.btn_box_select span {
    margin-bottom: 10px;
}

/* 基础攻击按钮，未定义大小*/
.btn {
    height:20px;
    line-height:20px;
    text-align:center;
    background-color:red;
    color:#e0ffff;
    cursor:pointer;
    border-radius:50px;
    opacity:0.6;
    font-weight: bold;
}
/* 按钮点下 */
.btn.isTouch {
    background-color:linen
}
/* 定义按钮大小 A键 */
.btn-a{
    position:absolute;
    padding: 20px 25px 20px 25px;
}
/* 定义按钮大小 技能键 */
.btn-a1{
    position:absolute;
    padding: 15px 20px 15px 20px;
    width: 25px;
    font-size: 12px;
}
/* 定义按钮大小 B键（攻击） */
.btn-big{
    position:absolute;
    padding: 40px 45px 40px 45px;
}
/* 定义按钮大小 开始和选择 */
.btn-select{
    padding: 10px 15px 10px 15px;
}
