body {
    background: #000 url(../img/indexBg.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center top;
}
body {
    height: 100vh;
}
body {
    background-image: url(../img/indexBg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center top;
}
#app {
    display: flex;
    flex-direction: column;
}
.main {
    flex: 1;
}
.inner {
    width: 100%;
    height: 130px;
    margin: 0 auto;
    display: flex;
}
.logo {
    display: flex;
    align-items: center;
    height: 90px;
    margin: 20px 0;
}

.container {
    /* margin-bottom: 40px; */
}
.notice-box {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    background: #4B0000;
    overflow: hidden;
}
.notice-box2 {
    background: #001039;
}
.marquee {
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 18px;
    color: #FFE761;
    line-height: 50px;
    animation: roll 10s linear infinite;
    white-space: nowrap;
}
.tableBar {
    display: flex;
    width: 100%;
    height: 50px;
    background: #73300F;
}
.tableBar2 {
    background: #0F2A68;
}
.navBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0 14px;
}
.TableLeft {
    display: flex;
    align-items: center;
    flex: 1;
}
.TableLeft div,
.TableLeft p {
    padding: 0 10px;
    cursor: pointer;
    opacity: 1;
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
}
.TableLeft p:hover {
    color: #ff0500;
}
.TableLeft .atev {
    font-size: 16px;
    font-family: PingFang SC-Medium, PingFang SC;
    font-weight: bold;
    color: #ff0500;
}
.TableRight {
    width: 230px;
    display: flex;
}
.TableRight .input_p {
    width: 160px;
    height: 28px;
    background: #F1E3D8;
    border-radius: 3px;
    margin-right: 10px;
}
.TableRight .input_p input {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    background: none;
    padding: 0 12px;
}
.TableRight .btn_p {
    width: 60px;
    height: 28px;
    background: #CD0000;
    border-radius: 3px;
    opacity: 1;
    line-height: 28px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
}
.TableRight .btn_p2 {
    background: #D34C13;
}
.float-left {
    position: fixed;
    left: 20px;
    bottom: 200px;
    width: 310px;
    height: 343px;
    background-image: url('../img/floatDownloadBg.png');
    background-repeat: no-repeat;
    background-size: 310px 343px;
    z-index: 99;
}
.float-left .hot-zone {
    position: absolute;
    bottom: 62px;
    left: 78px;
    width: 155px;
    height: 56px;
}
.float-left2 {
    background-image: url('../img/floatDownloadBg2.png');
}
@keyframes roll {
    0% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(-100%);
    }
}