@charset "utf-8";
/**
  * @Time  : 2022/5/18 22:33
  * @File  : css.css
  * @Author: 王磊
***/


* {
    padding: 0;
    margin: 0;
}

a {
    color: inherit;
}

/* 全局组件 */
/* NAV-BAR */
#nav {
    height: 90px;
    background-color: #FFF;

    /*background-color: rgba(236, 213, 172, 0.94);*/
    color: var(--one-BG-PRIMARY2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

#nav > .brand {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#nav > .brand a {
    color: inherit;
    text-decoration: none;
    padding-left: 5px;
}

#nav > .brand img {
    width: 630px;
    height: 100px;

    /*width: 50px;*/
    /*height: 52px;*/
}

#nav > .brand h2 {
    font-size: 27px;
}

#nav > .brand h3 {
    position: relative;
    font-size: 11px;
    top: -3px;
}

#nav > .user-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#nav > .user-box > h3 {
    cursor: pointer;
    transition: .5s ease;
}

#nav > .user-box > h3:hover {
    color: var(--one-HOVER1);
}

#nav > .user-box > h3:first-child {
    margin-right: 10px;
}

#nav > .user-box .el-dropdown-link {
    font-size: 1.17em;
    color: var(--one-BG-PRIMARY2);
    font-weight: bold;
    cursor: pointer;
}

#nav > .user-box .el-dropdown:hover {
    color: var(--one-HOVER1);
}

#nav > .column-box {
    margin: 0 80px;
    flex: 1;
    overflow-x: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#nav > .column-box .el-dropdown-link,
#nav > .column-box > a {
    font-size: 16px;
    color: var(--one-BG-PRIMARY3);
    font-weight: bold;
    cursor: default;
    text-decoration: none;
    margin-right: 20px;
    white-space: nowrap;
}

#nav > .column-box .el-dropdown-link:hover,
#nav > .column-box > a:hover {
    color: var(--one-HOVER1);
}

#main {
    /*padding-top: 90px;*/
}

/*footer*/

#footer {
    /*color: #fca703;*/
    /*background-color: rgb(231, 40, 7);*/
    background-color: rgba(238, 215, 177, 0.94);
    /*background: url("/images/background/footer_bg.png") repeat;*/

}

#footer-main {
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px 30px 10px;
    color: #53504c;
    /*color: inherit !important;*/
}

#footer .footer-icon {
    width: 20px;
}

#footer-main h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

#footer .f1 {
    flex: 1;
    border-right: 1px solid #999;
}

#footer .f1 > div {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    align-items: center;
    margin-bottom: 15px;
}

#footer .f1 > div > div:first-child {
    width: 40px;
}

#footer .f1 > div > div:last-child {
    flex: 1;
    text-align: left;
}

#footer .f2 {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    padding-right: 70px;
}

#footer .f2 a,
#footer .f3 a,
#footer .f4 a {
    margin-bottom: 10px;
    font-size: 14px;
    transition: .5s ease;
}

#footer .f2 a:hover,
#footer .f3 a:hover,
#footer .f4 a:hover {
    color: #b5a6a6;
}

#footer .f3 {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    padding-right: 70px;
}

#footer .f4 {
    display: flex;
    flex-direction: column;
    padding: 0 50px;
}

#footer-bt {
    height: 57px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #fff;
}

#footer-bt a {
    text-decoration: none;
    color: inherit !important;
}

#footer .f5 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 30px;
    align-items: center;
}

#footer .f5 > img {
    width: 120px;
    margin-bottom: 10px;
}

#footer .f5 > p {
    font-size: 14px;
    text-align: center;
}