/* pc */
#pcContent {
	background-image: url("../image/pc/bg.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#pcContent #phones {
	position: absolute;
    width: 32vw;
    right: 10vw;
    top: 15vh;
    animation: float 6s ease-in-out infinite;
}

#pcContent #bgCircle {
	position: absolute;
    width: 50vw;
    right: 5vw;
    top: 6vh;
}

#pcContent #logo {
	width: 12vw;
    position: absolute;
    left: 43vw;
    top: 13vh;
}

#pcContent #register,
#pcContent #app {
	width: 12vw;
	position: absolute;
	top: 23vh;
}

#pcContent #register.active:hover,
#pcContent #app.active:hover {
	width: 11.8vw;
	cursor: pointer;
}

#pcContent #app {
	left: 36.3vw;
}

#pcContent #register {
	left: 52.5vw;
}

#pcContent #listingArea {
	border: 0.2vw solid rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.29);
    border-radius: 5%;
    font-size: 1vw;
    padding: 1.5vw 2.5vw;
    width: 32vw;
    position: absolute;
    left: 34vw;
    top: 34vh;
    height: 50vh;
    text-align: center;
    color: #1c5a93;
}

#pcContent #listingArea #recommend {
	width: 70%;
}

#pcContent .listItem {
	display: flex;
	padding: 0.5vw 1vw;
	background-color: rgba(255, 255, 255, 0.51);
	margin-top: 2.5vh;
	line-height: 4.5vh;
	font-size: 1vw;
	height: 6.5vh;
	font-weight: 600;
}

#pcContent .listItem .signal {
	width: 1.5vw;
	height: 1.5vw;
	margin-top: 0.5vh;
}

#pcContent .listItem .linkSpan {
	width: 15vw;
	text-align: left;
	margin-left: 1.5vw;
}

#pcContent .listItem .timeSpan {
	width: 8vw;
	margin-right: 1vw;
}

#pcContent .listItem button {
	width: 7vw;
	border: none;
	background-color: #1c5a93;
	color: white;
	font-weight: 600;
	height: 2vw;
	line-height: 2vw;
	padding: 0;
	font-size: 1vw;
	border-radius: 0.3vw;
}

#pcContent .listItem button:hover {
	font-size: 1.1vw;
	cursor: pointer;
}

#pcContent #footer {
	background-color: #2C3033;
	height: 4%;
	line-height: 4vh;
	color: #b5b5b5;
	position: absolute;
	bottom: 0;
	padding: 0 15vw;
	font-size: 0.8vw;
}


/* rwd */
#mobileContent {
	background-image: url("../image/rwd/bg.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: scroll;
	padding-top: 20px;
}

#mobileContent #logo {
	width: 30%;
}

#mobileContent #nevigator {
	display: flex;
	width: 80%;
	margin: 10px auto 10px auto;
}

#mobileContent #bgCircle {
	/* position: fixed; */
	width: 80%;
	margin-left: 10%;
	margin-top: 5%;
}

#mobileContent #phones {
	/* position: fixed; */
	width: 55%;
	margin-left: 24%;
	margin-top: -67%;
	animation: float 6s ease-in-out infinite;
}

#mobileContent #listingArea {
	margin: auto;
	width: 96%;
	background-color: rgba(255, 255, 255, 0.29);
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 10px;
	padding: 20px 15px;
	text-align: center;
	color: #1c5a93;
	font-weight: 600;
	/* margin-bottom: 40px; */
}

#mobileContent #listingArea #recommend {
	width: 80%;
	margin-bottom: 2%;
}

#mobileContent #listingArea .listItem {
	display: flex;
	height: 45px;
	padding: 10px 0 10px 10px;
	background-color: rgba(255, 255, 255, 0.51);
	margin-top: 10px;
}

#mobileContent #listingArea .listItem .signal {
	width: 20px;
	height: 20px;
	margin-top: -5px;
}

#mobileContent #listingArea .listItem button {
	width: 100%;
	border: none;
	background-color: #1c5a93;
	color: white;
	font-weight: 600;
	height: 45px;
	line-height: 30px;
	padding: 0;
	font-size: 16px;
	border-radius: 10px;
	margin-top: -10px;
}

#mobileContent #listingArea .listItem .timeSpan {
	text-align: right;
	padding-right: 10px;
}

#mobileContent #listingArea .listItem .linkSpan {
	text-align: left;
	padding-left: 5px;
}

#mobileContent {
	position: relative;
	padding-bottom: 150px;
}

/* common */
body {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

.timeSpan.green {
	color: #1c9322;
}

.timeSpan.orange {
	color: #ff9000;
}

.timeSpan.red {
	color: #ff0000;
}

.text-right {
	text-align: right;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}

	50% {
		transform: translatey(-20px);
	}

	100% {
		transform: translatey(0px);
	}
}