/* 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;
}

input,
textarea {
    outline: none;
}

textarea {
    resize: none;
    overflow: auto;
}

body {
    font-size: 12px;
    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;
}

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


/* 头部导航激活类 */

.navActive {
    /* border-bottom: 2px solid #feffff; */
    background: url('../images/navactiveBg.png') no-repeat bottom;
}


/* banner下方导航激活类 */

.navTabActive {
    background: linear-gradient(to right, #03ce75, #1ea1d5, #923cd5);
    transform: translateY(-10px);
}

.cur {
    position: fixed;
    z-index: 10000;
    top: 20px;
}

.navTab .current {
    background: linear-gradient(to right, #8f3eff, #019cff, #006fdb);
    transform: translateY(-10px);
    border: 2px solid #9936ff;
}

.navTab .current a {
    color: #ffffff;
}

.navTab .signActive {
    background: linear-gradient(to right, #027f4b, #46a949, #7fce49);
    border: 2px solid #a4ff52;
}


/* 专题报道hot图标 */

.liveShow {
    position: relative;
}

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


/* 空数据 */

.nullData {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}


/* 苹方字体 */


/* @font-face {
    font-family: 'pingfangBold';
    src: url('../font/PingFang\ Bold.ttf');
} */


/* @font-face {
    font-family: 'pingfangMedium';
    src: url('../font/PingFang\ Medium.ttf');
}

@font-face {
    font-family: 'pingfangRegular';
    src: url('../font/PingFang\ Regular.ttf');
}
 */


/* 头部导航 */

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

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

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

.navL a {
    width: 126px;
    display: block;
}

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

.navR li {
    float: left;
    margin-left: 30px;
    box-sizing: border-box;
    padding: 18.5px 0 18.5px;
}

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

.navR li a:hover {
    font-weight: 600;
}


/* banner */

.bannerBox {
    width: 100%;
}

.banner {
    width: 100%;
}

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


/* 底部 */

.footer {
    width: 100%;
    background: linear-gradient(to right, #8ed60b, #2fb171, #01a9f8);
}

.footerBox {
    width: 1000px;
    margin: 0 auto;
    padding: 50px 0 60px;
    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: 160px;
}

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

.footerAdress {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    background: linear-gradient(to right, #8ed60b, #2fb171, #01a9f8);
}

.footerAdress p {
    text-align: center;
    color: #d8eddc;
    background: rgba(0, 0, 0, 0.2);
}

.footerAdress p a {
    color: #d8eddc;
}


/* 图片翻转效果 */

.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);
}