| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- /* 搜索框 */
- .warnind-seek-box {
- position: fixed;
- width: 100%;
- z-index: 200;
- background: #fff;
- }
- .warnind-seek {
- border-radius: 15px;
- border: 1px solid #f6f6f6;
- width: 70%;
- font-size: 14px;
- padding: 10rpx 0 10rpx 25rpx;
- margin: 20rpx 0 0 60rpx;
- background: #f6f6f6;
- }
- /* 搜索图标 */
- .warnind-seek-img {
- width: 50rpx;
- height: 50rpx;
- float: right;
- margin: -40rpx -60rpx 0 0;
- }
- /* 列表数据 */
- .warnind-ul {
- width: 90%;
- position: relative;
- top: 120rpx;
- left: 4%;
- }
- .warnind-list {
- border: 1px solid #fff;
- display: flex;
- justify-content: space-between;
- border-radius: 5px;
- box-shadow: 0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04);
- position: relative;
- margin: 0 0 30rpx 0;
- }
- .warnind-list-line {
- border-right: 1px dashed #9d9d9d;
- height: 100%;
- width: 1px;
- float: right;
- margin: 0 0 0 30rpx;
- }
- /* 半圆 */
- .warnind-list::after {
- width: 20px;
- height: 12px;
- content: "";
- right: 287px;
- top: -2px;
- position: absolute;
- display: block;
- border-radius: 0 0 10px 10px;
- box-shadow: 0px 0px 2px 2px rgb(248, 247, 247) inset;
- background-color: #f9f9f9;
- }
- .warnind-list::before {
- width: 20px;
- height: 12px;
- content: "";
- left: 61px;
- top: 65px;
- position: absolute;
- display: block;
- border-radius: 10px 10px 0 0;
- box-shadow: 0px 0px 1px 1px rgb(248, 247, 247) inset;
- background-color: #f9f9f9;
- }
- .warnind-list-img-box {
- /* border: 1px solid #000; */
- }
- .warnind-list-img {
- width: 80rpx;
- height: 80rpx;
- padding: 20rpx 0 20rpx 20rpx;
- }
- .warnind-list-img-right {
- width: 50rpx;
- height: 50rpx;
- padding: 40rpx 20rpx 30rpx 0;
- }
- .warnind-list-box {
- /* border: 1px solid #000; */
- padding: 20rpx 0 20rpx 0;
- margin: 0 0 0 -25rpx;
- }
- .warnind-list-id,
- .warnind-list-name {
- display: flex;
- }
- .warnind-list-id-line {
- border: 1px solid #3ad19c;
- width: 6px;
- height: 6px;
- border-radius: 50px;
- margin: 15rpx 0 20rpx 0;
- }
- .warnind-list-id-tit {
- font-size: 14px;
- color: #636363;
- font-weight: 550;
- margin-left: 10rpx;
- }
- .warnind-list-id-txt {
- font-size: 14px;
- color: #636363;
- font-weight: 550;
- margin-left: 10rpx;
- }
- .warnind-list-name-line {
- border: 1px solid #3ad19c;
- width: 6px;
- height: 6px;
- border-radius: 50px;
- margin: 15rpx 0 20rpx 0;
- }
- .warnind-list-name-tit {
- font-size: 14px;
- color: #636363;
- font-weight: 550;
- margin-left: 10rpx;
- }
- .warnind-list-name-txt {
- /* font-size: 14px;
- color: #636363;
- font-weight: 550; */
- margin-left: 10rpx;
- color: #636363;
- font-size: 12px;
- font-weight: 500;
- line-height: 40rpx;
- text-align: left;
- width: 272rpx;
- overflow: hidden;
- /* text-overflow: ellipsis; */
- white-space: nowrap;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- /* autoprefixer: off */
- -webkit-box-orient: vertical;
- /* autoprefixer: on */
- word-break: break-all;
- }
- /* 返回顶部 */
- .goTop {
- height: 80rpx;
- width: 80rpx;
- position: fixed;
- bottom: 50rpx;
- /* background: rgba(0,0,0,.3); */
- right: 30rpx;
- border-radius: 50%;
- }
- /* 底部提示 */
- .warnind-ul-dowtxt {
- height: 50rpx;
- text-align: center;
- font-size: 15px;
- color: rgb(129, 129, 129);
- }
|