* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html,
body {
    max-width: 1250px;
    min-width: 300px;
    width: 100%;
    margin: auto;
    background-color: #f5f5f5;
    font-size: 16px;
    direction: rtl;
}

::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}


.index_box {
    width: 100%;
    margin: auto;
}


.index_top {
    max-width: 1250px;
    min-width: 300px;
    width: 100%;
    height: 45px;
    background-color: #404e67;
    text-align: center;
    line-height: 45px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.035);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    color: white;
    margin: auto;
}


.index_content_box {
    width: 100%;
    padding: 15px;
    margin: 60px auto 0 auto;
}

.index_content_box > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px 0 rgba(62, 57, 107, 0.07), 0 2px 9px 0 rgba(62, 57, 107, 0.06);
    padding: 25px;
    margin-bottom: 25px;
}

.index_content_box > div > div {
    width: 75%;
    display: flex;
    flex-direction: column;
}

.index_content_box > div > div > span {
    width: 100%;
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index_content_box > div > div > em {
    display: inline-block;
    width: 100%;
    color: white;
    font-size: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-style: normal;
}

.index_content_box > div > span {
    display: inline-block;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index_content_box > div > span > i {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index_content_box > div > span > i > img {
    width: 30px;
}








