/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/*Reset CSS*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*CSS*/
body {
  background: #EEEEEE;
}
.input-data {
  width: 100%;
  height: 300px;
  background: #424242;
  vertical-align: middle;
}
.input-data-image {
  width: 33%;
  text-align: right;
  float: left;
  vertical-align: middle;
  padding-top: 80px;
}
.input-data-image img {
  width: 117px;
  height: 117px;
}
.input-data-input {
  width: 33%;
  text-align: center;
  float: left;
  vertical-align: middle;
  margin: 0px auto;
}
.input-box {
  width:70%;
  margin: 0px auto;
  padding-top: 60px;
  text-align: left;
}
.input-title {
  font-family: .AppleSystemUIFont;
  font-size: 18px;
  color: #FFD366;
  text-align: left;
  margin: 0px 70px;
}
.input-data-input input {
  width: 70%;
  height: 40px;
  background: rgba(255,255,255,0.18);
  border: 1px solid #FFD366;
  border-radius: 10px;
  font-family: .PingFangTC-Regular;
  font-size: 24px;
  color: rgba(255,255,255,0.50);
  margin: 7px 50px 23px 70px;
  padding-left: 10px;
  outline: none;
}

/*Button*/
.input-data-send {
  width: 33%;
  text-align: left;
  float: left;
  vertical-align: middle;
}
.input-data-send input {
  width: 120px;
  height: 120px;
  margin-top: 85px;
  text-align: center;
  background: #FFD366;
  border-radius: 50%;
  font-family: .PingFangTC-Regular;
  font-size: 24px;
  color: #424242;
  outline: 0;
}

/*Result*/
.input-data-result {
  height: 123px;
  margin-top: 85px;
  text-align: left;
}
.input-data-result h2 {
  margin: 45px 20px;
  float: left;
  font-family: .SFNSDisplay;
  font-size: 32px;
}
.result-bmi {
  width: 123px;
  height: 123px;
  text-align: center;
  border: 6px solid;
  border-radius: 50%;
  position: relative;
  box-sizing: border-box;
  float: left;
}
.result-bmi h1 {
  margin-top: 40px;
  font-family: .SFNSDisplay;
  font-size: 32px;
}
.result-bmi span {
  margin-top: -40px;
  font-family: .AppleSystemUIFont;
  font-size: 12px;
}
.result-bmi button {
  width: 35px;
  height: 35px;
  border: 3px solid #424242;
  border-radius: 50%;
  position: absolute;
  right: -2px;
  bottom: -2px;
  outline: 0;
}
.result-bmi button img {
  width: 14px;
  height: 19px;
  margin-left: -2px;
  margin-bottom: -2px;
}

/*Show Data*/
.show-data {
  width: 80%;
  min-height: 1000px;
  margin: 0px auto;
  margin-bottom: 100px;
  text-align: center;
}
.show-data-title {
  margin: 50px auto;
  text-align: center;
  font-family: .SFNSDisplay;
  font-size: 24px;
  color: #424242;
}
.card {
  width: 624px;
  height: 62px;
  background: #FFFFFF;
  line-height: 62px;
  margin: 16px auto 0px auto;
  vertical-align: middle;
  text-align: center;
  border-left: 7px solid;
  position: relative;
}
.card::before {
  content: "移除";
  display: block;
  position: absolute;
  top: 0;
  left: -7px;
  width: calc(100% + 7px);
  height: 100%;
  color: #fff;
  background-color: #424242;
  text-align: center;
  opacity: 0;
  transition: all 0.2s;
}
.card:hover::before {
  opacity: 0.9;
}
.card span {
  font-family: .AppleSystemUIFont;
  font-size: 12px;
  color: #424242;
}
.card div {
  font-family: .SFNSDisplay;
  font-size: 20px;
  color: #4A4A4A;
  box-sizing: border-box;
  vertical-align: middle;
}
.show-judge {
  width: 18%;
  text-align: left;
  float: left;
  padding-left: 20px;
}
.show-bmi {
  width: 20%;
  text-align: center;
  float: left;
}
.show-cm {
  width: 22%;
  text-align: center;
  float: left;
}
.show-kg {
  width: 22%;
  text-align: center;
  float: left;
}
.show-date {
  width: 12%;
  text-align: right;
  float: right;
  padding-right: 15px;
}

footer {
  width: 100%;
  height: 90px;
  background: #FFD366;
  text-align: center;
}
footer img {
  height: 55px;
  width: 55px;
  margin-top: 18px;
  filter: invert(99%) sepia(0%) saturate(2%) hue-rotate(31deg) brightness(104%) contrast(101%);
}
