@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    /*background: #f9f9f9; */
    
    font-family: "Microsoft YaHei UI", Roboto, Noto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    color: #666;
    padding: 0;
    margin: 0;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

input, button, select {
    outline: none;
    border: none;
}

a {
    color: #333;
    text-decoration: none;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

a:hover {
    color: #ff7f00;
    text-decoration: none;
}

p {
    margin: 6px;
}
h1 {
    margin-bottom: 2px;text-align:center;
}
em {
    display:block;margin-bottom: 2px;text-align:center;
}


.container33 {
    position: relative;
    width: 85%;
    max-width: 1366px;
    margin: auto;
    overflow: hidden;
}

.header33 + .container33 {
    margin-top: 60px;
}

@media (max-width: 1300px) {
    .container33 {
        width: 95%;
    }
}

@media (max-width: 991px) {
    .container33 {
        width: 98%;
    }
}

@media (max-width: 767px) {
    .container33 {
        width: 100%;
    }

    .header33 + .container33 {
        margin-top: 50px;
    }
}








.card {
    position: relative;
    background: #fff;
   box-shadow: 0 0 8px #999d9c;     /*框颜色*/
    box-shadow: 0 0 2px #999d9c;   /*大框颜色*/
    border-radius: 8px;
    margin: 0px;
    overflow: hidden;
    width: 1300px;
    
}

@media (max-width: 767px) {
    .card {
        margin: 0px;
        width: 99%;
    }
}

.links a {
    display: inline-block;
    font-size: 14px;
    padding: 5px 12px;
    margin: 2px;
    text-align: center;
    width: 105px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666;
    background: #eee;
    border-radius: 25px;
    -webkit-transition: color, background .3s;
    -moz-transition: color, background .3s;
    -o-transition: color, background .3s;
    transition: color, background .3s;
}

.links a:hover {
    color: #fff;
    background: #ff7f00;
}



/*top2底部*/
.card .card-body2 {
    padding: 0px;
    font-size: 0;
}

.card .card-body2 .item {
    display: inline-block;
    width: 1.3457143%;
    color: #666;
    font-size: 15px;
    padding: 1px 1px;
    border-radius: 6px;
    white-space: nowrap;
    
    overflow: hidden;
    -webkit-transition: font-weight, background, transform .3s;
    -moz-transition: font-weight, background, transform .3s;
    -o-transition: font-weight, background, transform .3s;
    transition: font-weight, background, transform .3s;
}

@media (max-width: 1300px) {
    .card .card-body2 .item {
        width: 16.6666667%;
    }
}

@media (max-width: 767px) {
    .card .card-body2 .item {
        width: 25%;
    }
}

@media (max-width: 480px) {
    .card .card-body2 .item {
        width: 31.5%;
        font-size: 13px;
    }
}

.card .card-body2 .item:focus {/*点击变色*/
    font-weight: 600;
    background: #9d9087;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
