@charset "utf-8";

.tail-banner-slide{
	/* display: none; */
}

.dashboard-grid{
	display: grid;
	grid-template-columns: repeat(4, calc((100% - 45px) / 4));
    gap: 25px 15px;
}

.dashboard-grid .grid-item{
	/* background-color: var(--white); */
    border-radius: 5px;
    /* box-shadow: 0px 0px 10px rgba(255, 90, 90, 0.15); */
    box-sizing: border-box;
    /* padding: 20px 20px; */
}

.dashboard-grid .grid-item h3{
	width: 100%;
	font-size: 1.25rem;
	font-weight: var(--fw-700);
}

.dashboard-grid .grid-item.item01{
    grid-column: 1/4;
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
}

.dashboard-grid .grid-item.item02{
    grid-row: 1/5;
	grid-column: 4/5;
	border-radius: 5px;
	background-color: var(--white);
    /* box-shadow: 0px 0px 10px rgba(255, 90, 90, 0.15); */
	box-shadow:0 0 10px rgba(227,227,227,0.15);
	box-sizing: border-box;
	padding: 20px 50px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.dashboard-grid .grid-item.item03{
    grid-row: 2;
	grid-column: 1/4;
}
.dashboard-grid .grid-item.item04{
	grid-row: 3;
	grid-column: 1/3;
}

.dashboard-grid .grid-item.item05{
	grid-row: 4;
	grid-column: 1/3;
}
.dashboard-grid .grid-item.item06{
	grid-row: 3/5;
	grid-column: 3/4;
}


.dashboard-grid .grid-item.item01 ul{
	width: 100%;
	margin-top: var(--space-20);
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 15px;
}

.dashboard-grid .grid-item.item01 ul li{
	width: calc( (100% - 30px) / 2);
}

.dashboard-grid .grid-item.item01 ul li a{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	padding: 20px;
	border-radius: 5px;
	background-color: var(--white);
	/* box-shadow: 0px 0px 10px rgba(255, 90, 90, 0.15); */
	box-shadow:0 0 10px rgba(227,227,227,0.15);
}

/* .dashboard-grid .grid-item.item01 ul li:nth-child(1) a{
	background-color: #c9ebff;
}

.dashboard-grid .grid-item.item01 ul li:nth-child(2) a{
	background-color: #fffbc9;
}

.dashboard-grid .grid-item.item01 ul li:nth-child(3) a{
	background-color: #c9d2ff;
} */

.dashboard-grid .grid-item.item01 ul li .icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px; height: 60px;
	border-radius: 50%;
	background-color: var(--red02);
}

.dashboard-grid .grid-item.item01 ul li .icon i{
	font-size: 1.875rem;
	color: var(--red01);
}

.dashboard-grid .grid-item.item01 ul li .text{
	font-size: 1.125rem;
}

.dashboard-grid .grid-item.item01 ul li .text strong{
	font-size: inherit;
}

.dashboard-grid .grid-item.item01 ul li .text span{
	color: var(--gray02);
	font-weight: var(--fw-500);
}

.dashboard-grid .grid-item.item01 ul li .text span .triangle{}

 .dashboard-grid .grid-item.item02 .user-info-box{
	
 }

 .dashboard-grid .grid-item.item02 .user-info-box figure{
	width: 150px;
	margin: 0 auto;
 }

 .dashboard-grid .grid-item.item02 .user-info-box figure figcaption{
	text-align: center;
	margin-top: var(--space-10);
	font-size: 1rem;
 }

  .dashboard-grid .grid-item.item02 .user-info-box figure figcaption strong{
	font-size: 1.375rem;
	margin-right: 5px;
  }

 .dashboard-grid .grid-item.item02 .user-info-box figure img{}

 .dashboard-grid .grid-item.item02 .usable-coin-box{
/* 	display: flex;
	flex-direction: row;
	align-items: center; */
	gap: 10px;
	margin-top: var(--space-15);
	position: relative;
 }

  .dashboard-grid .grid-item.item02 .usable-coin-box h4{
	font-weight: var(--fw-500);
	color: var(--gray01);
	font-size: 0.9375rem;
	text-align: center;
	position: absolute;
	opacity: 0;
  }

 .dashboard-grid .grid-item.item02 .usable-coin-box .coin-box{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--red01);
	padding: 10px 20px;
	border-radius: 50px;
 }

  .dashboard-grid .grid-item.item02 .usable-coin-box .coin-box .coin-icon{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 25px; height: 25px;
	background-color: var(--red01);
	border-radius: 50%;
	color: var(--white);
	font-style: normal;
	font-size: 0.9375rem;
	font-weight: var(--fw-600);
  }

  .dashboard-grid .grid-item.item02 .usable-coin-box .coin-box p{
	font-size: 1rem;
	color: var(--gray01);
  }

  .dashboard-grid .grid-item.item02 .usable-coin-box .coin-box p strong{
	font-size: 1.25rem;
	margin-right: 5px;
	color: var(--red01);
  }

 .dashboard-grid .grid-item.item03 .trending-wrapper{
    position: relative;
    display: block !important;
    height: 60px;
    padding: 0;
    border: none;
    background-color: var(--white);
    overflow-y: hidden;
    border-radius: 5px;
	margin-top: var(--space-20);
	/* box-shadow: 0px 0px 10px rgba(255, 90, 90, 0.15); */
	box-shadow:0 0 10px rgba(227,227,227,0.15);
}

 .dashboard-grid .grid-item.item03 .trending-wrapper .trending{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px;
    padding: 10px 15px 10px 20px;
    font-size: 13px;
    line-height: 1.2;
    cursor: pointer;
}


.dashboard-grid .grid-item.item04 .domain-list-box{
	margin-bottom: 0;
	margin-top: var(--space-20);
}

.dashboard-grid .grid-item.item04 .domain-list-item{
	width: 100%;
}

.dashboard-grid .grid-item.item05 .banner-slide{
	border-radius: 5px;
	/* box-shadow: 0px 0px 10px rgba(255, 90, 90, 0.15); */
	box-shadow:0 0 10px rgba(227,227,227,0.15);
	overflow: hidden;
}


.dashboard-grid .grid-item.item05 .banner-slide .swiper-pagination-bullet-active{
	background: var(--red01);
}

.dashboard-grid .grid-item.item06 h3{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.dashboard-grid .grid-item.item06 h3 a{
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 3px;
	color: var(--gray01);
}

.dashboard-grid .grid-item.item06 h3 a span{
	font-size: 0.875rem;
	color: inherit;
}

.dashboard-grid .grid-item.item06 h3 a i{
	font-size: 0.875rem;
	color: inherit;
}

.dashboard-grid .grid-item.item06 .notice-box{
	margin-top: var(--space-20);
	border-radius: 5px;
    background-color: var(--white);
    /* box-shadow: 0px 0px 10px rgba(255, 90, 90, 0.15); */
	box-shadow:0 0 10px rgba(227,227,227,0.15);
    box-sizing: border-box;
    /* padding: 20px; */
	padding: 10px 20px;
	height: 440px;
}

.dashboard-grid .grid-item.item06 .notice-box .notice-list{}

.dashboard-grid .grid-item.item06 .notice-box .notice-list li{
	padding: 10px 0;
}

.dashboard-grid .grid-item.item06 .notice-box .notice-list li:not(:last-child){
	border-bottom: 1px dashed #ccc;
}

.dashboard-grid .grid-item.item06 .notice-box .notice-list li a{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
}

.dashboard-grid .grid-item.item06 .notice-box .notice-list li span{
	font-size: 0.875rem;
}

.dashboard-grid .grid-item.item06 .notice-box .notice-list li span.number{
	display: flex;
	width: 22px; height: 22px;
	background-color: var(--orange01);
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	color: var(--white);
}

.dashboard-grid .grid-item.item06 .notice-box .notice-list li span.title{
	font-weight: var(--fw-500);
	width: 70%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.dashboard-grid .grid-item.item06 .notice-box .notice-list li span.date{
	width: 20%;
	color: var(--gray02);
	font-size: 0.8125rem;
}


#trendWebsite{
	width: 100%;
	height: calc( 240px + 15px + 150px );
	height: 270px;
	box-sizing: border-box;
	padding: 20px;
	/* box-shadow: 0px 0px 10px rgba(255, 90, 90, 0.15); */
	box-shadow:0 0 10px rgba(227,227,227,0.15);
	border: 1px solid var(--gray);
	border-radius: 5px;
	background-color: #fff;
	margin-top: 15px;
}

#trendWebsite h3, .hot-topic-box h3{
	padding-bottom: 12px;
    border-bottom: 1px dashed #ccc;
}

#trendWebsite h3 span{
	font-size: 75%;
	color: var(--gray02);
}

#trendWebsite .topic-list-box{
	margin-top: 12px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 20px;
}

#trendWebsite .topic-list-box ul{
	width: calc( (100% - 20px) / 2 );
}

#trendWebsite .topic-list-box ul:not(:first-child){
	/* margin-top: 14px; */
}

#trendWebsite .topic-list-box ul li{}

#trendWebsite .topic-list-box ul li:not(:first-child){
	margin-top: 20px;
}

#trendWebsite .topic-list-box ul li a,
.hot-topic-box .topic-list-slide ul li a{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

#trendWebsite .topic-list-box ul li span{
	display: inline-block;
	font-size: 0.875rem;
}

#trendWebsite .topic-list-box ul li .number,
.hot-topic-box .topic-list-slide ul li .number{
	display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 5px;
	background-color: #eee;
    color: var(--gray02);
    font-size: 12px;
    font-weight: var(--fw-800);
}

#trendWebsite .topic-list-box ul.topic-left li:nth-child(-n+3) .number,
.hot-topic-box .topic-list-slide ul li:nth-child(-n+3) .number{
	background-color: var(--red02);
	color: var(--red01);
}

#trendWebsite .topic-list-box ul li .category{
	width: 70px;
	box-sizing: border-box;
	padding: 3px 5px;
	background-color: #e0f4ff;
    color: #32627d;
	border-radius: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 11px;
	text-align: center;
}

#trendWebsite .topic-list-box ul li .domain{
	font-weight: var(--fw-600);
	width: 37%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 0.9375rem;
}

#trendWebsite .topic-list-box ul li .score{
	width: 30%;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

#trendWebsite .topic-list-box ul li .score .score-bar{
	display: block;
	width: 70%;
	height: 8px;
	background-color: #eee;
	position: relative;
}

#trendWebsite .topic-list-box ul li .score .score-bar-inner{
	position: absolute;
	width: auto;
	height: 100%;
}

#trendWebsite .topic-list-box ul li .score strong{
	widtH: 30%;
	font-size: 14px;
	font-weight: var(--fw-500);
	text-align: left;
}

.dashboard-content-middle{
	margin-top: 20px;
}

.special-banner-slide .swiper-wrapper{
  -webkit-transition-timing-function: linear!important;
  -o-transition-timing-function: linear!important;
  transition-timing-function: linear!important;
}

.special-banner-slide .banner{
	width: 260px;
	height: 80px;
    /* box-shadow: 0px 0px 10px rgba(255, 90, 90, 0.15); */
	box-shadow:0 0 10px rgba(227,227,227,0.15);
    border: 1px solid var(--gray);
    border-radius: 5px;
    background-color: #f7f7f7;
}

.special-banner-slide .banner a{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	color: var(--gray02);
}

.special-banner-slide .banner a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-object-fit: cover;
}

.special-banner-slide .banner h4{
	font-size: 18px;;
	font-weight: var(--fw-700);
	color: inherit;
}

.special-banner-slide .banner p{
	font-size: 13px;
	color: inherit;
}

.hot-topic-box{
	width: 100%;
    box-sizing: border-box;
    padding: 20px;
    /* box-shadow: 0px 0px 10px rgba(255, 90, 90, 0.15); */
	box-shadow:0 0 10px rgba(227,227,227,0.15);
    border: 1px solid var(--gray);
    border-radius: 5px;
    background-color: #fff;
	height: 125px;
}

.hot-topic-box .topic-list-box{
	margin-top: 12px;
}

.hot-topic-box .topic-list-box .topic-list-header{
	display: flex;
	flex-direction: row;
	align-items: center;
}

.hot-topic-box .topic-list-box .topic-list-header span{
	display: inline-block;
	font-size: 13px;
	color: var(--gray02);
}

.hot-topic-box .topic-list-box .topic-list-header span.keyword{
	width: calc(100% - 250px - 0px);
}

.hot-topic-box .topic-list-box .topic-list-header span.volume{
	width: 68px;
}

.hot-topic-box .topic-list-box .topic-list-header span.increase{
	width: 80px;
}

.hot-topic-box .topic-list-box .topic-list-header span.hour{
	width: 100px;
}

.hot-topic-box .topic-list-slide{
	margin-top: 7px;
	height: 30px;
}

.hot-topic-box .topic-list-slide ul li a{
	padding: 4px 0 7px;
}

.hot-topic-box .topic-list-slide ul li .keyword{
	display: inline-block;
	width: calc(100% - 250px - 20px - 20px) ;
	font-size: 1rem;
	font-weight: var(--fw-600);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hot-topic-box .topic-list-slide ul li .etc{
	display: flex;
	flex-direction: row;
	align-items: center;
	/* justify-content: flex-end; */
	/* gap: 5px; */
	width: 250px;
}

.hot-topic-box .topic-list-slide ul li .etc em{
	font-style: normal;
	font-size: 14px;
	color: var(--gray01);
	font-weight: var(--fw-500);
	width: 70px;
}

.hot-topic-box .topic-list-slide ul li .etc em.increase{
	width: 65px;
}

.hot-topic-box .topic-list-slide ul li .etc em.hour{
	width: 100px;
}


@media screen and (max-width: 1500px){
	#trendWebsite{
		margin-top: 10px;
	}

	.dashboard-content-middle{
		margin-top: 10px;
	}
}


@media screen and (max-width: 767px){
	#trendWebsite,
	.dashboard-content-middle{
		margin-top: 7px;
	}
	#trendWebsite .topic-list-box ul li a,
	.hot-topic-box .topic-list-slide ul li a{
		gap: 5px;
	}
	#trendWebsite .topic-list-box ul li .domain{
		font-size: 13px;
	}

	#trendWebsite .topic-list-box ul li .category{
		width: 55px;
	}
	
	#trendWebsite .topic-list-box ul li .score{
		gap: 7px;
	}
	#trendWebsite .topic-list-box ul li .score strong{
		font-size: 12px;
	}

	.special-banner{
		height: 120px;
	}

	.hot-topic-box{
		height: 120px;
	}

	.hot-topic-box .topic-list-slide{
		height: 24px;
	}

	.hot-topic-box .topic-list-box .topic-list-header span{
		font-size: 11px;
	}
	
	.hot-topic-box .topic-list-box .topic-list-header span.keyword {
		width: calc(100% - 100px - 0px);
	}

	.hot-topic-box .topic-list-box .topic-list-header span.hour,
	.hot-topic-box .topic-list-slide ul li .etc em.hour{
		display: none;
	}
	.hot-topic-box .topic-list-slide ul li .etc{
		width: 100px;
	}
	.hot-topic-box .topic-list-slide ul li .keyword{
		width: calc(100% - 100px - 5px - 5px)
	}
	.hot-topic-box .topic-list-slide ul li .etc em,
	.hot-topic-box .topic-list-box .topic-list-header span.volume{
		width: 55px;
	}
	.hot-topic-box .topic-list-slide ul li .etc em.increase,
	.hot-topic-box .topic-list-box .topic-list-header span.increase{
		width: 45px;
	}
	
}


@media screen and (max-width: 500px){

	#trendWebsite{
		height: auto;
	}
	#trendWebsite .topic-list-box{
		flex-wrap: wrap;
		gap: 10px;
	}

	#trendWebsite .topic-list-box ul{
		width: 100%;
	}

	#trendWebsite .topic-list-box ul:nth-child(2){
		display: none;
	}
	
	#trendWebsite .topic-list-box ul li .category{
		width: 65px;
	}
	
	#trendWebsite .topic-list-box ul li .score .score-bar{
		height: 6px;
	}

	#trendWebsite .topic-list-box ul li .domain{
		widtH: 45%;
	}

	#trendWebsite .topic-list-box ul li .score{
		width: 25%;
	}

	#trendWebsite .topic-list-box ul li:not(:first-child){
		margin-top: 15px;
	}

	#trendWebsite h3 span{
		font-size: 11px;
	}

	#dashboardContent .domain-list li span.btn_buy{
		width: 25%;
	}

	#dashboardContent .domain-list li span.cost{
		width: 35%;
	}

	#dashboardContent .domain-list li span.date{
		display: none;
	}

	#dashboardContent .domain-list li span.rate{
		font-size: 10px;
	}

	#dashboardContent .domain-list li:not(:first-child){
		margin-top: 15px;
	}
}