	.index_tabs {
					display: flex;
					justify-content: center;
					border-bottom: 2px solid #c01925;
				}
				.tab_title {
                    margin-right:40px;
					cursor: pointer;
					position: relative;
					transition: all .3s;
					padding-bottom: 10px;
					font-size: 20px;
				}
				.tab_title:last-of-type {
    margin-right: 0;
    font-size: 20px;
}
				.tab_title::before {
					content: '';
					display: none;
					border-left: 10px solid transparent;
					border-right: 10px solid transparent;
					border-bottom: 10px solid #c01925;
					position: absolute;
					left: 50%;
					bottom: 0;
					transform: translateX(-50%);
					transition: all .3s;
				}
		
				.tab_title:hover,
				.tab_on {
					color: #c01925;
				}
				.tab_title:hover::before,
				.tab_on::before {
					display:inline-block;
				} 
				.tab {
					display: flex;
					justify-content: space-between;
					flex-wrap: wrap;
				}
				
				.tab li {
					width: 48%;
					border-bottom: 1px dashed #ccc;
					height: 50px;
				}
				.tab li a {
					display: inline-block !important;
					width: 100%;
					box-sizing: border-box;
					padding-left: 40px;
					display: none;
					position: relative;
					overflow: hidden;
					text-overflow: ellipsis;
					white-space: nowrap;
					line-height: 50px;
				}
				.tab li a::before {
					content: "";
					display: inline-block;
					position: absolute;
					top: 50%;
					left: 10px;
					transform:translateY(-50%);
					height: 8px;
					width: 8px;
					background: #C01925;
					border: 4px solid #ECBABD;
					border-radius: 50%;

				}
				.tabs_comtent .tab:first-child{
					display: flex;
				}
                .tabs_comtent .tab:nth-child(1) li:last-child{display:none;}
                .tabs_comtent .tab:nth-child(2) li:last-child{display:none;}

				@media(max-width:640px){
					.tab_title{font-size: 18px;}
					.tab_title:not(:last-child){margin-right: 12px;}
					.tab li{width: 100%;float: none;}
				}