body {
    width: 100%;
    overflow-x: hidden;
}

.banner {
    width: 100%;
    height: 300px;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main .title {
    font-size: 25px;
    font-weight: bold;
    color: var(--titColor);
    text-align: center;
    margin: 30px 0 40px;
}

.main .text>* {
    display: inline;
}

.text p {
    color: rgba(0, 0, 0, .7);
}

.main h2 {
    padding-left: 15px;
    margin: 30px 0 20px;
    border-left: 5px solid var(--titColor);
}

table thead td {
    background-color: #a6293d;
    color: #fff;
    border-right: 1px solid #fff;
    padding: 20px 15px;
}

table thead td:last-child {
    border-right: 1px solid #a6293d;
}

table td {
    border: 1px solid #a6293d;
    text-align: center;
    padding: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 35px;
    font-size: 18px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.row .items {
    width: 32%;
    background-color: #fafafa;
    margin: 15px 0;
    margin: 0 .5%;
}

.row .items .pic {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row .items .texts {
    font-size: 18px;
    padding: 20px;
}

.texts .tit {
    text-align: center;
    color: #6592e8;
}

.texts p {
    text-align: center;
    margin-top: 5px;
}

.text ul {
    list-style: disc;
    font-size: 20px;
}

.contbg {
    background-color: #d2fdff;
    width: 100%;
    padding: 20px 0 30px;
}

.contbg .title {
    color: #000;
    font-weight: bold;
    font-size: 30px;
    margin: 30px 0;
    text-align: center;
}