@charset "UTF-8";

/* 共用 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: rgba(255, 243, 180, 1);
}

a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
}

/*对360智脑功能处理*/
#ai-assist-root {
    position: fixed;
}

/* 页面配置 */
body {
    font-size: 1.5rem;
    font-family: MicrosoftYaHei;
    background-color: #253953;
    overflow-x: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
}

body > div:first-child {
    width: 100%;
    margin: 0 auto;
    min-width: 1500px;
}

@media (max-width: 1170px) {
    body {
        overflow-x: scroll;
    }
}

.container-fluid {
    width: 100%;
}

/* 头部区 */
header {
    position: relative;
    background-image: url("../images/header-subpage-bg.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center top;
    height: 52.6953125rem;
}

.page {
    background-image: url("../images/header-bg.png");
}

/* 头部区>导航栏 */
nav {
    background-image: url("../images/nav-bg.png");
    background-position: center bottom;
    background-repeat: repeat-x;
    background-size: 100% 100%;
    height: 6rem;
    width: 100%;
}

nav > ul {
    width: 75%;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    height: 100%;
    justify-content: center;
    align-items: center;
}

nav > ul > li {
    height: 100%;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
}

nav > ul > li.icon {
    height: 100%;
    width: 8rem;
}

nav > ul > li.icon > a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav > ul > li.icon > a > img {
    height: 100%;
    padding: 0.5rem 0;
}

nav > ul > li.icon > a > img:hover {
    transform: scale(1.13);
}

nav > ul > li.menu {
    flex: 1;
    height: 100%;
    padding: 0 2rem;
}

nav > ul > li.menu > a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

nav > ul > li.menu > a:hover {
    background-image: url("../images/menu-bg.png");
    background-position: center bottom;
    background-repeat: repeat-x;
    background-size: auto 100%;
    font-weight: bold;
}

nav > ul > li.person {
    display: flex;
    height: 100%;
    font-size: 1rem;
}

nav > ul > li.person > div {
    display: none;
}

/* 登录注册 */
nav > ul > li.person > .login-register.active {
    color: white;
    width: 6rem;
    display: flex;
    flex-flow: row;
    justify-content: center;
}

nav > ul > li.person > .login-register span {
    color: white;
    cursor: pointer;
}

nav > ul > li.person > .login-register span:hover {
    color: #f0c44c;
}

nav > ul > li.person > .login-register a {
    color: white;
}

nav > ul > li.person > .login-register a:hover {
    color: #f0c44c;
}

/* 已经登录 */
nav > ul > li.person > .login.active {
    width: 13.5rem;
    display: flex;
    flex-flow: row;
    justify-content: center;
    color: white;
}

nav > ul > li.person > .login > a {
    color: white;
}

nav > ul > li.person > .login > .customer {
    color: #f0c44c;
    max-width: 10rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 内容区 */
.mainstay {
    position: relative;
    /* 设置最小高度保持布局的合理 */
    min-height: 90rem;
    width: 100%;
    background-image: url("../images/main-bg.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: -23.55rem;
    padding-bottom: 3rem;
}

/* 彩虹背景 */
.mainstay > .rainbow {
    position: absolute;
    height: 18.489583rem;
    width: 100%;
    background-image: url("../images/rainbow-bg.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
    top: 10.2rem;
}

/* 脚注区 */
footer {
    position: relative;
    background-image: url("../images/gold-line-bg.png"), url("/assets/img/footer-bg.png");
    background-repeat: repeat-x, repeat-x;
    background-position: center top, center top;
    background-size: 100%, cover;
    height: 12rem;
    width: 100%;
}

footer > div {
    display: flex;
    flex-flow: column;
    width: 75%;
    margin: auto auto;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    color: white;
}

footer > div > div {
    padding-bottom: 0.8rem;
}

footer > div a {
    color: white;
}

footer > div .separator {
    font-size: 0.7rem;
    vertical-align: top;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

footer > div > .provision {
    display: flex;
    flex-flow: row;
    margin: 0 auto;
}

footer > div > .prompt {
    display: flex;
    flex-flow: row;
    margin: 0 auto;
}

footer > div > .filings {
    display: flex;
    flex-flow: row;
    margin: 0 auto;
}

footer > div > .filings > .ga > a > img {
    vertical-align: top;
    width: 0.8rem;
    margin-right: 0.25rem;
}

