.main {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  position: relative;
}

#C {
  position: absolute;
  left: -5px;
  height: -moz-fit-content;
  height: fit-content;
}

.breadcrumb {
  display: none;
}

.content_area {
  width: 50%;
  margin-right: 15px;
}

.album_area {
  width: 40%;
}

.content_box {
  text-align: center;
  width: 100%;
}

.content_title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-image: url(../images/title-bg.gif);
  background-repeat: repeat-x;
  background-size: cover;
  height: auto;
  min-height: 32px;
  border-radius: 5px;
  padding: 2px;
  padding-left: 10px;
  margin: 5px 2px;
  box-shadow: 0px 0px 0px 2px #fff, 0px 0px 0px 3px #bfbfbf;
}

.title-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 0px 0px 5px #000;
}
.title-text::before {
  content: "";
  display: inline-block;
  background-image: url(../images/grid02.svg);
  background-size: cover;
  width: 13px;
  height: 13px;
  margin-right: 8px;
}

.more-btn {
  display: block;
  padding: 1px 4px 1px 6px;
  margin: 5px 8px 5px auto;
  border-radius: 3px;
  color: #323230;
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(to bottom, rgb(253, 251, 228) 0%, rgb(171, 171, 171) 100%);
}

.content {
  margin: 25px auto;
  padding: 0 5px 10px;
  background-color: #fff8ee;
}
.content .picture_box {
  width: 30%;
  margin: 5px 2px;
}

.content_tab {
  text-align: left;
  padding: 10px 2px;
  border-bottom: 1px dotted #ccc;
}
.content_tab a {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #666;
  transition: 0.2s all ease-in-out;
}
.content_tab a:hover {
  color: #ff3300;
  transition: 0.2s all ease-in-out;
}
.content_tab a::before {
  content: "";
  display: block;
  min-width: 13px;
  height: 13px;
  margin-right: 5px;
  background-image: url(../images/point.svg);
  background-size: contain;
}

.album {
  display: flex;
  flex-wrap: wrap;
  padding-top: 25px;
  padding-bottom: 25px;
  margin: 0 auto;
  justify-content: space-around;
}
.album img {
  width: 100%;
  height: 100%;
}

.picture_box {
  display: flex;
  border: 1px solid #bbb;
}
.picture_box:hover {
  border-color: #000;
  border-style: dashed;
}
.picture_box a {
  display: block;
  margin: 2px;
}

@media (max-width: 767px) {
  .main {
    flex-wrap: wrap;
  }
  #C {
    top: -18px;
    left: 0;
  }
  .content_area {
    width: 100%;
    margin: 0;
  }
  .album_area {
    width: 100%;
    margin: 0;
  }
}/*# sourceMappingURL=index_cn.css.map */