* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei';
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
}

ul,
li {
    list-style: none;
}

/* 样式公共部分 */
.canada-container {
    margin: 0 auto;
    width: 1247px;
    max-width: 1247px;
    overflow-x: auto;
}
.canada-header{
    margin-bottom: 34px;
}

.canada-header .banner {
    margin-bottom: 1px;
    position: relative;
    height: 407px;
    background: url(banner.png) no-repeat 0 0;
    background-size: 100% 100%;
}

.canada-header .banner .language {
    position: absolute;
    top: 18px;
    right: 19px;
    z-index: 1;
    padding: 10px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
}

.canada-header .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #555;
    padding: 11px 0 15px;
}

.canada-header .menu .menuItem {
    display: block;
    font-size: 19px;
    font-weight: bold;
    color: #fff;
    padding: 0 50px;
}
.canada-header .menu .menuItem:not(:last-child){
    border-right: 1px solid #fff;
}
.canada-footer{
    display: flex;
    justify-content: center;
    border-top: 3px solid #4d4d4d;
    padding-top:45px;
    padding-bottom: 55px;
}
.footer-content{
    display: flex;
    justify-content: space-between;
    width: 1086px;
    line-height: 32px;
    color:#000;
}
.common-title{
    border-top: 2px solid #4f84d5;
    padding: 15px 0;
	font-size: 18px;
    font-weight: bold;
    color: #4f84d5;
}
.d-flex{
    display: flex;
}