html body {
    border: 0;
    margin: 0;
    padding: 0;
    background-image: url('../images/bg.jpg');
    min-width: 1000px;
}

a {
    text-decoration: none;
}


/**
 * 顶部栏 css 样式
 */
.top {
    background-image: url('../images/bg-top.png');
    height: 90px;
}
.top-center {
    height: 100%;
    width: 1000px;
    margin: 0 auto;
    align-items: center;
    display: flex;
}
.top-logo {
    max-height: 60px;
}
.top form {
    flex: 1;
}
.top-search{
    height: 40px;
    border: 1px solid #6643ee;
    margin-left: 40px;
    max-width: 460px;
    min-width: 320px;
    display: flex;
    background-color: white;
    border-radius: 0 18px;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}
.top-search img {
    margin-left: 6px;
    height: 60%;
}
.top-search input {
    flex: 1;
    height: 30px;
    border: none;
    font-size: 18px;
    outline: none;
}
.top-search button {
    background: #46465E;
    color: white;
    height: 40px;
    border: 0;
    width: 60px;
    border-radius: 0 16px 0 18px;

}
.top-icon {
    color: white;
    width: 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.top-icon p {
    margin: 5px 0 0;
}

/**
 * 导航栏样式
 */
.naviga {
    width: 1000px;
    max-width: 1000px;
    height: 60px;
    text-align: center;
    margin: auto;
}
.naviga-content {
    height: 100%;
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    justify-content: space-between;
}
.naviga-content li {
    padding: 0;
    width: 100px;
    text-align: center;
    height: 60px;
    line-height: 60px;
}
.naviga-content a {
    font-size: 18px;
    font-weight: 400;
    color: black;
}
.naviga-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
    position: relative;
    background-color: white;

}
/* 鼠标经过 */
.naviga-content li:hover {
    background-image: url('../images/bg-top.png');
    background-repeat: round;
}
.naviga-content li:hover > a {
    color: white;
}
.naviga-content li:hover ul {
    display: block;
}
.naviga-content .naviga-activity {
    background-image: url('../images/bg-top.png');
    background-repeat: round; 
}
.naviga-activity > a{
    color: white;
}


/**
 * 公告
 */
.card {
    width: 70%;
    min-width: 960px;
    background-color: white;
    border-radius: 8px;
    margin: 20px auto;
    display: flex;
    flex-direction: row;
    border: 1px solid #e2e2e2;
    min-height: 240px;
}
.card-data {
    width: 220px;
    min-height: 200px;
}
.card-data-item {
    background-color: #f9f8fc;
    margin: 5%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    flex-direction: column;
}
.card-content {
    flex: 1;
    font-size: 18px;
}
.card-data-item-text {
    margin-top: 8px;
}
.card-data-item-image {
    width: 16px;
    height: 16px;
}
.card-data-item-number {
    color: #0b5efe;
    font-size: 18px;
}
.card-content-item {
    margin: 15px;
}
.card-content-link {
    color: #0b5efe;
    font-size: 18px;
}

/**
 * 联系我 
 */
.chat {
    background-color: white;
    position: fixed;
    right: 0px;
    top: 40%;
    border: 1px solid #ababab;
    border-radius: 12px 0 0 12px;
    border-right: 0;
    box-shadow: -1px 1px 3px #aeaeae, 0 -1px 1px #aeaeae;
    min-width: 120px;
}
.chat-item {
    display: flex;
    flex-direction: column;
    margin: 12px 4px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}
.chat-img {
    width: 40px;
}

/**
 * 底部 
 */
.foot {
    background-image: url('../images/bg-top.png');    
    background-size: cover;
    width: 100%;
    height: 120px;
    color: white;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.foot-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.foot-info a{
    color: white;
    font-size: 18px;
}


.no-select {
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE, Edge */
    user-select: none; /* 标准属性 */
}

.vod-bread {
    background-color: white;
    width: 70%;
    min-width: 960px;
    margin: 10px auto;
    height: 40px;
    display: flex;
    align-items: center;
    border: 1px solid #d2d2d2;
}
.vod-bread-title {
    background-color: #f0f0f0;
    height: 100%;
    width: 120px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}
