/**
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
* http://cssreset.com
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    height: 100%;
}
html{
    height: 100%;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.float_clear:after { content: ''; display: block; clear: both; height: 0 }
.fl{ float: left; }
.fr{ float: right; }
img{
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
/*轮播图基础样式*/
.swiper-container{
    width: 100%;
    height: 100%;
    --swiper-pagination-color: #00ff33;/* 两种都可以 */
}
.swiper-slide{
    cursor: pointer;
}
.swiper-pagination-bullet{
    background-color: #fff;
    opacity: 1;
}
.swiper-container-horizontal>.swiper-pagination-bullets{
    width: auto;
    right: 0;
    left: unset;
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    bottom: 2px;
    color: #fff;
}
.swiper-pagination-bullet-active{
    background-color: #fc114a;
}
div[data-url]{
    cursor: pointer;
}
.swiper-button-prev{
    background:url("../image/focus_btn.png") no-repeat;
    background-position: left bottom;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -37px;
    width: 40px;
    height: 74px;
    z-index: 10;
}
.swiper-button-next {
    background:url("../image/focus_btn.png") no-repeat;
    background-position: right bottom;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -37px;
    width: 40px;
    height: 74px;
    z-index: 10;
}
.swiper-button-next:hover{
    background-position: right top;
}
.swiper-button-prev:hover{
    background-position: left top;
}

.bottomBox{
    position: absolute;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.7);
    z-index: 1;
    color: #fff;
    padding-right: 55px;
}
.footer{
    width: 100%;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 14px;
    color: #fff;
    background: #c24620;
}
.layui-laypage{
    display: block;
    text-align: center;
}
.layui-laypage a, .layui-laypage span{
    background-color: transparent;
}
.layui-laypage a, .layui-laypage button, .layui-laypage input, .layui-laypage select, .layui-laypage span{
    background-color: transparent;
}
.rightBox .succeedBox{
    display: none;
}
.content{
    position: relative;
}
/*公告走马灯*/
.marquee{
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    overflow: hidden;
    color: #ff0000;
    margin: 10px 0;
    z-index: 99;
    background-color: rgba(255,255,255,.7);
}
@media only screen and (max-width: 768px) {
    .marquee{
        width: 100%;
        left: 0;
        margin-left: 0;
    }
}
