.layer-full-screen {
	position: fixed;
	top: 50;
	left: 0;
	right: 0;
	height: 100vh;
	background-color: rgba(115,115,115,.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
}

#logginstDiv .modal-box {
  width: 760px;
  height: 438px;
  background: #FFFFFF;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top:80px;
}

#logginstDiv .top-banner{
  position: absolute;
  top: 0;
  width: 98%;
  height: 210px;
  transform:translateY(-100%);
  background: url(../images/logginst/top-banner.png) no-repeat center;
  background-size: cover;
  box-sizing: border-box;
  padding: 26px 66px 20px 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

#logginstDiv .banner-text{
  font-size: 14px;
  line-height: 26px;
  color: #fff;
}

#logginstDiv .banner-text span{
  color:#FFED8B;
  font-weight: bolder;
}

#logginstDiv .banner-title {
  background: url(../images/logginst/top-title.png) no-repeat right center;
  width: 149px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 18px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 24px;
  text-align: center;
  padding-right: 18px;
}


#logginstDiv .modal-box-titile {
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	line-height: 36px;
}

#logginstDiv .options-list {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

#logginstDiv .options-list>li {
	width: 49%;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	border-radius: 4px;
	padding: 8px 20px;
	box-sizing: border-box;
	cursor: pointer;
}

#logginstDiv .options-list>li .icon {
  margin-right: 10px;
  height: 16px;
  width: 16px;
  margin-top: 3px;
  background: url(../images/logginst/circle.png) no-repeat center;
  background-size: cover;
}

#logginstDiv .options-list>li.selected .icon{
  background: url(../images/logginst/tick.png) no-repeat center;
  background-size: cover;
}

#logginstDiv .options-list>li p {
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
}

#logginstDiv .submit {
	width: 233px;
	height: 58px;
	background: #448AF7;
	border-radius: 29px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	outline: none;
	cursor: pointer;
}

#logginstDiv .disabled {
	cursor: not-allowed;
	opacity: 0.2;
}

#logginstDiv .close-btn {
	display: inline-block;
	width: 16px;
	height: 2px;
	background: #999;
	line-height: 0;
	font-size: 0;
	vertical-align: middle;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	position: absolute;
	top: 25px;
	right: 20px;
	cursor: pointer;
}

#logginstDiv .close-btn:after {
	content: "/";
	display: block;
	width: 16px;
	height: 2px;
	background: #999;
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
}

@media screen and (max-width:768px) {
	#logginstDiv .modal-box {
		width: calc(100% - 2rem);
		height: auto;
		padding: 3rem 1rem 1rem;
	}
	
	#logginstDiv .top-banner{
		height: auto;
		padding: 1rem;
    }

    #logginstDiv .banner-title {
		font-size: 14px;
        padding-right: 26px;
   }
	#logginstDiv .modal-box-titile {
		font-size: 1rem;
		line-height: 1.5rem;
	}
	#logginstDiv .options-list {
		width: calc(100% + 2rem);
		padding: 0 1rem;
		box-sizing: border-box;
		max-height: 40vh;
		overflow-x: auto;
		margin-top: 1.6rem;
	}
	#logginstDiv .options-list>li {
		width: 100%;
		margin-bottom: 10px;
		padding: 1px 10px;
	}
	#logginstDiv .options-list>li img {
		width: 1.6rem;
	}
	#logginstDiv .options-list>li p {
		font-size: .8rem;
		font-family: Microsoft YaHei;
		font-weight: 400;
		color: #333333;
	}
	#logginstDiv .options-list>li p span {
		font-size: .8rem;
		line-height: 1rem;
	}
	#logginstDiv .submit {
		max-width: 200px;
		height: 38px;
		font-size: .8rem;
	}
}