.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container > .fixed-box {
    width: 100%;
    position: fixed;
    z-index: 10;
}
.container > .empty {
    width: 100%;
    height: 100px;
}
.container .nav-box {
    width: 100%;
    height: 100px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.container .nav-box>.nav {
    width: 1200px;
    height: 100px;
    display: flex;
    gap: 200px;
    /* justify-content: space-between; */
    align-items: center;
}

.container .nav-box>.nav .logo {
    width: 48px;
    height: 48px;
}

.container .nav-box>.nav>.head-container {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 60px;
}


.container .nav-box>.nav>.head-container li a {
    color: #666;
    transition: all 0.3s;
    text-decoration: none;
}

.container .nav-box>.nav>.head-container li a:hover {
    cursor: pointer;
    color: #333;
    font-weight: 600;
}
.container > .image-box img{
    width: 100%;
    height: 450px;
}
.list-box {
    width: 1200px;
    
}
.list-box > .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.list-box > .title >.main-title {
    font-size: 32px;
    color: #24262E;
}
.list-box > .title >.sub-title {
    color: #666;
    margin-bottom: 60px;
}
.list-box > .list-item {
    padding: 40px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s;
}
.list-box > .list-item:hover {
    box-shadow: 0px 0px 40px 10px rgba(48,52,62,0.1);
}
.list-box > .list-item > img {
    width: 232px;
    height: 174px;
    margin-right: 40px;
}
.list-box > .list-item > .right {
    height: 174px;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}
.list-box > .list-item > .right > .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.list-box > .list-item > .right > .content > .to-detail{
    width: 128px;
    height: 32px;
    border-radius: 1px;
    border: 1px solid #F6D44F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.list-box > .list-item > .right >.content > .to-detail > span {
    font-size: 16px;
    color: #F6D44F;
    line-height: 21px;
}
.list-box > .list-item > .right >.content > .to-detail:hover {
    cursor: pointer;
}
.list-box > .list-item > .right >  .content > .to-detail > img {
    width: 24px;
    height: 24px;
}
.list-box > .list-item > .right > .content > .title {
    font-size: 22px;
    color: #373D52;
    line-height: 29px;
    display:block; 
    width: 31em;
    word-break:keep-all;
    white-space:nowrap; 
    overflow:hidden;
    text-overflow:ellipsis; 
}
.list-box > .list-item > .right > .content > .detail-item {
    display: flex;
    align-items: center;
}
.list-box > .list-item > .right > .content > .detail-item > img {
    width: 20px;
    height: 20px;
}
.list-box > .list-item > .right > .content > .detail-item > .detail-desc {
    font-size: 15px;
    line-height: 20px;
    color: #73778E;
}
.list-box > .list-item > .right > .price {
    color: #F4473B;
}
.list-box > .list-item > .right > .price > span {
    margin-right: 8px;
    font-size: 24px;
}

.container > .pagegation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 120px 0;
}
.container > .pagegation > .content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.container > .pagegation > .content > .btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
    border: 1px solid #999999;
    line-height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    border-radius: 5px;
}
.container > .pagegation > .content > .page {
    width: 30px;
    height: 30px;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #344258;
    border-radius: 5px;
}
.container > .pagegation > .content > .page:hover {
    background-color: #F6D44F;
    color: #fff;
    cursor: pointer;
}
.container > .pagegation > .content > .btn:hover {
    background-color: #F6D44F;
    color: #fff;
    cursor: pointer;
    border: 1px solid #F6D44F;
}
.container > .pagegation > .input-box > span {
    color: #999;
}
.container > .pagegation > .input-box > input {
    width: 60px;
    height: 30px;
    border: 1px solid #999;
    padding: 12px 8px;
    box-sizing: border-box;
    outline: none;
}
footer {
    width: 100%;
    background-color: #24262E;
    display: flex;
    justify-content: center;
}

footer > .record {
    width: 1200px;
    height: 220px;
    color: #FFFFFF;
    box-sizing: border-box;
}
footer > .record >.title {
    text-align: center;
    padding: 24px 0;
    height: 20px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 4px;
}
footer > .record > .line {
    width: 100%;
    height: 1px;
    background: #14151A;
    box-shadow: 0px 1px 0px 0px #34373D;
}

footer > .record > .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer > .record > .content > span {
    margin: 24px 0 11px 0;
}

