*{
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}
a{
    color: black;
    text-decoration: none;
}

.wrap{
    width: 1200px;
    margin: 0 auto;
}

/* 头部开始 */
.header{
    width: 100%;
    height: 120px;
    background-color: #c04851;
}
.img_logo{
    height: 90px;
    margin-top: 13px;
}
.header .wrap{
    display: flex;
    justify-content: space-between;
}
.search{
    line-height: 120px;
}
/* 头部结束 */

/* 导航栏开始 */
.nav{
    width: 100%;
    height: 50px;
    background-color: #c04851;
    z-index: 1;
}
.ul1>li{
    width: 130px;
    height: 50px;
    font-weight: bold;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    transition: all .3s;
}
.ul1>li a{
    color: white;
}
.ul1>li:hover{
    background-color: #c45a65;
}
.ul1>li:hover a{
    color: white;
}
.ul1{
    display: flex;
}
.ul2{
    width: 130px;
    line-height: 40px;
    font-weight: normal;
    font-size: 16px;
    text-align: center;
    visibility: hidden;
    transition: all .8s;
    height: 0;
    overflow: hidden;
}
.ul2 li{
    background-color: #8B8B8B;
    transition: all .3s;
}
.ul2 li:hover{
    background-color: #c45a65;
    font-weight: bold;
}
.ul1>li:hover .ul2{
    visibility: visible;
    height: 400px;
}
/* 导航栏结束 */

/* 图片开始 */
.image{
    position: relative;
    z-index: -1;
}
.img-content{
    width: 100%;
    height: 400px;
}
/* 图片结束 */

/* 当前位置开始 */
.position{
    height: 54px;
    background-color: #F2F2F2;
    color: #6c6c6c;
    font-size: 17px;
    line-height: 54px;
}
/* 当前位置结束 */

/* 内容开始 */
.content{
    margin-top: 20px;
    display: flex;
}
.aside{
    width: 340px;
    margin-right: 60px;
}
.aside-title{
    width: 100%;
    height: 88px;
    background-color: #c04851;
    color: white;
    font-size: 24px;
    font-weight: bold;
    line-height: 88px;
    padding-left: 20px;
    border-bottom: 5px solid #F1BD5A;
}
.aside-list li{
    padding-left: 20px;
    height: 57px;
    line-height: 57px;
    border-bottom: 4px solid #dedede;
}
.text{
    flex: 1;
}
.text-title{
    height: 86px;
    line-height: 86px;
    font-size: 24px;
    color: #333;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
}
.text-list li{
    height: 50px;
    line-height: 50px;
    list-style: disc;
    font-size: 17px;
    border-bottom: 1px solid #dedede;
}
.text-list .date{
    float: right;
    color: #aaa;
}
/* 内容结束 */

/* 尾部开始 */
.footer{
    width: 100%;
    height: 150px;
    background-color: #c04851;
    text-align: center;
    padding: 40px 0;
    color: white;
    line-height: 2em;
    margin-top: 40px;
}
/* 尾部结束 */
