body {
    padding:0px;
    margin:0px;
}
a {
    text-decoration: none;
    color: #000;
}
.page {
    padding-top:150px;
    background:rgb(235, 235, 235);
 }
 .container {
     width:1200px;
     min-height:calc(100vh - 200px);

     margin:0 auto;
 }
.header {
    display:flex;
    justify-content: space-between;
    height:120px;
    color:#fff;
    position:fixed;
    top:0;
    z-index:0;
    background-color: #1a145b;
    width: 100%;
    z-index:10;
    padding:0 calc((100% - 1200px) / 2);
    box-sizing: border-box;
}
.header .left {
    display:flex;
    justify-content: center;
    align-items: center;
    height:100%;
}
.header .left .companyword {
    height:100%;
    box-sizing: border-box;
    padding:20px 10px 10px 20px;
}
.header .left .companyword div {
    font-size: 14px;
}
.header .left .companyword div:nth-child(1) {
    font-size:36px;
    font-weight: 500;
    letter-spacing:3px;
    margin-bottom: 5px;
}

.header img {
    height:80px;
    width:80px;
}
.header .right {
    display: flex;
    align-items: flex-end;
    width:450px;
    padding-bottom:25px;

}
.header .right a {
    font-size: 19px;
    letter-spacing: 4px;
    cursor: pointer;
    width:150px;
    text-align: center;
    position: relative;
    color:#fff;
}
.header .right .movment:hover::after{
    content:'';
    width:55px;
    height:1px;
    position: absolute;
    left:45px;
    bottom:-5px;
    background:#fff;
}
.current::after {
    content:'';
    width:55px;
    height:3px;
    position: absolute;
    left:45px;
    bottom:-5px;
    background:#fff;
}
/* .header .right a::after {
    content:'';
    width:55px;
    height:1px;
    position: absolute;
    left:45px;
    bottom:-5px;
    background:#fff;
} */

/* 内容 */
.content {
    padding-top:30px;
}
.content .production{
    font-size: 38px;
    font-weight: 550;
    text-align: center;
    margin-bottom:40px;
    letter-spacing:3px;
    letter-spacing: 8px;
}
.content .list {
    display: flex;
    align-items: center;
}
/* .content .list a {
    width:20%;
    height:500px;
    margin-right:5px;
    position: relative;
} */
/* .content .list a:nth-child(1) .mask {
    background-image: url('./picture/ug.png'); 
}
.content .list a:nth-child(2) .mask {
    background-image: url('./picture/mdl.png'); 
}
.content .list a:nth-child(3) .mask {
    background-image: url('./picture/wm.png'); 
}
.content .list a:nth-child(4) .mask {
    background-image: url('./picture/flp.png'); 
}
.content .list a:nth-child(5) .mask {
    background-image: url('./picture/ya.png'); 
} */
.content .list a {
    width:20%;
    height:500px;
    margin-right:5px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}
.content .list a:nth-child(1) {
    background-image: url('./picture/ug.png'); 
}
.content .list a:nth-child(2) {
    background-image: url('./picture/mdl.png'); 
}
.content .list a:nth-child(3) {
    background-image: url('./picture/wm.png'); 
}
.content .list a:nth-child(4) {
    background-image: url('./picture/flp.png'); 
}
.content .list a:nth-child(5) {
    background-image: url('./picture/ya.png'); 
}
.content .list a .mask {
    height:100%;
    width:100%;
    position:absolute;
    background-color: rgba(0, 0, 0, 0.145);
}
.content .list a span {
    color:#fff;
    font-size: 30px;
    position: absolute;
    width:200px;
    height:40px;
    left:50%;
    top:50%;
    margin-top:-20px;
    margin-left:-100px;
    text-align: center;
}

.content .list a .flp::after {
    content:'飞利浦';
    color:#fff;
    position: absolute;
    width: 100px;
    height:20px;
    left:50%;
    margin-left:-50px;
    bottom:-25px;
    font-size: 20px;
}
.content .list a:nth-last-child(1) {
    margin-right: 0;
}
.footer {
    height:50px;
    background-color: #1a145b;
    width:100%;
    
}
.footer .gb {
    display:flex;
    justify-content: center;
    align-items: center;
    height:100%;
    color:#fff;
}
.footer .gb img {
    margin-right: 15px;
}
.footer .gb a {
    color:#fff;
    cursor: pointer;

}