html {
    height: 100%;
    font-size: 10px;
}

body .main-container {
    width: 100%;
    height: 100%;
    display: flex;
    background: #f5f7fa;
}

.pc-layout-container {
    width: 100%;
    height: 100%;
    display: flex;

    align-items:center;
    justify-content:center;

    box-shadow: 5px 2px 29px 8px rgba(4, 78, 185, 0.1);
    background: white;
}

.pc-layout-box {
    width: 720px;
    height: 380px;
    display: flex;

    align-items:center;
    justify-content:center;

    box-shadow: 5px 2px 29px 8px rgba(4, 78, 185, 0.1);
    background: white;
}

.left-container {
    width: 61%;
    height: 100%;

    display: flex;
    align-items:center;
    justify-content:center;
}

.logo-title {
    font-size:60px;
    color: white;
}

.right-container {
    display: flex;
    width: 38%;
    height: 100%;
    align-items:center;
    justify-content:center;
}

.right-box {

    width: 70%;

    display: flex;
    flex-direction: column;
    /* align-items:center; */
    justify-content:center;
}

.input-box-tip {
    position: absolute;
    color: red;
    font-size: 12px;
}

.input-box {
    display: flex;
    align-items: center;

    border-bottom:#e8eaed solid 1px;
    background:transparent;

	width:100%;
	height:35px;
	font-size:14px;
}

.input-box-err {
    border-bottom:red solid 1px;
}

.input-box-icon {
    width: 15px;
    height: 15px;
    background-size: contain;
}

/* .input-box-icon::before {
    position: relative;
    width: 15px;
    height: 15px;
    background: #3687f2AA;
    content: "";
    display: flex;
} */

.input-box-inner {
    border:none #FFFFFF;
    outline:none;
    height: 92%;

    padding-left: 13px;
}

.circle-button {
    background-color: rgba(39,103,181,0.9);
    border: none;
    color: white;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 30px;
    width: 100%;

    box-shadow: 0 5px 15px 0 rgba(54,133,242,0.2);

}

.circle-button:hover {
    background-color: #6598e0;
    cursor: pointer;
}

.item {
    margin-top: 15px;
    margin-bottom: 15px;

}

.button-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
    not supported by any browser */
}



/* -------------- mobile -------------- */

.mobile-layout-container {
    width: 100vw;
}

.m-logo-title {
    position: relative;

    width: 100vw;
    height: 65vw;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}
.m-logo-title-img {
    position: absolute;
    top: -50%;
    width: 135%;
}

.m-logo-title-foot {
    width: 100%;
    height: 20%;
    position: absolute;
    bottom: -1%;


background-image: -webkit-linear-gradient(top,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
background-image: -moz-linear-gradient(top,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
background-image: -o-linear-gradient(top,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
background-image: linear-gradient(top,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}


.m-input-item {
    margin: 7rem 5rem;
}

.m-checkbox-container {
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.m-checkbox {
    transform: scale(4);
    margin-right: 3rem;
}

.m-label {
    font-size: 4rem;
}

.m-input-box-tip {
    position: absolute;
    color: red;
    font-size: 4rem;
}

.m-input-box {
    display: flex;
    align-items: center;

    border-bottom:#e8eaed solid 0.2vw;
    background:transparent;

	width:100%;
    height: 10rem;
	font-size:14px;
}

.m-input-box-err {
    border-bottom:red solid 0.2vw;
}

.m-input-box-icon-container {
    width: 10vw;
    height: 10vw;

    display: flex;
    align-items: center;
    justify-content: center;
}

.m-input-box-icon {
    width: 60%;
    height: 60%;
}

.m-input-box-inner {
    border:none #FFFFFF;
    outline:none;
    height: 92%;
    width: 90%;

    font-size: 4rem;

    background: #f5f7fa;
    padding-left: 13px;
}

.m-circle-button {
    background-color: #3685f2;
    border: none;
    color: white;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 6rem;
    border-radius: 16rem;
    width: 100%;

    box-shadow: 0 5px 15px 0 rgba(54,133,242,0.2);

}

.m-circle-button:hover {
    background-color: #6598e0;
    cursor: pointer;
}

.m-button-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
