/*LOGIN*/
.login-box,
.notice-box {
    margin: 0 auto;
    padding: 40px;
    width: 480px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #333;
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: all .3s ease-in-out;
}

.subscription-box{
    width: 1080px;
    height: auto;
    padding: 80px 60px;
    display: flex;
    gap: 80px;
    flex-wrap: nowrap;
    justify-content: space-between;

    .input-area{
        display: flex;
        justify-content: space-around;
        flex-direction: column;
    }
    .input-area input,
    .input-area select {
        height: 60px;
        text-indent: 120px;
        font-size: 20px;
    }
    .input-area dl {
        position: relative;
        height: 100px;
    }
    .input-area dt {
        margin: 0;
        position: absolute;
        left: 20px;
        top: 15px;
    }
    .input-area button.submit {
        margin: 0 auto;
        padding: 0 80px;
        width: auto;
        height: 60px;
        font-size: 22px;
    }
}

.login-show .login-box,
.notice-show .notice-box {
    transform: scale(1);
    opacity: 1;
}

.login-box a.close,
.notice-box a.close {
    background: none;
    border: 0;
    outline: 0;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box a.close::after,
.notice-box a.close::after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    background: no-repeat center center / 48%;
    transition: all .3s ease-in-out;
}

.login-box a:hover::after,
.notice-box a:hover::after {
    transform: scale(1.1);
    /* background-size: 65%; */
}

.login-box a.close::after,
.notice-box a.close::after {
    background-image: url(../imgs/ico_close_min.svg);
    /* background-color: #dd0000; */
}

.login-box h1 {
    margin: 0 0 30px;
    padding: 0;
    text-align: left;
    font-size: 24px;
    color: #000;
    font-weight: 400;
}
.notice-box h1 {
    margin: 0 0 30px;
    padding: 0;
    text-align: center;
    font-size: 30px;
    color: #000;
    font-weight: 600;
}

.login-box h2 {
    margin: 15px 0;
    padding: 0;
    text-align: left;
    font-size: 22px;
    color: #666666;
    font-weight: 400;
}

.notice-box p{
    text-align: center;
    font-size: 24px;
    line-height: 1.3;
    color: #444;
    font-weight: 200;
}

.login-box button,
.notice-box button {
    display: block;
    height: 42px;
    line-height: 1;
    color: #ffffff;
    background: #222222;
    border-radius: 15px;
    font-size: 16px;
    border: 1px solid #222222;
    cursor: pointer;
}

.login-box button:hover,
.notice-box button:hover {
    background: #444444;
}

.login-box button.getcode,
.notice-box button.getcode {
    margin-left: 10px;
    padding: 0 20px;
    width: 180px;
}
.login-box button.disabled,
.notice-box button.disabled {
    background: #aaa;
    cursor:not-allowed;
}

.login-box button.submit,
.notice-box button.submit {
    margin: 30px auto 30px 0;
    padding: 0 60px;
    width: auto;
}
.notice-box button.main-button {
    margin: 30px auto;
    padding: 0 50px;
    width: auto;
    height: 80px;
    color: #222;
    background: none;
    border-radius: 25px;
    font-size: 30px;
    font-weight: 400;
    border: 2px solid #222;
}
.notice-box button.main-button:hover{
    background: #222;
    color: #fff;
}

.login-tab {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.login-tab a {
    width: 50%;
    text-align: left;
    height: 40px;
}

.login-tab a span {
    display: inline-block;
    line-height: 30px;
    font-size: 18px;
    color: #333;
    height: 30px;
}

.login-tab a:hover span,
.login-tab a.active span {
    color: #000;
    border-bottom: 1px solid #333;
}

.message-tab {
    display: flex;
    justify-content: space-between;
    margin: 60px -40px -40px;
    padding: 15px;
    gap: 20px;
    box-shadow: 0px -10px 20px 0px rgb(0 0 0 / 5%);
}

.message-tab a {
    width: 50%;
    text-align: center;
    height: 100px;
    background: #fff;
    border-radius: 20px;
}

.message-tab a img {
    height: 100%;
    width: auto;
}

.message-tab a:nth-child(1) {
    background: url(../imgs/ico_contact.svg) no-repeat center 10px / 20%;
}
.message-tab a:nth-child(2) {
    background: url(../imgs/ico_message.svg) no-repeat center 10px / 20%;
}

.message-tab a span {
    display: inline-block;
    line-height: 30px;
    font-size: 18px;
    color: #999;
    height: 30px;
    margin-top: 55px;
}

.message-tab a:hover,
.message-tab a.active {
    background-color: #f7f7f7;
}

.input-area {
    margin: 0 auto;
}

.input-area dl {
    margin: 0;
}

.input-area dt {
    line-height: 30px;
    margin-top: 15px;
    color: #333;
    font-size: 15px;
}

.input-area dd {
    margin: 0;
}

.input-area dd.column {
    display: flex;
    justify-content: space-between;
}

.input-area dd p {
    width: 100%;
}

.input-area i {
    color: red;
    margin-right: 5px;
}

.input-area input {
    width: 100%;
    height: 40px;
    border: 1px solid #999;
    border-radius: 5px;
    /* outline: none; */
    font-size: 16px;
    line-height: 40px;
    text-indent: 10px;
    margin: 0;
    display: block;
}

.input-area input::placeholder {
    color: #cccccc;
}

.input-area textarea {
    width: 100%;
    height: 120px;
    border: 1px solid #999;
    border-radius: 10px;
    /* outline: none; */
    font-size: 16px;
    line-height: 40px;
    text-indent: 10px;
    margin: 0;
    display: block;
}

.input-area select {
    width: 100%;
    height: 120px;
    border: 1px solid #999;
    border-radius: 10px;
    /* outline: none; */
    font-size: 16px;
    line-height: 40px;
    text-indent: 10px;
    margin: 0;
    display: block;
}

.input-area em {
    display: none;
    height: 20px;
    line-height: 20px;
    color: red;
    font-size: 14px;
}

.input-area dl.input-error input,
.input-area dl.input-error select,
.input-area dl.input-error textarea {
    border: 1px solid red;
}

.input-area dl.input-error em {
    display: block;
}

.input-area a.forgot {
    float: right;
    color: #0077ff;
}

.input-area dt::after {
    clear: both;
}

.abreast {
    display: flex;
    justify-content: space-between;
}

.abreast dl {
    width: 50%;
}

.abreast dl:first-child {
    margin-right: 30px;
}

.remember {
    display: flex;
    align-items: center;
    width: 50%;
    height: 30px;
    margin-top: 20px;
    position: relative;
}

.remember input {
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

.remember label {
    width: calc(100% - 40px);
    height: 50px;
    line-height: 50px;
    position: absolute;
    top: -10px;
    left: -20px;
    /* border: 1px solid red; */
    padding-left: 40px;
}

.other {
    text-align: right;
}

.other a {
    padding: 0;
    color: #0077ff;
    border-bottom: 1px solid #0077ff;
}

#tab1-area {
    display: block;
}

#tab2-area {
    display: none;
}



/*REGISTER*/
.register {
    background: #fff;
}

.register header::before {
    content: "";
    display: table;
}

.register section {
    padding-top: 60px;
}

.register input {
    /* height: 30px; */
}

.register .nav {
    padding: 30px 0 30px;
    border-bottom: 1px solid #333;
}

.register .nav::after {
    display: none;
}

.register .nav-list {
    display: none;
}

.title-tab {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    background-color: #333;
    border: 1px solid #333;
    width: 50%;
    max-width: 600px;
    padding: 0 40px;
    margin: 0 auto;
}

.title-tab a {
    width: 50%;
    text-align: left;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #ccc;
    height: 40px;
}

.title-tab a:hover,
.title-tab a.active {
    color: #fff;
}



.register-box {
    width: 50%;
    max-width: 600px;
    padding: 40px;
    margin: 0 auto;
    border: 1px solid #333;
    border-radius: 0;
    background-color: #f7f7f7;
    opacity: 1;
    transform: none;
    transition: none;
}

.register-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0 15px;
}

.register-info li {
    width: 100px;
    height: 40px;
    display: flex;
    position: relative;
    align-items: center;
}

.register-info input {
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

.register-info label {
    width: calc(100% - 40px);
    height: 40px;
    line-height: 40px;
    position: absolute;
    top: 0;
    left: -20px;
    /* border: 1px solid red; */
    padding-left: 40px;
    font-size: 15px;
}

.register .line {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 2px dotted #dddddd;

}

.register .line span {
    display: block;
    /* width: 30px; */
    padding: 10px 20px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 30px;
    /* border: 1px solid #999999; */
    font-size: 28px;
    font-weight: 400;
    color: #333;
    margin: -27px;
}

.register select {
    width: calc(100% + 2px);
    height: 42px;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    padding: 0 5px;
    /* outline: none; */
}

.register select option {
    display: block;
    font-size: 18px;
    line-height: 60px;
    height: 40px;
    color: #000000;
    border-bottom: 1px solid #000000;
    padding: 10px;
}

.register select option:first-child {
    display: none;
}

.register dl.no-active {
    display: none;
}



/*PERSONAL*/
.personal section {
    padding-top: 0;
}

.personal .left-right {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.up-down {
    display: flex;
    flex-direction: column;
}

.personal aside {
    width: 40%;
}

.personal article {
    width: 100%;
    margin-top: 50px;
}

.personal h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    margin: 30px 0;
    text-align: left;
    color: #333;
}

.personal-content {}

.personal-content>dl {
    width: 50%;
}

.personal-content .input-area-1 {
    width: 100%;
    max-width: 900px;
}

.personal-content .input-area-2 {
    width: 60%;
    max-width: 400px;
}

.personal-menu {
    margin-top: 40px;
}

.personal-menu a {
    display: block;
    margin: 25px 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: #999;
    height: 25px;
    transition: all .5s ease-in-out;
}

.personal-menu a.active,
.personal-menu a:hover {
    font-size: 22px;
    color: #333;
}

.personal-menu a.logout {
    margin-top: 50px;
    font-size: 16px;
}

.personal-button a {
    color: #666;
    background: none;
    border: 1px solid #999;
    width: 70%;
    max-width: 350px;
    height: 42px;
    line-height: 1;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.personal-button a:hover {
    color: #ffffff;
    background: #222222;
    border: 1px solid #222222;
}

.personal-button a svg {
    width: 22px;
    height: auto;
    margin-right: 10px;
    stroke: #666;
    fill: none;
    stroke-width: 3;
    stroke-miterlimit: 10;
}

.personal-button a:hover svg {
    stroke: #fff;
}

/* .personal-button a.edit-address {
    background-image: url(../imgs/ico_change.svg);
}
.personal-button a.edit-password {
    background-image: url(../imgs/ico_update.svg);
}
.personal-button a.logout {
    background-image: url(../imgs/ico_logout.svg);
} */



.personal-box {
    width: auto;
    max-width: none;
    padding: 0;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    background: none;
    opacity: 1;
    transform: none;
    transition: none;
}

.personal-box button {
    display: block;
    height: 42px;
    line-height: 1;
    color: #ffffff;
    background: #222222;
    border-radius: 5px;
    font-size: 16px;
    border: 1px solid #222222;
    cursor: pointer;
}

.personal-box button:hover {
    background: #444444;
}

.personal-box button.getcode {
    margin-left: 10px;
    padding: 0 20px;
    width: 180px;
}

.personal-box button.submit {
    margin: 40px auto;
    padding: 0 80px;
    width: auto;
}

.personal-box dl {
    /* margin-bottom: 20px; */
    height: 110px;
}

.personal-box .abreast dl:first-child {
    margin-right: 8%;
}

.personal-box .input-area em {
    /* display: block; */
}






/*-----------------------------------1000 mobile------------------------------*/
@media screen and (max-width:1000px) {

    .empty {
        display: none;
    }

    .register .nav {
        padding: 20px 0 20px;
    }

    .personal .left-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .personal aside {
        width: 100%;
    }

    .personal article {
        margin-top: 30px;
    }

    .personal h2 {
        font-size: 20px;
        margin: 30px 0;
        text-align: center;
    }

    .personal-menu {
        margin-top: 40px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
    }

    .personal-menu a,
    .personal-menu a.active,
    .personal-menu a:hover,
    .personal-menu a.logout {
        margin: 10px 20px;
        font-size: 18px;
    }

    .personal-menu a.active,
    .personal-menu a:hover {
        font-weight: 600;
    }

    .personal-content>dl {
        width: 100%;
    }

    .personal-content .job-contract,
    .personal-content .input-area-1,
    .personal-content .input-area-2 {
        width: 80%;
        max-width: 350px;
    }

    .personal-button a {
        margin: 20px auto 40px;
        width: 80%;
        max-width: 350px;
    }

    .abreast {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }

    .abreast dl {
        min-width: 100%;
    }

    .personal-box dl,
    .personal-box .abreast dl,
    .personal-box .abreast dl:first-child {
        margin-right: 0;
        height: auto;
    }

    .personal-box button.submit {
        margin: 60px auto;
        padding: 0 0;
        width: 80%;
        max-width: 350px;
    }

}



/*-----------------------------------600 mobile------------------------------*/
@media screen and (max-width:600px) {
    .register section {
        padding-top: 20px;
    }

    .login-box {
        padding: 20px;
        width: calc(100% - 40px);
    }

    .login-box button {
        font-size: 16px;
        height: 42px;
        /* line-height: 60px; */
    }

    .login-box button.getcode {
        margin-left: 5px;
        padding: 0 5px;
    }

    .login-box button.submit {
        width: 100%;
    }

    .title-tab {
        padding: 0 20px;
        width: calc(100% - 43px);
    }

    .register-box {
        padding: 20px;
        width: calc(100% - 43px);
    }

    .personal-box {
        padding: 0;
        width: 100%;
    }

    .login-tab a {
        height: 40px;
        padding: 0px 0px;
    }

    .input-area input {
        height: 40px;
        min-width: 100%;
    }

    .remember {
        height: 40px;
        width: auto;
        /* background: #f9f9f9; */
        /* border: 1px solid #eeeeee; */
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .remember input {
        margin-left: 10px;
        min-width: auto;
    }

    .remember label {
        height: 40px;
        line-height: 40px;
        padding-left: 50px;
        top: 0px;
        left: -20px;
    }

    .abreast dl:first-child {
        margin-right: 5px;
    }

    .register-info {
        display: flex;
        flex-wrap: wrap;
        margin: 0 15px;
    }

    .register-info li {
        height: 40px;
        width: calc(50% - 10px);
        /* background: #f9f9f9; */
        /* border: 1px solid #eeeeee; */
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .register-info input {
        width: 20px;
        min-width: auto;
        height: 20px;
    }

    .register-info label {
        height: 40px;
        line-height: 40px;
        padding-left: 50px;
    }

    .register select {
        height: 42px;
    }

    .other {
        margin: 20px 0;
    }
}