.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, .5);
  z-index: 4000;
}
.popup > .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFF;
  width: 380px;
  /* overflow: hidden; */
}
.popup.large > .inner {
  width: 500px;
}
.popup > .inner .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  font-size: 14px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #dadada;
  box-shadow: 0 1px 4px #dadada;
}

.popup > .inner .header .title {
  padding-left: 18px;
}

.popup > .inner .header .close {
  padding-right: 18px;
}

.popup > .inner .body {
  padding: 25px 20px;
}
.popup > .inner .body .avatar {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}
.popup > .inner .body .avatar input {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  outline: 0;
}
.popup > .inner .body .avatar .avatar-mask {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: 1px solid #a8a8a8;
  color: #a8a8a8;
  line-height: 60px;
  overflow: hidden;
  font-size: 16px;
  cursor: pointer;
}

.popup > .inner .body .avatar .avatar-mask img {
  width: 100%;
}
.popup > .inner .body .line {
  position: relative;
  margin-bottom: 4px;
  width: 100%;
  line-height: 32px;
  background: #f5f5f5;
  border-radius: 4px;
}
.popup > .inner .body .line input {
  width: 100%;
  background: transparent;
  outline: 0;
  border: 0;
  line-height: inherit;
  padding: 0 8px;
  box-sizing: border-box;
}
.popup > .inner .body .line input.gray {
  color: #a8a8a8;
}
.popup > .inner .body .line input:-moz-placeholder {
  color: #b7b7b7;
}
.popup > .inner .body .line input::-webkit-input-placeholder {
  color: #b7b7b7;
}

.popup > .inner .popup-footer {
  /* margin-top: 30px; */
  margin-top: 15px;
  display: flex;
}
.popup > .inner .popup-footer a.btn {
  display: inline-block;
  width: 145px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid transparent;
}
.popup > .inner .popup-footer a.btn.btn-black {
  background-color: #40464c;
  border-color: #40464c;
}

.popup > .inner .popup-footer a.btn.btn-normal {
  background-color: #fdfdfd;
  border-color: #c3c4c6;
  color: #40464c;
}
.popup > .inner .popup-footer.type2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0 30px;
  margin: 0;
  background-color: #f4f4f4;
}

.popup > .inner .popup-footer.type2 .tip {
  font-size: 12px;
  color: #000;
}
.popup > .inner .popup-footer.type2 a.btn {
  width: auto;
  height: 30px;
  padding: 0 30px;
  line-height: 30px;
  border-radius: 2px;
  background-color: #bebfc1;
  color: #FFF;
  margin: 0;
  /* border-color: 0; */
}

.popup > .inner .popup-footer.type2 a.btn.btn-confirm.active {
  background-color: #40464c;
}

.popup > .inner .popup-tip {
  font-size: 12px;
  color: #a8a8a8;
  margin-top: 20px;
}
.popup > .inner .popup-error {
  font-size: 12px;
  color: #a8a8a8;
  margin-top: 6px;
  height: 17px;
}
.popup .press-list {
  list-style-type: none;
}
.popup .press-list .press-wrapper {
  display: flex;
  /* height: 65px; */
  height: 50px;
  padding: 7px 10px 7px 20px;
  cursor: pointer;
}
.popup .press-list .press-wrapper  * {
  cursor: pointer;
}

.popup .press-list .press-wrapper:hover {
  background-color: #f4f4f4;
}
.popup .press-list .press-wrapper.active {
  background-color: #d3e3fa;
}
.popup .press-list .press-wrapper .press-head{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.popup .press-list .press-wrapper .press-head img {
  display: block;
  width: 100%;
}
.popup .press-list .press-wrapper .press-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 50px;
  margin-left: 10px;
}
.popup .press-list .press-wrapper .press-footer{
  line-height: 50px;
  height: 50px;
  margin-left: 10px;
  display: none;
  font-size: 12px;
    color: #6494d9;
}
.popup .press-list .press-wrapper .press-footer span{
  font-size: 12px;
  color: #6494d9;
}
.popup .press-list .press-wrapper .press-footer i{
  font-size: 12px;
}
.popup .press-list .press-wrapper .press-title {
  font-size: 14px;
  color: #000;
}
.popup .press-list .press-wrapper .press-info {
  font-size: 12px;
  color: #8d8d8d;
  white-space: nowrap;
  width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popup.popup-change-press .body {
  padding: 0;
  height: 320px;
  overflow-y: auto;
}

.popup-change-press .content {
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 12px;
}

.popup-change-press .content a{
  color: #6494d9;
  padding: 0 4px;
}
.popup-change-object .input {
  position: relative;
  padding: 0 8px;
  font-size: 12px;
  color: #000;
  user-select: none;
  cursor: pointer;
}
.popup-change-object .input span {
  cursor: pointer;
}
.popup-change-object .input.placeholder {
  color: #bababa;
}
.littleSiggle {
  border: 4px solid transparent;
  border-top: 4px solid #bdbdbd;
  position: absolute;
  height: 0;
  width: 0;
  right: 8px;
  top: 14px;
}

.popup-change-object .dropDown {
  position: absolute;
  top: 35px;
  left: 0px;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  font-size: 12px;
  color: #333;
  background-color: #FFF;
  box-shadow: rgb(204, 204, 204) 0px 2px 8px;
  border-radius: 2px;
  /* padding: 10px 0px; */
}

.popup-change-object .dropDown li {
  display: block;
  cursor: pointer;
  color: #666;
  height: 30px;
  line-height: 30px;
  position: relative;
  font-size: 12px;
  padding: 0px 8px;
}

.popup-change-object .dropDown li:hover {
  background-color: #f5f5f5;
}
.popup.popup-change-press > .inner .header {
  /* font-size: 12px; */
  color: #666;
  height: 50px;
}
.popup.popup-change-press > .inner .header .close img{
  width: 9px;
} 
.popup2 {
   position: fixed;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  left:0;
  top:0px;
  z-index:999;
}
.popup2 > .cover {
/*  position: fixed;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  left:0;
  top:0px;
  z-index:999;*/

/*  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);*/
}
.popup2 > .inner {
  z-index: 2;
  width: 420px;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: #FFF;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto; 
  font-size: 14px;
  overflow: hidden;
}
#time-selector > .inner {
  z-index: 2;
  width: 420;
  height: 332px;
  padding: 0 30px;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: #FFF;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto; 
  font-size: 14px;
  overflow: hidden;
}

.popup2  .header {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 20px;
}
.popup2  .header .title {
  font-size: 16px;
  color: #000;
}
.popup2  .body {
  padding-bottom: 90px;
}

.popup2  .body .info {
  padding: 16px 12px;
  font-size: 12px;
  background-color: #f7f7f7;
  border: 1px solid #f0f0f0;
  color: #676767;
  margin-bottom: 22px;
}

.popup2  .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
  line-height: 30px;
  padding-bottom: 30px;
}

.popup2  .footer .tip {
  font-size: 12px;
  color: #d86252;
}

.popup2  .footer .btn.btn-confirm {
  height: 30px;
  width: 90px;
  border-radius: 2px;
  text-align: center;
}

.popup2 .time-wrapper {
  display: flex;
}

.popup2 .time-wrapper .select-wrapper > .container{
  position: relative;
  border: 1px solid #e6e6e6;
  width: 80px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  font-size: 14px;
  color: #6898dd;
  cursor: pointer;
}
.popup2 .time-wrapper .select-wrapper > .container * {
  cursor: pointer;
}
.popup2 .time-wrapper .select-wrapper > .container span {
  position: relative;
  /* left: -6px; */
}
.popup2 .time-wrapper .select-wrapper > .container .public_dow {
  position: absolute;
  right: 10px;;
  top: 11px;;
}
.popup2 .time-wrapper .line,
.popup2 .time-wrapper .word {
  position: relative;
  width: 100px;
  line-height: 25px;
  font-size: 14px;
  text-align: center;
  color: #767676;
}
.popup2 .time-wrapper .line:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #e6e6e6;
}

.popup2 .time-wrapper .select-wrapper {
  position: relative;
}

.popup2 .time-wrapper .select-wrapper .list-wrapper {
  position: absolute;
  top: 34px;
  width: 80px;
  height: 75px;
  line-height: 25px;
  border: 1px solid #e6e6e6;
  text-align: center;
  color: #666;
  font-size: 12px;
  /* overflow-y: auto; */
}
.popup2 .time-wrapper .select-wrapper .list-wrapper:before {
  content: '';
  position: absolute;
  top: -7px;
  left: 35px;
  width: 12px;
  height: 7px;
  background: url(/head_for/img/service/service_h_jian.png) no-repeat;
  background-size: contain;
}
.popup2 .time-wrapper .select-wrapper ul.list {
  width: 80px;
  height: 75px;
  overflow-y: auto;
}
.popup2 .time-wrapper .select-wrapper ul.list li:hover {
  background:#f5f5f5;
}
.popup-programs > .inner {
/*  width: 500px;
  height: 380px;
  padding:10px 40px;*/
  width: 500px;
  height: 380px;
  padding: 10px 40px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto; 
  overflow: hidden;
}
.popup-programs > .inner .header {
  align-items: center;
  height: 50px;
  padding: 0;
  border-bottom: 1px solid #e5e5e5;
}
.popup-programs > .inner .header .close{
  cursor: pointer;
}
.popup-programs > .inner .nav {
  display: flex;
  line-height: 50px;
}
.popup-programs > .inner .nav div {
  padding: 0 8px;
  font-size: 15px;
  color: #a0a0a0;
  cursor: pointer;
  margin-right: 10px;
}

.popup-programs > .inner .nav div.active {
  border-bottom: 2px solid #41464c;
  color: #41464b;
}

.popup-programs .program {
  text-align: center;
  margin-top: 60px;
}

.popup-programs .program .title {
  margin-top: 24px;
  font-size: 14px;
  color: #44484d;
}

.popup-programs .program .tip {
  margin-top: 12px;
  font-size: 12px;
  color: #a0a0a0;
}

.popup-programs .program img {
  width: 143px;
}