/* 花点时间，聊聊你的需求部分 */
.talk-section {
  background-color: #fff;
}

.talk-section .container {
  background-image: url('../img/xuqiu_img.png');
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 80px 0;
}

.talk-title {
  font-size: 34px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0px 0 44px;
}

.talk-btn-wrapper {
  position: relative;
  display: inline-block;
}

.talk-btn {
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #357AD5;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(53, 122, 213, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.talk-btn:hover {
  background: #2a6bc4;
  box-shadow: 0 4px 12px rgba(53, 122, 213, 0.4);
}

/* 二维码气泡样式已移至 qr-bubble-component.css */
.talk-btn-wrapper:hover .qr-bubble,
.talk-btn-wrapper .qr-bubble:hover {
  opacity: 1;
  visibility: visible;
}

/* 花点时间模块响应式 */
@media (max-width: 768px) {
  .talk-title {
    font-size: 24px;
  }
  
  .talk-btn {
    font-size: 14px;
    padding: 12px 30px;
  }
}
