/* 隐藏滚动条 */
body::-webkit-scrollbar {
    display: none;
}



section.share-section {
    margin-top: 100px;
}


.share-w {
    text-align: center;
}

img#previewImage {
    width: 100px;
}


/* From www.lingdaima.com */
button#share-item-main-btn {
 width: 230px;
 height: 52px;
 font-size: 16px;
 background: transparent;
 border: none;
 position: relative;
 color: #f0f0f0;
 z-index: 1;
 display: flow;
}

button#share-item-main-btn::after,
button#share-item-main-btn::before {
 content: '';
 position: absolute;
 bottom: 0;
 right: 0;
 z-index: -99999;
 transition: all .4s;
}

button#share-item-main-btn::before {
 transform: translate(0%, 0%);
 width: 100%;
 height: 100%;
 background: #28282d;
 border-radius: 10px;
}

button#share-item-main-btn::after {
 transform: translate(10px, 10px);
 width: 35px;
 height: 35px;
 background: #ffffff15;
 backdrop-filter: blur(5px);
 border-radius: 50px;
}

button#share-item-main-btn:hover::before {
 transform: translate(5%, 20%);
 width: 110%;
 height: 110%;
}

button#share-item-main-btn:hover::after {
 border-radius: 10px;
 transform: translate(0, 0);
 width: 100%;
 height: 100%;
}

button#share-item-main-btn:active::after {
 transition: 0s;
 transform: translate(0, 5%);
}



/* 容器整体布局 */
.main-info-container {
     display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(6px);
    padding-top: 6rem;
}

/* 文本区域在左侧 */
.main-info-text {
  flex: 1;
  padding-right: 40px; /* 图片与文字之间的间距 */
}

.section-title {
  font-size: 3rem;
  color: #666;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* 按钮样式 */
.share-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 1rem;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.share-button:hover {
  background-color: #0056b3;
}

.share-button i {
  margin-right: 8px;
}

/* 图片区域在右侧 */
.main-info-img {
  flex: 1;
  min-width: 300px;
}

.section-image {
  width: 120%;
  height: auto;
  border-radius: 8px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}
