.main {
  padding-top: 50px;
  padding-bottom: 80px;
}
.arshine-case-list ul {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.arshine-case-list ul li {
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px;
  padding: 15px;
  transition: 0.3s;
  margin-bottom: 20px;
}
.arshine-case-list ul li .box{
  display: flex;
}

.arshine-case-list ul li .pic {
  width: 270px;
  display: block;
  position: relative;
}
.arshine-case-list ul li .pic img {
  max-width: 100%;
}
.arshine-case-list ul li .txt {
  -webkit-flex: 1;
  flex: 1;
  padding: 20px 28px;
  background: #f0f0f0;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-left: 30px;
}
.arshine-case-list ul li .txt h5 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: #333;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
}
.arshine-case-list ul li .txt p {
    color: #666;
    font-size: 16px;
    font-weight: 300;
    margin: 10px 0 0 0;
    height: 48px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.arshine-case-list ul li .txt span {
  display: block;
  font-size: 14px;
  color: #777;
  margin: 13px 0 0;
}
.arshine-case-list ul li .txt span i {
  margin-right: 8px;
  color: var(--color-primary);
}
.arshine-case-list ul li .txt .more {
  margin-top: 13px;
  display: inline-block;
  color: #fff;
  font-size: 13px;
  width: 110px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  background: var(--color-second);
  border-radius: var(--button-radius, 5px);
}
.arshine-case-list ul li:hover .txt {
  background: #e0e0e0;
}
.arshine-case-list ul li:hover .txt h5 {
  color: var(--color-primary);
}

.rtit {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 992px) {
  .arshine-case-list ul li .txt .more {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .main {
    padding-top: 25px;
    padding-bottom: 30px;
  }

  .arshine-case-list ul li .pic {
    width: 180px;
  }

  .arshine-case-list ul li .txt h5 {
    font-size: 18px;
  }
  
  .rtit {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 576px) {
  .arshine-case-list ul li .box {
    flex-direction: column;
  }

  .arshine-case-list ul li .pic {
    width: 240px;
    margin: 0 auto;
  }

  .arshine-case-list ul li .txt {
    margin: 15px 0 0;
    text-align: center;
  }

  .arshine-case-list ul li .txt span {
    display: inline-block;
  }
}