body {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

img {
    vertical-align: middle;
}

.container {
    width: 100%;
    background-color: #c2fafb;
    padding-bottom: 40px;
}

p {
    margin: 0;
}


.glow-box {
    /* padding: 15px; */
    box-shadow: inset 0 0 20px rgba(109, 109, 109, 1),
    inset 0 0 20px rgba(255, 255, 255, 1); 
}

.pingluqu {
    width: 82%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    margin-top: 20px;
    border: 3px solid #007d9c;
}

.pingluqu-content {
    margin-top: 12px;
}

.pingluqu-content-item {
    display: flex;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ccc;
}

.pingluqu-content-item-left {
    width: 13%;
    float: left;
    margin-right: 5%;
}

.pingluqu-content-item-right {
    width: 82%;
    float: left;
    margin-top: 6px;
}

.containers {
    display: flex;
    justify-content: space-between; /* 确保两端对齐 */
    margin-top: 6px;
  }
   
  .left-align {
    text-align: left; /* 左对齐 */
  }
   
  .right-align {
    text-align: right; /* 右对齐 */
  }

  .fixed_margin {
	height: 60px;
}
.fixed {
	width: 98%;
	max-width: 750px;
	text-align: center;
	position: fixed;
	margin: 0 auto;
	font-size: 18px;
	left: 0;
	right: 0;
	bottom: 3px;
	/* background-color: rgba(255, 255, 255, 0.8); */
    /* background-image: url(./fooert1.png); */
	z-index: 3;
	padding-bottom: 10px;
	/* box-shadow: 0 1px 3px rgba(51, 51, 51, 0.8); */
	border-radius: 5px;
  }
.fixed_top {
    padding-top: 35px;
    font-size: 16px;
}
.fixed_bottom {
    display: flex;
    justify-content: space-evenly;
    padding-top: 12px;
}


  .expand {
    -webkit-animation-name: expand;
    -moz-animation-name: expand;
    -o-animation-name: expand;
    animation-name: expand;
    -webkit-animation-duration: 1.2s;
    -moz-animation-duration: 1.2s;
    -o-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  @-webkit-keyframes expand {
    from, 0% {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1);
    }
    to, 100% {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes expand {
    from, 0% {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1);
    }
    to, 100% {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
    }
  }


