@charset "utf-8";
/*------------ link ------------*/
.link-list .item .name {
  color: #777;
}
.link-list .item .box:hover .name {
  color: #a31529;
}
.link-list .url {
  padding: 0px 5px;
}
.link-list.type2 .item .box,
.link-list.type4 .item .box {
  transition: all 0.5s;
  border: none;
}
.link-list.type4 .box:hover,
.link-list.type2 .box:hover {
  margin-top: -10px;
}
.link-list.type1 .item .txt {
  background: #000;
}
.link-list.type2 .pic {
  padding: 6px;
  transition: all 0.3s ease;
  border: 1px solid #8d8582;
}
.link-list.type2 .box:hover .pic img {
  box-shadow: 2px 2px 10px #838383;
}
.link-list.type2 .item .txt {
  margin: 0;
}
.link-list.type2 .item .pic:before {
  content: "";
  position: absolute;
  display: block;
  transition: all 0.2s;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.link-list.type2 .item .box:hover .pic:before {
  transition: all 0.2s;
  opacity: 1;
}
.link-list.type2 .item .name {
  padding: 7px 5px;
  line-height: 1.4;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  margin: 1px 0 0 0;
}
/*------------ rwd ------------*/
@media screen and (max-width: 767px) {
  .link-list .item .name {
    padding: 7px 5px 7px 5px;
    text-align: center;
  }
}
