@charset "utf-8";
/*global style*/
ul,li,p,span,em,i,div,img,h1,h2,h3,h4,a,input,textarea,body{padding:0px;margin:0px;border:none;}
body{font:14px/1.5em Arial;color:#444;overflow-x:hidden;background:#fff;margin:0;}
table{border-collapse:collapse;}
em,i{font-style:normal;}
a{color:#333;text-decoration:none;cursor:pointer;outline:none;-webkit-tap-highlight-color:rgba(255,0,0,0);}
a:hover{color:#1d3686;}
ul,li{list-style:none;}
img{vertical-align:top;}
input{outline:none;vertical-align:middle;}
input[type="submit"]{cursor:pointer;}
textarea{resize:none;outline:none;overflow:hidden;font-family:Arial;}
p{line-height:25px;}
h1{font-size:32px;color:#333;line-height:34px;font-weight:bold;}
h2{font-size:32px;color:#333;line-height:34px;font-weight:bold;}
h3{font-size:24px;color:#333;line-height:26px;font-weight:normal;}
h4{font-size:14px;color:#333;line-height:16px;font-weight:normal;}
.clear{clear:both;font-size:0;line-height:0;height:0;overflow:hidden;}
.clearm:after{clear:both;display:block;height:0;visibility:hidden;content:" ";}
.clearm{*zoom:1;}
/* backToTop */
.hidden{display:none;}

/* 面包屑导航样式 */
.breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    padding:0;
    margin:0;
    font-size:0.875vw;
    line-height:1.2vw;
    color:#fff;
}

.breadcrumb-item{
    display:flex;
    align-items:center;
}

.breadcrumb-item:not(:last-child)::after{
    content:">";
    margin:0 0.5vw;
    color:rgba(255,255,255,0.7);
    font-size:0.75vw;
    font-weight:300;
}

.breadcrumb-item a{
    color:rgba(255,255,255,0.9);
    text-decoration:none;
    transition:all 0.3s ease;
    position:relative;
}

.breadcrumb-item a:hover{
    color:#fff;
    text-decoration:underline;
}

.breadcrumb-item.active{
    color:#fff;
    font-weight:500;
}

.breadcrumb-item:first-child a{
    position:relative;
    padding-left:1.2vw;
}

.breadcrumb-item:first-child a::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:0.8vw;
    height:0.8vw;
   
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    opacity:0.9;
}

/* 兼容原有的面包屑样式 */
.bread{}
.bread p{position:relative;line-height:1vw;padding-left:1vw;color:#fff;}
.bread p:before{content:"";position:absolute;left:0;top:0.14vw;width:0.625vw;height:0.625vw;background-image:url(../images/icon-home.png);background-size:200% 100%;}
.bread a,.bread span{color:#fff;}