/*css RESET*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* 推荐添加这个属性，确保盒模型的一致性 */
    -webkit-tap-highlight-color: transparent;
}

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;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
/*自定义css*/
a{color: #333;text-decoration: none;}
.qt_53Btn{cursor: pointer;}
.totop {display: none;position: fixed;bottom: 160px;right: 0;width: 4%;height: auto;z-index: 99999999;cursor: pointer;}
.totop img{width: 100%;}
html{width: 100%;height:100%;}
body{color:#333;font-family: "Microsoft YaHei";width: 100%;overflow-x:hidden;background:#fff; position: relative;}
.fl{float:left;}
.fr{float:right;}
.m1200{width: 1200px;margin: 0 auto;position: relative;}
.isPc{display: block !important;}
.isWap{display: none !important;}
.swiper-container {width: 100%;height: 100%;}
.swiper-pagination{position: initial;font-size: 0;display: flex;justify-content:center;}
@media screen and (max-width:1000px) {
    .isPc{display: none !important;}
    .isWap{display: block !important;}
    /* .m1200{width: 100%;} */
    .totop {width: 12%;bottom: 12%;}
}
 
/* 动画效果 */
@keyframes upDown {
    0% {transform: translateY(0);}
    50% {transform: translateY(-4px);}
    100% {transform: translateY(0);}
}
.moving-element {animation: upDown 0.8s infinite;}
.ouyaNavHomeList.liuxue .moving-element {animation: upDown1 0s infinite;}/*去掉头部导航的动画-为了香港的kpi*/
.ouyaNavHomeList.yupei .moving-element {animation: upDown1 0s infinite;}/*去掉头部导航的动画-为了香港的kpi*/

/* 去掉53右侧浮窗 */
#iconDiv1{display: none !important;}















