@charset "utf-8";
/*
导航栏css
*/

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
	
}
ul li {
  list-style-type: none;
}
.container {
   max-width:450px;
   margin:0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    
    border-bottom: 1px solid #ddd;
}
.logo_box {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    float: left;
    width: 50px;
}
.logo a{ display:block; line-height:50px; font-size:24px;}
.menu-button {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.main-menu {
	z-index:9999;
    display: flex;
}

.main-menu_list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu_list li {
    margin-left: 20px;
}

.main-menu_list li a {
    text-decoration: none;
    color: #333;
}

/* Mobile styles */

    .menu-button {
        display: block;
    }

    .main-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 50%;
		transform: translateX(-50%);
        width: 390px;
        background-color: #f8f8f8;
        border-top: 1px solid #ddd;
    }

    .main-menu.active {
        display: flex;
    }

    .main-menu_list {
        flex-direction: column;
        margin: 0;
        padding: 0;
    }

    .main-menu_list li {
        margin: 0;
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }

    .main-menu_list li a {
        display: block;
    }



/*
导航栏css结束
*/
/*index1*/
/* General Styles */
.index-1 img{
height: auto;
max-width: 100%;
}

.index-1 .title {
	margin-top:30px;
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.index-1 .title::before,
.index-1 .title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background-color: white;
}

.index-1 .title::before {
    left: -60px;
}

.index-1 .title::after {
    right: -60px;
}
.index-1 .desc {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.index-1 .ul1, .index-1 .ul2, .index-1 .ul3 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.index-1 .ul1 li, .index-1 .ul2 li, .index-1 .ul3 li {
    margin: 0 10px;
    font-size: 18px;
}

.index-1 .ul2 {
    margin-top: 20px;
	height:30px;
	background-color:#e3bc81;
	line-height:30px;
}
.ul2 li {
    position: relative;
}

.ul2 li + li::before {
    content: '|';
    position: absolute;
    left: -10px;
}
.index-1 .backg-1{
	height:65px;
	background-color:#294e7a;
	border-radius: 10px;
	background-image: url('../images/8.png');
    padding: 10px 0;
    margin-top: 0px;
	position:relative;
	padding-bottom:30px;
}
.index-1 .ul3 {
	position:absolute;
	top:70px;
	left:25px;
}
.index-1 .ul3 li{
	
}
.index-1 .img img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 20px 0;
}

.index-1 .zixun {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    margin-top: 20px;
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
}

.index-1 .zixun:hover {
    background-color: #cc5200;
}

/* Mobile styles */
@media (max-width: 768px) {
    .index-1 .desc {
        font-size: 20px;
    }

    .index-1 .ul1 li, .index-1 .ul2 li, .index-1 .ul3 li {
        font-size: 0.8rem;
    }
    .index-1 .ul3 li {
        font-size: 0.9rem;
    }
    .index-1 .img img {
        max-width: 100%;
    }

    .index-1 .zixun {
        font-size: 16px;
    }
}
.contact-form {
    width: 85%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
   
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group .required {
    color: red;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.form-group input[type="checkbox"] {
    margin-right: 5px;
}

.form-group a {
    color: #007bff;
    text-decoration: none;
}

.form-group a:hover {
    text-decoration: underline;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, #00b4db, #0083b0);
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.submit-button:hover {
    background: linear-gradient(to right, #0083b0, #00b4db);
}

/*
服务流程
*/
.process-section {
    text-align: center;
    padding: 0px;
    background-color: #f4f4f4;
}

.process-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.process-list li {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 5px;
    width: calc(33.333% - 20px);
    box-sizing: border-box;
    text-align: center;
}

.process-list li img {
    width: 90px;
    border-radius: 50%;
    margin-bottom: 10px;
	
}

.process-list li p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

/*表单结束*/



/* Container styles */
.taocan {
    background-color: #ffffff;
    margin: 15px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Title styles */
.taocan .title {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333333;
    background-color: #e0f7fa;
    padding: 10px;
    border-radius: 5px;
}

/* Description styles */
.taocan .desc {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #666666;
    background-color: #ffecb3;
    padding: 8px;
    border-radius: 5px;
}

/* List styles */
.taocan ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background-color: #e0e0e0;
    padding: 10px;
    border-radius: 5px;
}

.taocan ul li {
    font-size: 1em;
    position: relative;
    color: #555555;
	text-align:left;
}

/* Add custom bullet points */


@media (max-width: 600px) {
    /* Responsive styles */
    .taocan {
        margin: 10px;
        padding: 10px;
    }

    .taocan .title {
        font-size: 1.4em;
    }

    .taocan .desc {
        font-size: 1.2em;
    }

    .taocan ul {
        gap: 8px;
    }

    .taocan ul li {
        font-size: 0.8em;
       margin-top:8px;
    }
}
/*优势*/
 
  
/* 外部容器样式 */  
.youshi {  
    position: relative;  
    padding: 20px;  
    background-size: cover; /* 确保背景图片覆盖整个容器 */  
    background-position: center;  
    color: #fff; /* 假设背景图片颜色较深，文字设为白色 */  
    text-align: center;  
}  
  
.youshi .title {  
    margin-bottom: 20px;  
    font-size: 1.5em; /* 适当增大标题字体 */  
}  
  
/* 项目列表样式 */  
.youshi .item {  
    background-color: rgba(0, 0, 0, 0.5); /* 透明黑色背景，以便与背景图片融合 */  
    margin-bottom: 15px;  
    padding: 15px;  
    border-radius: 8px; /* 圆角边框 */  
    position: relative;  
}  
  
.youshi .item ul {  
    padding-left: 20px; /* 左侧内边距，以便列表项不紧贴左侧 */  
    background-image: none; /* 移除不必要的背景图片 */  
}  
  
.youshi .item li {  
    font-size: 0.95em; /* 列表项字体大小 */  
    line-height: 1.5; /* 行高，提高可读性 */  
    margin-bottom: 10px; /* 列表项之间的间距 */  
	color:#333333;
	text-align:left;
	padding-left:80px;
}  
.youshi .item p{
	position:absolute;
	width:100px;
	height:100px;
	left:0;
	top: 0; 
	border-radius:8px;
	line-height:100px;
	background-color:#ebc992;
	font-size:2rem;
}

/*
海撒船
*/
.che {
    background-color: #007bff; /* Blue background */
    padding: 15px 0;
    border-radius: 8px;
    text-align: center;
    width: 100%;
   
}

/* Title styles */
.che .title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ffffff;
}

/* List styles */
.che ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Spacing between items */
	padding-left:10px;
}

/* List item styles */
.che ul li {
    width: calc(33.33% - 10px); /* Width of each item minus the gap */
    position: relative;
    background-color: #ffffff; /* Background color for list items */
    border-radius: 8px;
    overflow: hidden; /* Ensures content does not overflow */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}
.che .paizhao{
	padding:10px;
}
/* Image styles */
.che ul li img, .che .paizhao img{
    width: 100%; /* Ensure the image covers the width of the list item */
    height: auto; /* Maintain aspect ratio */
    display: block;
}

/* Text styles */
.che ul li p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
    margin: 0;
    padding: 5px;
    color: #ffffff;
    font-size: 1em;
    text-align: center;
}
/*
海葬介绍
*/
.jieshao-d {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff; /* Light background color for the body */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container styles */
.jieshao {
    background-color: #ffffff; /* White background for the container */
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

/* Title styles */
.jieshao .title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #333333;
    text-align: center;
}

/* Description styles */
.jieshao .desc {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333333;
    text-align: justify;
}

/* Additional styles for better readability */
.jieshao .desc br {
    margin-bottom: 10px;
}



/*
视频
*/
/* Container for the video */
.video-container {
    position: relative;
    max-width: 100%;
    height: 230px; /* Height of the video */
    margin: 0 auto;
    background-color: #000; /* Background color in case video doesn't load */
    border-radius: 10px;
    overflow: hidden;
}

/* Video element */
.video-container .video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover; /* Ensures the video covers the container */
}

/* Play button */
.video-container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    
    background-size: contain;
    cursor: pointer;
    display: none; /* Hide button initially */
}

/* Show the play button when video is not playing */
.video-container.paused .play-button {
    display: block;
}
/*
问答
*/
/* Container styles */
.wen {
    background-color: #4ab9e2;
    padding: 15px;
    border-radius: 10px;
	margin-top:20px;
}

/* Item styles */
.wen .item {
    background: #ffffff;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Title styles */
.wen .item .title {
    font-size: 1em;
    color: #333333;
    position: relative;
    padding-right: 10px; /* Space for the icon */
	margin-bottom:5px;
}

.wen .item .title .prefix {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: red;
    color: white;
    width: 20px; /* Adjust width for square shape */
    height: 20px; /* Adjust height for square shape */
    margin-right: 10px; /* Margin between prefix and text */
    border-radius: 5px;
    font-size: 1em; /* Adjust font size as needed */
    font-weight: bold;
	padding:4px;
}

.wen .item .title .icon {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Description styles */
.wen .item .desc {
    color: #666666;
    font-size: 0.8em;
    line-height: 1.4;
    max-height: 3.2em; /* Two lines of text */
    overflow: hidden;
    position: relative;
}

.wen .item .desc.expanded {
    max-height: none; /* Remove the max height when expanded */
}

/* Read more button styles */
.wen .item .read-more {
    color: #007bff;
    cursor: pointer;
    margin-top: 5px;
    display: none;
}

.wen .item .desc::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1em;
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
}

/* Show read more button if the description is truncated */
.wen .item .desc:not(.expanded) + .read-more {
    display: block;
}

/* Fixed bottom bar container */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
   left: 50%; transform: translateX(-50%);
    width: 100%;
    max-width:450px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Call button styles */
.call-button {
    background-color: #ffffff;
    border: 2px solid red;
    color: red;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    margin: 0 5px;
}

.call-button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Chat button styles */
.chat-button {
    background-color: red;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    margin: 0 5px;
}

.chat-button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}


.lianxi {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 450px;
    margin: 20px auto;
    text-align: center;
	margin-bottom:80px;
}

.lianxi .title {
    font-size: 24px;
    color: #333333;
    margin-bottom: 10px;
}

.lianxi img {
    width: 100px;
    height: 100px;
    margin: 10px 0;
}

.lianxi p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
}

.lianxi ul {
    list-style: none;
    padding: 0;
}

.lianxi li {
    font-size: 16px;
    color: #333333;
    margin: 10px 0;
}

.lianxi li:before {
    content: "📞 ";
    font-size: 16px;
    color: #666666;
}

.lianxi li:nth-child(2):before {
    content: "📱 ";
}

.lianxi li:nth-child(3):before {
    content: "📧 ";
}
/*
问答详情
*/


.tsx-breadcrumb {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.tsx-breadcrumb li {
  display: flex;
  align-items: center;
}

.tsx-breadcrumb li a {
  color: #0066cc;
  text-decoration: none;
}
a {
 
  text-decoration: none;
}
.tsx-breadcrumb li a:hover {
  text-decoration: underline;
}

.tsx-breadcrumb li + li:before {
  content: ">";
  margin: 0 8px;
  color: #999;
}

/* Title and meta info */
.wenda-title_part {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.article-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.wenda-title_part .meta {
  font-size: 12px;
  color: #999;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.wenda-title_part .meta li {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.wenda-title_part .meta li:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-size: contain;
}

.wenda-title_part .meta .author-icon:before {
  background-image: url('../images/author-icon.png'); /* Replace with actual path to author icon */
}

.wenda-title_part .meta .date-icon:before {
  background-image: url('../images/date-icon.png'); /* Replace with actual path to date icon */
}

.wenda-title_part .meta .view-icon:before {
  background-image: url('../images/view-icon.png'); /* Replace with actual path to view icon */
}

/* Reply section */
.wenda-reply_part {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.reply-num {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.reply-num .num span {
  font-weight: bold;
}

.reply-num .tel {
  font-size: 12px;
  color: #0066cc;
}

.normal-list {
  padding: 0;
}

.wenda-reply-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.wenda-replyer {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.wenda-replyer .img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

.wenda-replyer .img img {
  width: 100%;
  height: auto;
}

.wenda-replyer .txt {
  flex-grow: 1;
}

.wenda-replyer .name {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.wenda-replyer .meta {
  font-size: 12px;
  color: #999;
  margin-left:-38px;
}

.wenda-replyer .good {
  color: #999;
}

.wenda-replyer .good a {
  color: #999;
  text-decoration: none;
}

.article-body p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.article-body img{ max-height:100%; max-width:100%;}
.article-body a {
  color: #0066cc;
  text-decoration: none;
}

.article-body a:hover {
  text-decoration: underline;
}





/* General styles */
.none-divider {
  margin-top: 20px;
}

.wenda-zixun-ban {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.wenda-zixun-ban .title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.wenda-zixun-ban .img img {
  max-width: 100px;
  margin-bottom: 10px;
}

.wenda-zixun-ban .btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.wenda-zixun-ban .btn-secondary {
  background-color: #6c757d;
}

.zixun-detail-box {
  margin-top: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.zixun-detail-box .side-list {
  padding: 0;
}

.zixun-detail-box .side-list li {
  margin-bottom: 15px;
}

.zixun-detail-box .side-list li p {
  font-size: 14px;
  color: #666;
}

.zixun-detail-box .side-list li a {
  color: #007bff;
  font-size: 16px;
  text-decoration: none;
}

.zixun-detail-box .side-list li a:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 600px) {
  .none-divider {
    margin-top: 15px;
  }

  .wenda-zixun-ban {
    padding: 10px;
  }

  .wenda-zixun-ban .title {
    font-size: 14px;
  }

  .wenda-zixun-ban .img img {
    max-width: 80px;
  }

  .wenda-zixun-ban .btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .zixun-detail-box {
    padding: 10px;
  }

  .zixun-detail-box .side-list li {
    margin-bottom: 10px;
  }

  .zixun-detail-box .side-list li p {
    font-size: 13px;
  }

  .zixun-detail-box .side-list li a {
    font-size: 14px;
  }
}

/*
评论
*/
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal .modal-content {
  background-color: #fefefe;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  width: 90%;
  
  max-height: 90vh;
  overflow-y: auto;
}

.modal .close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 25px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
}

.modal .close-button:hover,
.modal .close-button:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* General form styling */
.modal .container {

}

.modal .ly-container {
  padding: 15px;
}

.modal .zixun-detail-box {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.modal .mb-3 {
  margin-bottom: 15px;
}

.modal .item-name {
  font-weight: bold;
}

.modal .form-control {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.modal .btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.modal .btn-primary {
  background-color: #007bff;
  color: #fff;
}

.modal .btn-danger {
  background-color: #dc3545;
  color: #fff;
}

.modal .text-center {
  text-align: center;
}

.wen .item a{
	color:#333333;
}

.pagination {
list-style:none;
	font-size: 14px;
	font-family: "helvetica neue", helvetica, arial, sans-serif;
	clear: both;
	text-align: center;
	display: list-item;
}
.pagination li{list-style:none;}
.pagination .pageinfo { }

.pagination a,
.pagination .pageinfo {
	padding: 2px 4px;
	border-radius: 3px;
	background: none;
	color: #000;
	text-decoration: none;
	margin-left: 3px;
	margin-right: 3px;
	border: 1px solid #2f90e1;
}

.pagination a:hover {
	background: #2f90e1;
	color: #fff;
}

.pagination a.thisclass {
	background: #2f90e1;
	color: #fff;
}

.pagination a.thisclass:hover {
	cursor: default;
}

.pagination .prev:before {
	font-weight: normal;
}

.pagination .next:after {
	font-weight: normal;
}

.pagination .next:hover,
.pagination .prev:hover {
	border-color: #2f90e1;
	color: #fff;
	text-shadow: none;
}


@media (max-width: 768px) {
	.pagination {
		font-size: 0.9rem;
	}

	.pagination a,
	.pagination .pageinfo {
		padding: 4px;
		border-radius: 3px;
		background: none;
		color: #000;
		text-decoration: none;
		margin-left: 1px;
		margin-right: 1px;
		border: 1px solid #2f90e1;
	}

	.pagenews .newslinkbox {
		border: none;
	}

}


