*{
    box-sizing: border-box;
}
body{
    font-size: 14px;
    font-family: Microsoft YaHei,Arial;
}
body,h1,h2,h3,h4,h5,p,ul,li,ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
a:hover{
    text-decoration:none;
}


/*颜色定义*//*全局自定义变量*/
:root{

    /*主色*/
    --main-color:#334fa9;
    --main-color1: #6f7170;
    --main-color-hover:#19399f;
    --main-light:#E4E8F5;

    /*辅助色*/
    --color-red:#FA512E;

    /*浅色*/

    /*边框*/
    --color-line:#e0e0e0;

    /*文字颜色、灰度*/
}


.mr-top{
    margin-top: 50px;
}

.displayNews{
    background-color:#f7f7f7;
}

/*布局*/
.dl-row{
    display: flex;
    flex-direction: row;
}
.dl-row-sb{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.dl-row-sa{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.dl-row-end{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.dl-column{
    display: flex;
    flex-direction: column;
}
.dl-column-sb{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.dl-column-sa{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.dl-column-end{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.center{
    align-items: center;
}
.start{
    align-items: flex-start;
}
.end{
    align-items: flex-end;
}
/*常用样式*/
.line-top{
    position: relative;
}
.line-top:after{
    content: '';
    position: absolute;
    left:0;
    top:0;
    background:#e0e0e0;
    width: calc(100%);
    height: 1px;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
}
.line-bottom{
    position: relative;
}
.line-bottom:after{
    content: '';
    position: absolute;
    left:0;
    bottom:0;
    background: #e0e0e0;
    width: calc(100%);
    height: 1px;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
}

.main-container{
    width: 1200px;
    margin: 0 auto;
}
.search-container{
    width: 55%;
    margin: 0 auto;
}

.hide1{
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.hide2{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.hide3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/*按钮*/
.searchBtn.btn{
    border-radius: 0px;
}
.searchBtn{
    background-color: var(--main-color);
    color: #fff;
    width: 100px;
    height: 50px;
    border-top-right-radius:6px!important;
    border-bottom-right-radius:6px!important;
}
.searchBtn:hover{
    background: var(--main-color-hover);
    color: #ffffff;
}
.btn-main{
    display: inline-block;
    padding: 0 25px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
}
.btn-main i,.searchBtn i,.btn-main span{
    margin-right: 5px;
}
.btn-main .iconfont{
    font-size: 20px;
}
.btn-main:hover,.btn-main-small:hover,.btn-main-lag:hover{
    background: var(--main-color-hover);
    color: #ffffff;
}

.btn-main-small{
    display: inline-block;
    padding: 0 20px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    background-color: var(--main-color);
    text-align: center;
    cursor: pointer;
    font-size: 14px;
}
.btn-main-lag{
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    border: none;
}
.btn-line{
    padding: 0 30px;
    border-radius: 100px;
    border: 2px solid #c9cace;
    line-height: 36px;
    color: #c9cace;
    display: inline-block;
}
.btn-line:hover{
    border-color: var(--main-color);
    background: #D6F0E7;
    color: var(--main-color);
    cursor: pointer;
}
.z-ph{
    width: 162px;
    text-align: center;
    height: 44px;
    line-height: 44px;
    border: 1px solid var(--main-color1);
    color: var(--main-color1);
    font-size: 18px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.z-ph .iconfont{
    color: var(--main-color1);
    font-size: 32px;
    margin: 5px;
}
/*.z-ph:hover{
    background: var(--main-color);
    color: #ffffff;
}
.z-ph:hover .iconfont{
    color: #ffffff;
}*/

.dl-row-detail{
    display: flex;
    flex-direction: row;
    width: 23%;
    height: auto;
    margin-right: 2%;
}
.dl-row-sb-detail{
    display: flex;
    flex-direction: row;
}

.area{
    margin-left: 20px;
    padding-right: 0;
    width: 80px;
    height: 30px;
    border: 1px solid var(--main-color);
    border-radius: 100px;
    padding-left: 30px;
    background: url("../../../img/ynydc/dingwei.png") no-repeat 8px center;
    background-size: 23%;
    /*隐藏select的下拉图标*/
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    color: #979797;
}



















/*屏幕适应*/
/*@media screen and (max-width:1500px){*/
/*    .main-container{*/
/*        width: 1200px;*/
/*        margin: 0 auto;*/
/*    }*/
/*    .search-container{*/
/*        width: 1000px;*/
/*        margin: 0 auto;*/
/*    }*/
/*}*/














