.page-container>.view-title {
  padding-top: 200px;
  padding-bottom: 20px;
}
.page-container>.view-title .main-title {
  font-size: 40px;
  font-weight: 700;
}
.page-container>.view-title .sub-title {
  color: #4B4B4B;
  line-height: 20px;
}

.view-desc > .view-desc-left > .author-label {
  font-weight: 700;
  padding: 0 20px 0 8px;
}
.view-desc > .view-desc-right {
  background: #F6F6F6;
  border-radius: 10px;
  padding: 20px 25px;
  font-size: 16px;
}
.view-desc > .view-desc-right > div > .view-desc-label {
  padding-right: 10px;
  font-weight: 600;
}
.view-desc > .view-desc-right > img {
  padding: 0 20px;
}

#nav-tab > .nav-link {
  font-size: 20px;
  font-weight: 600;
  padding: 15px 45px;
  color: #B8B8B8;
}
#nav-tab > .nav-link:hover {
  border-color: #fff #fff #B8B8B8 #fff;
}
#nav-tab > .nav-link.active {
  color: #000000;
  border-color: #fff #fff #000 #fff;
  border-width: 2px;
}
#nav-desc {
  padding: 35px 20px 0px;
}
#nav-desc > div {
  margin-bottom: 35px;
}
.tab-label {
  width: 140px;
  font-weight: 800;
}
.tab-value {
  
}
.tab-textarea {
  margin-top: 15px;
  padding: 25px;
  border-radius: 10px;
  background: #F2F2F2;
}
#nav-comment {
  padding: 15px 0px 0px;
}
.comment-item {
  border-radius: 5px;
  border: 1px solid #EEE;
  font-weight: 600;
  font-size: 20px;
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  margin-top: 10px;
  cursor: default;
}
.comment-lable {
  color: #D66947;
  padding-right: 10px;
}

.recommend-container {
  /*margin-top: 150px;*/
}
.recommend-container > .title {
  font-size: 24px;
  font-weight: 700;
  padding: 10px 0;
  position: relative;
  cursor: default;
}
.recommend-container > .title::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 252px;
  height: 2px;
  background: #D66947;
  z-index: 1;
}
.recommend-container > .title::before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 214px;
  height: 2px;
  background: #000;
  z-index: 2;
}

/* Swiper */
.swiper-container {
  margin: 20px 0;
}
.swiper-container .swiper-slide {
  /*background-size: cover;
  background-position: center;*/
  background-color: #252525;
}
.swiper-container > #swiperContent {
  overflow: hidden;
  border-radius: 10px;
}
.swiper-container > #swiperContent {
  height: 590px !important;
  width: calc(100% - 190px) !important;
  --swiper-navigation-color: #FFFFFF !important;
  --swiper-pagination-color: #FFFFFF !important;
}
.swiper-container > #swiperContent > .swiper-button-next {
  right: 200px;
}
.swiper-container > #swiperContent > .swiper-pagination {
  width: calc(100% - 190px) !important;
}
.swiper-container > #swiperContent img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.swiper-container > #swiperThumbnail {
  height: 590px !important;
  width: 170px !important;
  background-color: #000000;
  border-radius: 10px;
  padding: 25px;
  box-sizing: border-box;
}
.swiper-container > #swiperThumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-container > #swiperThumbnail .swiper-slide {
  width: 100%;
  height: 100%;
  opacity: 0.4;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.swiper-container > #swiperThumbnail .swiper-slide-thumb-active {
  opacity: 1;
  cursor: default;
}

/**/
.recommend-container-inner {
  background-color: #F9F9F9;
}
.recommend-swiper-container {
  padding: 30px 0 65px;
  overflow: hidden;
}
#swiperRecommendList .swiper-slide {
  display: block;
  cursor: pointer;
}
#swiperRecommendList .swiper-slide > .img-box {
  height: 200px !important;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
#swiperRecommendList .swiper-slide > .img-box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0);
  z-index: 10;
  transition: .3s;
}
#swiperRecommendList .swiper-slide > .img-box:hover::after {
  background: rgba(0, 0, 0, 0.5);
}
#swiperRecommendList .swiper-slide > .img-box::before {
  content: '보러가기';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 25px;
  line-height: 50px;
  border: 1px solid #ffffffa1;
  border-radius: 5px;
  color: #ffffffef;
  background: rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
  z-index: 11;
  opacity: 0;
  transition: .3s .1s;
  font-weight: 300;
}
#swiperRecommendList .swiper-slide > .img-box:hover::before {
  opacity: 1;
}
#swiperRecommendList .swiper-slide > .img-box > img {
  transition: .3s;
}
#swiperRecommendList .swiper-slide > .img-box:hover > img {
  transform: scale(120%);
}
#swiperRecommendList .swiper-slide > img {
  height: 200px !important;
  border-radius: 5px;
  font-weight: 700;
}
#swiperRecommendList .swiper-slide > .item-label {
  font-weight: 700;
  padding-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#swiperRecommendList .swiper-slide > .item-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}



.drag-area
{
  width: 280px;
  height: 280px;
  border: 3px dashed #e0eafc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: auto;
 
}

.drag-area .icon
{
  font-size: 50px;
  color: #d5e3f3;
}

.drag-area .header
{
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}


.drag-area img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}