/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    /* background: transparent; */
}

html {
    /* font-size:100px; */
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

/* Remember to define focus styles! */
:focus {
    outline: 0;
}

/* Remember to highlight inserts somehow! */
ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

/* Tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

#loginsign {
    line-height: 1;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 50%;
}

#loginsign .overlay {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.88);
}

#loginsign .login_con {
    width: 50%;
    max-width: 36.46vw;
    background: #fff;
    box-shadow: 0 .1vw .16vw rgba(0, 0, 0, .1);
    padding: 2% 3%;
    margin: 0 auto;
    position: absolute;
    display: none;
    flex-direction: column;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}


#loginsign .close {
    z-index: 1;
    position: absolute;
    top: -1.25vw;
    right: -1.25vw;
    cursor: pointer;
    width: 2.5vw;
    height: 2.5vw;
    background-color: rgba(0, 0, 0, 0.9);
    border-style: none;
    border-radius: 50%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    color: #fff;
    font-size: 1.35vw;
}

#loginsign .close:hover,
#loginsign .close:focus {
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
    background: #0000008c;
}


#loginsign .login_con h1 {
    font-size: 1.04vw;
    color: #333;
    font-weight: bold;
    text-align: center;
    margin-bottom: 6%;
}

#loginsign .tab {
    overflow: hidden;
    width: 100%;
}

#loginsign .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: .5vw .83vw;
    transition: 0.3s;
    border-bottom: .1vw solid #e87012;
    font-size: .94vw;
    color: #e87012;
    width: 50%;
    font-weight: bold;
    border-radius: 0;
}

#loginsign .tab button:hover {
    background-color: #dddddda0;
}

#loginsign .tab button.active {
    background-color: #e87012;
    color: #fff;
    font-size: .94vw;
    text-align: center;
}

#loginsign .login_con h2 {
    font-size: .83vw;
    font-weight: bold;
    text-align: center;
    margin: 3% 0;
    width: 100%;
}

/* Style the form */
#loginsign form {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

#loginsign form label {
    display: block;
    margin-top: .5vw;
    margin-bottom: .5vw;
    color: #b05005;
}

#loginsign form input[type=text],
input[type=password],
input[type=email] {
    width: 100%;
    padding: .52vw 1.04vw;
    margin: .36vw 0;
    display: inline-block;
    background: #f9f9f9;
    border: .05vw solid #bebebe;
    box-sizing: border-box;
    border-radius: 0;
    font-size: .73vw;
}

/* all input placeholder color:#8a8a8a */
#loginsign input::placeholder {
    color: #8a8a8a;
    font-size: .73vw;
}

#loginsign form input[type=text]:focus,
#loginsign input[type=password]:focus,
#loginsign input[type=email]:focus {
    background: #fff;
    outline: 0;
    box-shadow: 0 0 .42vw rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease
}

#loginsign input[type="checkbox"] {
    display: none;
}

#loginsign .checkbox_label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding-left: 1.3vw;
    margin-right: .78vw;
    margin-top: .5vw;
    margin-bottom: .5vw;
    color: #bebebe;
    font-size: .63vw;
    line-height: 1.5;
}

#loginsign .checkbox_style {
    position: relative;
}

#loginsign .checkbox_style::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1vw;
    height: 1vw;
    border: .1vw solid #ccc;
    border-radius: .16vw;
    transition: all 0.3s ease;
    margin-left: -1.35vw;
}


.checkbox_label input[type="checkbox"]:checked+.checkbox_style::before {
    background-color: #007bff;
    border-color: #007bff;
}


.checkbox_style::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: .85vw;
    opacity: 0;
    transition: all 0.3s ease;
    margin-left: -0.78vw;
    margin-top: -0.05vw;
}


.checkbox_label input[type="checkbox"]:checked+.checkbox_style::after {
    opacity: 1;
}


#loginsign .checkbox_label a {
    color: #3381e8;
    text-decoration: none;
}

#loginsign form input.mb0 {
    margin-bottom: 0;
    border-bottom: none;
}

#loginsign form input.mt0 {
    margin-top: 0;
}

#loginsign form input::-webkit-input-placeholder {
    color: #adadad;
    font-size: .73vw;
}


#loginsign button.login {
    background-color: #e87012;
    color: white;
    font-weight: bold;
    font-size: .94vw;
    width: 100%;
    height: 2.6vw;
    text-align: center;
    margin: .42vw 0;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 0;
}

#loginsign #register button.login {
    background: #0099cb;
}

#loginsign form button:hover {
    opacity: 0.8;
}

#loginsign .alist {
    display: block;
    text-decoration: none;
    color: #1877f2;
    font-size: .63vw;
    margin-top: .31vw;
}

#loginsign .or {
    position: relative;
    text-align: center;
    margin: 3% 0;
}

#loginsign .or::before {
    content: "";
    display: block;
    border-top: solid .05vw #dde4e6;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 1;
}

#loginsign .or span {
    font-size: .73vw;
    padding: 0 1.04vw;
    position: relative;
    z-index: 2;
    background: #ffffff;
    color: #ddd;
    border: none;
}



#loginsign .social-login {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    font-size: .73vw;
}

#loginsign .social-login li {
    width: 48%;
    margin: 1% 1%;
    overflow: hidden;
    border: .05vw solid #e8e8e8;
    font-size: .73vw;
}

#loginsign .social-login li a {
    position: relative;
    display: block;
    height: 2.5vw;
    line-height: 2.5vw;
    padding: 0 0 0 2.81vw;
    font-size: .73vw;
    word-break: normal;
    background: #fff;
    transition: background-color .1s ease-out;
    text-decoration: none;
    color: #333;
}

#loginsign .social-login li a span {
    font-size: .73vw;
}

#loginsign .social-login li a::before {
    position: absolute;
    content: "";
    width: 2.08vw;
    height: 2.08vw;
    background-repeat: no-repeat;
    -webkit-background-position: center;
    background-position: center;
    left: .21vw;
    top: .21vw;
}

#loginsign .social-login li .fortwitter::before {
    background: url(../img/login/icon_sns_x_w.png);
    background-size: 1.04vw 1.04vw;
    background-position: center;
    background-color: #000;
    background-repeat: no-repeat;
}

#loginsign .social-login li .forline::before {
    background: url(../img/login/icon_sns_line.png);
    background-size: 78%;
    background-position: center;
    background-color: #06c755;
    background-repeat: no-repeat;
}

#loginsign .social-login li .foryahoo::before {
    background: url(../img/login/icon_sns_yahoo.png);
    background-size: 65%;
    background-position: center;
    background-color: #ff0033;
    background-repeat: no-repeat;
}

#loginsign .social-login li .forfacebook::before {
    background: url(../img/login/icon_sns_facebook.png);
    background-size: 65%;
    background-position: center;
    background-color: #1877f2;
    background-repeat: no-repeat;
}

#loginsign .social-login button:hover {
    opacity: 0.8;
}

#loginsign .mt4 {
    margin-top: 1vw;
}

#loginsign .mb4 {
    margin-bottom: 1vw;
}

#loginsign #register p.tipsinfo {
    color: #888;
    line-height: 1.2;
    font-size: .73vw;
    margin-top: .52vw;
    margin-bottom: .52vw;
}

#loginsign footer {
    width: 100%;
    margin: 5.21vw auto 0;
}

#loginsign footer p {
    text-align: center;
    color: #666;
    line-height: 1.5;
}



@media screen and (max-width: 800px) {
    #loginsign .login_con {
        width: 90%;
        max-width: inherit;
        box-shadow: 0 .38vw .61vw rgba(0, 0, 0, .1);
    }

    #loginsign .close {
        top: -4.8vw;
        right: -4.8vw;
        width: 9.6vw;
        height: 9.6vw;
        font-size: 5.18vw;
    }

    #loginsign .close:hover,
    #loginsign .close:focus {
        color: rgb(255, 255, 255);
        text-decoration: none;
        cursor: pointer;
        background: #0000008c;
    }


    #loginsign .login_con h1 {
        font-size: 3.99vw;
        color: #333;
        font-weight: bold;
        text-align: center;
        margin-bottom: 6%;
    }

    #loginsign .tab button {
        padding: 2.8vw 3.19vw;
        border-bottom: .38vw solid #e87012;
        font-size: 3.61vw;
    }

    #loginsign .tab button:hover {
        background-color: #dddddda0;
    }

    #loginsign .tab button.active {
        font-size: 3.61vw;
    }

    #loginsign .login_con h2 {
        font-size: 3.19vw;
    }

    #loginsign form label {
        margin-top: 1vw;
        margin-bottom: 1vw;
        font-size: 2.5vw;
    }

    #loginsign form input[type=text],
    input[type=password],
    input[type=email] {
        padding: 2vw 3.99vw;
        margin: 1.38vw 0;
        border: .19vw solid #bebebe;
        font-size: 2.8vw;
    }

    /* all input placeholder color:#8a8a8a */
    #loginsign input::placeholder {
        color: #8a8a8a;
        font-size: 2.8vw;
    }

    #loginsign form input[type=text]:focus,
    #loginsign input[type=password]:focus,
    #loginsign input[type=email]:focus {
        background: #fff;
        outline: 0;
        box-shadow: 0 0 1.61vw rgba(0, 0, 0, 0.15);
        transition: all 0.2s ease
    }

    #loginsign .checkbox_label {
        padding-left: 4.99vw;
        margin-right: 3vw;
        margin-top: 2vw;
        margin-bottom: 2vw;
        font-size: 2.42vw;
    }

    #loginsign .checkbox_style {
        position: relative;
    }

    #loginsign .checkbox_style::before {
        width: 3.99vw;
        height: 3.99vw;
        border: .38vw solid #ccc;
        border-radius: .61vw;
        margin-left: -5.18vw;
    }

    .checkbox_style::after {
        font-size: 2.42vw;
        margin-left: -3vw;
        margin-top: -0.19vw;
    }

    #loginsign .checkbox_label a {
        color: #3381e8;
        text-decoration: none;
    }

    #loginsign form input.mb0 {
        margin-bottom: 0;
        border-bottom: none;
    }

    #loginsign form input::-webkit-input-placeholder {
        color: #adadad;
        font-size: 2.8vw;
    }

    #loginsign button.login {
        font-size: 3.61vw;
        width: 100%;
        height: 9.98vw;
        margin: 1.61vw 0;
    }

    #loginsign #register button.login {
        background: #0099cb;
    }

    #loginsign form button:hover {
        opacity: 0.8;
    }

    #loginsign .alist {
        font-size: 2.42vw;
        margin-top: .31vw;
    }

    #loginsign .or::before {
        border-top: solid .19vw #dde4e6;
    }

    #loginsign .or span {
        font-size: 2.8vw;
        padding: 0 3.99vw;
    }

    #loginsign .social-login {
        font-size: 2.8vw;
    }

    #loginsign .social-login li {
        width: 48%;
        margin: 1% 1%;
        border: .05vw solid #e8e8e8;
        font-size: 2.8vw;
    }

    #loginsign .social-login li a {
        position: relative;
        display: block;
        height: 9.6vw;
        line-height: 9.6vw;
        padding: 0 0 0 10.79vw;
        font-size: 2.8vw;
    }

    #loginsign .social-login li a span {
        font-size: 2.8vw;
    }

    #loginsign .social-login li a::before {
        position: absolute;
        content: "";
        width: 7.99vw;
        height: 7.99vw;
        background-repeat: no-repeat;
        -webkit-background-position: center;
        background-position: center;
        left: .81vw;
        top: .81vw;
    }

    #loginsign .social-login li .fortwitter::before {
        background: url(../img/login/icon_sns_x_w.png);
        background-size: 3.99vw 3.99vw;
        background-position: center;
        background-color: #000;
        background-repeat: no-repeat;
    }

    #loginsign .social-login li .forline::before {
        background: url(../img/login/icon_sns_line.png);
        background-size: 78%;
        background-position: center;
        background-color: #06c755;
        background-repeat: no-repeat;
    }

    #loginsign .social-login li .foryahoo::before {
        background: url(../img/login/icon_sns_yahoo.png);
        background-size: 65%;
        background-position: center;
        background-color: #ff0033;
        background-repeat: no-repeat;
    }

    #loginsign .social-login li .forfacebook::before {
        background: url(../img/login/icon_sns_facebook.png);
        background-size: 65%;
        background-position: center;
        background-color: #1877f2;
        background-repeat: no-repeat;
    }

    #loginsign .social-login button:hover {
        opacity: 0.8;
    }

    #loginsign .mt4 {
        margin-top: 4vw;
    }

    #loginsign .mb4 {
        margin-bottom: 4vw;
    }

    #loginsign #register p.tipsinfo {
        color: #888;
        line-height: 1.2;
        font-size: 2.8vw;
        margin-top: 2vw;
        margin-bottom: 2vw;
    }

    #loginsign footer {
        width: 100%;
        margin: 5.21vw auto 0;
    }

    #loginsign footer p {
        text-align: center;
        color: #666;
        line-height: 1.5;
    }
}


#loginsign form label .reminderinfo {
    color: #f00;
}

.popup_inner {
    max-height: 60vh;
    overflow: auto;
}