@font-face {
  font-family: Regular;
  src: url(font/SourceHanSansCN-Regular.otf);
}
html,body{
    font-family: Regular !important;
}
.q_suTitle {
  font-size: 16px;
  background-image: linear-gradient(to bottom, #724f28, #e3d3af);
  border: 2px solid #b9a679 !important;
}
.su_menu_list {
  justify-content: center;
}
/* 个性化风格搭配list */
.gexinghua_list {
  display: grid;
  grid-template-columns: repeat(4, 24%);
  justify-content: space-between;
}
.gexinghua_list .gexinghua_item {
  position: relative;
}
.gexinghua_list .gexinghua_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gexinghua_list .gexinghua_item .text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 24px;
  text-shadow: 1px 1px 3px #000;
}
.gexinghua_list .gexinghua_item .text > span {
  color: #fff;
  font-size: 24px;
  border: 1px solid #fff;
  border-radius: 5px;
  line-height: 1.5;
  padding: 10px;
}
.gexinghua_list .gexinghua_item .text > span span {
  margin: 5px;
}
/* 高清全景图swiper */
.panorama_swiper {
  position: relative;
  height: 25vw;
  min-height: 300px;
}
.panorama_swiper .panorama_item {
        cursor:auto;
  display: block;
  width: 100%;
  height: 100%;
}
.panorama_swiper .panorama_item img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.panorama_swiper .swiper-pagination.swiper-pagination-bullets {
  position: absolute;
  bottom: 5px;
  left: 0;
}
.panorama_swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background-color: transparent;
  background-color: #333;
  position: relative;
}
.panorama_swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #fff;
}
/* Material library */
.library_list {
  display: grid;
  grid-template-columns: repeat(3, 31%);
  justify-content: space-between;
}
.library_list .library_item {
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.library_list .library_item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}
.library_list .library_item span {
  line-height: 3;
  font-size: 20px;
}
.library_list .library_item:hover {
  transform: translateY(-3px);
  box-shadow: 1px 1px 5px var(--themeColor);
}
.center_watermark {
  width: 60% !important;
  height: auto !important;
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
}
.chakan {
  display: block;
  text-align: center;
}
.chakan button {
  border-color: var(--themeColor);
  color: var(--themeColor);
  background: #fff;
  margin: 0;
}
.chakan button:hover {
  background: var(--themeColor);
  color: #fff;
}
/* 设计详情页面 */
.des_list {
  display: grid;
  grid-template-columns: repeat(3, 31%);
  justify-content: space-between;
  margin-bottom: 40px;
}
.des_list .des_item {
  margin-bottom: 40px;
  position: relative;
}
.des_list .des_item .des_pre {
  position: relative;
}
.des_list .des_item .des_pre .a_left,
.des_list .des_item .des_pre .a_right {
  position: absolute;
  z-index: 100;
  bottom: 20px;
}
.des_list .des_item .des_pre .a_left button,
.des_list .des_item .des_pre .a_right button {
  border-color: var(--themeColor);
  color: var(--themeColor);
  background: #fff;
  margin: 0;
}
.des_list .des_item .des_pre .a_left button:hover,
.des_list .des_item .des_pre .a_right button:hover {
  background: var(--themeColor);
  color: #fff;
}
.des_list .des_item .des_pre .a_left {
  left: 10px;
}
.des_list .des_item .des_pre .a_right {
  right: 10px;
}
.des_list .des_item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}
.des_list .des_item .bm {
  padding: 20px;
  background-color: #eee;
}
.des_list .des_item .bm .t {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.des_list .des_item .bm .t .name {
  font-size: 18px;
  margin-bottom: 10px;
}
.des_list .des_item .bm .t .up {
  cursor: pointer;
  transition: all 0.3s;
}
.des_list .des_item .bm .t .up:hover {
  transform: scale(1.5);
}
.des_list .des_item .bm .t .up:hover .iconfont {
  color: var(--themeColor);
}
.des_list .des_item .bm .sub {
  display: flex;
  flex-direction: column;
    align-items: start;
  color: #666;
  font-size: 13px;
}
/* 图片查看 */
.imgLook {
  position: fixed;
  left: 0;
  top: 0;
  background: #000;
  width: 100vw;
  height: 100vh;
  z-index: 99999999;
  display: none;
}
.imgLook img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.imgLook .center_watermark {
  width: 25% !important;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}
.imgLook i.iconfont {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #fff;
  cursor: pointer;
}
@media (max-width:1024px){
      .des_list .des_item .des_pre .a_left button, .des_list .des_item .des_pre .a_right button{
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (max-width: 980px) {
  .main .banner .banner_text .q_suTitle {
    font-size: 1.5vw;
    padding-left: 20px;
    padding-right: 20px;
  }
  .des_list,.library_list{
      grid-template-columns: repeat(2, 49%);
  }
  .library_list .library_item img{
      height: 310px;
  }
}
@media (max-width: 700px) {
  .library_list {
    grid-template-columns: repeat(2, 49%);
  }
  .gexinghua_list {
    display: block;
  }
  .yc {
    display: none !important;
  }
  .library_list .library_item img {
    height: 40vw;
  }
  .gexinghua_list .gexinghua_item .text > span {
    font-size: 14px;
  }
  .library_list .library_item {
    margin-bottom: 10px;
  }
  .gexinghua_list .gexinghua_item {
    margin-top: 3%;
  }
  .library_list .library_item span {
    font-size: 14px;
  }
  .des_list {
    grid-template-columns: 100%;
  }
  .des_list .des_item .bm .name {
    font-size: 16px;
  }
  .des_list .des_item .bm .big {
    font-size: 13px;
  }
  .des_list .des_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 540px) {
  .main .banner .banner_text .q_suTitle {
    display: none;
  }
  .su_warp {
    display: none;
  }
    .des_list .des_item .des_pre .a_left button, .des_list .des_item .des_pre .a_right button{
    font-size: 12px;
  }
}
@media (max-width: 300px) {
  .library_list,
  .gexinghua_list {
    grid-template-columns: 100%;
  }
  .library_list .library_item {
    margin-bottom: 0;
  }
  .gexinghua_list .gexinghua_item:first-child {
    margin-top: 0;
  }
}
