﻿@charset "utf-8"; * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-text-size-adjust: none;
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track, ::-webkit-scrollbar-thumb {
    border-radius: 999px;
    border: 0px solid transparent;
}

::-webkit-scrollbar-track {
    box-shadow: 1px 1px 5px rgba(100, 100, 100, 0.2) inset;
}

::-webkit-scrollbar-thumb {
    min-height: 0px;
    background-clip: content-box;
    box-shadow: 0 0 0 5px rgba(100, 100, 100, 0.5) inset;
}img {
    border: 0;
    animation: fade-ins;
    /*动画名称*/
    animation-duration: 0.6s;
    /*动画持续时间*/
    -webkit-animation: fade-ins 0.6s;
    /*针对webkit内核*/
}
body {
    /*background: #F9F9F9;*/
    position: relative;
}
header {
	background: #FFF;
	/*position: fixed;*/
    top: 0;
	width: auto;
	z-index: 99;
	height: 36px;
	text-align: justify;
	display: block;
}

header > div {
    width: 960px;
    max-width: calc(100% - 1px);
    position: relative;
    margin: 0px auto;
}

header > div .logo {
	display: block;
	float: left;
	height: 36px;
	width: 190px;
	position: relative;
}

header > div .logo img {
	display: block;
	height: 36px;
}

footer {
    background: #FFF;
    margin-top: 13px;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
}

footer > div {
    width: 960px;
    max-width: calc(100% - 50px);
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}

article {
    /*padding-top: 71px;*/
}

article > div {
    width: 960px;
    max-width: 100%;
    /*max-width: calc(100% - 50px);*/
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
    padding: 0px;
}
@media screen and (max-width: 1920px) {
    header > div, .indexgg, article > div, footer > div, .recommendMain {
        width: 1300px;
    }
}

/* 兼容1440屏幕 */
@media screen and (max-width: 1600px) {
    header > div, .indexgg, article > div, footer > div, .recommendMain {
        width: 1250px;
    }
}
