.search-box {
  height: 92px;
  background: #2B90C6;
  padding: 0 360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-box .search-cont p {
  font-size: 14px;
  line-height: 16px;
}
.search-box .search-cont form {
  display: flex;
  align-items: center;
}
.search-box .search-cont form input {
  width: 220px;
  height: 36px;
  background: #FFFFFF;
  border-radius: 4px 4px 4px 4px;
  border: none;
  margin-right: 10px;
}
.search-box .search-cont form .submit {
  width: 72px;
  height: 36px;
  background-color: #FFE220;
  border: none;
  color: #2C5B9B;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.search-box .search-cont form .submit i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../image/search.png) no-repeat;
}

.search-content {
  width: 1200px;
  margin: 20px auto 0;
}
.search-content .medicine-item {
  display: flex;
  align-items: center;
  height: 140px;
  border: 1px solid #E8E8E8;
  margin-bottom: 10px;
}
.search-content .medicine-item img {
  display: block;
  width: 98px;
  height: 98px;
  margin: 0 10px;
}
.search-content .medicine-item .medicine-text p {
  width: 980px;
  font-size: 14px;
  line-height: 14px;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 24px;
}
.search-content .medicine-item .medicine-text p span {
  color: #999999;
}
.search-content .medicine-item .medicine-text p:nth-child(2) {
  margin: 12px 0;
}
.search-content .medicine-item .medicine-text p:nth-child(3) {
  margin: 12px 0;
}
.search-content .medicine-item .medicine-text p:nth-child(4) {
  margin: 12px 0;
}
.search-content .medicine-item .medicine-text p:nth-child(5) {
  margin: 12px 0;
}
.search-content .medicine-item .detailed {
  display: block;
  width: 56px;
  height: 30px;
  background: #EFFBFF;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #0FA5D8;
  font-weight: 500;
  font-size: 14px;
  color: #0FA5D8;
  line-height: 28px;
  cursor: pointer;
  text-align: center;
}
.search-content .pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 70px;
}
.search-content .pagination span {
  display: block;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: #F5F8FB;
  border-radius: 4px 4px 4px 4px;
  margin-right: 14px;
  font-weight: 400;
  font-size: 14px;
  color: #2B2E35;
  line-height: 32px;
  text-align: center;
}
.search-content .pagination span.on {
  background-color: #2B90C6;
  color: #F5F8FB;
}
.search-content .pagination .btn {
  position: relative;
}
.search-content .pagination .btn i {
  display: block;
  width: 16px;
  height: 16px;
  background: url(../image/pre_arrow.png) no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.search-content .pagination .next-btn {
  transform: rotate(180deg);
}
.search-content .pagination .skip {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #5D6679;
  line-height: 14px;
  line-height: 32px;
}
.search-content .pagination .skip input {
  width: 56px;
  height: 32px;
  background: #F5F8FB;
  border-radius: 4px 4px 4px 4px;
  border: none;
  margin: 0 8px;
}

.dialog {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.dialog .dialog-box {
  width: 800px;
  height: 505px;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dialog .title {
  height: 61px;
  font-weight: bold;
  font-size: 16px;
  color: #2B90C6;
  line-height: 61px;
  border-bottom: 1px solid #ECECEC;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dialog .close-top {
  width: 26px;
  height: 26px;
  background: url(../image/pop-up_close.png) no-repeat;
  cursor: pointer;
}
.dialog .dialog-cont {
  padding-left: 30px;
  padding-top: 20px;
  display: flex;
}
.dialog .dialog-cont .dialog-img {
  width: 254px;
  height: 254px;
  position: relative;
}
.dialog .dialog-cont .dialog-img img {
  display: block;
  width: 190px;
  height: 190px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dialog .dialog-cont .dialog-text {
  font-size: 14px;
  line-height: 14px;
  margin-left: 33px;
}
.dialog .dialog-cont .dialog-text .intro {
  margin-bottom: 20px;
}
.dialog .dialog-cont .dialog-text p {
  color: #999999;
  margin-bottom: 5px;
}
.dialog .dialog-cont .dialog-text span {
  display: block;
  width: 448px;
  color: #333333;
  line-height: 23px;
}
.dialog .dialog-cont .dialog-text .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  background: #E32B32;
  border-radius: 10px 10px 10px 10px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
}
.dialog .dialog-cont .dialog-text .close i {
  display: block;
  width: 16px;
  height: 16px;
  background: url(../image/closed.png) no-repeat;
  margin-right: 10px;
}
.loadmore-nodata{
    margin: 50px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}
.loadmore-tips{
    font-size: 20px;
    color: black;
}