body {
    background: url("../img/background.png") no-repeat fixed;
    background-size: cover;
}

p {
    margin: 20px auto;
    width: 100%;
    font-size: 3.0em;
    text-align: center;
    font-weight: bold;
    color: #3c4a9c;
}

#content {
    width: 500px;
    height: 400px;
    background-color: #00000066;
    min-width:300px;
    border-radius: 10px;
    position:fixed;
    right:100px;
    top: 57%;
    transform: translate(0, -50%);
}
.copyright{
    position:fixed;
    bottom:20px;
    text-align: center;
    font-size:5px;
    color:#fff;
    width:100%;
}
.title{
    position: fixed;
    left: 15%;
    text-align: left;
    color: #fff;
    top: 50%;
    transform: translate(0,-50%);
}
.login-title{
    color: #fff;
    font-size: 26px;
    margin-left: 12%;
    font-weight: 600;
    position: absolute;
    top: 30px;
}
input[type=text], input[type=password], select {
    border: 1px solid #DCDEE0;
    vertical-align: middle;
    border-radius: 3px;
    height: 50px;
    padding: 0px 16px;
    font-size: 14px;
    color: #555555;
    outline: none;
    width: 76%;
    margin-left: 12%;
    margin-bottom: 15px;
    line-height: 50px;
    color: #888;
    border-radius: 5px;
}

input[type=text].reg, input[type=password].reg{
    border: 1px solid #DCDEE0;
    vertical-align: middle;
    border-radius: 3px;
    height: 34px;
    padding: 0px 16px;
    font-size: 14px;
    color: #555555;
    outline: none;
    width: 76%;
    margin-left: 0;
    margin-bottom: 0px;
    line-height: 50px;
    color: #888;
    border-radius: 5px;
}

input[type=text]:focus, input[type=password]:focus, select:focus {
    border: 1px solid #27A9E3;
}

#btnSubmit {
    display: inline-block;
    vertical-align: middle;
    padding: 12px 24px;
    margin-left: 20px;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    color: #ffffff;
    background-color: #435cb9;
    border-radius: 8px;
    border: none;
    -webkit-appearance: none;
    outline: none;
    width: 76%;
    margin-top: 5%;
    margin-left: 12%;
    margin-bottom: 8%;
}

a {
    margin-left: 65%;
    font-size: 16px;
    border-bottom: 1px solid;
    padding-bottom: 1%;
    text-decoration: none;
}

.icon-user {
    position: absolute;
    left: 0;
    z-index: 5;
    background-image: url("../img/user-icon.png"); /*引入图片图片*/
    background-repeat: no-repeat; /*设置图片不重复*/
    background-position: 0px 0px; /*图片显示的位置*/
    width: 50px; /*设置图片显示的宽*/
    height: 50px; /*图片显示的高*/
}

@media screen and (min-width: 300px) and (max-width: 500px){
    body {
        background: url("../img/mobile_background.png") no-repeat fixed;
        background-size: 100% 100%;

    }

    #content {
        width: 300px;
        height: 400px;
        background-color: #00000066;
        min-width:300px;
        border-radius: 10px;
        position:fixed;
        left: 50%;
        top: 57%;
        transform: translate(-50%, -50%);
    }
}