/*****address******/
.address {
  width: 1100px;
  height: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
}
.address .checked input {
  margin-right: 5px;
  vertical-align: middle;
}
.address .item {
  position: relative;
  border: 1px solid #999;
  height: 73px;
  display: flex;
  border-radius: 10px;
  align-items: center;
  line-height: 73px;
  padding: 0 20px;
  margin-bottom: 20px;
  width: 100%;
}
.address .item label {
  position: absolute;
  left: 20px;
  top: 0;
  font-size: 24px;
  color: #999;
  transition: ease-in-out 0.2s;
}
.address .item .input {
  width: 100%;
}
.address .item .input input {
  width: 90%;
  font-size: 18px;
  line-height: 100%;
  outline: none;
  position: absolute;
  left: 20px;
  top: 0;
  height: 100%;
  background: none;
  border: none;
  opacity: 0;
}
.address .item .input select {
  width: 90%;
  font-size: 18px;
  line-height: 100%;
  outline: none;
  position: absolute;
  left: 20px;
  top: 0;
  height: 100%;
  background: none;
  border: none;
  opacity: 0;
}
.address .item:hover {
  border: 1px solid #00b1c7;
}
.address .item:nth-child(1) {
  float: left;
  width: 48%;
}
.address .item:nth-child(2) {
  float: right;
  width: 48%;
}
.address .item:nth-child(4) {
  float: left;
  width: 48%;
}
.address .item:nth-child(5) {
  float: right;
  width: 48%;
}
.address .item:nth-child(6) {
  float: left;
  width: 48%;
}
.address .item:nth-child(7) {
  float: right;
  width: 48%;
  margin-left: 2%;
}
.address .item.on label {
  font-size: 18px;
  line-height: 35px;
}
.address .item.on .input input {
  height: 35px;
  line-height: 35px;
  top: 30px;
  opacity: 1;
}
.address .item.on .input select {
  height: 35px;
  line-height: 35px;
  top: 30px;
  opacity: 1;
}
.address .btn {
  display: block;
  width: 220px;
  height: 40px;
  line-height: 40px;
  background: #00b1c7;
  color: #fff;
  text-align: center;
  outline: none;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  margin: 50px auto 100px;
  cursor: pointer;
}
.address .btn:hover {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.address .playcon {
  padding: 80px 20px 0;
}
.address .close {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  background: url(../../images/close.png) no-repeat center center;
  background-size: cover;
  -webkit-transition: all ease 300ms;
  -moz-transition: all ease 300ms;
  -ms-transition: all ease 300ms;
  -o-transition: all ease 300ms;
  transition: all ease 300ms;
  z-index: 10;
}
.address .close:hover {
  transform: rotate(180deg);
}
.dialog-layout {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background: #000;
  opacity: 0.5;
}
@media (max-width: 1440px) {
  .address {
    width: 900px;
  }
}
@media (max-width: 992px) {
  .address {
    width: 96%;
    left: 2%;
    top: 50%;
    margin: 0;
    height: 9rem;
  }
  .address .item {
    height: 0.9rem;
    line-height: 0.9rem;
    margin-bottom: 0.2rem;
    width: 100%;
  }
  .address .item label {
    font-size: 0.22rem;
    left: 0.2rem;
  }
  .address .item.on label {
    font-size: 0.22rem;
    line-height: 0.4rem;
  }
  .address .item.on .input input {
    line-height: 0.4rem;
    height: 0.4rem;
    top: 0.4rem;
    width: 85%;
  }
  .address .item.on .input select {
    line-height: 0.4rem;
    height: 0.4rem;
    top: 0.4rem;
    width: 85%;
    font-size: 0.24rem;
  }
  .address .item {
    padding: 0 0.2rem;
  }
  .address .playcon {
    padding: 0.9rem 0.2rem 0;
  }
  .address .close {
    width: 0.25rem;
    height: 0.25rem;
  }
  .address .btn {
    margin: 0.5rem auto 1rem;
    width: 2.2rem;
    line-height: 0.6rem;
    height: 0.6rem;
    font-size: 0.3rem;
  }
  .address .item:nth-child(7) {
    width: 48%;
    float: right;
  }
}
