*{
    margin: 0;padding: 0;
    /* css3盒子模型 */
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
/* em 和 i 斜体的文字不倾斜 */
em,i {
    font-style: normal;
}
a{
    text-decoration: none;
    color: inherit;
}
li{
    list-style-type: none;}
body{
    color: #3D3D3D;
    background-color: #F1F5F8;
}

.container{
    width: 1200px;
    margin: 0 auto;
}

/*---------------------------首页-------------------------- */
/*交易表格*/
.trade-table td{
    padding: 15px 0;
    background-color: #ffffff;
}
.trade-table th{
    padding: 20px 0;
    background-color: #057BC2;
    color: #ffffff;
}

.brand{
    width: 1200px;
    height: 148px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*导航*/
.nav-container{
    background-color: #057BC2;
    height: 54px;
}
.nav{
    color: #fff;
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}
.nav .item{
    line-height: 54px;
    flex: 1;
    text-align: center;
    position: relative;
    color: #ffffff;
}
.nav .item:not(:last-child):after{
    content: " ";
    width: 1px;
    height: 50%;
    background-color: #fff;
    position: absolute;
    right: 0;
    top:25%
}
/* banner */
.swiper-container {
    width: 100%;
}
.swiper-slide {
    /*text-align: center;*/
    /*font-size: 18px;*/
    /*background: #fff;*/

    /*!* Center slide text vertically *!*/
    /*display: -webkit-box;*/
    /*display: -ms-flexbox;*/
    /*display: -webkit-flex;*/
    /*display: flex;*/
    /*-webkit-box-pack: center;*/
    /*-ms-flex-pack: center;*/
    /*-webkit-justify-content: center;*/
    /*justify-content: center;*/
    /*-webkit-box-align: center;*/
    /*-ms-flex-align: center;*/
    /*-webkit-align-items: center;*/
    /*align-items: center;*/
}
.swiper-slide img {
    width: 100%;
}

/*友情链接*/
.bg-title{
    position: relative;
    height: 130px;
}
.bg-title .main{
    color: #009cdf;
    font-size: 32px;
    font-weight: bold;
    line-height: 130px;
    padding-left: 30px;
}
.bg-title .sub{
    color: #898B98;
    font-size: 24px;
    text-transform: uppercase;
}
.bg-title .bg{
    color: rgba(61,61,61,0.05);
    font-size: 90px;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    left: 0;
}
.bg-title .more{
    height: 26px;
    line-height: 26px;
    font-size: 14px;
    padding: 0 20px;
    background-color: #009cdf;
    color: #fff;
    position: absolute;
    border-radius: 4px;
    right: 0;
    top: 50px;
}

/*角标*/

.flag{
    width: 56px;
    height: 56px;
    text-align: center;
    color: #fff;
    background-color:#009cdf;
    border-radius: 8px 0 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.flag .date{
    font-size: 10px;
    line-height: 10px;
}
.flag .day{
    font-size: 36px;
    line-height: 36px;
}

/*新闻卡片*/
.new-card{
    height: 536px;
    background: linear-gradient(
        to bottom,
        #057BC2 0%,
        #057BC2 50%,
        #fff 50%,
        #fff 100%
    );
}

/* 底部 */
.foot{
    padding-top: 30px;
    padding-bottom: 30px;
    background-image: url("../image/foot_bg.png");
    background-repeat: no-repeat;
    background-position: top center;
}
.foot .logo{
    /*width: 413px;*/
    height: 62px;
}

/*--------- 文章详情页面 ----------*/
.article-container{
    line-height: 1.5em;
}
/* 面包屑 */
ul.bread{

}
ul.bread li{
    display: inline-block;
}
/*---------分页插件样式 ----------*/
.pager{
}
.pager li{
    border-radius: 4px;
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #ddd;
    margin: 0 5px;
    cursor: pointer;
}
.pager li.active{
    background-color: #047ec5;
    color: #fff;
}
