*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.bodyBox {
    width: 100%;
    min-width: 1300px;
}

.iframeBox {
    width: 100%;
    border: none;
}

.header {
    /*background-image: url("../imgs/top.jpg");*/
}

.img {
    width: 100%;
}

.navBar {
    height: 50px;
    width: 100%;
    background-color: rgb(207, 17, 2);
}

.menu {
    width: 1300px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.menuItem {
    color: #fff;
    width: 90px;
    height: 100%;
    cursor: pointer;
    font-size: 16px;
text-decoration: none;
}

.menuItem:hover, .menuItem:active, .menuItem:link {
    color: #ffffff;
    text-decoration: none;
}



.body {
    width: 100%;
    background: url("../imgs/bg.jpg") no-repeat;
    background-size: 100% 100%;
}

.content {
    width: 1300px;
    height: auto;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px 0;
}

.footer {
    width: 1300px;
    height: 200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 10px;
}

.footer-top {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: rgb(207, 17, 2);
    color: #ffffff;
    display: flex;
    align-items: center;
}

.footer_title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 30px;
}

.footer_address {
    font-size: 14px;
    margin: 0 20px;
}

.footer_bottom {
    display: flex;
    margin: 40px 100px;
}

.footer_content {
    margin-left: 150px;
    font-size: 12px;
    line-height: 25px;
    color: grey;
}
.search-box {
    width: 1300px;
    height: 40px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tj-search {
    display: flex;
    align-items: center;
}
.search-input-box {
    display: flex;
    align-items: center;
    margin-right: 40px;
}
.search-input-box input {
    outline: none;
    border-radius: 2px;
    border: none;
    padding: 3px 0 3px 15px;
    font-size: 14px;
}
.icon-box {
    width: 30px;
    height: 28px;
    background-color: #d92318;
    margin-left: 2px;
    border-radius: 2px;
    text-align: center;
    transition: 300ms;
}
.icon-box:active {
    transform: scale(0.8, 0.8);
}
.icon-box img {
    width: 16px;
    height: 16px;
    margin: 7px 0;
    cursor: pointer;
}
.tj-text {
    font-size: 14px;
    color: #fff100;
}