﻿* {
    margin: 0;
    padding: 0;
}

.flex {
    display: flex;
    align-items: center;
}

/* title */
.title {
    width: 100%;
    background: linear-gradient(to right, #eb5717, #f2873c);
    height: 80px;
}

.img {
    background: #fff;
    border-radius: 50%;
    /* margin-left: 30%; */
}

.tname {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    margin-left: 20px;
}

.img img {
    width: 70px;
    height: 70px;
}

/* links */
.links {
    margin-top: 30px;
    width: 100%;
    border-bottom: 2px solid #e1e1e1;
}

.linktitle {
    display: flex;
    width: 80%;
    margin: 0 auto;
    font-size: 22px;
}

.litem {
    border-bottom: 2px solid #9a9a9a;
}

.tline {
    margin: 0 10px;
    color: #e1e1e1;
}

.linkcont {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: 15px auto;
    justify-content: flex-start;

}

.linkitem {
    box-sizing: border-box;
    flex: 0 0 calc(45% - 20px);  
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* PC端样式 */
@media (min-width: 768px) {
 
    .linkitem {

        flex: 0 0 calc(10% - 50px);  
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .img {
        margin-left: 30%;
    }
    .tname {
        margin-left: 100px;
    }
    @media (max-width: 1200px) {
        .linkitem {
            flex: 0 0 calc(10% - 20px);  
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .img {
            margin-left: 30%;
        }
        .tname {
            margin-left: 100px;
        }
    }
}

.linkitem .lmimg img {
    width: 40px;
    height: 40px;
}
.linkcor {
    cursor: pointer;
    text-decoration: none;
    color: #9a9a9a;
}