.frame {
  width: 1040px;
  height: 420px;
  padding-top: 30px;
  margin:30px auto;
  /*border-radius: 2px;
  box-shadow: 4px 8px 16px 0 rgba(0, 0, 0, 0.1);
   background: #12c2e9;
  background: linear-gradient(45deg, #f64f59, #c471ed, #12c2e9);*/
  overflow: hidden;
  color: #333;
  font-family: 'Open Sans', Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.frame p {
  text-align: center;
  color: #7a7a7a;
  font-size: 16px;
  margin-bottom: 10px;
}
.frame p.title {
  font-size: 0.8rem;
  font-weight: 700;
  background: #12c2e9;
  color: #f0f0f0;
  padding: 20px 0;
  font-size:18px;
}
.frame p .cost {
  display: block;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.frame p .jiage{
	color:#ee950c;
	font-weight:600;
}
.frame hr {
  color: #eee;
  border: 0;
  height: 0;
  border-top: 3px solid rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid rgba(255, 255, 255, 0.3);
  width: 60%;
  margin: 2px auto;
}
.frame hr:nth-of-type(2n+2) {
  width: 50%;
}

.frame .pack {
  width: 300px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  background: #fff;
  height: 390px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
  float:left;
  margin-left:35px;
}
.frame .pack:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.frame .pack:hover .title {
  background: linear-gradient(-141deg, #ecca1b, #f39526);
}

.frame .stats {
  width: 350px;
  height: 160px;
  background: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  color: #333;
  margin-top: 20px;
  padding: 10px;
}
.frame .stats > div {
  display: flex;
  flex-direction: column;
}
.frame .stats > div .labels {
  display: flex;
  justify-content: space-between;
}
.frame .stats > div .progress {
  width: 100%;
  height: 10px;
  background: #ddd;
  margin-top: 5px;
  border-radius: 5px;
}
.frame .stats > div .progress .value {
  background: linear-gradient(to right, #00d2ff, #3a7bd5);
  height: 100%;
  border-radius: 5px;
  width: 0;
  transition: all 0.7s ease;
}
.frame .stats .space {
  margin: 20px 0;
}
