﻿/* 留言信息模块 */
.AddMessageBox input,
.AddMessageBox textarea {
    width: calc(100% - 40px);
    padding: 19px;
    background-color: transparent;
    border: 1px solid #333333;
    border-radius: 0;
    font-size: 18px;
    color: #333333;
    outline: none;
}
.AddMessageBox label {
    width: calc(100% - 40px);
    padding: 20px;
    display: block;
    background-color: #333333;
    font-size: 18px;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.AddMessageBox textarea {
    height: 92px;
    min-height: unset;
    resize: none;
}
/* 留言信息模块 */


/* 图片模块 001 */
/* 左边按钮，右边图片展示 */
.ImgModel_001 div {
    position: relative;
}
.ImgModel_001 > div:nth-child(1) {
    width: calc(40% - 10px);
    margin-right: 10px;
}
.ImgModel_001 > div:nth-child(1) p:nth-last-child(1) {
    margin-bottom: 0px;
}
.ImgModel_001 > div:nth-child(2) {
    width: 60%;
    height: 389px;
}
.ImgModel_001 p.Button_List {
    width: calc(100% - 40px);
    padding: 50px 20px;
    margin-bottom: 10px;
    background-color: #ddd;
    color: #333;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}
.ImgModel_001 p#Button_List,
.ImgModel_001 p.Button_List:hover {
    background-color: #51cec5;
}
.ImgModel_001 p.Button_ImgSwitch {
    width: 10px;
    height: 20px;
    top: 0;
    bottom: 0;
    padding: 30px 10px;
    margin: auto;
    position: absolute;
    font-size: 20px;
    cursor: pointer;
}
.ImgModel_001 p.Button_ImgSwitch:nth-last-child(1) {
    right: 0;
}
.ImgModel_001 p.Button_ImgSwitch:nth-last-child(2) {
    left: 0;
}
.ImgModel_001 p.Button_ImgSwitch:hover {
    background-color: #51cec5;
    color: #fff;
}
.ImgModel_001 img {
    max-height: 100%;
    margin: auto;
    display: block;
}
@media screen and (max-width: 800px) {
    .ImgModel_001 > div:nth-child(1) {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .ImgModel_001 > div:nth-child(2) {
        width: 100%;
        height: 500px;
    }
    .ImgModel_001 p.Button_List {
        width: calc(50% - 20px);
        padding: 5px 10px;
        margin-bottom: 0;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}
/* 图片模块 001 */


.Title_001 {
    margin-left: 60px;
    position: relative;
}
.Title_001::after,
.Title_001::before{
    content: " ";
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    display: block;
    border-radius: 5px;
    opacity: 0.50;
    transform: rotate(45deg);
}
.Title_001::after {
    width: 30px;
    height: 30px;
    left: -45px;
    background-color: #51cec5;
    animation: Title_001_Big 3s ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.Title_001::before {
    width: 20px;
    height: 20px;
    left: -30px;
    background-color: #afe2e4;
    animation: Title_001_Small 2s ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes Title_001_Big {
    0% {
        transform: rotate(-45deg);
    }
    100% {
        transform: rotate(225deg);
    }
}
@keyframes Title_001_Small {
    0% {
        left: -20px;
        transform: rotate(-45deg);
    }

    100% {
        left: -60px;
        transform: rotate(225deg);
    }
}