/* CSS Document */

* {
    font-family: "Microsoft YaHei", SimSun, Tahoma, Helvetica, Arial, SimSun, sans-serif;
    box-sizing: border-box;
    /* 在X5新内核Blink中，在排版页面的时候，会主动对字体进行放大，会检测页面中的主字体，当某一块字体在我们的判定规则中，认为字号较小，并且是页面中的主要字体，就会采取主动放大的操作。然而这不是我们想要的，可以采取给最大高度解决 */
    max-height: 100000px;
}

*:before, *:after {
    box-sizing: border-box;
    max-height: 100000px;
}

*, *:before, *:after {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    background: transparent;
    overflow-x: hidden;
}

body, div, span, h1, h2, h3, h4, h5, h6, p, hr, ul, ol, li, dl, dt, dd,
form, fieldset, legend, input, button, select, textarea, label, table, caption, tbody, tfoot, thead, tr, th, td,
pre, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, object, iframe, blockquote, 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 {
    margin: 0;
    padding: 0;
    cursor: default;
    border: 0 none;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    outline: none;
}

body, p, button, input, select, textarea {
    color: #333;
    font: 14px \5b8b\4f53, arial, sans-serif;
    /*解决移动设备滑动阻滞的问题*/
    -webkit-overflow-scrolling: touch;
}

p {
    text-align: justify;
    word-break: break-word;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    display: block;
}

img, svg, video, canvas, audio, iframe, embed, object {
    /* 清除图片下的白边 */
    border: 0;
    /* display: block; */
    display: inline-block;
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    /*IE下图片缩放失真的解决方法*/
    -ms-interpolation-mode: bicubic;
}

a {
    background-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /*-webkit-user-modify:read-write-plaintext-only; */
}

a, a:link, a:visited {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
    color: #e60012;
}

a:active, a:hover, a:focus {
    outline: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

address, cite, em, i {
    font-style: normal;
}

pre {
    overflow: auto;
}

li, ol {
    list-style: none;
    vertical-align: top;
}

textarea {
    overflow: auto;
    /* 边框清零 */
    border: none;
    /* 轮廓线清零 */
    outline: none;
    /* 防止文本域被随意拖拽 */
}

table {
    /*边框合并*/
    border-collapse: collapse;
    border-spacing: 0;
}

/* ie bug：th 不继承 text-align */

th {
    text-align: inherit;
}

input[type="submit"], input[type="reset"], input[type="button"], input[type="text"], input[type="password"], select, button, textarea {
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
}

input:focus {
    outline: none;
}

hr {
    box-sizing: content-box;
    height: 0;
}

/* 统一上标和下标 */

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
    vertical-align: text-top;
}

sub {
    bottom: -0.25em;
    vertical-align: text-bottom;
}

select {
    border: none;
    appearance: none;
    /* 解决按钮变圆 */
    -moz-appearance: none;
    -webkit-appearance: none;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url("//www.ijjnews.com/zygl/images/arrow.png") no-repeat scroll right center transparent;
    padding-right: 14px;
}

/*解决1像素边框问题*/

.border_1px:before {
    content: '';
    position: absolute;
    top: 0;
    height: 1px;
    width: 100%;
    background-color: #000;
    transform-origin: 50% 0%;
}

@media only screen and (-webkit-min-device-pixel-ratio:2) {
    .border_1px:before {
        transform: scaleY(0.5);
        /* 像素比为2，就给css像素/2，就得到对应物理像素 */
    }
}

@media only screen and (-webkit-min-device-pixel-ratio:3) {
    .border_1px:before {
        transform: scaleY(0.33);
        /* 像素比为3，就给css像素/3，得到对应物理像素 */
    }
}

/* 使用伪元素清除浮动 */

.clearfix::before, .clearfix::after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    /*display:table;*/
    visibility: none;
    clear: both;
}

.clearfix:after {
    clear: both;
    overflow: hidden;
}

.clearfix {
    *zoom: 1;
    /* for ie6 & ie7 */
}

.hide, .no {
    display: none;
}

.show, .yes {
    display: block;
}

.fl {
    float: left;
    display: inline;
}

.fr {
    float: right;
    display: inline;
}

.mt10 {
    margin-top: 10px;
}

.mt12 {
    margin-top: 12px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.radius {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.ellipsis {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; */
}



@media screen and (min-width: 751px) {
    html {
      font-size: 102.4px;
    }
    
  }
  @media screen and (max-width: 750px) {
    html {
      font-size: 100px;
    }
  }
  @media screen and (max-width: 640px) {
    html {
      font-size: 85.33333px;
    }
  }
  @media screen and (max-width: 540px) {
    html {
      font-size: 72px;
    }
  }
    
  @media screen and (max-width: 480px) {
    html {
      font-size: 64px;
    }
  
  }
  @media screen and (max-width: 430px) {
    html {
      font-size: 57.33333px;
    }
   
  }
  @media screen and (max-width: 384px) {
    html {
      font-size: 51.2px;
    }
  }
  @media screen and (max-width: 375px) {
    html {
      font-size: 50px;
    }
   
  }
  @media screen and (max-width: 360px) {
    html {
      font-size: 48px;
    }
   
  }
  @media screen and (max-width: 320px) {
    html {
      font-size: 42.66667px;
    }
  }
/*-------------------------------------------------------------------------------------------------------------------------*/<!--ecms sync check [sync_thread_id="3bcee7cc5a424330844ab778a62d31c1" sync_date="2025-01-20 17:15:43" check_sum="3bcee7cc5a424330844ab778a62d31c1]-->