.li1-box{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.li1-box-item{
  flex: 0 0 48%;
  position: relative;
  min-height: 250px;
  /* background-color: antiquewhite; */
  margin-bottom: 40px;
}

.boxitem-line{
  padding: 30px 40px;
}
.boxitem-line h6{
}
.boxitem-line h6>span{
  float: right;
}
.boxitem-line .propress{
  height: 8px;
  width: 100%;
  background-color: transparent;
  border-radius: 10px;
  overflow: hidden;
}
.propress>span{
    width: 0%;
    transition: width 1s ease-in-out;
    background-color: var(--mainColor);
    display: inline-block;
    height: 100%;
    vertical-align: super;
    border-radius: 10px;
}


h6{
  margin: 10px 0px;
}

.li2-box{
  /* min-height: 200px; */
  padding: 30px 50px;
  box-sizing: border-box;
}
.li2-box ul{
  display: flex;
  flex-wrap: wrap;
}
.li2-box li{
  flex: 0 0 33%;
  text-align: left;
  height: 30px;
  line-height:  30px;
  position: relative;
}
.li2-box li:after{
  position: absolute;
    content: '';
    left: -15px;
    top: 9px;
    width: 5px;
    height: 5px;
    /* background-color: aqua; */
    border-radius: 50%;
    border: 3px solid var(--mainColor);
}
.li3-box{
  display: flex;
  flex-wrap: wrap;
}
.li3-box>div{
  flex: 0 0 50%;
  position: relative;
  /* margin-bottom: 10px; */
}
.li3-box>div::after{
  position: absolute;
  right: 0px;
  top: 0px;
  content: '';
  display: inline-block;
  width: 5px;
  height: 100%;
  background-color: var(--headerCOlor);
}

.li3-box .carcontent{
  min-height: 150px;
  margin: 0 20px 20px;
  padding: 30px;
  box-sizing: content-box;
  /* width: 80%; */
  /* background-color: aqua; */
} 
.li3-box .li3box-pro{
  position: relative;
}
.li3box-pro:hover .carprogress{
  opacity: 1;
}
.li3-box .carprogress{
  transition: all .2s ease-in-out;
  position: absolute;
  right: -6px;
  z-index: 1;
  top: 10px;
  width: 18px;
  height: 18px;
  background-color: var(--headerCOlor);
  border-radius: 50%;
  box-sizing: border-box;
  border: 5px solid var(--mainColor);
  opacity: .5;
}


 /* 手机*/
 @media screen and (max-width: 550px) {
  .content-li{
    display: block;
  }
  .li1-box{
    display: block;
  }
  .li2-box ul{
    display: block;
  }
  .li3-box{
    display: block;
  }
  .li2-box li{
    width: 100%;
  }
}

.chart-container {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.radar-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.radar-svg {
  width: 350px;
  height: 350px;
}

.radar-area {
  animation: radarPulse 2s ease-in-out infinite;
}

@keyframes radarPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.9; }
}

.radar-legend {
  text-align: center;
}

.legend-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.legend-dot {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
}

.legend-scores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

.legend-scores span {
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 12px;
}

.bar-chart-container {
  padding: 30px 40px;
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bar-label {
  width: 80px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  flex-shrink: 0;
}

.bar-wrapper {
  flex: 1;
  height: 30px;
  background: #f0f0f0;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.bar-value {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.bar-item:nth-child(1) .bar-fill { width: 10%; }
.bar-item:nth-child(2) .bar-fill { width: 50%; }
.bar-item:nth-child(3) .bar-fill { width: 100%; }
.bar-item:nth-child(4) .bar-fill { width: 30%; }
.bar-item:nth-child(5) .bar-fill { width: 80%; }

@media screen and (max-width: 550px) {
  .radar-svg {
    width: 280px;
    height: 280px;
  }
  
  .bar-label {
    width: 70px;
    font-size: 12px;
  }
  
  .bar-value {
    font-size: 12px;
  }
}

.photo-wall-container {
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  margin-top: 20px;
}

.photo-wall-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.photo-wall-wrapper::before,
.photo-wall-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.photo-wall-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #f8f9fa 0%, transparent 100%);
}

.photo-wall-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, #f8f9fa 0%, transparent 100%);
}

.photo-wall-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.photo-wall-row-1 {
  margin-bottom: 15px;
}

.photo-wall-row-2 {
  margin-bottom: 25px;
}

.photo-wall-row-1 .photo-wall-track {
  animation: scroll-left 35s linear infinite;
}

.photo-wall-row-2 .photo-wall-track {
  animation: scroll-right 35s linear infinite;
}

.photo-wall-row-3 .photo-wall-track {
  animation: scroll-left 40s linear infinite;
}

.photo-wall-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.photo-item {
  flex-shrink: 0;
  width: 200px;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  background: #fff;
}

.photo-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.25);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  padding: 25px 10px 10px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.photo-item:hover .photo-caption {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .photo-item {
    width: 160px;
    height: 115px;
  }
  
  .photo-wall-track {
    gap: 15px;
  }
  
  .photo-wall-row-1 {
    margin-bottom: 10px;
  }
  
  .photo-wall-row-2 {
    margin-bottom: 15px;
  }
  
  .photo-wall-row-1 .photo-wall-track,
  .photo-wall-row-2 .photo-wall-track {
    animation-duration: 30s;
  }
  
  .photo-wall-row-3 .photo-wall-track {
    animation-duration: 35s;
  }
  
  .photo-caption {
    font-size: 11px;
    padding: 20px 8px 8px;
  }
  
  .photo-wall-wrapper::before,
  .photo-wall-wrapper::after {
    width: 50px;
  }
}

@media screen and (max-width: 480px) {
  .photo-item {
    width: 130px;
    height: 95px;
  }
  
  .photo-wall-track {
    gap: 12px;
  }
  
  .photo-wall-row-1 {
    margin-bottom: 8px;
  }
  
  .photo-wall-row-2 {
    margin-bottom: 12px;
  }
  
  .photo-wall-row-1 .photo-wall-track,
  .photo-wall-row-2 .photo-wall-track {
    animation-duration: 25s;
  }
  
  .photo-wall-row-3 .photo-wall-track {
    animation-duration: 30s;
  }
  
  .photo-wall-wrapper::before,
  .photo-wall-wrapper::after {
    width: 40px;
  }
}
