/* 下面是登录界面的css */


/* body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../img/logo_small.png);
    opacity: 0.2;
} */

.container {
    width: 450px;
    height: fit-content;
    color: #777;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    padding: 30px;
    z-index: 1;
    border-radius: 15px;
    background-color: white;
    box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC;
    font-size: 16px;
}


/* .container::after {
    position: absolute;
    z-index: -1;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    width: auto;
    height: auto;
    border: 5px solid rgba(211, 211, 211, 0.2);
    border-radius: 10px;
    box-shadow: inset 2px 2px 10px #BABECC, inset -5px -5px 10px #FFF;
    background-color: 0;
} */

.close {
    background-color: white;
    border: none;
    font-size: 18px;
    float: right;
    margin-bottom: 10px;
    cursor: pointer;
}

.email {
    color: #777;
    float: left;
}

.layui-input {
    border-radius: 15px;
    /* height: 40px; */
    font-size: 15px;
}

.layui-form-label {
    color: #777;
    padding-left: 0;
    text-align: left;
}

#logoid {
    margin-top: -16px;
    padding-left: 150px;
    padding-bottom: 15px;
}

.layui-btn {
    margin: 0 auto;
    display: table-cell;
    vertical-align: middle;
    border-radius: 15px;
    width: 300px;
    /* height: 40px; */
    font-size: 15px;
}

.verity {
    width: 120px;
}

.font-set {
    margin-top: 20px;
    float: right;
    font-size: 13px;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

table tr td {
    /* border: 1px solid red; */
}

.input-table {
    width: 100%;
}

.input-table tr {
    height: 70px;
    padding: 0;
}


/* 下面是general的 */

.general {
    font-family: sans-serif;
    height: auto;
    margin: 0;
}

.content {
    margin: 0 auto;
    height: auto;
    width: 80%;
    /* padding-top: 50px; */
    padding-bottom: 60px;
    /* overflow: hidden; */
}


/* 以下是header */

.header {
    width: 100%;
    /* overflow: hidden; */
    position: relative;
    top: 0px;
    background-color: #69bdc8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.title {
    margin-left: 30px;
    color: white;
    font-weight: normal;
    font-size: 40px;
}

.layui-form {
    width: 40%;
    margin: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid red; */
}

.add-review {
    align-items: right;
    width: 100px;
    height: 38px;
    background-color: white;
    border: 0px solid white;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    outline: none;
    box-shadow: /* -7px -7px 20px 0px #fff9, */
    /* -4px -4px 5px 0px #fff9, */
    7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001, /* inset 0px 0px 0px 0px #fff9, */
    inset 0px 0px 0px 0px #0001, /* inset 0px 0px 0px 0px #fff9, */
    inset 0px 0px 0px 0px #0001;
}

.add-review:hover {
    background-color: rgb(84, 160, 170);
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
}

.add-review:hover .add-review-text {
    color: white;
}

.add-review-text {
    color: #69bdc8;
    font-family: inherit;
}


/* 以下是footer */

.footer {
    /* border:1px solid red; */
    /* margin-top: 50px; */
    width: 100%;
    height: 150px;
    background-color: rgb(50, 50, 50);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.footer-navigator {
    margin: 0 auto;
    margin-top: 10px;
    padding-left: 0px;
}

.footer-navigator li {
    display: inline;
}

.footer-navigator a {
    text-decoration: none;
    color: white;
}

.footer-navigator li:not(:last-child) a:after {
    content: " \00A0 \00A0 | \00A0";
}

.logo-link {
    width: 100%;
    text-align: center;
    margin: auto 0;
}

.footer-info {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 10px;
}

.fixed-bottom {
    position: fixed;
    bottom: 0px;
    width: 100%;
}