/*下划线样式*/
.ACU_cut-off{
  margin: 60px 0 0 0;
  border-top: 2px solid aliceblue;
  width: 100%;
}
/*标题样式*/
.ACU_title{
    width: fit-content;
    margin: 25px auto;
    padding: 20px 50px;
    border: 2px solid #4fc3f7;
    border-radius: 25px;
    background: #fff;
    color: #2196f3;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(33,150,243,0.1);
    transition: transform 0.2s cubic-bezier(.25,1.5,.75,1.25), box-shadow 0.2s;
    outline: none;
    text-decoration: none;
    position: relative;
    text-align: center;
}
.ACU_title:active {
    transform: scale(0.90, 1.1);
    box-shadow: 5px 5px 20px rgba(33,150,243,0.2);
}
.ACU_title:hover {
    background: #e3f2fd;
    color: #1565c0;
    border-color: #1565c0;
}
#ACU_adContainer {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: white;
    height: 450px;
}
#ACU_ad {
    height: 450px;
    display: flex;
    width: 500%;
    animation: ad 20s infinite;
}
.ACU_adPicture {
    flex: 0 0 20%;
    height: 100%;
}
.ACU_adPicture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@keyframes ad {
    0%, 18% { transform: translateX(0); }
    20%, 38% { transform: translateX(-20%); }
    40%, 58% { transform: translateX(-40%); }
    60%, 78% { transform: translateX(-60%); }
    80%, 98% { transform: translateX(-80%); }
    100% {transform: translateX(0);}
}
