body {
    background: url(../img/bg.jpg) no-repeat top;
}

.sqxzzl {
    width: 65%;
    height: auto;
    min-height: 800px;
    margin: 0 auto;
}

.header {
    position: relative;
    height: 200px;
    margin-top: 20px;
}

.header img {
    position: absolute;
    width: 300px;
    top: 5px;
    left: 5px;
}

.header h1 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 50px;
    color: #f74260;
    text-shadow: 1px 1px 6px rgba(227, 237, 223, 1);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.main {
    display: flex;
    justify-content: space-between;
    height: auto;
    min-height: 500px;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.prov {
    width: 70%;
}

.city {
    width: 28%;
}

.title {
    display: inline-block;
    font-size: 24px;
    line-height: 50px;
    font-weight: bolder;
    font-family: "microsoft yahei";
    border-bottom: #ddd 1px dashed;
    width: 100%;
}

.title i {
    width: 6px;
    height: 20px;
    background-color: #f8b551;
    display: inline-block;
    margin: 0 10px;
}

.title a {
    color: #1a75ce;
}

.main ul {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
}

.main ul li {
    flex: 0 0 47%;
    padding-left: 3%;
    font-size: 18px;
    line-height: 50px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    border-bottom: #ddd 1px dashed;
    transition: all .3s;
}

.main ul li:hover {
    background-color: #eeee;
    font-size: 20px;
}

.main ul li:hover a{
    color: #1a75ce;
}

@media (max-width: 1480px) {
	.sqxzzl {
        width: 95%;
    }
    .header h1 {
        width: 100%;
        text-align:center;
        font-size: 45px;
    }
}

@media (max-width: 880px) {
	.sqxzzl {
        width: 95%;
    }
	.header img {
        width: 150px;
    }
    .header h1 {
        width: 100%;
        text-align:center;
        font-size: 40px;
    }
    .main {
        flex-direction: column;
    }
    .prov,
    .city {
        width: 100%;
    }
    .city {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    
    .header h1 {
        font-size: 30px;
    }
    
}