*{
    margin: 0px;
    padding: 0px;
}
a{
    text-decoration: none;
}
ul{
    display: flex;
}
ul li{
    list-style: none;
}
@font-face {
    font-family: 'zzgflh';
    src: url('造字工房力黑.TTF');
}
/* 上下居中 */
.flexAlign{
    display: flex;
    align-items: center;
}
/* 上下左右居中 */
.flexCenter{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flexOnBetween{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.flexOnAround{
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}
.flexAround{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.flexBetween{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flexWrap{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.flexEnd{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
/* 遮罩 */
.bg-overlay {
    background-color: rgba(35, 37, 47, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
/* 顶部导航 */
.logo{
    font-family: 'zzgflh';
    font-size: 24px;
    cursor: pointer;
	margin-left: 20px;
}
.nav {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 9;
    padding: 10px 0;
    transition: all 0.3s ease-out;
}
/* 导航文字颜色 */
#fullpageMenu li a {
    color: #fff;
    font-weight: 600;
}
#fullpageMenu .active a{
    color: #d66c6f!important;
}
/* 引导页 */
.section1 {
    background: url('../images/lb.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
    text-align: center;
}
.section1 h1{
    color: #fff;
    line-height: 80px;
    font-size: 50px;
    margin: 30px 0;
}
.section1 p{
    color: #fff;
    line-height: 30px;
    margin-bottom: 30px;
	font-size: 18px;
}
.section1 .btn{
    padding: 10px 50px;
    background-color: #d66c6f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.section1 .btn:hover{
    background-color: #27a789;
    transition: .3s;
}
.section1 .ewm{
    text-align: center;

}
.section1 .ewm img{
    width: 150px;
    height: 150px;
    border-radius: 2px;
}
.section2 {
    background: url('../images/lb1.jpg') no-repeat;
    background-size: cover;
    background-position: center bottom;
    text-align: center;
}
.section2 .rzrs{
	font-size: 30px;
}
.section2 .person{
    color: #fff;
    font-family: 'zzgflh';
    display: flex;
}
.section2 h1{
    color: #fff;
    margin: 80px 0 50px 0;
}
.section2 .btn{
    border: 1px solid #ec656c;
    color: #ec656c;
    background-color: transparent;
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.3s;
    border-radius: 6px;
    cursor: pointer;
}
.section2 .btn:hover{
    background-color: #ec656c;
    color: #fff;
}
/* 入驻伴娘伴郎 */
.section3{
    background: url('../images/rz.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
}
.section3 .person{
    color: #fff;
    font-family: 'zzgflh';
    display: flex;
}
.section3 h1{
    color: #fff;
    margin: 80px 0 50px 0;
}
.section3 .btn{
    border: 1px solid #ec656c;
    color: #ec656c;
    background-color: transparent;
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.3s;
    border-radius: 6px;
    cursor: pointer;
}
.section3 .btn:hover{
    background-color: #ec656c;
    color: #fff;
}
/* 留言页 */
.section4{
    padding: 0 20px;
}
.section4 .ly_left{
    /* width: 40%; */
    text-align: center;
}
.section4 .ly_left img{
    width: 300px;
    height: 300px;
}
.section4 .ly_right{
    /* width: 50%; */
    height: 100%;
}
.section4 .ly_right .right_flex{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.section4 .title{
    text-align: center;
}
.section4 .btn{
    padding: 8px 0;
    background-color: #d66c6f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.section4 .ipt{
    font-size: 14px;
    color: #666;
}
.section4 .ipt input,textarea{
    padding: 8px 5px;
    border: 1px solid #dee2e6;
    transition: all 0.5s ease;
    border-radius: 4px;
    margin-bottom: 10px;
}
.section4 .ipt input:focus,textarea:focus{
    border-color: #d66c6f!important;
    outline: 0;
}
.x{
    color: #D52941;
}
/* 底部 */
.section5{
    color: #cdcdcd;
    padding: 15px;
    font-size: 13px;
    height: auto!important;
}
.section5 a{
    color: #cdcdcd;
}