.black-bg {
	background-color: #0f1318;
}
.stock-container {
	padding: 20px 0px;
	max-width: 1100px;
	margin: 0 auto;
}
.stock-title {
    width: 100%;
    line-height: 50px;
    font-size: 40px;
    /*letter-spacing: 5px;*/
    color: #f2f2f2;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 30px;
    font-weight: bold;
}
.stock-main {
	position: relative;

}
.stock-nav {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	padding: 0px 5px
}
.stock-nav-item ul {
	display: flex;
}
.stock-nav-item ul li {
	color: #fff;
	background-color: #459df5;
	transition: all .3s;
	cursor: pointer;
}
.stock-nav-item ul li {
	margin: 0px 5px;
	padding: 3px 10px;
	border-radius: 2px;
	font-size: 16px;
}
.stock-nav-item ul li:hover {
	background-color: #1965B1;
}
.stock-nav-item ul li.active {
	background-color: #fff;
	color: #1965B1
}
.stock-nav-item:nth-of-type(1) ul li:nth-of-type(1) {
	margin-left: 0px;
}
.stock-nav-item:nth-of-type(2) ul li:last-of-type {
	margin-right: 0px;
}
.stock-list-row:nth-of-type(even) {
	background-color: #1c2127
}
.stock-list-row.green .list-item {
	color: rgb(51, 204, 51);
}
.stock-list-row.red .list-item {
	color: rgb(255, 0, 0);
}
.stock-table .stock-table-head, .stock-list-row {
	display: flex;
	height: 45px;
	align-items: center;
	padding: 0px 8px;
}
.stock-table .stock-table-head {
	background-color: #262f44;
}
.stock-table .stock-table-head .table-head-item, .list-item {
	position: relative;
	flex: 1;
	text-align: center;
	color: #fff;
	font-size: 16px;
}
.stock-table .stock-table-head .table-head-item:nth-of-type(1), .list-item:nth-of-type(1) {
	text-align: left;
	flex: 0 0 200px;
}
.list-item:nth-of-type(1) {
	justify-content: flex-start;
}
.stock-list-row .list-item .stock-name {
	color: #fff;
}
.stock-list-row .list-item .stock-code {
	color: #999;
	font-size: 14px;
	margin-left: 5px;
}
.stock-list-row .list-item a {
	color: #999;
	margin: 0 3px;
	transition: all .3s;
}
.stock-list-row .list-item a:hover {
	color: #00ffff
}
.stock-data-list {
	position: relative;
	min-height: 500px;
	padding: 
}
.refresh-div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;
	background-color: rgba(0, 0, 0, .7)
}
.refresh-div img {
	position: absolute;
	left: 0;
	right: 0;
	top: 100px;
	margin-left: auto;
	margin-right: auto;
	animation: loading 3s linear infinite;
}
@keyframes loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.stock_ad {
	display: flex;
	margin: 50px auto;
}
.stock_ad_box {
	flex: 1;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.img_box {
	width: 90px;
	height: 90px;
	margin-bottom: 20px;
}
.img_box img {
	width: 100%;
	height: 100%;
}
.ad_box a {
	color: #cc0000
}
.list-item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.list-item p.up, .list-item p.down {
	position: relative;
}
.list-item p.up:after, .list-item p.down:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin-top: auto;
	margin-bottom: auto;
	left: -15px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;

}
.list-item p.up:after {
	border-bottom: 10px solid #cc0000;
	border-top: 0;
}
.list-item p.down:after {
	border-top: 10px solid rgb(51, 204, 51);
	border-bottom: 0;
}
.show-btn {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin-top: auto;
	margin-bottom: auto;
	width: 20px;
	height: 20px;
	background-image: url('../images/icon-stock.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
}
.show-btn:hover {
	background-image: url('../images/icon-stock-hover.png');
	
}
.modelBox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}
.modelBox.active {
	display: block
}
.mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5)
}
.model {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 600px;
	height: 450px;
	background-color: #fff;
	border-radius: 5px;
	padding: 20px;
}
.model-cpy-name {
	text-align: center;
	line-height: 35px;
	height: 35px;
	font-size: 20px;
	font-weight: bolder;
}
.tabs {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.tabs-item {
	flex: 1;
	text-align: center;
	height: 35px;
	line-height: 35px;
	cursor: pointer;
	background-color: #eee;
	margin: 0px 1px;
	transition: all .2s;
}
.tabs-item:hover {
	background-color: #459df5;
	color: #fff;
}
.tabs-item.active {
	background-color: #459df5;
	color: #fff;
}
.chart-list {
	flex: 1;
}
.chart-item {
	display: none;
	height: 100%;
}
.chart-item img {
	text-align: center;
	margin: 0 auto;
}
.chart-item.active {
	display: block
}
.close {
	position: absolute;
	top: 0px;
	right: -80px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(136, 133, 133, 0.77);
	cursor: pointer;
}
.close:before, .close:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 60%;
	height: 2px;
	/*border-radius: 50%;*/
	margin: auto;
	background-color: #ccc;

}
.close:before {
	transform: rotate(-45deg);
}
.close:after {
	transform: rotate(45deg);
}

.body-noScroll {
	height: 100%;
	overflow: hidden;
}
@media (max-width: 769px) {
	.stock-main .stock-nav .stock-nav-item ul li {
		font-size: 14px;
		padding: 3px 8px;
		margin: 0px 1px;
		text-align: center;
	}
	.stock-table .stock-table-head .table-head-item, .list-item {
		font-size: 15px;
	}
	.stock-nav {
		flex-direction: column;
		padding: 0px 5px;
	}
	.stock-nav-item {
		margin-bottom: 10px;
	}
	.stock-title {
		font-size: 22px;
	}
	.stock-table .stock-table-head .table-head-item:nth-of-type(1), .list-item:nth-of-type(1) {
		flex: 0 0 100px;
		flex-direction: column;
	}
	.stock-list-row {
		height: 30px; 
		padding: 0;
	}
	.stock-code {
		display: none;
	}
	.table-head-item:nth-of-type(4), .list-item:nth-of-type(2), .table-head-item:nth-of-type(2), .list-item:nth-of-type(4), .table-head-item:nth-of-type(7), .list-item:nth-of-type(7) {
		display: none;
	}
	.stock_ad {
		flex-wrap: wrap
	}
	.stock_ad_box {
		flex: 0 0 33%;
		margin-bottom: 20px;
	}
	.model {
		width: 100%;
		padding: 0px;
	}
	.chart-item img {
		max-width: 540px;
		width: 100%;
	}
	.close {
		right: 20px;
		top: -80px;
	}
	.show-btn {
		display: none;
	}
}