body,
html {
    width: 100%;
    height: auto;
    /* overflow: hidden; */
    position: relative;
}

body {
    opacity: 0;
}

body.on {
    opacity: 1;
}

html {
    font-size: 100px;
}

* {
    font-family: Microsoft YaHei, '微软雅黑';
}

body::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, #000848 10%, #0031A7 50%, #00063C 90%); */
    background: #fff;
    z-index: -1;
}


body:not([class*=isIE]) * {
    /* cursor: none !important; */
}

.cursor-inner {
    position: relative;
    width: 0;
    height: 0;
    -webkit-transition: transform .3s, -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -moz-transition: transform .3s, -webkit-transform .3s;
    -ms-transition: transform .3s, -webkit-transform .3s;
    -o-transition: transform .3s, -webkit-transform .3s;
}

.cursor {
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-5rem);
    -ms-transform: translateY(-5rem);
    transform: translateY(-5rem);
    display: block;
    width: 0;
    height: 0;
    border-radius: 100%;
    pointer-events: none;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.cursor__circle,
.cursor__point {
    position: absolute;
    top: -0.8rem;
    left: -0.8rem;
    width: 1.6rem;
    height: 1.6rem;
}

.cursor__point {
    border-radius: 100%;
    background-color: hsla(0, 0%, 100%, .1);
    border: 0.05rem solid hsla(0, 0%, 100%, .3);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.cursor i {
    display: block;
}

.cursor__circle {
    opacity: 0;
    border-radius: 100%;
    border: 0.05rem solid #fff;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.cursor__circle,
.cursor__point {
    /* position: absolute;
    top: -0.8rem;
    left: -0.8rem;
    width: 1.6rem;
    height: 1.6rem; */
    position: absolute;
    top: -0.2rem;
    left: -0.2rem;
    width: 0.4rem;
    height: 0.4rem;
    border: 1px solid #fff;
}

.cursor__circle-2 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.cursor.active .cursor__circle,
.cursor.manual-active .cursor__circle {
    animation-name: circle-repeat-2;
}

.cursor.active .cursor__point,
.cursor.manual-active .cursor__point {
    background-color: hsla(0, 0%, 100%, .4);
    transform: scale(.2);
}

@keyframes circle-repeat-2 {
    0% {
        opacity: 1;
        transform: scale(0);
    }

    30% {
        opacity: 1;
        transform: scale(1);
    }

    60% {
        opacity: 0;
        transform: scale(2);
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
    }

    100% {
        opacity: 0;
        transform: scale(3);
        -webkit-transform: scale(3);
        -moz-transform: scale(3);
        -ms-transform: scale(3);
        -o-transform: scale(3);
    }
}

/* *********************导航********************* */
.nav {
    width: 100%;
    position: absolute;
    z-index: 50;
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
    padding: 0.4rem 2.8rem;
    padding-right: 2.4rem;
    padding-bottom: 0.4rem;
    /* background-color: rgb(255 255 255 / 50%); */
}

.nav::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FFFFFF 0%, #D0E8FB 49%, #FFFFFF 100%);
}

.nav.on {
    opacity: 0;
}

.nav>span {
    width: auto;
    max-width: 20%;
    cursor: pointer;
}

.nav>ul {
    /* width: 65%; */
    /* width: 84%; */
    align-items: center;
    justify-content: space-between;
}

.nav>ul>li {
    font-size: .18rem;
    margin-left: .6rem;
    cursor: pointer;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.nav>ul>li:hover,
.nav>ul>li.on {
    font-weight: bold;
}

.nav>ul>li>a {
    color: #333;
    /* border-bottom: 1px solid transparent; */
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    /* transform: translateY(0.15rem); */
    /* padding-bottom: 0.1rem; */
    cursor: pointer;
}

.nav>ul>li>a>i {
    color: #fff;
    font-size: .24rem;
    display: inline-block;
}

.nav>ul>li>a:hover,
.nav>ul>li.on>a {
    /* border-bottom: 1px solid #333; */
    font-weight: bold;
}

.sj_liuyan {
    /* width: 2.5rem; */
    width: 230px;
    position: fixed;
    z-index: 50;
    bottom: 1%;
    right: 0.4rem;
    min-width: 230px;
    cursor: pointer;
}

@keyframes shangxia {
    0% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

    100% {
        transform: translateY(-10%);
        -webkit-transform: translateY(-10%);
        -moz-transform: translateY(-10%);
        -ms-transform: translateY(-10%);
        -o-transform: translateY(-10%);
    }
}

.sj_liuyan>i {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    animation-name: shangxia;
    animation-delay: 0s;
    animation-duration: .8s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.sj_liuyan>u {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: .5s;
    opacity: 0;
}

.sj_liuyan>p {
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    line-height: 1.5;
    transition: .5s;
    opacity: 0;
}

.sj_liuyan:hover>p,
.sj_liuyan:hover>u {
    opacity: 1;
}

/* 底层 */
#sw1 {
    width: 100%;
    height: 100%;
    position: relative;
}

#sw1>div>div.swiper-slide {
    width: 100%;
    height: 100%;
    /* opacity: 0 !important; */
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    z-index: -1;
}

#sw1>div>div.swiper-slide-active {
    opacity: 1 !important;
    z-index: 20;
}

.qie {
    position: absolute;
    right: 1.1rem;
    top: 0%;
    height: 100%;
    width: auto;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    /* display: none; */
}


.qie>div {
    transform: translateX(-0.09rem);
    -webkit-transform: translateX(-0.09rem);
    -moz-transform: translateX(-.09rem);
    -ms-transform: translateX(-.09rem);
    -o-transform: translateX(-.09rem);
    width: 0.23rem;
}

.qie>ul {
    margin: 0.15rem 0;
}

.qie>ul>li {
    font-size: .18rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0.2rem;
    height: 0.3rem;
}

.qie>ul>li:last-child {
    margin-bottom: 0;
}

.qie>ul>li>p {
    color: #fff;
    opacity: .5;
    transition: .5s;
}

.qie>ul.on>li>p {
    color: #333;
}

.qie>ul>li.on>p {
    opacity: 1;
}

.qie>ul>li>span {
    width: 0.4rem;
    height: 0.4rem;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-left: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(.3);
    transition: .5s;
}

.qie>ul>li>span>i {
    width: 0.15rem;
    height: 0.15rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFB351 0%, #F08541 100%);
    transition: .5s;
    opacity: 0;
}

.qie>ul>li.on>span {
    transform: scale(1);
}

.qie>ul>li.on>span>i {
    opacity: 1;
    transition-delay: .5s;
}

.pad {
    padding-left: 3.6rem;
    padding-right: 3.6rem;
}

@keyframes light {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.ma_bt {
    margin-bottom: 0 !important;
}

.sj_video,
.sj_video2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
    transform: scale(0);
}

.sj_video.on,
.sj_video2.on {
    transform: scale(1);
}

.sj_video>div,
.sj_video2>div {
    position: relative;
    width: 90%;
    z-index: 10;
}

.sj_video>div>video,
.sj_video2>div>video {
    width: 100%;
}

.sj_video>div>i,
.sj_video2>div>i {
    cursor: pointer;
    width: 0.5rem;
    height: 0.5rem;
    background-color: rgb(102 98 98 / 50%);
    font-size: .28rem;
    color: #fff;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sj_video>div>i:hover,
.sj_video2>div>i:hover {
    background-color: rgb(33 33 33 / 100%);
}

.sj_video>i,
.sj_video2>i {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: .3;
    top: 0%;
    left: 0%;
}

.bg_lf {
    position: absolute;
    bottom: 0;
    left: 2.4rem;
    width: 0.4rem;
}

.bg_rt {
    position: absolute;
    bottom: 0;
    right: 2.4rem;
    width: 0.4rem;
}


.pc-page__aside[data-v-91586072],
.pc-page__aside {
    display: none !important;
}

/** ---------------------首页------------------- **/
.top1 {
    padding: 1.75rem 3.6rem .75rem 3.6rem;
}

.sj_top1 {
    flex-direction: column;
    display: flex;
}

.sj_top1>b {
    width: 3.35rem;
    margin: 0 auto;
}

.sj_top1>span {
    margin: 0 auto;
    margin-top: .5rem;
    width: 90%;
}

.sj_top1>p {
    font-size: .2rem;
    text-align: center;
    font-weight: bold;
    margin-top: .18rem;
    letter-spacing: .03rem;
}

.sj_top1>i {
    font-size: .13rem;
    margin-top: .1rem;
    text-align: center;
    letter-spacing: .03rem;
}

a.more {
    margin: .9rem auto 0 auto;
    padding: .1rem;
    background: linear-gradient(-90deg, #3059F9 0%, #59A3F6 100%);
    border-radius: 0.44rem;
    padding-left: .7rem;
    font-size: .24rem;
    color: #fff;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    transition: .5s;
}

a.more>i {
    width: .7rem;
    height: .7rem;
    border-radius: 50%;
    background: #fff;
    padding: .1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    margin-left: .7rem;
}

a.more:hover>i {
    margin-left: 1rem;
}

.sj_top1>em {
    margin-top: 1.35rem;
    text-align: center;
    font-size: .24rem;
    letter-spacing: .03rem;
}

/** ---------------------简介/亮点------------------- **/
.sj_top2 {
    position: relative;
    z-index: 20;
    padding: .7rem 1.6rem;
}

.sj_top2>ul {
    position: absolute;
    top: .5rem;
    left: 19%;
    z-index: 15;
    display: flex;
    justify-content: space-between;
    width: 62%;
    padding: .35rem 1rem;
    background: linear-gradient(0deg, rgb(254 254 255 / 70%) 0%, rgb(243 245 248 / 70%) 100%);
    box-shadow: 0rem 0rem 0.3rem 0rem rgba(51, 51, 51, 0.1);
    border-radius: 0.59rem;
    border: 1px solid #FFFFFF;
    opacity: 0;
    transition: .5s;
}

.sj_top2>ul.on {
    position: fixed;
    top: .1rem;
    z-index: 20;
    opacity: 1;
}

.sj_top2>ul>li {
    font-size: .2rem;
    transition: .5s;
    cursor: pointer;
}

.sj_top2>ul>li:hover,
.sj_top2>ul>li.on {
    color: #3870F8;
}

.sj_top2>div {
    display: flex;
    justify-content: space-between;
}

.sj_top2>div>.t2_d1 {
    width: 39%;
}

.sj_top2>div>.t2_d1>div {
    position: sticky;
    top: 1.9rem;
    left: 0;
}

.sj_top2>div>.t2_d1>div>b {
    font-size: .3rem;
    font-weight: bold;
    margin-bottom: .7rem;
}

.sj_top2>div>.t2_d1>div>i {
    font-size: .2rem;
    margin-bottom: .6rem;
    line-height: 1.5;
}

.sj_top2>div>.t2_d1>div>a {
    margin-top: 0;
}

.sj_top2>div>.t2_d1>div>a>i {}

.sj_top2>div>.t2_d2 {
    width: 49%;
}

.sj_top2>div>.t2_d2>div {
    position: relative;
    margin-bottom: .23rem;
}

.sj_top2>div>.t2_d2>div:nth-child(2)>p {
    background: #04C9D8;
}

.sj_top2>div>.t2_d2>div:nth-child(3)>p {
    background: #B26EFF;
}

.sj_top2>div>.t2_d2>div:nth-child(4)>p {
    background: #007EFF;
}

.sj_top2>div>.t2_d2>div:nth-child(2n) {
    transform: translateX(-.95rem);
}

.sj_top2>div>.t2_d2>div>p {
    padding: .6rem .2rem .7rem 1.9rem;
    border-radius: 0.5rem 0rem 1rem 0rem;
    background: #6576FA;
    position: relative;
    overflow: hidden;
}

.sj_top2>div>.t2_d2>div>p::after {
    content: '';
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 50%;
    position: absolute;
    background: #EA9AFF;
    top: -1.55rem;
    left: -1.25rem;
}

.sj_top2>div>.t2_d2>div>p>b {
    font-size: .38rem;
    color: #fff;
}

.sj_top2>div>.t2_d2>div>p>i {
    font-size: .2rem;
    margin-top: .2rem;
    line-height: 1.8;
    color: #fff;
}

.sj_top2>div>.t2_d2>div>i {
    /* width: 3.1rem; */
    /* height: 3.1rem; */
    /* border-radius: 50%; */
    /* position: absolute; */
    /* background: deeppink; */
}

.sj_top2>div>.t2_d2>div:nth-child(2)>p::after {
    background: #F98164;
}

.sj_top2>div>.t2_d2>div:nth-child(3)>p::after {
    background: #FAD57D;
}

.sj_top2>div>.t2_d2>div:nth-child(4)>p::after {
    background: #04C9D8;
}

.sj_top2>div>.t2_d2>div:nth-child(2n)>p::after {
    bottom: -1.55rem;
    top: auto;
    left: auto;
    right: -1.15rem;
}

.sj_top2>div>.t2_d2>div>span {
    width: 1.9rem;
    position: absolute;
    top: .71rem;
    right: -.46rem;
}

.sj_top2>div>.t2_d2>div:nth-child(2n)>span {
    top: .5rem;
    right: auto;
    left: -.75rem;
}

.sj_top2>div>span {
    position: absolute;
    width: 2.4rem;
    top: 5.7rem;
    right: -1.2rem;
}

/** ---------------------精彩------------------- **/
h3.bt {
    display: flex;
    align-items: center;
    justify-content: center;
}

h3.bt>b {
    background: -webkit-linear-gradient(333deg, #1F7CD8 30%, #AD99D9 99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: .48rem;
    font-weight: bold;
}

h3.bt>img {
    width: 2.75rem;
    margin-right: .2rem;
}

h3.bt>img:last-child {
    margin-left: .2rem;
    margin-right: 0;
}

.sj_top3 {
    padding: .8rem 2.85rem;
    position: relative;
    /* overflow-x: hidden; */
    z-index: 10;
}

.sj_top3>span {
    width: 7.3rem;
    position: absolute;
    left: -2.8rem;
    top: -1rem;
}

.sj_top3>i {
    width: 7.3rem;
    position: absolute;
    right: -5rem;
    top: 4.75rem;
}

.sj_top3>img {
    width: 100%;
    margin-top: .5rem;
    position: relative;
    z-index: 10;
}

.sj_top3>em {
    width: 1.6rem;
    position: absolute;
    top: 1.8rem;
    left: 1.8rem;
    z-index: 5;
}

.sj_top3>div {
    width: 4.75rem;
    position: absolute;
    bottom: .55rem;
    right: 2.5rem;
    z-index: 15;
}

.sj_top3>div>img {}

.sj_top3>div>p {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: .25rem;
    right: .88rem;
    cursor: pointer;
}

.sj_top3>div>p>i {
    font-size: .3rem;
    margin-right: .25rem;
}

.sj_top3>div>p>span {
    width: .85rem;
    transition: .5s;
}

.sj_top3>div>p:hover>span {
    transform: translateX(.1rem);
}

/** ---------------------金句------------------- **/
.sj_top5 {
    padding: .8rem 0;
}

.sj_top5>div {
    padding: .4rem 0;
    margin-top: .4rem;
}

.sj_top5>div .swiper-slide {
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.sj_top5>div .swiper-slide:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}


/** ---------------------回顾------------------- **/
.sj_top8 {
    padding: 0 1.55rem;
}

.sj_top8>ul {
    margin-top: .5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sj_top8>ul>li {
    width: 24%;
    padding: .25rem .25rem .4rem .25rem;
    border-radius: 0.5rem 0rem 1rem 0rem;
    background: #6576FA;
    cursor: pointer;
}

.sj_top8>ul>li:nth-child(3) {
    background: #B26EFF;
}

.sj_top8>ul>li:nth-child(4) {
    background: #007AFF;
}

.sj_top8>ul>li:nth-child(2) {
    background: #04C9D8;
}

.sj_top8>ul>li>span {
    overflow: hidden;
    border-radius: 0.5rem 0rem .5rem 0rem;
}

.sj_top8>ul>li>span>img {
    transition: .5s;
}

.sj_top8>ul>li:hover>span>img {
    transform: scale(1.2);
}

.sj_top8>ul>li>b {
    margin-top: .35rem;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    font-size: .36rem;
    color: #fff;
    font-weight: bold;
}

.sj_top8>ul>li>b>img {
    width: 1.5rem;
    margin-right: .2rem;
}

.sj_top8>ul>li>p {
    margin-top: .3rem;
    font-size: .24rem;
    color: #fff;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.sj_top8>ul>li>p>img {
    margin-left: .25rem;
    width: .65rem;
    transition: .5s;
}

.sj_top8>ul>li:hover>p>img {
    transform: translateX(.1rem);
}

.sj_top8>ul>li:hover>p>img {}

/** ---------------------议程------------------- **/
.sj_top4 {
    padding: .7rem 1.6rem .4rem 1.6rem;
    position: relative;
}

.sj_top4>div {
    margin-top: .5rem;
    padding: .7rem 1.25rem;
    background: linear-gradient(180deg, rgba(86, 194, 239, 0.3) 1%, rgba(220, 241, 255, 0) 100%);
    border-radius: 1rem;
}

.sj_top4>div>ul {
    display: flex;
    justify-content: center;
}

.sj_top4>div>ul>li {
    padding: .15rem .85rem;
    border-radius: 0.48rem;
    border: 1px solid #3870F8;
    font-size: .3rem;
    font-weight: bold;
    color: #3870F8;
    transition: .5s;
    opacity: .5;
    margin-right: .4rem;
    position: relative;
    cursor: pointer;
}

.sj_top4>div>ul>li::after {
    content: '';
    width: 0;
    height: 0.06rem;
    background: linear-gradient(-90deg, #007AFF 0%, #CE57FF 100%);
    border-radius: 0.03rem;
    bottom: -.1rem;
    left: 20%;
    transition: .5s;
}

.sj_top4>div>ul>li.on {
    opacity: 1;
}

.sj_top4>div>ul>li.on::after {
    width: 60%;
}

.sj_top4>div>div {
    margin-top: .7rem;
    position: relative;
}

.sj_top4>div>div>ul {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    padding: .3rem 0rem .3rem .75rem;
    max-height: 5rem;
    overflow: auto;
    transition: .5s;
}

.sj_top4>div>div>ul::before {}

.sj_top4>div>div>ul.on {
    position: relative;
    z-index: 10;
    opacity: 1;
}

.sj_top4>div>div>ul::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
}

.sj_top4>div>div>ul::-webkit-scrollbar-thumb {
    background-color: #1CC2FF;
    border: 5px solid #1CC2FF;
    border-radius: 10px;
}

.sj_top4>div>div>ul::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 10px;
}

.sj_top4>div>div>ul>li {
    display: flex;
    /* align-items: center; */
    margin-bottom: .35rem;
    position: relative;
    z-index: 10;
}

.sj_top4>div>div>ul>li::before {
    width: 0.04rem;
    height: 170%;
    background: #3059F9;
    border-radius: 0.02rem;
    top: -20%;
    left: 0.15rem;
    z-index: 5;
}

.sj_top4>div>div>ul>li>i {
    width: 0.34rem;
    height: 0.34rem;
    background: linear-gradient(0deg, #744DFE 0%, #FD5D9F 100%);
    border-radius: 50%;
    margin-bottom: .35rem;
    position: relative;
    z-index: 10;
    transform: translateY(.03rem);
}

.sj_top4>div>div>ul>li>em {
    margin: 0 .35rem;
    font-weight: bold;
    font-size: .2rem;
    width: 13%;
    margin-bottom: .35rem;
    padding-top: .1rem;
}

.sj_top4>div>div>ul>li>p {
    position: relative;
    width: 75%;
    /* margin-bottom: .4rem; */
    /* display: flex; */
    align-items: flex-end;
}

.sj_top4>div>div>ul>li>p>b {
    font-size: .26rem;
    font-weight: normal;
    color: #3870F8;
    line-height: 1.5;
}

.sj_top4>div>div>ul>li>p>i {
    font-size: .2rem;
    /* font-weight: bold; */
    position: relative;
    /* bottom: -.35rem; */
    line-height: 1.5;
    margin-top: .1rem;
}

.sj_top4>div>div>ul>li>p>em {
    font-size: .18rem;
    color: #3870F8;
    margin-left: .4rem;
}

.sj_top4>div>span {
    width: 1.9rem;
    position: absolute;
    bottom: .37rem;
    left: .87rem;
    z-index: 15;
}

/** ---------------------嘉宾------------------- **/
.sj_top5 {}

/** ---------------------展区------------------- **/
.sj_top6 {
    padding: .8rem 0;
}

.sj_top6>ul {
    padding: 0.5rem 2.6rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: .2rem;
}

.sj_top6>ul>li {
    transition: .5s;
    font-size: .24rem;
    position: relative;
    padding-bottom: .15rem;
    font-weight: bold;
    cursor: pointer;
}

.sj_top6>ul>li::after {
    background: linear-gradient(-90deg, #007AFF 0%, #CE57FF 100%);
    border-radius: 0.03rem;
    width: 0%;
    height: .06rem;
    transition: .5s;
    bottom: 0;
    left: 0;
}

.sj_top6>ul>li.on {
    color: #3870F8;
}

.sj_top6>ul>li.on::after {
    width: 100%;
}

.sj_top6>div {
    position: relative;
}

.sj_top6>div>div {
    transition: .5s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
}

.sj_top6>div>div.on {
    z-index: 10;
    position: relative;
    opacity: 1;
}

.sj_top6>div>div>p {
    padding: 1.7rem 0 .65rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.sj_top6>div>div>b {
    display: none;
}

.sj_top6>div>div>p::after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .3);
}

.sj_top6>div>div>p>b {
    font-size: .48rem;
    color: #fff;
    position: relative;
    z-index: 10;
}

.sj_top6>div>div>p>i {
    font-size: .24rem;
    font-weight: bold;
    margin: .5rem 0 .9rem 0;
    color: #fff;
    position: relative;
    z-index: 10;
}

.sj_top6>div>div>p>a {
    margin: 0;
    position: relative;
    z-index: 10;
}

.sj_top6>ol {
    margin-top: .35rem;
    padding: 0 2.65rem;
    display: flex;
    justify-content: space-between;
}

.sj_top6>ol>li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sj_top6>ol>li>span {
    width: 1.23rem;
    margin-right: .25rem;
}

.sj_top6>ol>li>p {}

.sj_top6>ol>li>p>b {
    font-size: .36rem;
    color: #3870F8;
}

.sj_top6>ol>li>p>i {
    line-height: 1.7;
    margin-top: .3rem;
    font-size: .14rem;
    font-weight: bold;
}

/** ---------------------媒体------------------- **/
.sj_top9 {
    padding: .8rem 1.3rem 0 1.3rem;
}

.sj_top9>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: .5rem;
}

.sj_top9>ul>li {
    width: 13%;
    height: .9rem;
    box-shadow: 0rem 0rem 0.3rem 0rem rgba(51, 51, 51, .1);
    border-radius: .06rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .1rem;
    margin-top: 1.5%;
}

.sj_top9>ul>li>img {
    max-height: 80%;
}

.sj_top9>ul>li:hover {}

.sj_top9>ul>li:hover>img {}

/** ---------------------新闻------------------- **/
.sj_top7 {
    padding: 1.5rem 2.1rem 0 2.1rem;
}

.sj_top7>div {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
}

.sj_top7>div>div {
    width: 45%;
    cursor: pointer;
}

.sj_top7>div>div>span {
    overflow: hidden;
}

.sj_top7>div>div>span>img {
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.sj_top7>div>div:hover>span>img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.sj_top7>div>div>b {
    margin-top: .35rem;
    font-size: .2rem;
}

.sj_top7>div>div>p {
    display: flex;
    justify-content: space-between;
    margin-top: .15rem;
    align-items: center;
}

.sj_top7>div>div>p>i {
    font-size: .16rem;
    color: #999;
}

.sj_top7>div>div>p>a {
    font-size: .16rem;
    color: #999;
    transition: .5s;
}

.sj_top7>div>div>p>a:hover {
    color: #1CC2FF;
}

.sj_top7>div>div:last-child {
    width: 51%;
    height: 5rem;
}

.sj_top7>div>ul {
    width: 51%;
}

.sj_top7>div>div .swiper-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .25rem 0;
    cursor: pointer;
    border-bottom: 1px solid #999;
}

.sj_top7>div>div .swiper-slide:last-child {
    padding-bottom: 0;
    border: none;
}

.sj_top7>div>div .swiper-slide>i {
    width: .8rem;
    border-radius: .1rem;
    overflow: hidden;
}

.sj_top7>div>div .swiper-slide>p {
    position: relative;
    width: 87%;
}

.sj_top7>div>div .swiper-slide>p>b {
    font-size: .2rem;
    transition: .5s;
    line-height: 1.3;
}

.sj_top7>div>div .swiper-slide:hover>p>b {
    color: #1CC2FF;
}

.sj_top7>div>div .swiper-slide>p>i {
    margin-top: .15rem;
    color: #999;
    font-size: .16rem;
}

.sj_top7>div>div .swiper-slide>p>a {
    font-size: .16rem;
    color: #999;
    transition: .5s;
    position: absolute;
    right: 0;
    bottom: 0;
}

.sj_top7>div>div .swiper-slide>p>a:hover {
    color: #1CC2FF;
}

.sj_top7 .swzxscol {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.1rem;
    position: absolute;
    bottom: -.4rem;
    right: 0;
    z-index: 10;
    width: 56%;
}

.sj_top7 .swzxscol>span {
    width: .1rem;
    height: .1rem;
    opacity: 1;
    background-color: #333;
    margin: 0 .05rem;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.sj_top7 .swzxscol>span.swiper-pagination-bullet-active {
    width: .5rem;
    background-color: #333;
}

/** ---------------------底部1------------------- **/
.sj_top10 {
    padding: 1.8rem 1.9rem 0.4rem 1.9rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
}

.sj_top10>div {}

.sj_top10>.t10_d1 {
    width: 23%;
}

.sj_top10>.t10_d1.t10_d11 {
    width: 55%;
}

.sj_top10>.t10_d1>b {
    font-weight: bold;
    font-size: .4rem;
    line-height: 2;
    text-align: center;
}

.sj_top10>.t10_d1>b>i {
    display: inline;
    color: #3870F8;
    font-weight: bold;
}

.sj_top10>.t10_d1>div {
    margin-top: .5rem;
    display: flex;
    align-items: center;
    padding-left: .15rem;
    justify-content: center;
}

.sj_top10>.t10_d1>div>span {
    width: .52rem;
    margin-right: .2rem;
}

.sj_top10>.t10_d1>div>p {}

.sj_top10>.t10_d1>div>p>i {
    font-size: .16rem;
    font-weight: bold;
}

.sj_top10>.t10_d1>div>p>b {
    font-size: .3rem;
    font-weight: bold;
    margin-top: .25rem;
}

.sj_top10>.t10_d2 {
    width: 21%;
    position: relative;
    padding: 1rem 0;
}

.sj_top10>.t10_d2>span {
    width: 3rem;
    position: absolute;
    left: .5rem;
    top: -.3rem;
}

.sj_top10>.t10_d2>ul {
    display: flex;
    justify-content: flex-end;
}

.sj_top10>.t10_d2>ul>li {
    margin-left: .25rem;
}

.sj_top10>.t10_d2>ul>li>i {
    width: 1.4rem;
    padding: .1rem;
    margin: 0 auto;
    background: #fff;
}

.sj_top10>.t10_d2>ul>li>p {
    font-size: .18rem;
    text-align: center;
    margin-top: .15rem;
}

.an2 {
    animation-delay: .2s;
}

.an3 {
    animation-delay: .3s;
}

.an4 {
    animation-delay: .4s;
}

.an5 {
    animation-delay: .5s;
}

.an6 {
    animation-delay: .6s;
}

.an7 {
    animation-delay: .7s;
}

.an8 {
    animation-delay: .8s;
}

.an9 {
    animation-delay: .9s;
}

.an10 {
    animation-delay: 1s;
}

.an11 {
    animation-delay: 1.1s;
}

.an12 {
    animation-delay: 1.2s;
}

.an13 {
    animation-delay: 1.3s;
}

.an14 {
    animation-delay: 1.4s;
}

/** ---------------------底部2------------------- **/
.foot {
    padding: .9rem 1.6rem 2.4rem 1.6rem;
    background: url(../img/foot_bg.png) no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.foot>div {
    width: 27%;
}

.foot>div>span {
    margin-bottom: .7rem;
}

.foot>div>div {
    /* padding-left: .2rem; */
    display: flex;
    align-items: center;
    margin-bottom: .1rem;
}

.foot>div>div>i {
    width: .3rem;
    margin-right: .2rem;
}

.foot>div>div:nth-child(2)>i {
    transform: translateY(-.15rem);
}

.foot>div>div>p {
    font-size: .18rem;
}

.foot>div>div>p>b {
    font-size: .24rem;
    font-weight: bold;
    margin-bottom: .3rem;
}

.foot>div>div>p>i {
    font-size: .24rem;
    font-weight: bold;
    display: inline;
}

.foot>ul {
    width: 65%;
    display: flex;
    justify-content: space-around;
}

.foot>ul>li {
    width: 40%;
}

.foot>ul>li>div {
    margin-bottom: .5rem;
}

.foot>ul>li>div:last-child {
    margin-bottom: 0;
}

.foot>ul>li>div:last-child {}

.foot>ul>li>div>b {
    font-size: .23rem;
    padding-bottom: .1rem;
    border-bottom: 1px solid #333;
    margin-bottom: .15rem;
    font-weight: bold;
}

.foot>ul>li>div>p {}

.foot>ul>li>div>p>i {
    margin-bottom: .2rem;
    font-size: .19rem;
}

.foot>ul>li>div>p>i:last-child {
    margin-bottom: 0;
}

.sj_nav,
.ph_nav {
    display: none;
}

@media screen and (max-height:940px) {}

@media screen and (max-height:940px) and (min-width:1450px) {}

@media screen and (max-width:1440px) {

    .nav>ul>li {
        margin-left: .7rem;
    }

    html {
        font-size: 75px;
    }
}

@media screen and (max-width:1366px) {
    html {
        font-size: 70px;
    }

    .nav>span {
        width: 18%;
    }

    p.jj {
        font-size: 16px;
    }
}

@media screen and (max-width:1280px) {}

@media screen and (max-width:768px) {
    html {
        font-size: 50px;
    }

    .nav {
        display: none;
    }

    .ph_nav {
        display: block;
    }

    .sj_nav {
        position: fixed;
        top: 0;
        left: 0;
        padding: 10px 30px;
        width: 100%;
        z-index: 50;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        background: rgba(0, 0, 0, .8);
    }

    .sj_nav>span {
        width: 130px;
    }

    .sj_nav>span>img {
        width: 100%;
    }

    .sj_nav>a {
        display: block;
        font-size: 18px;
    }

    #nav-icon {
        width: 28px;
        height: 26px;
        position: relative;
        transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
        transform: translateY(6px);
    }

    #nav-icon span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #fff;
        border-radius: 2px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    #nav-icon span:nth-child(1) {
        top: 0px;
        transform-origin: left center;
    }

    #nav-icon span:nth-child(2) {
        top: 8px;
        transform-origin: left center;
    }

    #nav-icon span:nth-child(3) {
        top: 16px;
        transform-origin: left center;
    }

    #nav-icon span:nth-child(1) {
        top: 0px;
        transform-origin: left center;
    }

    #nav-icon.open span:nth-child(1) {
        transform: rotate(45deg);
        top: -2px;
        left: 6px;
    }

    #nav-icon.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    #nav-icon.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 18px;
        left: 6px;
    }

    .ph_nav {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 40;
        background: rgba(0, 0, 0, 0.8);
        width: 100%;
        height: auto;
        padding: 20px 0;
        padding-top: 70px;
        transition: .5s;
        transform: translateY(-100%);
    }

    .ph_nav.on {
        transform: translateY(0%);
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
    }

    .ph_nav>p {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 10px 0;
        color: #fff;
        font-weight: 500;
    }

    @keyframes d1 {
        0% {
            transform: translateX(0px);
            -webkit-transform: translateX(0px);
            -moz-transform: translateX(0px);
            -ms-transform: translateX(0px);
            -o-transform: translateX(0px);
        }

        100% {
            transform: translateX(5px);
            -webkit-transform: translateX(5px);
            -moz-transform: translateX(5px);
            -ms-transform: translateX(5px);
            -o-transform: translateX(5px);
        }

    }

    @keyframes d2 {
        0% {
            transform: translateX(0px);
            -webkit-transform: translateX(0px);
            -moz-transform: translateX(0px);
            -ms-transform: translateX(0px);
            -o-transform: translateX(0px);
        }

        100% {
            transform: translateX(-5px);
            -webkit-transform: translateX(-5px);
            -moz-transform: translateX(-5px);
            -ms-transform: translateX(-5px);
            -o-transform: translateX(-5px);
        }
    }

    .sj_video,
    .sj_video2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 20;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .5s;
        transform: scale(0);
    }

    .sj_video.on,
    .sj_video2.on {
        transform: scale(1);
    }

    .sj_video>div,
    .sj_video2>div {
        position: relative;
        width: 80%;
        z-index: 10;
    }

    .sj_video>div>video,
    .sj_video2>div>video {
        width: 100%;
    }

    .sj_video>div>i,
    .sj_video2>div>i {
        cursor: pointer;
        width: 35px;
        height: 35px;
        background-color: rgb(102 98 98 / 50%);
        font-size: 20px;
        color: #fff;
        transition: .5s;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        -ms-transition: .5s;
        -o-transition: .5s;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sj_video>div>i:hover,
    .sj_video2>div>i:hover {
        background-color: rgb(33 33 33 / 100%);
    }

    .sj_video>i,
    .sj_video2>i {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        background-color: #333;
        opacity: .3;
        top: 0%;
        left: 0%;
    }

    .sj_top1>b {
        width: 50%;
    }

    .sj_top1>p {
        font-size: 16px;
    }

    .sj_top1>i {
        font-size: 12px;
        margin-top: 5px;
    }

    a.more {
        padding: 7px;
        border-radius: 50px;
        padding-left: 35px;
        font-size: 18px;
    }

    a.more>i {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        padding: 7px;
    }

    a.more:hover>i {
        margin-left: 30px;
    }

    .sj_top1>em {
        font-size: 18px;
    }

    .sj_top2>ul {
        display: none;
    }

    .sj_top2>div>.t2_d2>div>p>b {
        font-size: 20px;
    }

    .sj_top2>div>.t2_d2>div>p>i {
        font-size: 14px;
        margin-top: 10px;
    }

    .sj_top2>div>.t2_d1>div>b {
        font-size: 18px;
    }

    .sj_top2>div>.t2_d1>div>i {
        font-size: 14px;
    }

    .sj_top2>div>.t2_d1 {
        width: 40%;
    }

    h3.bt>b {
        font-size: 24px;
    }

    .sj_top3>div>p>i {
        font-size: 18px;
    }

    .sj_top4>div>div>ul>li>i {
        width: 15px;
        height: 15px;
        display: none;
    }

    .sj_top4>div>div>ul>li>em {
        /* margin: 0 15px; */
        font-size: 14px;
        width: 100%;
        margin: 0;
    }

    .sj_top4>div>div>ul>li>p {
        width: 100%;
        margin-bottom: 25px;
    }

    .sj_top4>div>div>ul>li>p>b {
        font-size: 18px;
    }

    .sj_top4>div>div>ul>li>p>i {
        font-size: 12px;
        bottom: -20px;
    }

    .sj_top4>div>div {
        margin-top: 0;
    }

    .sj_top4>div>div>ul>li {
        display: block;
    }

    .sj_top4>div>div>ul>li::before {
        display: none;
    }

    .sj_top6>ol>li {
        justify-content: space-between;
    }

    .sj_top6>ul>li {
        font-size: 14px;
    }

    .sj_top6>div>div>p>b {
        font-size: 20px;
    }

    .sj_top6>div>div>p>i {
        font-size: 14px;
        margin: 15px 0 30px 0;
    }

    .sj_top6>ol {
        margin-top: 20px;
        padding: 0 40px;
        flex-wrap: wrap;
    }

    .sj_top6>ol>li {
        width: 100%;
        margin-bottom: 30px;
    }

    .sj_top6>ol>li>p>b {
        font-size: 18px;
    }

    .sj_top6>ol>li>p>i {
        margin-top: 10px;
        font-size: 12px;
    }

    .sj_top8>ul>li>p {
        margin-top: 15px;
        font-size: 16px;
    }

    .sj_top8>ul>li>b {
        font-size: 20px;
    }

    .sj_top7>div>div>b {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.5;
    }

    .sj_top7>div>div>p>a,
    .sj_top7>div>div .swiper-slide>p>i,
    .sj_top7>div>div .swiper-slide>p>a,
    .sj_top7>div>div>p>i {
        font-size: 12px;
    }

    .sj_top7>div>div .swiper-slide>p>b {
        font-size: 14px;
    }

    .sj_top10>.t10_d1>b {
        font-size: 16px;
    }

    .sj_top10>.t10_d1>div>p>i {
        font-size: 12px;
    }

    .sj_top10>.t10_d1>div>p>b {
        font-size: 16px;
    }

    .foot>div>div>p>b {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .foot>div>div>p>i {
        font-size: 12px;
        line-height: 1.4;
    }

    .foot>ul>li>div>b {
        font-size: 14px;
        padding-bottom: 6px;
        margin-bottom: 10px;
    }

    .foot>ul>li>div>p>i {
        font-size: 12px;
    }
}

@media screen and (max-width:540px) {
    .top1 {
        padding: 50px 5%;
    }

    a.more {
        padding-left: 30px;
        font-size: 14px;
    }

    .sj_top2 {
        padding: 0 5%;
    }

    .sj_top2>div {
        flex-wrap: wrap;
    }

    .sj_top2>div>.t2_d1,
    .sj_top2>div>.t2_d2 {
        width: 100%;
    }

    .sj_top2>div>.t2_d1>div {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .sj_top2>div>.t2_d2>div:nth-child(2n) {
        transform: translateX(0);
    }

    .sj_top2>div>.t2_d2>div>span {
        width: 25%;
    }

    .sj_top2>div>.t2_d2>div:nth-child(2n)>span {
        top: .71rem;
        right: -.46rem;
        left: auto;
    }

    .sj_top3 {
        padding: 50px 5%;
    }

    .sj_top3>div {
        width: 40%;
        position: relative;
        bottom: auto;
        right: auto;
        margin: 0 auto;
        margin-top: 20px;
    }

    .sj_top4 {
        padding: 0 5%;
        padding-top: 50px;
    }

    .sj_top4>div {
        margin-top: 20px;
        padding: 20px;
    }

    .sj_top4>div>ul {
        margin-bottom: 20px;
    }

    .sj_top4>div>ul>li {
        font-size: 18px;
    }

    .sj_top4>div>div>ul {
        max-height: initial;
        height: auto;
        padding: 0;
    }

    .sj_top4>div>div>ul>li {
        display: block;
        border-bottom: 1px solid;
    }

    .sj_top4>div>div>ul>li>p>i {
        bottom: auto;
        position: relative;
        margin-top: 10px;
        line-height: 1.3;
    }

    .sj_top4>div>div>ul>li>p {
        display: block;
        margin-bottom: 10px;
        width: 100%;
    }

    .sj_top4>div>div>ul>li::before {
        left: 7px;
        display: none;
    }

    .sj_top6>ul {
        display: none;
    }

    .sj_top6>div {
        margin-top: 20px;
        padding: 0 5%;
    }

    .sj_top6>div>div {
        position: relative;
        opacity: 10;
        margin-bottom: 15px;
    }

    .sj_top6>div>div>b {
        display: block;
        font-size: 18px;
        text-align: center;
        color: #3870F8;
        margin-bottom: 10px;
    }

    .sj_top6>ol {
        padding: 0 5%;
    }

    .sj_top6>ol>li>span {
        display: none;
        margin: 0;
    }

    .sj_top5 {
        padding: 0 5%;
    }

    .sj_top8 {
        padding: 50px 5%;
    }

    .sj_top8>ul {
        margin-top: 20px;
    }

    .sj_top8>ul>li {
        width: 48%;
        margin-bottom: 2%;
    }

    .sj_top8>ul>li>b>img {
        width: 40%;
        margin-right: 10px;
    }

    .sj_top8>ul>li>p>img {
        margin-left: 10px;
        width: 15%;
    }

    .sj_top9 {
        padding: 0 5%;
        padding-bottom: 50px;
    }

    .sj_top9>ul>li {
        width: 48%;
        height: 50px;
    }

    .sj_top7 {
        padding: 50px 5%;
    }

    .sj_top7>div>div {
        width: 100%;
    }

    .sj_top7>div>div:last-child {
        width: 100%;
        margin-top: 20px;
        height: 150px;
    }

    .sj_top7 .swzxscol {
        bottom: -20px;
        width: 100%;
    }

    .sj_top7 .swzxscol>span {
        width: 7px;
        height: 7px;
        border-radius: 10px;
    }

    .sj_top7>div>div .swiper-slide>i {
        width: 50px;
        border-radius: 10px;
    }

    .sj_top7 .swzxscol>span.swiper-pagination-bullet-active {
        width: 25px;
    }

    .sj_top10 {
        padding: 0px 5%;
    }

    .sj_top10>.t10_d1 {
        width: 50%;
    }

    .sj_top10>.t10_d2 {
        width: 40%;
        padding: 3rem 0;
    }

    .sj_top10>.t10_d2>span {
        width: 100%;
    }

    .sj_top10>.t10_d1.t10_d11 {
        width: 100%;
        margin-bottom: 20px;
    }

    .foot {
        padding: 30px 5% 50px 5%;
    }

    .foot>div,
    .foot>ul {
        width: 100%;
    }

    .foot>ul {
        margin-top: 20px;
    }
}

#index_main {
    z-index: 10;
}

#container {
    height: auto;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: transparent;
}