/* 证书办理 */
.tips1{
    display: -webkit-box;
    /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box;
    /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox;
    /* 混合版本语法: IE 10 */
    display: -webkit-flex;
    /* 新版本语法: Chrome 21+ */
    display: flex;
    /* 新版本语法: Opera 12.1, Firefox 22+ */
    /* width: 1448px; */
    padding: 2.6rem 0;
    margin: 0 auto;
    background-color: #ffffff;
}
/* .tips1 .content-left{
    width: 14.8rem;
    margin-right: 0.5rem;
} 
.tips1 .content-left>div{
  width: 100%;
  height: 10rem;
  margin: 10px 0;
} */
.tips1 .content-right{
  -webkit-flex: 1; /* Chrome */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-flex: 1; /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1; /* OLD - Firefox 19- */
}
.tips1 .content-right .title{
    background-color: #ffffff;
}
.tips1 .content-right .title::after{
    content: '';
    width: 50rem;
    height: 1px;
    border-top: 1px dashed #dedede;
    position: absolute;
    left: 9rem;
    top: 1.3rem;
}
.tips1 .content-right .tip-list{
  padding: 1.1rem 0.8rem;
  font-size: 0.9rem;
  color: #000000;
}
.tips1 .content-right .tip-list ul li{
  height: 2.4rem;
  border-bottom: 1px dashed #dedede;
  display: -webkit-box;
    /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box;
    /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox;
    /* 混合版本语法: IE 10 */
    display: -webkit-flex;
    /* 新版本语法: Chrome 21+ */
    display: flex;
    /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.tips1 .content-right .tip-list .tip-time{
  line-height: 2.4rem;
}