/* 招商合作板块样式 */
.cooperation-section {
  padding: 0 0 40px;
}
html{
  background: #f9f9f9;
}

.cooperation-banner {
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
}
.cooperation-title{
  font-size: 28px;
  text-align: center;
  padding: 20px;
}
.cooperation-banner img {
  width: 100%;
  display: block;
  height: auto;
}

.cooperation-header {
  text-align: center;
  margin-bottom: 40px;
}

.cooperation-title {
  font-size: 36px;
  color: #cca888;
  margin-bottom: 15px;
  font-weight: 300;
}

.cooperation-subtitle {
  font-size: 18px;
  color: #666;
}

.advantages-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.advantages-center {
  text-align: center;
  position: relative;
  width: 1200px;
  height: 900px;
  margin: 0 auto;
}

.advantages-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 32px;
  color: #333;
  font-weight: 300;
  z-index: 2;
  width: 160px;
}

.advantages-title span {
  font-size: 100px;
  font-weight: 500;
  display: block;
  margin: 10px 0;
  line-height: 1;
  background: linear-gradient(to bottom, #cca888 0%, #eeeeee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.advantages-grid {
  position: relative;
  width: 100%;
  height: 100%;
}

.advantage-item {
  position: absolute;
  width: 320px;
  height: 100px;
  background: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  left: 50%;
  top: 50%;
  margin-left: -160px;
  margin-top: -50px;
  cursor: pointer;
}

/* 圆形布局定位 */
.advantage-item:nth-child(1) {
  transform: translate(-200px, -350px);
}
.advantage-item:hover {
  background: #cca888;
}

.advantage-item:hover .advantage-content h3,
.advantage-item:hover .advantage-content p {
  color: #fff;
}

.advantage-item:hover .advantage-content .number {
  color: rgba(255, 255, 255, 0.2);
}

.advantage-item:nth-child(2) {
  transform: translate(200px, -350px);
}

.advantage-item:nth-child(3) {
  transform: translate(-350px, 0);
}

.advantage-item:nth-child(4) {
  transform: translate(350px, 0);
}

.advantage-item:nth-child(5) {
  transform: translate(-200px, 350px);
}

.advantage-item:nth-child(6) {
  transform: translate(200px, 350px);
}

.advantage-item:nth-child(7) {
  transform: translate(-350px, -200px);
}

.advantage-item:nth-child(8) {
  transform: translate(350px, -200px);
}

.advantage-item:nth-child(9) {
  transform: translate(-350px, 200px);
}

.advantage-item:nth-child(10) {
  transform: translate(350px, 200px);
}
.cooperation-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: #d00d37;
  margin: 15px auto 0;
  border-radius: 2px;
}
.advantage-content {
  width: 100%;
  padding: 20px 30px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-content {
  flex: 1;
  padding-right: 20px;
}

.advantage-content h3 {
  font-size: 24px;
  color: #cca888;
  margin-bottom: 5px;
  font-weight: 600;
}

.advantage-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.4;
}



.advantage-content .number {
  font-size: 36px;
  color: rgba(204, 168, 136, 0.5);
  font-weight: 300;
}

.page-2{
  background-color: #ffffff;
}

@media screen and (max-width: 1400px) {
  .advantages-center {
    transform: scale(0.9);
    transform-origin: center center;
  }
}

@media screen and (max-width: 1200px) {
  .advantages-center {
    transform: scale(0.8);
  }
}

@media screen and (max-width: 1000px) {
  .advantages-center {
    transform: scale(0.65);
  }
}

@media screen and (max-width: 768px) {
  .cooperation-section {
    padding: 30px 0;
  }

  .cooperation-title {
    font-size: 28px;
  }

  .cooperation-subtitle {
    font-size: 16px;
  }

  .advantages-center {
    width: 100%;
    height: auto;
    transform: none;
  }

  .advantages-title {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    width: 100%;
    margin-bottom: 30px;
  }

  .advantages-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .advantage-item {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    transform: none !important;
    left: auto;
    top: auto;
  }

  .advantage-content {
    padding: 15px 20px;
  }

  .advantage-content h3 {
    font-size: 18px;
  }

  .advantage-content p {
    font-size: 14px;
  }

  .advantage-content .number {
    font-size: 24px;
  }
}