/* css样式重置 */

body,
h1,
h2,
h3,
h4,
h5,
p,
dl,
dd,
ul,
ol,
form,
input,
textarea,
th,
td,
select {
    margin: 0;
    padding: 0;
}

em {
    font-style: normal;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    border: none;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border: none;
}

table tr,
table tr td {
    border: none;
}

input,
textarea {
    outline: none;
}

textarea {
    resize: none;
    overflow: auto;
}

body {
    font-family: "微软雅黑";
}


/* public公共样式 */

.clear {
    zoom: 1;
}

.clear:after {
    content: '';
    display: block;
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.tc {
    text-align: center;
}

.ml32 {
    margin-left: 32px;
}

.ml10 {
    margin-left: 10px;
}

.ml5 {
    margin-left: 5px;
}

.ml20 {
    margin-left: 20px;
}

.ml80 {
    margin-left: 80px;
    position: relative;
    top: 2px;
}

.ml40 {
    margin-left: 40px;
}

.mt100 {
    margin-top: 80px;
}

.ml30 {
    margin-left: 30px;
}

.mt114 {
    margin-top: 114px;
}

.ml183 {
    margin-left: 183px;
}

.ml185 {
    margin-left: 185px;
}

.mt-5 {
    margin-top: -5px;
}

.mt130 {
    margin-top: 130px;
}

.mt80 {
    margin-top: 80px;
}

.footerBox .mt15 {
    margin-top: 15px;
}


/* 二级页面无数据 */

.nullData {
    font-size: 24px;
    margin: 20px 0;
    text-align: center;
}


/* 头部导航*/

.header {
    width: 100%;
    height: 60px;
    background: url('../images/header/headerBg.png') no-repeat center;
    background-size: 100% 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
}

.nav {
    width: 1000px;
    margin: 0 auto;
}

.navL {
    height: 60px;
    display: flex;
    align-items: center;
}

.navL a {
    display: block;
}

.navL a img {
    vertical-align: middle;
}

.navR li {
    float: left;
    box-sizing: border-box;
    padding: 17px 0;
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.navR li:last-child {
    margin-right: 0;
}

.navR li a {
    color: #ffffff;
    font-size: 16px;
}

.navR li a:hover {
    color: #ffffff;
    font-weight: bold;
}


/* 头部导航激活类 */

.navActive {
    color: #ffffff;
    font-weight: 400;
    display: inline-block;
    text-align: center;
    border-bottom: 3px solid #fefeff;
    height: 60px;
}


/* 专题报道hot图标 */

.liveShow {
    position: relative;
}

.liveShow a img {
    position: absolute;
    top: 10px;
    right: -24px;
}


/* 专题报道上下浮动动画 */

.a-flutter-1 {
    -webkit-animation: flutter 2s linear infinite;
    animation: flutter 2s linear infinite;
}

@keyframes flutter {
    0% {
        margin-top: 0px
    }
    50% {
        margin-top: -10px
    }
    100% {
        margin-top: 0px
    }
}

@-webkit-keyframes flutter {
    0% {
        margin-top: 0px
    }
    50% {
        margin-top: -10px
    }
    100% {
        margin-top: 0px
    }
}


/* banner */

.banner {
    width: 100%;
    margin-top: 60px;
}

.banner img {
    width: 100%;
}


/* 底部 */

.footer {
    width: 100%;
    background: url('../images/index/footer.png') no-repeat center;
    background-size: 100% 100%;
}

.footerBox {
    width: 1000px;
    margin: 0 auto;
    padding: 65px 0 70px;
    color: #ffffff;
}

.boxLeft {
    width: 200px;
}

.footerBox h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footerBox p {
    font-size: 16px;
    margin-top: 5px;
    color: #ffffff;
    cursor: pointer;
}

.boxCenter {
    width: 200px;
    margin-left: 180px;
}

.boxRight {
    width: 315px;
    margin-top: 30px;
}

.footerAdress {
    width: 100%;
    text-align: center;
    font-size: 16px;
    background: rgba(23, 1, 65);
    padding: 20px 0;
}

.footerAdress p {
    text-align: center;
    color: #a29ab2;
}

.footerAdress p a {
    color: #a29ab2;
}


/* css3图片翻转动画 */

.qcontainer {
    -webkit-perspective: 400;
    -moz-perspective: 400;
    /* width: 19%; */
}

.film {
    width: 100%;
    -webkit-transform-style: preserve-3d;
    -webkit-transition: 1.5s;
    -moz-transform-style: preserve-3d;
    -moz-transition: 1.5s;
}

.qcontainer:hover .film {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
}

.face {
    position: absolute;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

.back {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
}


/* 导航菜单下边框滑动动画 */

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}