@import "base.less";
@import "loading.less";

.special-list {
	padding: 0 2.5vw;

	.special-item {
		position: relative;
		margin: 2.5vw 0;
		display: block;
		height: 38vw;
		background-color: #000;
	    background-image: url("img/placeholder.png?v=5");
	    background-position: center center;
	    background-repeat: no-repeat;
	    background-size: cover;
	    border-radius: 1vw;
	    overflow: hidden;

	    .mask {
	    	background: rgba(0, 0, 0, 0.1);
	    	position: absolute;
	    	top: 0;
	    	left: 0;
	    	right: 0;
	    	bottom: 0;
	    	z-index: 1;
	    }

	    .title {
	    	position: absolute;
	    	top: 4vw;
	    	left: 7vw;
	    	right: 7vw;
	    	color: #fff;
	    	font-weight: bold;
	    	font-size: 5vw;
	    	line-height: 1.3;
	    	text-shadow: 0 0 2px #000;
	    	z-index: 2;
	    }

	    .caption {
	    	position: absolute;
	    	left: 7vw;
	    	right: 7vw;
	    	bottom: 3.5vw;
	    	font-size: 3.2vw;
	    	color: #fff;
	    	line-height: 1.4;
	    	text-shadow: 0 0 1px #000;
	    	z-index: 2;
	    }

	    .film {
	    	width: 4vw;
	    	height: 100%;
	    	position: absolute;
	    	top: 0;
	    	background-image: url(img/film-bg.png);
	    	background-size: 100% auto;
	    }

	    .film-l {
	    	left: 0;
	    }

	    .film-r {
	    	right: 0;
	    }
	}

	a.native-ad {

		// .ad-notice {
		// 	position: absolute;
		// 	top: 0;
		// 	right: 0;
		// 	background-image: url('img/ad_logo@2x.png');
		// 	background-size: cover;
		// 	width: 7vw;
		// 	height: 4.8vw;
		// 	z-index: 3;
		// 	opacity: 0.7;
		// }

		.mask {
			height: 40%;
			position: absolute;
			left: 0;
			right: 0;
			bottom: 0;
			top: auto;
			background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%) repeat scroll 0 0;
		}

		div.title-con {
			position: absolute;
			height: 5vw;
			line-height: 5vw;
			overflow: hidden;
			text-overflow: ellipsis;
			white-space: nowrap;
			left: 7vw;
			right: 7vw;
			bottom: 4vw;
			font-size: 3.6vw;
			z-index: 2;
		}

		.ad-icon {
			position: absolute;
			top: 2vw;
			right: 2vw;
			width: 7vw;
			height: 4vw;
			line-height: 4vw;
			font-size: 2.6vw;
			border: 1px solid rgba(255, 255, 255, 0.3);
			color: rgba(255, 255, 255, 0.5);
			text-align: center;
			border-radius: 0.8vw;
			background-color: rgba(0, 0, 0, 0.2);
		}
	}
}


@media screen and (min-width: 768px){

	.special-list {

		.special-item {
			height: 35vw;

			.title {
				font-size: 5vw;
				text-shadow: 0 0 5px #000;
			}

			.caption {
				font-size: 3vw;
				text-shadow: 0 0 3px #000;
			}
		}

		a.native-ad {

			div.title-con {
				font-size: 3vw;
			}

			.ad-icon {
				width: 7vw;
				height: 4vw;
				line-height: 4vw;
				font-size: 2.5vw;
				border-radius: 0.5vw;
			}
		}
	}
}

