.draw {
    min-height: 100vh;
    background: url("../img/activity/detail/bg.jpg") center 0;
}

.draw .see {
    display: flex;
    justify-content: center;
    padding: 10px 0 35px;
    width: fit-content;
    margin: 0 auto;
}
.drawList{
    padding-bottom: 30px;
}
.drawList table{
    border: solid 1px #0D2D30;
    color: #ffeb01;
    font-size: 16px;
}
.drawList thead{
    background: linear-gradient(#0b5d61, #0b5d61);
    color: var(--white);
    font-size: 22px;
}
.drawList thead th,.drawList td{
    padding: 10px 0;
    width: 25%;
    text-align: center;
}
.drawList tbody tr{
    border-bottom: solid 1px #0D2D30;
}
.drawList tbody tr:nth-child(1){
    background: #0c1c1f;
    color: var(--white);
}
.drawArea {
    background: var(--black);
    border-radius: 68px;
    padding: 60px;
    filter: drop-shadow(0 0 36px #005760);
    display: flex;
    position: relative;
}

.drawArea .tipw {
    position: absolute;
    width: calc(46% - 60px);
    transform: translateY(-150%);
    display: flex;
    justify-content: center;
}

.drawArea .tipss {
    color: red;
    font-weight: bold;
    font-size: 20px;
    white-space: nowrap;
}

.drawArea .gridw {
    width: 46%;
}
.drawArea .gridw .grid{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    position: relative;
}

.drawArea .grid .ge {
    width: 33%;
    padding: 16.5% 0;
    height: 0;
    position: relative;
}

.drawArea .grid .ge:nth-child(4) {
    order: 6;
}

.drawArea .grid .ge:nth-child(5) {
    order: 9;
}

.drawArea .grid .ge:nth-child(6) {
    order: 8;
}

.drawArea .grid .ge:nth-child(7) {
    order: 7;
}

.drawArea .grid .ge:nth-child(8) {
    order: 4;
}

.drawArea .grid .ge:nth-child(9) {
    order: 5;
}

.drawArea .grid .ge:nth-child(9) i {
    position: absolute;
    z-index: 1;
    color: var(--white);
    font-style: normal;
    top: 66%;
    font-size: 12px;
    display: flex;
    align-items: center;
    background: red;
    padding: 3px;
    border-radius: 8px;
}

.drawArea .grid .gen {
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: url("../img/activity/detail/ge.png");
    background-size: cover;
    top: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawArea .grid .gen.disabled {
    pointer-events: none;
}
.drawArea .grid .ge .gl {
    position: absolute;
    z-index: 1;
    color: red;
    font-weight: bold;
    top: 0;
    font-size: 12px;
}
.drawArea .grid .ge img {
    position: absolute;
    width: 100%;
}



.drawArea .grid .ge img.disabled {
    filter: grayscale(1);
}

.drawArea .grid .ge.active .gen {
    background: url("../img/activity/detail/active.png");
    background-size: cover;
}

.drawArea .rules {
    width: 54%;
    padding-left: 60px;
}


.drawArea .rules .ti {
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 35px;
}
.drawArea .rules .ti .tt{
    background-image: linear-gradient(#ffea00, #3cdc34);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.drawArea .rules .ti a{
    display: flex;
}


.drawArea .rules .ms {
    color: #92a8ab;
    font-size: 18px;
}

.drawArea .rules .ms p {
    margin-bottom: 20px;
}
.drawArea .rules .ms table td{
    border:solid 1px #444;
    padding: 5px 15px;
}
.drawArea .rules .ms table td:nth-child(2){
    text-align: center;
}
.drawArea .rules .ms table tr:nth-child(even) td{
    background: #222;
}

.draw .row {
    padding: 140px 0 100px;
}

.draw .el-dialog {
    max-width: 516px;
    width: 84%;
    background: none;
}

.draw .el-dialog__header {
    display: none;
}

.draw .el-dialog__body {
    height: 0;
    padding: 0;
    padding-bottom: 64.72868217054%;
    position: relative;
    color: var(--white);
    background: url("../img/activity/detail/zjbg.png");
    background-size: cover;
}

.draw .el-dialog__body .yh {
    position: absolute;
    z-index: -1;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 96%;
}

.draw .el-dialog__body .yh img {
    width: 100%;
}

.draw .el-dialog__body .close {
    max-width: 44px;
    width: 8vw;
    position: absolute;
    left: 50%;
    top: 110%;
    cursor: pointer;
    transform: translateX(-50%);
}

.draw .el-dialog__body .close img {
    width: 100%;
}

.draw .el-dialog__body .tt {
    font-size: clamp(12px, 8vw, 50px);
    font-weight: bold;
    color: #f23b3d;
    display: flex;
    justify-content: center;
    padding-top: 2.1820359281%;
}

.draw .el-dialog__body span {
    font-size: clamp(12px, 7vw, 38px);
    display: flex;
    justify-content: center;
    padding-top: 16%;
}


@media screen and (max-width: 992px) {
    .drawArea .tipw {
        width: calc(100% - 12vw - 10px);
        transform: translateY(-220%);
    }

    .drawArea .tipss {
        font-size: 16px;
    }

    .drawArea .grid .ge:nth-child(9) i {
        font-size: 3vw;
    }

    .drawArea {
        flex-direction: column;
        padding: 6vw;
        border-radius: 6vw
    }

    .drawArea .rules .ti {
        font-size: 8vw;
    }

    .drawArea .rules .ms {
        font-size: 4vw;
    }

    .drawArea .rules, .drawArea .gridw {
        width: 100%;
        padding-left: 0;
    }

    .drawArea .rules {
        padding-top: 30px;
    }

    .draw .see img {
        width: 70%;
    }

    .draw .see {
        padding: 10vw 0 6vw;
    }

    .draw .row {
        padding: 30vw 0 8vw;
    }

}

.el-input--suffix .el-input__inner{
    background: var(--gray2);
    border-color: var(--gray4);
}
.el-select .el-input.is-focus .el-input__inner {
    border-color: var(--light1);
}
.el-select .el-input__inner:focus{
    border-color: var(--light1);
}
.el-input__inner {
    color: var(--white);
}
