* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.maintitle {
    position: relative;
    width: 100%;
}

.maintitle img {
    width: 100%;
}

.mainpanel {
    position: relative;
    width: 55%;
    margin: 0 auto;
}

.comItem {
    padding: 10px 20px;
    border-radius: 5px;
    background: #8d85852b;
    margin: 10px 15px;
}

.comItemTitle {
    font-size: 26px;
    font-weight: 800;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    padding-top: 15px;
    padding-bottom: 5px;
}

.comItemText {
    position: relative;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    font-family: sans-serif;
    line-height: 1.8;
    text-align: justify;
    padding-top: 5px;
    padding-bottom: 10px;
    color: #6a6a6a;
}

.comItemImg {
    position: relative;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
}

.comItemImg img {
    position: relative;
    width: 90%;
    display: block;
    margin: 0 auto;
}

.mainfoot {
    position: relative;
    width: 100%;
    margin-top: 25px;
    background-color: #f7f7f7;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mainfootInfo {
    margin-top: 15px;
}

.mainfootInfo p {
    text-align: center;
    margin-bottom: 5px;
    color: #4682b4;
    font-weight: 800;
}

.mainfootDot {
    display: flex;
}

.mainfootDot .dot {
    position: relative;
    width: 1.8em;
    height: 1.8em;
    margin: 0.8em;
    border-radius: 50%;
}

.mainfootDot .dot::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: wave 2s ease-out infinite;
}

.mainfootDot .dot:nth-child(1) {
    background: #7ef9ff;
}

.mainfootDot .dot:nth-child(1)::before {
    animation-delay: 0.2s;
}

.mainfootDot .dot:nth-child(2) {
    background: #89cff0;
}

.mainfootDot .dot:nth-child(2)::before {
    animation-delay: 0.4s;
}

.mainfootDot .dot:nth-child(3) {
    background: #4682b4;
}

.mainfootDot .dot:nth-child(3)::before {
    animation-delay: 0.6s;
}

.mainfootDot .dot:nth-child(4) {
    background: #0f52ba;
}

.mainfootDot .dot:nth-child(4)::before {
    animation-delay: 0.8s;
}

.mainfootDot .dot:nth-child(5) {
    background: #000080;
}

.mainfootDot .dot:nth-child(5)::before {
    animation-delay: 1s;
}

@keyframes wave {
    50%,
    75% {
        transform: scale(2.5);
    }
    80%,
    100% {
        opacity: 0;
    }
}