<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.section {
    display: flex;
    align-items: center;
    justify-content: center
}

.section .wrap {
    width: 1200px;
    height: 700px;
    display: flex;
    align-items: center
}

.section .wrap .img {
    width: 50%
}

.section .wrap .img img {
    display: block
}

.section .wrap .r {
    width: 50%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 0 10px 10px 0;
    border: 1px solid #E6E6E6;
    border-left: none;
    display: flex;
    align-items: center;
    justify-content: center
}

.section .wrap .r .joke {
    width: 460px
}

.section .wrap .r .joke .title {
    margin: 0 0 80px
}

.section .wrap .r .joke .title h1 {
    font-weight: bold;
    font-size: 30px;
    color: #111111
}

.section .wrap .r .joke .title p {
    font-weight: 800;
    font-size: 18px;
    color: #111111
}

.section .wrap .r .joke .title p span {
    color: #999999
}
.section .wrap .r .cut{
    display: flex;
    margin: 0 0 20px;
}
.section .wrap .r .cut .list{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666666;
    cursor: pointer;
    padding: 0 0 10px;
    font-weight: bold;
}
.section .wrap .r .cut .list.on{
    color: #F98800;
    border-bottom: 2px solid #F98800;
}
.section .wrap .r .joke form{
    display: none;
}
.section .wrap .r .joke form.on{
    display: block;
}
.section .wrap .r .joke form &gt; input {
    height: 40px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #E6E6E6;
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    margin: 0 0 40px
}

.section .wrap .r .joke form .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E6E6E6
}

.section .wrap .r .joke form .flex input {
    border: none;
    height: 40px
}

.section .wrap .r .joke form .flex .send {
    width: 164px;
    height: 35px;
    background: #F8F8F8;
    border-radius: 0px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    cursor: pointer;
    transition: 0.6s
}

.section .wrap .r .joke form .flex .send:hover {
    background: #F98800;
    color: #FFFFFF
}

.section .wrap .r .joke form .flex .send.on {
    cursor: not-allowed
}

.section .wrap .r .joke form .flex .send.on:hover {
    background: #F8F8F8;
    color: #111111
}

.section .wrap .r .joke form button {
    width: 460px;
    height: 50px;
    background: #F98800;
    border-radius: 6px 6px 6px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 58px 0 0
}

.section .wrap .r .joke form button p {
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF
}

.section .wrap .r .joke &gt; p {
    font-weight: 500;
    font-size: 14px;
    color: #111111;
    margin: 20px 0 0;
    display: flex;
    align-items: center
}

.section .wrap .r .joke &gt; p a {
    display: block;
    width: fit-content;
    font-weight: bold;
    font-size: 14px;
    color: #F98800;
    position: relative
}

.section .wrap .r .joke &gt; p a:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #F98800;
    position: absolute;
    left: 0;
    bottom: -2px;
    transform: scaleX(0);
    transition: 0.6s;
    transform-origin: left
}

.section .wrap .r .joke &gt; p a:hover::after {
    transform: scaleX(1)
}

.section .wrap.register .r .title {
    margin: 0 0 40px
}

.section .wrap.register .r form &gt; input {
    margin: 0 0 15px
}

.section .wrap.register .r form .identity {
    margin: 35px 0 20px
}

.section .wrap.register .r form .identity h5 {
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    line-height: 1;
    margin: 0 0 16px
}

.section .wrap.register .r form .identity .identity_box {
    display: flex;
    align-items: center
}

.section .wrap.register .r form .identity .identity_box input {
    width: 20px;
    height: 20px;
    border: 1px solid #E6E6E6;
    margin: 0 5px 0 0;
    opacity: 0
}

.section .wrap.register .r form .identity .identity_box label {
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    margin: 0 30px 0 0;
    display: flex;
    align-items: center;
    position: relative
}

.section .wrap.register .r form .identity .identity_box .radio {
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%)
}

.section .wrap.register .r form .identity .identity_box input[type="radio"]:checked + .radio {
    background-color: #F98800;
    background-clip: content-box;
    padding: .2em
}

.section .wrap.register .r form button {
    margin: 15px 0 25px
}

.section .wrap.register .r form .terms {
    display: flex;
    align-items: flex-start
}

.section .wrap.register .r form .terms p {
    font-size: 14px;
    color: #666666;
    line-height: 20px;
    width: 430px
}

.section .wrap.register .r form .terms p span {
    cursor: pointer;
    transition: 0.6s
}

.section .wrap.register .r form .terms p span:hover {
    color: #F98800
}

.section .wrap.register .r form .terms input {
    display: block;
    width: 16px;
    height: 16px;
    margin: 2px 10px 0 0;
    position: relative;
    outline: none;
    -webkit-appearance: none;
    -webkit-tab-highlight-color: transparent
}

.section .wrap.register .r form .terms input::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    border: 1px solid #DFDFDF;
    border-radius: 4px;
    color: #fff;
    box-sizing: border-box
}

.section .wrap.register .r form .terms input::after {
    content: url("../images/dui.svg");
    position: absolute;
    width: 20px;
    right: -6px;
    top: -4px;
    opacity: 0;
    transition: 0.6s
}

.section .wrap.register .r form .terms input[type="checkbox"]:checked::after {
    opacity: 1
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 199912099999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.6s;
    pointer-events: none
}

.fixed .fixed_shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.4;
    cursor: pointer;
    z-index: -1
}

.fixed .fixed_box {
    position: relative;
    width: 1200px;
    padding: 40px 50px 40px;
    border-radius: 6px;
    overflow: hidden
}

.fixed .fixed_box .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

.fixed .fixed_box .bg img {
    display: block;
    width: 100%;
    height: 100%
}

.fixed .fixed_box .title {
    display: flex;
    align-items: center;
    padding: 0 0 13px;
    border-bottom: 1px solid #E8E8E8;
    margin: 0 0 32px
}

.fixed .fixed_box .title h1 {
    font-weight: bold;
    font-size: 24px;
    color: #111111
}

.fixed .fixed_box .title p {
    font-weight: 400;
    font-size: 16px;
    color: #111111;
    margin: 0 0 0 6px
}

.fixed .fixed_box .content {
    height: 535px;
    overflow-y: scroll
}

.fixed .fixed_box .content p {
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    line-height: 26px
}

.fixed .fixed_box .content h4 {
    font-weight: bold;
    font-size: 18px;
    color: #111111;
    margin: 0 0 14px
}

.fixed .fixed_box .content h5 {
    font-size: 16px;
    line-height: 2
}

.fixed .fixed_box form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 0;
    padding: 30px 0 0;
    position: relative
}

.fixed .fixed_box form:after {
    content: "";
    width: 1200px;
    height: 1px;
    background: #E8E8E8;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}

.fixed .fixed_box form .fixed_terms {
    display: flex;
    align-items: center
}

.fixed .fixed_box form .fixed_terms input {
    display: block;
    width: 16px;
    height: 16px;
    margin: 0px 0px 0 0;
    position: relative;
    outline: none;
    -webkit-appearance: none;
    -webkit-tab-highlight-color: transparent
}

.fixed .fixed_box form .fixed_terms input::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    border: 1px solid #DFDFDF;
    border-radius: 4px;
    color: #fff;
    box-sizing: border-box
}

.fixed .fixed_box form .fixed_terms input::after {
    content: url("../images/dui.svg");
    position: absolute;
    width: 20px;
    right: -6px;
    top: -4px;
    opacity: 0;
    transition: 0.6s
}

.fixed .fixed_box form .fixed_terms input[type="checkbox"]:checked::after {
    opacity: 1
}

.fixed .fixed_box form .fixed_terms p {
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    margin: 0 0 0 10px
}

.fixed .fixed_box form button {
    width: 140px;
    height: 46px;
    background: #F98800;
    border-radius: 4px;
    border: 1px solid #F98800;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.fixed .fixed_box form button p {
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF
}

.fixed.on {
    opacity: 1;
    pointer-events: auto
}
@media screen and (max-width: 1920px) {
    .section {
        display: flex;
        align-items: center;
        justify-content: center
    }

    .section .wrap {
        width: 62.5vw;
        height: 36.4583333333vw;
        display: flex;
        align-items: center
    }

    .section .wrap .img {
        width: 50%
    }

    .section .wrap .img img {
        display: block
    }

    .section .wrap .r {
        width: 50%;
        height: 100%;
        background: #FFFFFF;
        border-radius: 0 0.5208333333vw 0.5208333333vw 0;
        border: 1px solid #E6E6E6;
        border-left: none;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .section .wrap .r .joke {
        width: 23.9583333333vw
    }

    .section .wrap .r .joke .title {
        margin: 0 0 4.1666666667vw
    }

    .section .wrap .r .joke .title h1 {
        font-weight: bold;
        font-size: 1.5625vw;
        color: #111111
    }

    .section .wrap .r .joke .title p {
        font-weight: 800;
        font-size: 0.9375vw;
        color: #111111
    }

    .section .wrap .r .joke .title p span {
        color: #999999
    }

    .section .wrap .r .joke form &gt; input {
        height: 2.0833333333vw;
        width: 100%;
        border: none;
        border-bottom: 1px solid #E6E6E6;
        font-weight: 400;
        font-size: 0.7291666667vw;
        color: #111111;
        margin: 0 0 2.0833333333vw
    }

    .section .wrap .r .joke form .flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #E6E6E6
    }

    .section .wrap .r .joke form .flex input {
        border: none;
        height: 2.0833333333vw
    }

    .section .wrap .r .joke form .flex .send {
        width: 8.5416666667vw;
        height: 1.8229166667vw;
        background: #F8F8F8;
        border-radius: 0px 0px 0px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 400;
        font-size: 0.7291666667vw;
        color: #111111;
        cursor: pointer;
        transition: 0.6s
    }

    .section .wrap .r .joke form .flex .send:hover {
        background: #F98800;
        color: #FFFFFF
    }

    .section .wrap .r .joke form .flex .send.on {
        cursor: not-allowed
    }

    .section .wrap .r .joke form .flex .send.on:hover {
        background: #F8F8F8;
        color: #111111
    }

    .section .wrap .r .joke form button {
        width: 23.9583333333vw;
        height: 2.6041666667vw;
        background: #F98800;
        border-radius: 0.3125vw 0.3125vw 0.3125vw 0.3125vw;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 3.0208333333vw 0 0
    }

    .section .wrap .r .joke form button p {
        font-weight: bold;
        font-size: 0.8333333333vw;
        color: #FFFFFF
    }

    .section .wrap .r .joke &gt; p {
        font-weight: 500;
        font-size: 0.7291666667vw;
        color: #111111;
        margin: 1.0416666667vw 0 0;
        display: flex;
        align-items: center
    }

    .section .wrap .r .joke &gt; p a {
        display: block;
        width: fit-content;
        font-weight: bold;
        font-size: 0.7291666667vw;
        color: #F98800;
        position: relative
    }

    .section .wrap .r .joke &gt; p a:after {
        content: "";
        width: 100%;
        height: 1px;
        background: #F98800;
        position: absolute;
        left: 0;
        bottom: -0.1041666667vw;
        transform: scaleX(0);
        transition: 0.6s;
        transform-origin: left
    }

    .section .wrap .r .joke &gt; p a:hover::after {
        transform: scaleX(1)
    }

    .section .wrap.register .r .title {
        margin: 0 0 2.0833333333vw
    }

    .section .wrap.register .r form &gt; input {
        margin: 0 0 0.78125vw
    }

    .section .wrap.register .r form .identity {
        margin: 1.8229166667vw 0 1.0416666667vw
    }

    .section .wrap.register .r form .identity h5 {
        font-weight: 400;
        font-size: 0.7291666667vw;
        color: #111111;
        line-height: 1;
        margin: 0 0 0.8333333333vw
    }

    .section .wrap.register .r form .identity .identity_box {
        display: flex;
        align-items: center
    }

    .section .wrap.register .r form .identity .identity_box input {
        width: 1.0416666667vw;
        height: 1.0416666667vw;
        border: 1px solid #E6E6E6;
        margin: 0 0.2604166667vw 0 0;
        opacity: 0
    }

    .section .wrap.register .r form .identity .identity_box label {
        font-weight: 400;
        font-size: 0.7291666667vw;
        color: #111111;
        margin: 0 1.5625vw 0 0;
        display: flex;
        align-items: center;
        position: relative
    }

    .section .wrap.register .r form .identity .identity_box .radio {
        width: 1.0416666667vw;
        height: 1.0416666667vw;
        background: #FFFFFF;
        border: 1px solid #E6E6E6;
        position: absolute;
        left: 0;
        top: 50%;
        border-radius: 50%;
        transform: translateY(-50%)
    }

    .section .wrap.register .r form .identity .identity_box input[type="radio"]:checked + .radio {
        background-color: #F98800;
        background-clip: content-box;
        padding: .2em
    }

    .section .wrap.register .r form button {
        margin: 0.78125vw 0 1.3020833333vw
    }

    .section .wrap.register .r form .terms {
        display: flex;
        align-items: flex-start
    }

    .section .wrap.register .r form .terms p {
        font-size: 0.7291666667vw;
        color: #666666;
        line-height: 1.0416666667vw;
        width: 22.3958333333vw
    }

    .section .wrap.register .r form .terms p span {
        cursor: pointer;
        transition: 0.6s
    }

    .section .wrap.register .r form .terms p span:hover {
        color: #F98800
    }

    .section .wrap.register .r form .terms input {
        display: block;
        width: 0.8333333333vw;
        height: 0.8333333333vw;
        margin: 0.1041666667vw 0.5208333333vw 0 0;
        position: relative;
        outline: none;
        -webkit-appearance: none;
        -webkit-tab-highlight-color: transparent
    }

    .section .wrap.register .r form .terms input::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        background: #fff;
        width: 100%;
        height: 100%;
        border: 1px solid #DFDFDF;
        border-radius: 0.2083333333vw;
        color: #fff;
        box-sizing: border-box
    }

    .section .wrap.register .r form .terms input::after {
        content: url("../images/dui.svg");
        position: absolute;
        width: 1.0416666667vw;
        right: -0.3125vw;
        top: -0.2083333333vw;
        opacity: 0;
        transition: 0.6s
    }

    .section .wrap.register .r form .terms input[type="checkbox"]:checked::after {
        opacity: 1
    }

    .fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 199912099999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.6s;
        pointer-events: none
    }

    .fixed .fixed_shadow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000000;
        opacity: 0.4;
        cursor: pointer;
        z-index: -1
    }

    .fixed .fixed_box {
        position: relative;
        width: 62.5vw;
        padding: 2.0833333333vw 2.6041666667vw 2.0833333333vw;
        border-radius: 0.3125vw;
        overflow: hidden
    }

    .fixed .fixed_box .bg {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1
    }

    .fixed .fixed_box .bg img {
        display: block;
        width: 100%;
        height: 100%
    }

    .fixed .fixed_box .title {
        display: flex;
        align-items: center;
        padding: 0 0 0.6770833333vw;
        border-bottom: 1px solid #E8E8E8;
        margin: 0 0 1.6666666667vw
    }

    .fixed .fixed_box .title h1 {
        font-weight: bold;
        font-size: 1.25vw;
        color: #111111
    }

    .fixed .fixed_box .title p {
        font-weight: 400;
        font-size: 0.8333333333vw;
        color: #111111;
        margin: 0 0 0 0.3125vw
    }

    .fixed .fixed_box .content {
        height: 27.8645833333vw;
        overflow-y: scroll
    }

    .fixed .fixed_box .content p {
        font-weight: 400;
        font-size: 0.7291666667vw;
        color: #111111;
        line-height: 1.3541666667vw
    }

    .fixed .fixed_box .content h4 {
        font-weight: bold;
        font-size: 0.9375vw;
        color: #111111;
        margin: 0 0 0.7291666667vw
    }

    .fixed .fixed_box .content h5 {
        font-size: 0.8333333333vw;
        line-height: 2
    }

    .fixed .fixed_box form {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 1.0416666667vw 0 0;
        padding: 1.5625vw 0 0;
        position: relative
    }

    .fixed .fixed_box form:after {
        content: "";
        width: 62.5vw;
        height: 1px;
        background: #E8E8E8;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%)
    }

    .fixed .fixed_box form .fixed_terms {
        display: flex;
        align-items: center
    }

    .fixed .fixed_box form .fixed_terms input {
        display: block;
        width: 0.8333333333vw;
        height: 0.8333333333vw;
        margin: 0px 0px 0 0;
        position: relative;
        outline: none;
        -webkit-appearance: none;
        -webkit-tab-highlight-color: transparent
    }

    .fixed .fixed_box form .fixed_terms input::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        background: #fff;
        width: 100%;
        height: 100%;
        border: 1px solid #DFDFDF;
        border-radius: 0.2083333333vw;
        color: #fff;
        box-sizing: border-box
    }

    .fixed .fixed_box form .fixed_terms input::after {
        content: url("../images/dui.svg");
        position: absolute;
        width: 1.0416666667vw;
        right: -0.3125vw;
        top: -0.2083333333vw;
        opacity: 0;
        transition: 0.6s
    }

    .fixed .fixed_box form .fixed_terms input[type="checkbox"]:checked::after {
        opacity: 1
    }

    .fixed .fixed_box form .fixed_terms p {
        font-weight: 400;
        font-size: 0.7291666667vw;
        color: #111111;
        margin: 0 0 0 0.5208333333vw
    }

    .fixed .fixed_box form button {
        width: 7.2916666667vw;
        height: 2.3958333333vw;
        background: #F98800;
        border-radius: 0.2083333333vw;
        border: 1px solid #F98800;
        position: absolute;
        left: 50%;
        transform: translateX(-50%)
    }

    .fixed .fixed_box form button p {
        font-weight: 400;
        font-size: 0.9375vw;
        color: #FFFFFF
    }

    .fixed.on {
        opacity: 1;
        pointer-events: auto
    }

}

@media screen and (max-width: 1024px) {
    .section .wrap {
        width: 90vw;
        flex-direction: column-reverse;
        height: unset;
    }
    .login_section {
        height: unset;
    }
    .section .wrap .img {
        width: 100%;
    }
    .section .wrap .r {
        width: 100%;
        border: 1px solid #E6E6E6;
        border-left: 1px solid #E6E6E6;
    }
    .section .wrap .r .joke {
        width: 90%;
        padding: 30px 0;
    }
    .section .wrap .r .joke .title h1 {
        font-size: 28px;
        margin: 0 0 5px;
    }
    .section .wrap .r .joke .title {
        margin: 0 0 40px;
    }
    .section .wrap .r .joke form &gt; input {
        height: 40px;
        font-size: 14px;
        margin-bottom: 25px;
    }
    .section .wrap .r .joke form .flex input {
        font-size: 14px;
        height: 40px;
    }
    .section .wrap .r .joke .title p {
        font-size: 18px;
    }
    .section .wrap .r .joke form .flex .send {
        width: 130px;
        height: 40px;
        font-size: 12px;
    }
    .section .wrap .r .joke form .flex {
        padding-bottom: 5px;
    }
    .section .wrap .r .joke form button p {
        font-size: 16px;
    }
    .section .wrap .r .joke form button {
        width: 120px;
        height: 35px;
        border-radius: 5px;
        margin: 20px 0 0;
    }
    .section .wrap .r .joke &gt; p,.section .wrap .r .joke &gt; p a {
        font-size: 14px;
    }
    .section .wrap .r .joke &gt; p {
        margin: 15px 0 0;
    }
    .section .wrap.register .r form .identity .identity_box label {
        font-size: 14px;
    }
    .section .wrap.register .r form .identity h5 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .section .wrap.register .r form .identity .identity_box input {
        width: 15px;
        height: 15px;
        margin: 0 3px 0 0;
    }
    .section .wrap.register .r form .terms p {
        font-size: 14px;
        line-height: 1.4;
        width: calc(100% - 30px);
    }
    .section .wrap.register .r form .terms {
        margin: 15px 0 20px;
    }
    .section .wrap.register .r form .terms input {
        width: 15px;
        height: 15px;
        margin: 0 10px 0 0;
    }
    .section .wrap.register .r form .identity .identity_box .radio {
        width: 15px;
        height: 15px;
        margin-right: 10px;
    }
    .section .wrap.register .r form .identity {
        margin: 25px 0 10px;
    }
    .section .wrap.register .r form .identity .identity_box label {
        margin: 0 10px 0 0;
    }
}
</pre></body></html>