html {
    min-width: 1000px;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
}

.wrap {
    flex-wrap: wrap;
}

.center {
    display: flex;
    justify-content: center;
}

.end {
    display: flex;
    justify-content: flex-end;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-around {
    display: flex;
    justify-content: space-around;
}

.box {
    font-size: 14px;
    font-family: "Source Han Sans CN";
    background-color: #F9F9F9;
}


/* 顶部导航栏 */

.nav_box {
    width: 1200px;
    margin: 0 auto;
    font-size: 15px;
    background-color: #fff;
}

.nav_box .nav_left {
    width: 111px;
    height: 56px;
}

.nav_box .nav_left img {
    width: 100%;
    height: 100%;
}

.nav_box .nav_center {
    margin-left: 40px;
    font-family: "PingFang SC";
    color: #333;
}

.nav_box .nav_center ul li {
    margin-right: 46px;
}

.nav_box .nav_right .nav_city {
    border-radius: 4px;
    background-color: #F9F9F9;
}

.nav_box .nav_right .nav_city .city_select {
    height: 28px;
    padding: 0 6px;
    border-radius: 0 4px 4px 0;
    background-color: #FC6400;
}

.nav_box .nav_right .nav_city .city_select img {
    width: 10px;
    height: 7px;
    margin-top: 11px;
}

.nav_box .nav_right .nav_city .city_name {
    margin: 4px 13px;
}

.nav_box .nav_right .download_app {
    margin-left: 40px;
    color: #FC6400;
}

.container_box {
    min-width: 1000px;
}

.center_box {
    width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 26px;
    height: 38px;
}

.center_box .path a {
    padding-right: 19px;
    margin-right: 19px;
    background-image: url("./images/arrow-right.png");
    background-size: 5px 7px;
    background-repeat: no-repeat;
    background-position: right center;
    color: rgba(102, 102, 102, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: "Source Han Sans CN";
    text-align: left;
}

.center_box .path a:last-child {
    background: none;
    color: rgba(255, 101, 3, 1);
}


/* 分页 */

ul {
    list-style: none
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 600px
}

.container .content {
    display: flex;
    flex-wrap: wrap
}

.container .content li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100px;
    height: 100px;
    padding: 10px
}

.container .content li i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    font-size: 30px;
    background-color: #fff;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 16px 32px rgba(90, 100, 130, 0.1)
}

.container .content li i:hover {
    background: rgba(252, 100, 0, 1);
    /* transform: scale(1.2) */
}

.container .content li p {
    font-size: 13px;
    color: #cdd5f7
}

.container .pagination {
    display: flex;
    align-items: center;
    /* height: 50px;
    margin: 30px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 16px 32px rgba(90, 100, 130, 0.1) */
}

.container .pagination li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33px;
    height: 33px;
    font-size: 14px;
    border-radius: 5px;
    transition: all .3s;
    color: rgba(209, 117, 50, 1);
    font-weight: 400;
    font-family: "Source Han Sans CN";
    margin-right: 12px;
    background: #fff;
}

.container .pagination li.page-btn {
    color: #cdd5f7;
    font-size: 22px;
}

.container .pagination li.page-btn.isClick {
    color: rgba(209, 117, 50, 1);
    cursor: pointer
}

.container .pagination li.page-btn.isClick:hover {
    color: #fff;
    background: rgba(252, 100, 0, 1);
}

.container .pagination li.page-number {
    color: rgba(209, 117, 50, 1);
    cursor: pointer
}

.container .pagination li.page-number:hover {
    color: #fff;
    background: rgba(252, 100, 0, 1);
}

.container .pagination li.page-number.active {
    color: #fff;
    background: rgba(252, 100, 0, 1);
    cursor: default
}

.container .pagination li.page-dot {
    color: rgba(252, 100, 0, 1);
    font-size: 18px;
    cursor: pointer
}

.container .pagination li.page-dot:hover {
    background: rgba(252, 100, 0, 1);
}

.container .pagination li.page-dot::after {
    content: ""
}

.container .pagination li.page-dot.page-dot-prev:hover::after {
    content: ""
}

.container .pagination li.page-dot.page-dot-next:hover::after {
    content: ""
}

.bot-link {
    margin-top: 60px;
    padding: 10px 50px;
    text-align: center;
    color: #666;
    font-size: 16px;
    /* display: flex;
  justify-content: center;
  flex-wrap: wrap; */
}